ETH Price: $2,688.36 (-1.79%)

Token

Next Generation Labs (NEXTGEN)
 

Overview

Max Total Supply

1,000,000,000,000 NEXTGEN

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000,000,000 NEXTGEN

Value
$0.00
0x7b3a31a7c5dec3a6c04f51989164ddb4b909f0d8
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:
NextGenerationLabsToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : nextgen.sol
/*
    In order to buy this token during the first few minutes you need to whitelist yourself calling the function letMeIn in our contract. 
    This has been done to avoid bots and snipers.
*/


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

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

contract NextGenerationLabsToken is ERC20, Ownable {
    bool private _enableGateKeeper;
    bool private _tradingEnabled;
    bool private _enableTransactionLimit;
    uint256 private _gateKeeperMaxTokenAmount;
    address private _deployer;
    mapping(address => uint256) private _lastBuyBlock;
    mapping(address => bool) private whitelisted;

    constructor()
    ERC20("Next Generation Labs", "NEXTGEN") {
        _deployer = msg.sender;
        _mint(msg.sender, 1_000_000_000_000 ether);
        _enableGateKeeper = true;
        _tradingEnabled = false;
        _enableTransactionLimit = true;
    }

    function isTradingEnabled() public view returns (bool) {
        return _tradingEnabled;
    }

    function isGateKeeperEnabled() public view returns (bool) {
        return _enableGateKeeper && _gateKeeperMaxTokenAmount != 0;
    }

    function isGateKeeperPermanentlyDisabled() public view returns (bool) {
        return !_enableGateKeeper;
    }

    function enableTrading() public onlyOwner {
        _tradingEnabled = true;
    }

    function permanentlyDisableTransactionLimit() public onlyOwner {
        _enableTransactionLimit = false;
    }

    function permanentlyDisarmUniswapGateKeeper() public onlyOwner {
        _enableGateKeeper = false;
    }

    function setupGateKeeper(uint256 maxTokenAmount) public onlyOwner {
        _gateKeeperMaxTokenAmount = maxTokenAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {

        require(_tradingEnabled || from == _deployer || to == _deployer, "Trading is not enabled yet. Refer to our Website or Twitter for further information.");

        if (!isGateKeeperEnabled()) {
            // Once gatekeeper is disabled, we are just a vanilla ERC20 token
            return;
        }

        // Buying from DEX and transfers between wallets requires being whitelisted
        require(whitelisted[to], "Buy blocked by gatekeeper. Target wallet didn't completed our whitelist steps. Refer to our Website or Twitter for further information. This restriction will be lifted in a few minutes.");

        if (_enableTransactionLimit) {
            require(amount <= _gateKeeperMaxTokenAmount * (1 ether), "Buy blocked by gatekeeper. Token limit per transaction exceeded. Refer to our Website or Twitter for further information. This restriction will be lifted in a few minutes.");
            require(_lastBuyBlock[to] < block.number, "Buy blocked by gatekeeper. You can only buy once per block. Refer to our Website or Twitter for further information. This restriction will be lifted in a few hours.");

            _lastBuyBlock[to] = block.number;
        }
    }

    function letMeIn() external {
        require(!whitelisted[msg.sender], "You're already whitelisted. Refer to our Website or Twitter for further information.");
        whitelisted[msg.sender] = true;
    }
}

File 2 of 8 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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 8 of 8 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isGateKeeperEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isGateKeeperPermanentlyDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"letMeIn","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":[],"name":"permanentlyDisableTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"permanentlyDisarmUniswapGateKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"setupGateKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601481527f4e6578742047656e65726174696f6e204c6162730000000000000000000000006020808301918252835180850190945260078452662722ac2a23a2a760c91b9084015281519192916200007691600391620003b0565b5080516200008c906004906020840190620003b0565b505050620000a9620000a36200010060201b60201c565b62000104565b600780546001600160a01b03191633908117909155620000d7906c0c9f2c9cd04674edea4000000062000156565b6005805461ffff60a81b1960ff60a01b19909116600160a01b1716600160b01b1790556200083e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001885760405162461bcd60e51b81526004016200017f906200076e565b60405180910390fd5b620001966000838362000238565b8060026000828254620001aa9190620007ae565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d9908490620007ae565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200021e908590620007a5565b60405180910390a3620002346000838362000388565b5050565b600554600160a81b900460ff16806200025e57506007546001600160a01b038481169116145b806200027757506007546001600160a01b038381169116145b620002965760405162461bcd60e51b81526004016200017f9062000630565b620002a06200038d565b620002ab5762000388565b6001600160a01b03821660009081526009602052604090205460ff16620002e65760405162461bcd60e51b81526004016200017f906200053a565b600554600160b01b900460ff161562000388576006546200031090670de0b6b3a7640000620007c9565b811115620003325760405162461bcd60e51b81526004016200017f9062000456565b6001600160a01b03821660009081526008602052604090205443116200036c5760405162461bcd60e51b81526004016200017f90620006a2565b6001600160a01b03821660009081526008602052604090204390555b505050565b600554600090600160a01b900460ff168015620003ab575060065415155b905090565b828054620003be90620007eb565b90600052602060002090601f016020900481019282620003e257600085556200042d565b82601f10620003fd57805160ff19168380011785556200042d565b828001600101855582156200042d579182015b828111156200042d57825182559160200191906001019062000410565b506200043b9291506200043f565b5090565b5b808211156200043b576000815560010162000440565b602080825260ab908201527f42757920626c6f636b656420627920676174656b65657065722e20546f6b656e60408201527f206c696d697420706572207472616e73616374696f6e2065786365656465642e60608201527f20526566657220746f206f75722057656273697465206f72205477697474657260808201527f20666f72206675727468657220696e666f726d6174696f6e2e2054686973207260a08201527f65737472696374696f6e2077696c6c206265206c696674656420696e2061206660c08201526a32bb9036b4b73aba32b99760a91b60e08201526101000190565b602080825260b9908201527f42757920626c6f636b656420627920676174656b65657065722e20546172676560408201527f742077616c6c6574206469646e277420636f6d706c65746564206f757220776860608201527f6974656c6973742073746570732e20526566657220746f206f7572205765627360808201527f697465206f72205477697474657220666f72206675727468657220696e666f7260a08201527f6d6174696f6e2e2054686973207265737472696374696f6e2077696c6c20626560c08201527f206c696674656420696e206120666577206d696e757465732e0000000000000060e08201526101000190565b60208082526054908201527f54726164696e67206973206e6f7420656e61626c6564207965742e2052656665604082015260008051602062001b7183398151915260608201527f6675727468657220696e666f726d6174696f6e2e000000000000000000000000608082015260a00190565b602080825260a4908201527f42757920626c6f636b656420627920676174656b65657065722e20596f75206360408201527f616e206f6e6c7920627579206f6e63652070657220626c6f636b2e2052656665606082015260008051602062001b7183398151915260808201527f6675727468657220696e666f726d6174696f6e2e20546869732072657374726960a08201527f6374696f6e2077696c6c206265206c696674656420696e20612066657720686f60c0820152633ab9399760e11b60e08201526101000190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620007c457620007c462000828565b500190565b6000816000190483118215151615620007e657620007e662000828565b500290565b6002810460018216806200080057607f821691505b602082108114156200082257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611323806200084e6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637ab07720116100b8578063a457c2d71161007c578063a457c2d71461024a578063a9059cbb1461025d578063bdf3850c14610270578063d1a389c014610278578063dd62ed3e14610280578063f2fde38b1461029357610142565b80637ab07720146102155780638a8c523c1461021d5780638da5cb5b146102255780638df37f9d1461023a57806395d89b411461024257610142565b8063313ce5671161010a578063313ce567146101b557806339509351146101ca578063661d9233146101dd57806370a08231146101e5578063715018a6146101f857806379ac6e061461020257610142565b8063064a59d01461014757806306fdde0314610165578063095ea7b31461017a57806318160ddd1461018d57806323b872dd146101a2575b600080fd5b61014f6102a6565b60405161015c9190610bfa565b60405180910390f35b61016d6102b6565b60405161015c9190610c05565b61014f610188366004610ba5565b610348565b61019561036a565b60405161015c919061124e565b61014f6101b0366004610b6a565b610370565b6101bd61039e565b60405161015c9190611257565b61014f6101d8366004610ba5565b6103a3565b61014f6103ef565b6101956101f3366004610b17565b610411565b610200610430565b005b610200610210366004610bce565b610484565b6102006104c8565b610200610514565b61022d610568565b60405161015c9190610be6565b610200610577565b61016d6105c5565b61014f610258366004610ba5565b6105d4565b61014f61026b366004610ba5565b610635565b61020061064d565b61014f61069b565b61019561028e366004610b38565b6106ac565b6102006102a1366004610b17565b6106d7565b600554600160a81b900460ff1690565b6060600380546102c59061129c565b80601f01602080910402602001604051908101604052809291908181526020018280546102f19061129c565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b600080610353610748565b905061036081858561074c565b5060019392505050565b60025490565b60008061037b610748565b9050610388858285610800565b61039385858561084a565b506001949350505050565b601290565b6000806103ae610748565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915061036090829086906103ea908790611265565b61074c565b600554600090600160a01b900460ff16801561040c575060065415155b905090565b6001600160a01b0381166000908152602081905260409020545b919050565b610438610748565b6001600160a01b0316610449610568565b6001600160a01b0316146104785760405162461bcd60e51b815260040161046f90610efe565b60405180910390fd5b610482600061096e565b565b61048c610748565b6001600160a01b031661049d610568565b6001600160a01b0316146104c35760405162461bcd60e51b815260040161046f90610efe565b600655565b3360009081526009602052604090205460ff16156104f85760405162461bcd60e51b815260040161046f90610e84565b336000908152600960205260409020805460ff19166001179055565b61051c610748565b6001600160a01b031661052d610568565b6001600160a01b0316146105535760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60a81b1916600160a81b179055565b6005546001600160a01b031690565b61057f610748565b6001600160a01b0316610590610568565b6001600160a01b0316146105b65760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60a01b19169055565b6060600480546102c59061129c565b6000806105df610748565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156106285760405162461bcd60e51b815260040161046f90611209565b610393828686840361074c565b600080610640610748565b905061036081858561084a565b610655610748565b6001600160a01b0316610666610568565b6001600160a01b03161461068c5760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60b01b19169055565b600554600160a01b900460ff161590565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106df610748565b6001600160a01b03166106f0610568565b6001600160a01b0316146107165760405162461bcd60e51b815260040161046f90610efe565b6001600160a01b03811661073c5760405162461bcd60e51b815260040161046f90610d7f565b6107458161096e565b50565b3390565b6001600160a01b0383166107725760405162461bcd60e51b815260040161046f906110e8565b6001600160a01b0382166107985760405162461bcd60e51b815260040161046f90610dc5565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f390859061124e565b60405180910390a3505050565b600061080c84846106ac565b9050600019811461084457818110156108375760405162461bcd60e51b815260040161046f90610e07565b610844848484840361074c565b50505050565b6001600160a01b0383166108705760405162461bcd60e51b815260040161046f906110a3565b6001600160a01b0382166108965760405162461bcd60e51b815260040161046f90610c58565b6108a18383836109c0565b6001600160a01b038316600090815260208190526040902054818110156108da5760405162461bcd60e51b815260040161046f90610e3e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610911908490611265565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095b919061124e565b60405180910390a3610844848484610afb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a81b900460ff16806109e557506007546001600160a01b038481169116145b806109fd57506007546001600160a01b038381169116145b610a195760405162461bcd60e51b815260040161046f90611029565b610a216103ef565b610a2a57610afb565b6001600160a01b03821660009081526009602052604090205460ff16610a625760405162461bcd60e51b815260040161046f90610f33565b600554600160b01b900460ff1615610afb57600654610a8990670de0b6b3a764000061127d565b811115610aa85760405162461bcd60e51b815260040161046f90610c9b565b6001600160a01b0382166000908152600860205260409020544311610adf5760405162461bcd60e51b815260040161046f9061112c565b6001600160a01b03821660009081526008602052604090204390555b505050565b80356001600160a01b038116811461042b57600080fd5b600060208284031215610b28578081fd5b610b3182610b00565b9392505050565b60008060408385031215610b4a578081fd5b610b5383610b00565b9150610b6160208401610b00565b90509250929050565b600080600060608486031215610b7e578081fd5b610b8784610b00565b9250610b9560208501610b00565b9150604084013590509250925092565b60008060408385031215610bb7578182fd5b610bc083610b00565b946020939093013593505050565b600060208284031215610bdf578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c3157858101830151858201604001528201610c15565b81811115610c425783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260ab908201527f42757920626c6f636b656420627920676174656b65657065722e20546f6b656e60408201527f206c696d697420706572207472616e73616374696f6e2065786365656465642e60608201527f20526566657220746f206f75722057656273697465206f72205477697474657260808201527f20666f72206675727468657220696e666f726d6174696f6e2e2054686973207260a08201527f65737472696374696f6e2077696c6c206265206c696674656420696e2061206660c08201526a32bb9036b4b73aba32b99760a91b60e08201526101000190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526054908201527f596f7527726520616c72656164792077686974656c69737465642e205265666560408201527f7220746f206f75722057656273697465206f72205477697474657220666f7220606082015273333ab93a3432b91034b73337b936b0ba34b7b71760611b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260b9908201527f42757920626c6f636b656420627920676174656b65657065722e20546172676560408201527f742077616c6c6574206469646e277420636f6d706c65746564206f757220776860608201527f6974656c6973742073746570732e20526566657220746f206f7572205765627360808201527f697465206f72205477697474657220666f72206675727468657220696e666f7260a08201527f6d6174696f6e2e2054686973207265737472696374696f6e2077696c6c20626560c08201527f206c696674656420696e206120666577206d696e757465732e0000000000000060e08201526101000190565b60208082526054908201527f54726164696e67206973206e6f7420656e61626c6564207965742e205265666560408201527f7220746f206f75722057656273697465206f72205477697474657220666f7220606082015273333ab93a3432b91034b73337b936b0ba34b7b71760611b608082015260a00190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260a4908201527f42757920626c6f636b656420627920676174656b65657065722e20596f75206360408201527f616e206f6e6c7920627579206f6e63652070657220626c6f636b2e205265666560608201527f7220746f206f75722057656273697465206f72205477697474657220666f722060808201527f6675727468657220696e666f726d6174696f6e2e20546869732072657374726960a08201527f6374696f6e2077696c6c206265206c696674656420696e20612066657720686f60c0820152633ab9399760e11b60e08201526101000190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115611278576112786112d7565b500190565b6000816000190483118215151615611297576112976112d7565b500290565b6002810460018216806112b057607f821691505b602082108114156112d157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208108c1fe1cb91166df98b4ddbc95f8e38148de0e2ef5d061f41a77bb6828140764736f6c634300080000337220746f206f75722057656273697465206f72205477697474657220666f7220

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637ab07720116100b8578063a457c2d71161007c578063a457c2d71461024a578063a9059cbb1461025d578063bdf3850c14610270578063d1a389c014610278578063dd62ed3e14610280578063f2fde38b1461029357610142565b80637ab07720146102155780638a8c523c1461021d5780638da5cb5b146102255780638df37f9d1461023a57806395d89b411461024257610142565b8063313ce5671161010a578063313ce567146101b557806339509351146101ca578063661d9233146101dd57806370a08231146101e5578063715018a6146101f857806379ac6e061461020257610142565b8063064a59d01461014757806306fdde0314610165578063095ea7b31461017a57806318160ddd1461018d57806323b872dd146101a2575b600080fd5b61014f6102a6565b60405161015c9190610bfa565b60405180910390f35b61016d6102b6565b60405161015c9190610c05565b61014f610188366004610ba5565b610348565b61019561036a565b60405161015c919061124e565b61014f6101b0366004610b6a565b610370565b6101bd61039e565b60405161015c9190611257565b61014f6101d8366004610ba5565b6103a3565b61014f6103ef565b6101956101f3366004610b17565b610411565b610200610430565b005b610200610210366004610bce565b610484565b6102006104c8565b610200610514565b61022d610568565b60405161015c9190610be6565b610200610577565b61016d6105c5565b61014f610258366004610ba5565b6105d4565b61014f61026b366004610ba5565b610635565b61020061064d565b61014f61069b565b61019561028e366004610b38565b6106ac565b6102006102a1366004610b17565b6106d7565b600554600160a81b900460ff1690565b6060600380546102c59061129c565b80601f01602080910402602001604051908101604052809291908181526020018280546102f19061129c565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b600080610353610748565b905061036081858561074c565b5060019392505050565b60025490565b60008061037b610748565b9050610388858285610800565b61039385858561084a565b506001949350505050565b601290565b6000806103ae610748565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915061036090829086906103ea908790611265565b61074c565b600554600090600160a01b900460ff16801561040c575060065415155b905090565b6001600160a01b0381166000908152602081905260409020545b919050565b610438610748565b6001600160a01b0316610449610568565b6001600160a01b0316146104785760405162461bcd60e51b815260040161046f90610efe565b60405180910390fd5b610482600061096e565b565b61048c610748565b6001600160a01b031661049d610568565b6001600160a01b0316146104c35760405162461bcd60e51b815260040161046f90610efe565b600655565b3360009081526009602052604090205460ff16156104f85760405162461bcd60e51b815260040161046f90610e84565b336000908152600960205260409020805460ff19166001179055565b61051c610748565b6001600160a01b031661052d610568565b6001600160a01b0316146105535760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60a81b1916600160a81b179055565b6005546001600160a01b031690565b61057f610748565b6001600160a01b0316610590610568565b6001600160a01b0316146105b65760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60a01b19169055565b6060600480546102c59061129c565b6000806105df610748565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156106285760405162461bcd60e51b815260040161046f90611209565b610393828686840361074c565b600080610640610748565b905061036081858561084a565b610655610748565b6001600160a01b0316610666610568565b6001600160a01b03161461068c5760405162461bcd60e51b815260040161046f90610efe565b6005805460ff60b01b19169055565b600554600160a01b900460ff161590565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106df610748565b6001600160a01b03166106f0610568565b6001600160a01b0316146107165760405162461bcd60e51b815260040161046f90610efe565b6001600160a01b03811661073c5760405162461bcd60e51b815260040161046f90610d7f565b6107458161096e565b50565b3390565b6001600160a01b0383166107725760405162461bcd60e51b815260040161046f906110e8565b6001600160a01b0382166107985760405162461bcd60e51b815260040161046f90610dc5565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f390859061124e565b60405180910390a3505050565b600061080c84846106ac565b9050600019811461084457818110156108375760405162461bcd60e51b815260040161046f90610e07565b610844848484840361074c565b50505050565b6001600160a01b0383166108705760405162461bcd60e51b815260040161046f906110a3565b6001600160a01b0382166108965760405162461bcd60e51b815260040161046f90610c58565b6108a18383836109c0565b6001600160a01b038316600090815260208190526040902054818110156108da5760405162461bcd60e51b815260040161046f90610e3e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610911908490611265565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095b919061124e565b60405180910390a3610844848484610afb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a81b900460ff16806109e557506007546001600160a01b038481169116145b806109fd57506007546001600160a01b038381169116145b610a195760405162461bcd60e51b815260040161046f90611029565b610a216103ef565b610a2a57610afb565b6001600160a01b03821660009081526009602052604090205460ff16610a625760405162461bcd60e51b815260040161046f90610f33565b600554600160b01b900460ff1615610afb57600654610a8990670de0b6b3a764000061127d565b811115610aa85760405162461bcd60e51b815260040161046f90610c9b565b6001600160a01b0382166000908152600860205260409020544311610adf5760405162461bcd60e51b815260040161046f9061112c565b6001600160a01b03821660009081526008602052604090204390555b505050565b80356001600160a01b038116811461042b57600080fd5b600060208284031215610b28578081fd5b610b3182610b00565b9392505050565b60008060408385031215610b4a578081fd5b610b5383610b00565b9150610b6160208401610b00565b90509250929050565b600080600060608486031215610b7e578081fd5b610b8784610b00565b9250610b9560208501610b00565b9150604084013590509250925092565b60008060408385031215610bb7578182fd5b610bc083610b00565b946020939093013593505050565b600060208284031215610bdf578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c3157858101830151858201604001528201610c15565b81811115610c425783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260ab908201527f42757920626c6f636b656420627920676174656b65657065722e20546f6b656e60408201527f206c696d697420706572207472616e73616374696f6e2065786365656465642e60608201527f20526566657220746f206f75722057656273697465206f72205477697474657260808201527f20666f72206675727468657220696e666f726d6174696f6e2e2054686973207260a08201527f65737472696374696f6e2077696c6c206265206c696674656420696e2061206660c08201526a32bb9036b4b73aba32b99760a91b60e08201526101000190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526054908201527f596f7527726520616c72656164792077686974656c69737465642e205265666560408201527f7220746f206f75722057656273697465206f72205477697474657220666f7220606082015273333ab93a3432b91034b73337b936b0ba34b7b71760611b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260b9908201527f42757920626c6f636b656420627920676174656b65657065722e20546172676560408201527f742077616c6c6574206469646e277420636f6d706c65746564206f757220776860608201527f6974656c6973742073746570732e20526566657220746f206f7572205765627360808201527f697465206f72205477697474657220666f72206675727468657220696e666f7260a08201527f6d6174696f6e2e2054686973207265737472696374696f6e2077696c6c20626560c08201527f206c696674656420696e206120666577206d696e757465732e0000000000000060e08201526101000190565b60208082526054908201527f54726164696e67206973206e6f7420656e61626c6564207965742e205265666560408201527f7220746f206f75722057656273697465206f72205477697474657220666f7220606082015273333ab93a3432b91034b73337b936b0ba34b7b71760611b608082015260a00190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260a4908201527f42757920626c6f636b656420627920676174656b65657065722e20596f75206360408201527f616e206f6e6c7920627579206f6e63652070657220626c6f636b2e205265666560608201527f7220746f206f75722057656273697465206f72205477697474657220666f722060808201527f6675727468657220696e666f726d6174696f6e2e20546869732072657374726960a08201527f6374696f6e2077696c6c206265206c696674656420696e20612066657720686f60c0820152633ab9399760e11b60e08201526101000190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115611278576112786112d7565b500190565b6000816000190483118215151615611297576112976112d7565b500290565b6002810460018216806112b057607f821691505b602082108114156112d157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208108c1fe1cb91166df98b4ddbc95f8e38148de0e2ef5d061f41a77bb6828140764736f6c63430008000033

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.