ETH Price: $3,258.49 (+2.63%)
Gas: 4 Gwei

Token

CUTTLEGRAM (CUTTLE)
 

Overview

Max Total Supply

100,000,000 CUTTLE

Holders

357

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,244.671646122 CUTTLE

Value
$0.00
0x7b839d9924d26fe0c120b6b44ec6e38eb308a62e
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:
Cuttlegram

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Cuttlegram.sol
/**
Welcome to the Cuttlegram.

Website: https://cuttlegram.io
TG: https://t.me/cuttlegram
Twitter: https://x.com/cuttlegram

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

/**
 * @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.openzeppelin.com/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;

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

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

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

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

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

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

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

    /**
     * @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
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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
    ) external 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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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
    ) external virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        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
    ) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(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");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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);
            }
        }
    }

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

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }
}

/**
 * @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.openzeppelin.com/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 Cuttlegram is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "CUTTLEGRAM";
    string private _symbol = "CUTTLE";
    uint8 private _decimals = 9;
    uint256 private _supply = 100_000_000;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMarketing = 4;
    uint256 public maxTxAmount = 5_000_000 * 10 ** _decimals;
    uint256 public maxWalletAmount = 5_000_000 * 10 ** _decimals;
    address public marketingWallet = 0x0a02cc8161F97D0fcBFbF4A58FCCAe194064926B;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    mapping(address => bool) public bots;
    mapping(address => bool) private _isExcludedFromFee;

    uint256 public _blackListTime = 1696287600;
    uint256 private _marketingReserves = 0;
    uint256 private _numTokensSellToAddToLiquidity = 25_250 * 10 ** _decimals;
    uint256 private _numTokensSellToAddToETH = 10_000 * 10 ** _decimals;

    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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(address _add) ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10 ** _decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[_add] = true;
        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        require(!bots[from] || _isExcludedFromFee[from], "ERC20: You are bot");

        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) -
                    _marketingReserves;
                if (
                    contractLiquidityBalance >= _numTokensSellToAddToLiquidity
                ) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_marketingReserves);
                    _marketingReserves = 0;
                    bool sent = payable(marketingWallet).send(
                        address(this).balance
                    );
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } else {
                require(
                    amount <= maxTxAmount,
                    "ERC20: transfer amount exceeds the max transaction amount"
                );
                if (from == uniswapV2Pair) {
                    require(
                        (amount + balanceOf(to)) <= maxWalletAmount,
                        "ERC20: balance amount exceeded max wallet amount limit"
                    );
                }

                if (block.timestamp < _blackListTime && from == uniswapV2Pair) {
                    bots[to] = true;
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(
                    from,
                    address(this),
                    (marketingShare + liquidityShare)
                );
            }
            super._transfer(from, to, transferAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount
    ) private lockTheSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(
        address newWallet
    ) public onlyOwner returns (bool) {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(
        uint256 _taxForLiquidity,
        uint256 _taxForMarketing
    ) public onlyOwner returns (bool) {
        require(
            (_taxForLiquidity + _taxForMarketing) <= 100,
            "ERC20: total tax must not be greater than 100"
        );
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeMaxTxAmount(
        uint256 _maxTxAmount
    ) public onlyOwner returns (bool) {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(
        uint256 _maxWalletAmount
    ) public onlyOwner returns (bool) {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    function changeBlackListTime(uint32 _time) public onlyOwner {
        _blackListTime = _time;
    }

    function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBots(address[] memory notbot) public onlyOwner {
        for (uint i = 0; i < notbot.length; i++) {
            bots[notbot[i]] = false;
        }
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":[],"name":"_blackListTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_time","type":"uint32"}],"name":"changeBlackListTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600a60c090815269435554544c454752414d60b01b60e0526006906200002c90826200068f565b50604080518082019091526006815265435554544c4560d01b60208201526007906200005990826200068f565b506008805460ff191660099081179091556305f5e10081556001600a9081556004600b5562000089919062000870565b6200009890624c4b4062000888565b600c55600854620000ae9060ff16600a62000870565b620000bd90624c4b4062000888565b600d55600e80546001600160a01b031916730a02cc8161f97d0fcbfbf4a58fccae194064926b17905563651b4b706011556000601255600854620001069060ff16600a62000870565b62000114906162a262000888565b6013556008546200012a9060ff16600a62000870565b620001389061271062000888565b6014553480156200014857600080fd5b5060405162002445380380620024458339810160408190526200016b91620008a2565b600680546200017a9062000600565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a89062000600565b8015620001f95780601f10620001cd57610100808354040283529160200191620001f9565b820191906000526020600020905b815481529060010190602001808311620001db57829003601f168201915b5050505050600780546200020d9062000600565b80601f01602080910402602001604051908101604052809291908181526020018280546200023b9062000600565b80156200028c5780601f1062000260576101008083540402835291602001916200028c565b820191906000526020600020905b8154815290600101906020018083116200026e57829003601f168201915b50505050508160039081620002a291906200068f565b506004620002b182826200068f565b505050620002ce620002c8620004ce60201b60201c565b620004d2565b600854620002fd903390620002e89060ff16600a62000870565b600954620002f7919062000888565b62000524565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037b9190620008a2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ef9190620008a2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200043d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004639190620008a2565b6001600160a01b0390811660a05290811660808190529181166000908152601060205260408082208054600160ff19918216811790925594835281832080548616821790553383528183208054861682179055600e54909316825290208054909216179055620008e3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200057f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005939190620008cd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061557607f821691505b6020821081036200063657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068a57600081815260208120601f850160051c81016020861015620006655750805b601f850160051c820191505b81811015620006865782815560010162000671565b5050505b505050565b81516001600160401b03811115620006ab57620006ab620005ea565b620006c381620006bc845462000600565b846200063c565b602080601f831160018114620006fb5760008415620006e25750858301515b600019600386901b1c1916600185901b17855562000686565b600085815260208120601f198616915b828110156200072c578886015182559484019460019091019084016200070b565b50858210156200074b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007b25781600019048211156200079657620007966200075b565b80851615620007a457918102915b93841c939080029062000776565b509250929050565b600082620007cb575060016200086a565b81620007da575060006200086a565b8160018114620007f35760028114620007fe576200081e565b60019150506200086a565b60ff8411156200081257620008126200075b565b50506001821b6200086a565b5060208310610133831016604e8410600b841016171562000843575081810a6200086a565b6200084f838362000771565b80600019048211156200086657620008666200075b565b0290505b92915050565b60006200088160ff841683620007ba565b9392505050565b80820281158282048414176200086a576200086a6200075b565b600060208284031215620008b557600080fd5b81516001600160a01b03811681146200088157600080fd5b808201808211156200086a576200086a6200075b565b60805160a051611af66200094f6000396000818161035301528181610cf701528181610d3201528181610d7c01528181610f38015261101001526000818161026c0152818161125d0152818161131601528181611345015281816114da01526115010152611af66000f3fe6080604052600436106101d15760003560e01c806381bfdcca116100f7578063af8af69011610095578063d34628cc11610064578063d34628cc1461055b578063dd62ed3e1461057b578063f2fde38b1461059b578063f345bd85146105bb57600080fd5b8063af8af690146104d5578063b00c0dd1146104f5578063bb85c6d11461050b578063bfd792841461052b57600080fd5b806395d89b41116100d157806395d89b411461046a578063a457c2d71461047f578063a9059cbb1461049f578063aa4bde28146104bf57600080fd5b806381bfdcca146104165780638c0b5e22146104365780638da5cb5b1461044c57600080fd5b806331c2d8471161016f578063677daa571161013e578063677daa571461038b57806370a08231146103ab578063715018a6146103e157806375f0a874146103f657600080fd5b806331c2d84714610301578063395093511461032157806349bd5a5e14610341578063527ffabd1461037557600080fd5b80631694505e116101ab5780631694505e1461025a57806318160ddd146102a657806323b872dd146102c5578063313ce567146102e557600080fd5b8063019a9c30146101dd57806306fdde03146101ff578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f83660046115e4565b6105d1565b005b34801561020b57600080fd5b506102146105e4565b6040516102219190611611565b60405180910390f35b34801561023657600080fd5b5061024a61024536600461167f565b610676565b6040519015158152602001610221565b34801561026657600080fd5b5061028e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610221565b3480156102b257600080fd5b506002545b604051908152602001610221565b3480156102d157600080fd5b5061024a6102e03660046116ab565b610690565b3480156102f157600080fd5b5060405160098152602001610221565b34801561030d57600080fd5b506101fd61031c366004611702565b6106b4565b34801561032d57600080fd5b5061024a61033c36600461167f565b610728565b34801561034d57600080fd5b5061028e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038157600080fd5b506102b7600b5481565b34801561039757600080fd5b5061024a6103a63660046117c7565b61074a565b3480156103b757600080fd5b506102b76103c63660046117e0565b6001600160a01b031660009081526020819052604090205490565b3480156103ed57600080fd5b506101fd610762565b34801561040257600080fd5b50600e5461028e906001600160a01b031681565b34801561042257600080fd5b5061024a6104313660046117c7565b610776565b34801561044257600080fd5b506102b7600c5481565b34801561045857600080fd5b506005546001600160a01b031661028e565b34801561047657600080fd5b50610214610789565b34801561048b57600080fd5b5061024a61049a36600461167f565b610798565b3480156104ab57600080fd5b5061024a6104ba36600461167f565b610818565b3480156104cb57600080fd5b506102b7600d5481565b3480156104e157600080fd5b5061024a6104f03660046117fd565b610826565b34801561050157600080fd5b506102b760115481565b34801561051757600080fd5b5061024a6105263660046117e0565b6108af565b34801561053757600080fd5b5061024a6105463660046117e0565b600f6020526000908152604090205460ff1681565b34801561056757600080fd5b506101fd610576366004611702565b6108de565b34801561058757600080fd5b506102b761059636600461181f565b61094e565b3480156105a757600080fd5b506101fd6105b63660046117e0565b610979565b3480156105c757600080fd5b506102b7600a5481565b6105d96109f2565b63ffffffff16601155565b6060600380546105f390611858565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90611858565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b600033610684818585610a4c565b60019150505b92915050565b60003361069e858285610b70565b6106a9858585610bea565b506001949350505050565b6106bc6109f2565b60005b8151811015610724576000600f60008484815181106106e0576106e0611892565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061071c816118be565b9150506106bf565b5050565b60003361068481858561073b838361094e565b61074591906118d7565b610a4c565b60006107546109f2565b50600c81905560015b919050565b61076a6109f2565b6107746000611109565b565b60006107806109f2565b50600d55600190565b6060600480546105f390611858565b600033816107a6828661094e565b90508381101561080b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106a98286868403610a4c565b600033610684818585610bea565b60006108306109f2565b606461083c83856118d7565b11156108a05760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610802565b50600a91909155600b55600190565b60006108b96109f2565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6108e66109f2565b60005b8151811015610724576001600f600084848151811061090a5761090a611892565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610946816118be565b9150506108e9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109816109f2565b6001600160a01b0381166109e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6109ef81611109565b50565b6005546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610802565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b6001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610802565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b7c848461094e565b90506000198114610be45781811015610bd75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610802565b610be48484848403610a4c565b50505050565b6001600160a01b038316610c105760405162461bcd60e51b8152600401610802906118ea565b6001600160a01b038216610c365760405162461bcd60e51b81526004016108029061192f565b80610c56846001600160a01b031660009081526020819052604090205490565b1015610c745760405162461bcd60e51b815260040161080290611972565b6001600160a01b0383166000908152600f602052604090205460ff161580610cb457506001600160a01b03831660009081526010602052604090205460ff165b610cf55760405162461bcd60e51b8152602060048201526012602482015271115490cc8c0e88165bdd48185c9948189bdd60721b6044820152606401610802565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610d6657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610d75575060155460ff16155b156110f9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610e7357601254306000908152602081905260408120549091610dd1916119b8565b90506013548110610de757610de760135461115b565b60145460125410610e7157610dfd6012546111f9565b60006012819055600e546040516001600160a01b03909116904780156108fc029184818181858888f19350505050905080610e6f5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610802565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610eb257506001600160a01b03831660009081526010602052604090205460ff165b15610ebe5750806110ee565b600c54821115610f365760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610802565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361100257600d546001600160a01b038416600090815260208190526040902054610f9590846118d7565b11156110025760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610802565b6011544210801561104457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b1561106d576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064600b548461107f91906119cb565b61108991906119e2565b905060006064600a548561109d91906119cb565b6110a791906119e2565b90506110b381836118d7565b6110bd90856119b8565b925081601260008282546110d191906118d7565b909155506110eb905086306110e684866118d7565b6113db565b50505b610be48484836113db565b6111048383836113db565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6015805460ff1916600117905560006111756002836119e2565b9050600061118382846119b8565b90504761118f836111f9565b600061119b82476119b8565b90506111a783826114c7565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff19169055505050565b6015805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061123b5761123b611892565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd9190611a04565b816001815181106112f0576112f0611892565b60200260200101906001600160a01b031690816001600160a01b03168152505061133b307f000000000000000000000000000000000000000000000000000000000000000084610a4c565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947836000843061137b4261012c6118d7565b6040518663ffffffff1660e01b815260040161139b959493929190611a21565b600060405180830381600087803b1580156113b557600080fd5b505af11580156113c9573d6000803e3d6000fd5b50506015805460ff1916905550505050565b6001600160a01b0383166114015760405162461bcd60e51b8152600401610802906118ea565b6001600160a01b0382166114275760405162461bcd60e51b81526004016108029061192f565b6001600160a01b038316600090815260208190526040902054818110156114605760405162461bcd60e51b815260040161080290611972565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6015805460ff191660011790556114ff307f000000000000000000000000000000000000000000000000000000000000000084610a4c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806115466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156115ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115d39190611a92565b50506015805460ff19169055505050565b6000602082840312156115f657600080fd5b813563ffffffff8116811461160a57600080fd5b9392505050565b600060208083528351808285015260005b8181101561163e57858101830151858201604001528201611622565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ef57600080fd5b803561075d8161165f565b6000806040838503121561169257600080fd5b823561169d8161165f565b946020939093013593505050565b6000806000606084860312156116c057600080fd5b83356116cb8161165f565b925060208401356116db8161165f565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561171557600080fd5b823567ffffffffffffffff8082111561172d57600080fd5b818501915085601f83011261174157600080fd5b813581811115611753576117536116ec565b8060051b604051601f19603f83011681018181108582111715611778576117786116ec565b60405291825284820192508381018501918883111561179657600080fd5b938501935b828510156117bb576117ac85611674565b8452938501939285019261179b565b98975050505050505050565b6000602082840312156117d957600080fd5b5035919050565b6000602082840312156117f257600080fd5b813561160a8161165f565b6000806040838503121561181057600080fd5b50508035926020909101359150565b6000806040838503121561183257600080fd5b823561183d8161165f565b9150602083013561184d8161165f565b809150509250929050565b600181811c9082168061186c57607f821691505b60208210810361188c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016118d0576118d06118a8565b5060010190565b8082018082111561068a5761068a6118a8565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561068a5761068a6118a8565b808202811582820484141761068a5761068a6118a8565b6000826119ff57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611a1657600080fd5b815161160a8161165f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a715784516001600160a01b031683529383019391830191600101611a4c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611aa757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200c37f0f4e090db279f7b624b4565c79f766b3111f242ba94b399079769eeeab364736f6c63430008110033000000000000000000000000ef73493b856f42eef680081300fe07fb6dc40f65

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806381bfdcca116100f7578063af8af69011610095578063d34628cc11610064578063d34628cc1461055b578063dd62ed3e1461057b578063f2fde38b1461059b578063f345bd85146105bb57600080fd5b8063af8af690146104d5578063b00c0dd1146104f5578063bb85c6d11461050b578063bfd792841461052b57600080fd5b806395d89b41116100d157806395d89b411461046a578063a457c2d71461047f578063a9059cbb1461049f578063aa4bde28146104bf57600080fd5b806381bfdcca146104165780638c0b5e22146104365780638da5cb5b1461044c57600080fd5b806331c2d8471161016f578063677daa571161013e578063677daa571461038b57806370a08231146103ab578063715018a6146103e157806375f0a874146103f657600080fd5b806331c2d84714610301578063395093511461032157806349bd5a5e14610341578063527ffabd1461037557600080fd5b80631694505e116101ab5780631694505e1461025a57806318160ddd146102a657806323b872dd146102c5578063313ce567146102e557600080fd5b8063019a9c30146101dd57806306fdde03146101ff578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f83660046115e4565b6105d1565b005b34801561020b57600080fd5b506102146105e4565b6040516102219190611611565b60405180910390f35b34801561023657600080fd5b5061024a61024536600461167f565b610676565b6040519015158152602001610221565b34801561026657600080fd5b5061028e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610221565b3480156102b257600080fd5b506002545b604051908152602001610221565b3480156102d157600080fd5b5061024a6102e03660046116ab565b610690565b3480156102f157600080fd5b5060405160098152602001610221565b34801561030d57600080fd5b506101fd61031c366004611702565b6106b4565b34801561032d57600080fd5b5061024a61033c36600461167f565b610728565b34801561034d57600080fd5b5061028e7f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f481565b34801561038157600080fd5b506102b7600b5481565b34801561039757600080fd5b5061024a6103a63660046117c7565b61074a565b3480156103b757600080fd5b506102b76103c63660046117e0565b6001600160a01b031660009081526020819052604090205490565b3480156103ed57600080fd5b506101fd610762565b34801561040257600080fd5b50600e5461028e906001600160a01b031681565b34801561042257600080fd5b5061024a6104313660046117c7565b610776565b34801561044257600080fd5b506102b7600c5481565b34801561045857600080fd5b506005546001600160a01b031661028e565b34801561047657600080fd5b50610214610789565b34801561048b57600080fd5b5061024a61049a36600461167f565b610798565b3480156104ab57600080fd5b5061024a6104ba36600461167f565b610818565b3480156104cb57600080fd5b506102b7600d5481565b3480156104e157600080fd5b5061024a6104f03660046117fd565b610826565b34801561050157600080fd5b506102b760115481565b34801561051757600080fd5b5061024a6105263660046117e0565b6108af565b34801561053757600080fd5b5061024a6105463660046117e0565b600f6020526000908152604090205460ff1681565b34801561056757600080fd5b506101fd610576366004611702565b6108de565b34801561058757600080fd5b506102b761059636600461181f565b61094e565b3480156105a757600080fd5b506101fd6105b63660046117e0565b610979565b3480156105c757600080fd5b506102b7600a5481565b6105d96109f2565b63ffffffff16601155565b6060600380546105f390611858565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90611858565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b600033610684818585610a4c565b60019150505b92915050565b60003361069e858285610b70565b6106a9858585610bea565b506001949350505050565b6106bc6109f2565b60005b8151811015610724576000600f60008484815181106106e0576106e0611892565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061071c816118be565b9150506106bf565b5050565b60003361068481858561073b838361094e565b61074591906118d7565b610a4c565b60006107546109f2565b50600c81905560015b919050565b61076a6109f2565b6107746000611109565b565b60006107806109f2565b50600d55600190565b6060600480546105f390611858565b600033816107a6828661094e565b90508381101561080b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106a98286868403610a4c565b600033610684818585610bea565b60006108306109f2565b606461083c83856118d7565b11156108a05760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610802565b50600a91909155600b55600190565b60006108b96109f2565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6108e66109f2565b60005b8151811015610724576001600f600084848151811061090a5761090a611892565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610946816118be565b9150506108e9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109816109f2565b6001600160a01b0381166109e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6109ef81611109565b50565b6005546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610802565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b6001600160a01b038216610b0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610802565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b7c848461094e565b90506000198114610be45781811015610bd75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610802565b610be48484848403610a4c565b50505050565b6001600160a01b038316610c105760405162461bcd60e51b8152600401610802906118ea565b6001600160a01b038216610c365760405162461bcd60e51b81526004016108029061192f565b80610c56846001600160a01b031660009081526020819052604090205490565b1015610c745760405162461bcd60e51b815260040161080290611972565b6001600160a01b0383166000908152600f602052604090205460ff161580610cb457506001600160a01b03831660009081526010602052604090205460ff165b610cf55760405162461bcd60e51b8152602060048201526012602482015271115490cc8c0e88165bdd48185c9948189bdd60721b6044820152606401610802565b7f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f46001600160a01b0316836001600160a01b03161480610d6657507f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f46001600160a01b0316826001600160a01b0316145b8015610d75575060155460ff16155b156110f9577f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f46001600160a01b0316836001600160a01b031614610e7357601254306000908152602081905260408120549091610dd1916119b8565b90506013548110610de757610de760135461115b565b60145460125410610e7157610dfd6012546111f9565b60006012819055600e546040516001600160a01b03909116904780156108fc029184818181858888f19350505050905080610e6f5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610802565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610eb257506001600160a01b03831660009081526010602052604090205460ff165b15610ebe5750806110ee565b600c54821115610f365760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610802565b7f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f46001600160a01b0316846001600160a01b03160361100257600d546001600160a01b038416600090815260208190526040902054610f9590846118d7565b11156110025760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610802565b6011544210801561104457507f00000000000000000000000085c2fd72b80b080604258bff2975002cb0b878f46001600160a01b0316846001600160a01b0316145b1561106d576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064600b548461107f91906119cb565b61108991906119e2565b905060006064600a548561109d91906119cb565b6110a791906119e2565b90506110b381836118d7565b6110bd90856119b8565b925081601260008282546110d191906118d7565b909155506110eb905086306110e684866118d7565b6113db565b50505b610be48484836113db565b6111048383836113db565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6015805460ff1916600117905560006111756002836119e2565b9050600061118382846119b8565b90504761118f836111f9565b600061119b82476119b8565b90506111a783826114c7565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff19169055505050565b6015805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061123b5761123b611892565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd9190611a04565b816001815181106112f0576112f0611892565b60200260200101906001600160a01b031690816001600160a01b03168152505061133b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a4c565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947836000843061137b4261012c6118d7565b6040518663ffffffff1660e01b815260040161139b959493929190611a21565b600060405180830381600087803b1580156113b557600080fd5b505af11580156113c9573d6000803e3d6000fd5b50506015805460ff1916905550505050565b6001600160a01b0383166114015760405162461bcd60e51b8152600401610802906118ea565b6001600160a01b0382166114275760405162461bcd60e51b81526004016108029061192f565b6001600160a01b038316600090815260208190526040902054818110156114605760405162461bcd60e51b815260040161080290611972565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6015805460ff191660011790556114ff307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a4c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806115466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156115ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115d39190611a92565b50506015805460ff19169055505050565b6000602082840312156115f657600080fd5b813563ffffffff8116811461160a57600080fd5b9392505050565b600060208083528351808285015260005b8181101561163e57858101830151858201604001528201611622565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ef57600080fd5b803561075d8161165f565b6000806040838503121561169257600080fd5b823561169d8161165f565b946020939093013593505050565b6000806000606084860312156116c057600080fd5b83356116cb8161165f565b925060208401356116db8161165f565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561171557600080fd5b823567ffffffffffffffff8082111561172d57600080fd5b818501915085601f83011261174157600080fd5b813581811115611753576117536116ec565b8060051b604051601f19603f83011681018181108582111715611778576117786116ec565b60405291825284820192508381018501918883111561179657600080fd5b938501935b828510156117bb576117ac85611674565b8452938501939285019261179b565b98975050505050505050565b6000602082840312156117d957600080fd5b5035919050565b6000602082840312156117f257600080fd5b813561160a8161165f565b6000806040838503121561181057600080fd5b50508035926020909101359150565b6000806040838503121561183257600080fd5b823561183d8161165f565b9150602083013561184d8161165f565b809150509250929050565b600181811c9082168061186c57607f821691505b60208210810361188c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016118d0576118d06118a8565b5060010190565b8082018082111561068a5761068a6118a8565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561068a5761068a6118a8565b808202811582820484141761068a5761068a6118a8565b6000826119ff57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611a1657600080fd5b815161160a8161165f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a715784516001600160a01b031683529383019391830191600101611a4c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611aa757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200c37f0f4e090db279f7b624b4565c79f766b3111f242ba94b399079769eeeab364736f6c63430008110033

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

000000000000000000000000ef73493b856f42eef680081300fe07fb6dc40f65

-----Decoded View---------------
Arg [0] : _add (address): 0xef73493B856F42eef680081300Fe07fb6dc40F65

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


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.