ETH Price: $3,484.56 (+3.65%)
Gas: 2 Gwei

Token

TrustKekw (KEKW)
 

Overview

Max Total Supply

420,690,000,000,000 KEKW

Holders

170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
amallama.eth
Balance
147,602,914,019.448175249424003639 KEKW

Value
$0.00
0xda01b6fe8e18c93a83ad42a75334a2debd8167af
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:
TrustKekw

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : $KEKWProject.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/**
 * @title TrustKekw
 * @author https://twitter.com/kekwcoinlol
 * @author https://t.me/+1GR0HyRjeQwxZDZh 
 * @author https://kekwcoinlol.com
 */
contract TrustKekw is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    uint256 public taxPercentage = 5;
    address public marketingAddress =
        0xFDE3258547ff6F42eD995EeeDC21871b4Cdd2Af9;

    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("TrustKekw", "KEKW") {
        _mint(msg.sender, _totalSupply);
    }

    function setTax(uint _tax) external onlyOwner {
        require(_tax <= 5);
        taxPercentage = _tax;
    }

    function blacklist(
        address _address,
        bool _isBlacklisting
    ) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(
        bool _limited,
        address _uniswapV2Pair,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _calculateTax(uint256 amount) internal view returns (uint, uint) {
        uint tax = (amount * taxPercentage) / 100;
        uint net = amount - tax;
        return (net, tax);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        if (from != address(this) && to == uniswapV2Pair) {
            (uint net, uint tax) = _calculateTax(amount);
            // Transfer tax
            _transfer(from, marketingAddress, tax);

            super.transferFrom(from, to, net);
        } else {
            super.transferFrom(from, to, amount);
        }

        return true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(
                from == owner() || to == owner(),
                "Trading has not started"
            );
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(
                super.balanceOf(to) + amount <= maxHoldingAmount &&
                    super.balanceOf(to) + amount >= minHoldingAmount,
                "Forbidden"
            );
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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.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;

    /**
     * @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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return 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 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;
            // 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);

        _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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);
            }
        }
    }

    /**
     * @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 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 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);
    }
}

File 4 of 6 : 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 5 of 6 : 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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","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"}]

60806040526005600a5573fde3258547ff6f42ed995eeedc21871b4cdd2af9600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b50604051620030fe380380620030fe833981810160405281019062000091919062000769565b6040518060400160405280600981526020017f54727573744b656b7700000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b454b57000000000000000000000000000000000000000000000000000000008152506200011d620001116200015c60201b60201c565b6200016460201b60201c565b81600490816200012e919062000a0b565b50806005908162000140919062000a0b565b5050506200015533826200022860201b60201c565b5062000d63565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002919062000b53565b60405180910390fd5b620002ae600083836200039660201b60201c565b8060036000828254620002c2919062000ba4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000376919062000bf0565b60405180910390a36200039260008383620006b260201b60201c565b5050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200043b5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200047d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004749062000c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005a057620004e4620006b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000558575062000529620006b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200059a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005919062000ccf565b60405180910390fd5b620006ad565b600660009054906101000a900460ff1680156200060a5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006ac57600754816200062a84620006e060201b620008221760201c565b62000636919062000ba4565b11158015620006695750600854816200065a84620006e060201b620008221760201c565b62000666919062000ba4565b10155b620006ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a29062000d41565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b62000743816200072e565b81146200074f57600080fd5b50565b600081519050620007638162000738565b92915050565b60006020828403121562000782576200078162000729565b5b6000620007928482850162000752565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081d57607f821691505b602082108103620008335762000832620007d5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200089d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200085e565b620008a986836200085e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008ec620008e6620008e0846200072e565b620008c1565b6200072e565b9050919050565b6000819050919050565b6200090883620008cb565b620009206200091782620008f3565b8484546200086b565b825550505050565b600090565b6200093762000928565b62000944818484620008fd565b505050565b5b818110156200096c57620009606000826200092d565b6001810190506200094a565b5050565b601f821115620009bb57620009858162000839565b62000990846200084e565b81016020851015620009a0578190505b620009b8620009af856200084e565b83018262000949565b50505b505050565b600082821c905092915050565b6000620009e060001984600802620009c0565b1980831691505092915050565b6000620009fb8383620009cd565b9150826002028217905092915050565b62000a16826200079b565b67ffffffffffffffff81111562000a325762000a31620007a6565b5b62000a3e825462000804565b62000a4b82828562000970565b600060209050601f83116001811462000a83576000841562000a6e578287015190505b62000a7a8582620009ed565b86555062000aea565b601f19841662000a938662000839565b60005b8281101562000abd5784890151825560018201915060208501945060208101905062000a96565b8683101562000add578489015162000ad9601f891682620009cd565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b3b601f8362000af2565b915062000b488262000b03565b602082019050919050565b6000602082019050818103600083015262000b6e8162000b2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bb1826200072e565b915062000bbe836200072e565b925082820190508082111562000bd95762000bd862000b75565b5b92915050565b62000bea816200072e565b82525050565b600060208201905062000c07600083018462000bdf565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000c45600b8362000af2565b915062000c528262000c0d565b602082019050919050565b6000602082019050818103600083015262000c788162000c36565b9050919050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b600062000cb760178362000af2565b915062000cc48262000c7f565b602082019050919050565b6000602082019050818103600083015262000cea8162000ca8565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b600062000d2960098362000af2565b915062000d368262000cf1565b602082019050919050565b6000602082019050818103600083015262000d5c8162000d1a565b9050919050565b61238b8062000d736000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806349bd5a5e116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461043e578063ae7b6d161461046e578063dd62ed3e1461048c578063f2fde38b146104bc57610173565b806395d89b41146103d2578063a457c2d7146103f0578063a5ece9411461042057610173565b806349bd5a5e1461032057806370a082311461033e578063715018a61461036e578063860a32ec1461037857806389f9a1d3146103965780638da5cb5b146103b457610173565b80632e5bb6ff116101305780632e5bb6ff14610262578063313ce5671461027e578063395093511461029c5780633aa633aa146102cc578063404e5129146102e857806342966c681461030457610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101c657806318160ddd146101f65780631ab99e121461021457806323b872dd14610232575b600080fd5b6101806104d8565b60405161018d91906116ea565b60405180910390f35b6101b060048036038101906101ab91906117a5565b61056a565b6040516101bd9190611800565b60405180910390f35b6101e060048036038101906101db919061181b565b61058d565b6040516101ed9190611800565b60405180910390f35b6101fe6105ad565b60405161020b9190611857565b60405180910390f35b61021c6105b7565b6040516102299190611857565b60405180910390f35b61024c60048036038101906102479190611872565b6105bd565b6040516102599190611800565b60405180910390f35b61027c600480360381019061027791906118c5565b6106b5565b005b6102866106d5565b604051610293919061190e565b60405180910390f35b6102b660048036038101906102b191906117a5565b6106de565b6040516102c39190611800565b60405180910390f35b6102e660048036038101906102e19190611955565b610715565b005b61030260048036038101906102fd91906119bc565b61078c565b005b61031e600480360381019061031991906118c5565b6107ef565b005b6103286107fc565b6040516103359190611a0b565b60405180910390f35b6103586004803603810190610353919061181b565b610822565b6040516103659190611857565b60405180910390f35b61037661086b565b005b61038061087f565b60405161038d9190611800565b60405180910390f35b61039e610892565b6040516103ab9190611857565b60405180910390f35b6103bc610898565b6040516103c99190611a0b565b60405180910390f35b6103da6108c1565b6040516103e791906116ea565b60405180910390f35b61040a600480360381019061040591906117a5565b610953565b6040516104179190611800565b60405180910390f35b6104286109ca565b6040516104359190611a0b565b60405180910390f35b610458600480360381019061045391906117a5565b6109f0565b6040516104659190611800565b60405180910390f35b610476610a13565b6040516104839190611857565b60405180910390f35b6104a660048036038101906104a19190611a26565b610a19565b6040516104b39190611857565b60405180910390f35b6104d660048036038101906104d1919061181b565b610aa0565b005b6060600480546104e790611a95565b80601f016020809104026020016040519081016040528092919081815260200182805461051390611a95565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600080610575610b23565b9050610582818585610b2b565b600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b60003073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156106485750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561069d5760008061065984610cf4565b9150915061068a86600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610d32565b610695868684610fab565b5050506106aa565b6106a8848484610fab565b505b600190509392505050565b6106bd610fda565b60058111156106cb57600080fd5b80600a8190555050565b60006012905090565b6000806106e9610b23565b905061070a8185856106fb8589610a19565b6107059190611af5565b610b2b565b600191505092915050565b61071d610fda565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b610794610fda565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6107f93382611058565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610873610fda565b61087d6000611227565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d090611a95565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90611a95565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b60008061095e610b23565b9050600061096c8286610a19565b9050838110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890611b9b565b60405180910390fd5b6109be8286868403610b2b565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109fb610b23565b9050610a08818585610d32565b600191505092915050565b600a5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aa8610fda565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611c2d565b60405180910390fd5b610b2081611227565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611cbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090611d51565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ce79190611857565b60405180910390a3505050565b60008060006064600a5485610d099190611d71565b610d139190611dfa565b905060008185610d239190611e2b565b90508082935093505050915091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611f63565b60405180910390fd5b610e1b8383836112eb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990611ff5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f929190611857565b60405180910390a3610fa58484846115c9565b50505050565b600080610fb6610b23565b9050610fc38582856115ce565b610fce858585610d32565b60019150509392505050565b610fe2610b23565b73ffffffffffffffffffffffffffffffffffffffff16611000610898565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612061565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906120f3565b60405180910390fd5b6110d3826000836112eb565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612185565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120e9190611857565b60405180910390a3611222836000846115c9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561138f5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906121f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114db5761142c610898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114975750611468610898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061225d565b60405180910390fd5b6115c4565b600660009054906101000a900460ff1680156115445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c3576007548161155684610822565b6115609190611af5565b1115801561158357506008548161157684610822565b6115809190611af5565b10155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906122c9565b60405180910390fd5b5b5b505050565b505050565b60006115da8484610a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116545781811015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90612335565b60405180910390fd5b6116538484848403610b2b565b5b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611694578082015181840152602081019050611679565b60008484015250505050565b6000601f19601f8301169050919050565b60006116bc8261165a565b6116c68185611665565b93506116d6818560208601611676565b6116df816116a0565b840191505092915050565b6000602082019050818103600083015261170481846116b1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061173c82611711565b9050919050565b61174c81611731565b811461175757600080fd5b50565b60008135905061176981611743565b92915050565b6000819050919050565b6117828161176f565b811461178d57600080fd5b50565b60008135905061179f81611779565b92915050565b600080604083850312156117bc576117bb61170c565b5b60006117ca8582860161175a565b92505060206117db85828601611790565b9150509250929050565b60008115159050919050565b6117fa816117e5565b82525050565b600060208201905061181560008301846117f1565b92915050565b6000602082840312156118315761183061170c565b5b600061183f8482850161175a565b91505092915050565b6118518161176f565b82525050565b600060208201905061186c6000830184611848565b92915050565b60008060006060848603121561188b5761188a61170c565b5b60006118998682870161175a565b93505060206118aa8682870161175a565b92505060406118bb86828701611790565b9150509250925092565b6000602082840312156118db576118da61170c565b5b60006118e984828501611790565b91505092915050565b600060ff82169050919050565b611908816118f2565b82525050565b600060208201905061192360008301846118ff565b92915050565b611932816117e5565b811461193d57600080fd5b50565b60008135905061194f81611929565b92915050565b6000806000806080858703121561196f5761196e61170c565b5b600061197d87828801611940565b945050602061198e8782880161175a565b935050604061199f87828801611790565b92505060606119b087828801611790565b91505092959194509250565b600080604083850312156119d3576119d261170c565b5b60006119e18582860161175a565b92505060206119f285828601611940565b9150509250929050565b611a0581611731565b82525050565b6000602082019050611a2060008301846119fc565b92915050565b60008060408385031215611a3d57611a3c61170c565b5b6000611a4b8582860161175a565b9250506020611a5c8582860161175a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aad57607f821691505b602082108103611ac057611abf611a66565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b008261176f565b9150611b0b8361176f565b9250828201905080821115611b2357611b22611ac6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b85602583611665565b9150611b9082611b29565b604082019050919050565b60006020820190508181036000830152611bb481611b78565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c17602683611665565b9150611c2282611bbb565b604082019050919050565b60006020820190508181036000830152611c4681611c0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ca9602483611665565b9150611cb482611c4d565b604082019050919050565b60006020820190508181036000830152611cd881611c9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b602283611665565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b6000611d7c8261176f565b9150611d878361176f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611dc057611dbf611ac6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e058261176f565b9150611e108361176f565b925082611e2057611e1f611dcb565b5b828204905092915050565b6000611e368261176f565b9150611e418361176f565b9250828203905081811115611e5957611e58611ac6565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb602583611665565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d602383611665565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fdf602683611665565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061204b602083611665565b915061205682612015565b602082019050919050565b6000602082019050818103600083015261207a8161203e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120dd602183611665565b91506120e882612081565b604082019050919050565b6000602082019050818103600083015261210c816120d0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061216f602283611665565b915061217a82612113565b604082019050919050565b6000602082019050818103600083015261219e81612162565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006121db600b83611665565b91506121e6826121a5565b602082019050919050565b6000602082019050818103600083015261220a816121ce565b9050919050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b6000612247601783611665565b915061225282612211565b602082019050919050565b600060208201905081810360008301526122768161223a565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b60006122b3600983611665565b91506122be8261227d565b602082019050919050565b600060208201905081810360008301526122e2816122a6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061231f601d83611665565b915061232a826122e9565b602082019050919050565b6000602082019050818103600083015261234e81612312565b905091905056fea26469706673582212209a2d7537560059c324a4c16d94c463ea6c7c6496883cf0b0b1487959dce32f7464736f6c6343000810003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806349bd5a5e116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461043e578063ae7b6d161461046e578063dd62ed3e1461048c578063f2fde38b146104bc57610173565b806395d89b41146103d2578063a457c2d7146103f0578063a5ece9411461042057610173565b806349bd5a5e1461032057806370a082311461033e578063715018a61461036e578063860a32ec1461037857806389f9a1d3146103965780638da5cb5b146103b457610173565b80632e5bb6ff116101305780632e5bb6ff14610262578063313ce5671461027e578063395093511461029c5780633aa633aa146102cc578063404e5129146102e857806342966c681461030457610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101c657806318160ddd146101f65780631ab99e121461021457806323b872dd14610232575b600080fd5b6101806104d8565b60405161018d91906116ea565b60405180910390f35b6101b060048036038101906101ab91906117a5565b61056a565b6040516101bd9190611800565b60405180910390f35b6101e060048036038101906101db919061181b565b61058d565b6040516101ed9190611800565b60405180910390f35b6101fe6105ad565b60405161020b9190611857565b60405180910390f35b61021c6105b7565b6040516102299190611857565b60405180910390f35b61024c60048036038101906102479190611872565b6105bd565b6040516102599190611800565b60405180910390f35b61027c600480360381019061027791906118c5565b6106b5565b005b6102866106d5565b604051610293919061190e565b60405180910390f35b6102b660048036038101906102b191906117a5565b6106de565b6040516102c39190611800565b60405180910390f35b6102e660048036038101906102e19190611955565b610715565b005b61030260048036038101906102fd91906119bc565b61078c565b005b61031e600480360381019061031991906118c5565b6107ef565b005b6103286107fc565b6040516103359190611a0b565b60405180910390f35b6103586004803603810190610353919061181b565b610822565b6040516103659190611857565b60405180910390f35b61037661086b565b005b61038061087f565b60405161038d9190611800565b60405180910390f35b61039e610892565b6040516103ab9190611857565b60405180910390f35b6103bc610898565b6040516103c99190611a0b565b60405180910390f35b6103da6108c1565b6040516103e791906116ea565b60405180910390f35b61040a600480360381019061040591906117a5565b610953565b6040516104179190611800565b60405180910390f35b6104286109ca565b6040516104359190611a0b565b60405180910390f35b610458600480360381019061045391906117a5565b6109f0565b6040516104659190611800565b60405180910390f35b610476610a13565b6040516104839190611857565b60405180910390f35b6104a660048036038101906104a19190611a26565b610a19565b6040516104b39190611857565b60405180910390f35b6104d660048036038101906104d1919061181b565b610aa0565b005b6060600480546104e790611a95565b80601f016020809104026020016040519081016040528092919081815260200182805461051390611a95565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600080610575610b23565b9050610582818585610b2b565b600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b60003073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156106485750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561069d5760008061065984610cf4565b9150915061068a86600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610d32565b610695868684610fab565b5050506106aa565b6106a8848484610fab565b505b600190509392505050565b6106bd610fda565b60058111156106cb57600080fd5b80600a8190555050565b60006012905090565b6000806106e9610b23565b905061070a8185856106fb8589610a19565b6107059190611af5565b610b2b565b600191505092915050565b61071d610fda565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b610794610fda565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6107f93382611058565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610873610fda565b61087d6000611227565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d090611a95565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90611a95565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b60008061095e610b23565b9050600061096c8286610a19565b9050838110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890611b9b565b60405180910390fd5b6109be8286868403610b2b565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109fb610b23565b9050610a08818585610d32565b600191505092915050565b600a5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aa8610fda565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611c2d565b60405180910390fd5b610b2081611227565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611cbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090611d51565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ce79190611857565b60405180910390a3505050565b60008060006064600a5485610d099190611d71565b610d139190611dfa565b905060008185610d239190611e2b565b90508082935093505050915091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611f63565b60405180910390fd5b610e1b8383836112eb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990611ff5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f929190611857565b60405180910390a3610fa58484846115c9565b50505050565b600080610fb6610b23565b9050610fc38582856115ce565b610fce858585610d32565b60019150509392505050565b610fe2610b23565b73ffffffffffffffffffffffffffffffffffffffff16611000610898565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612061565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906120f3565b60405180910390fd5b6110d3826000836112eb565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612185565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120e9190611857565b60405180910390a3611222836000846115c9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561138f5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906121f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114db5761142c610898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114975750611468610898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061225d565b60405180910390fd5b6115c4565b600660009054906101000a900460ff1680156115445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c3576007548161155684610822565b6115609190611af5565b1115801561158357506008548161157684610822565b6115809190611af5565b10155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906122c9565b60405180910390fd5b5b5b505050565b505050565b60006115da8484610a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116545781811015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90612335565b60405180910390fd5b6116538484848403610b2b565b5b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611694578082015181840152602081019050611679565b60008484015250505050565b6000601f19601f8301169050919050565b60006116bc8261165a565b6116c68185611665565b93506116d6818560208601611676565b6116df816116a0565b840191505092915050565b6000602082019050818103600083015261170481846116b1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061173c82611711565b9050919050565b61174c81611731565b811461175757600080fd5b50565b60008135905061176981611743565b92915050565b6000819050919050565b6117828161176f565b811461178d57600080fd5b50565b60008135905061179f81611779565b92915050565b600080604083850312156117bc576117bb61170c565b5b60006117ca8582860161175a565b92505060206117db85828601611790565b9150509250929050565b60008115159050919050565b6117fa816117e5565b82525050565b600060208201905061181560008301846117f1565b92915050565b6000602082840312156118315761183061170c565b5b600061183f8482850161175a565b91505092915050565b6118518161176f565b82525050565b600060208201905061186c6000830184611848565b92915050565b60008060006060848603121561188b5761188a61170c565b5b60006118998682870161175a565b93505060206118aa8682870161175a565b92505060406118bb86828701611790565b9150509250925092565b6000602082840312156118db576118da61170c565b5b60006118e984828501611790565b91505092915050565b600060ff82169050919050565b611908816118f2565b82525050565b600060208201905061192360008301846118ff565b92915050565b611932816117e5565b811461193d57600080fd5b50565b60008135905061194f81611929565b92915050565b6000806000806080858703121561196f5761196e61170c565b5b600061197d87828801611940565b945050602061198e8782880161175a565b935050604061199f87828801611790565b92505060606119b087828801611790565b91505092959194509250565b600080604083850312156119d3576119d261170c565b5b60006119e18582860161175a565b92505060206119f285828601611940565b9150509250929050565b611a0581611731565b82525050565b6000602082019050611a2060008301846119fc565b92915050565b60008060408385031215611a3d57611a3c61170c565b5b6000611a4b8582860161175a565b9250506020611a5c8582860161175a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aad57607f821691505b602082108103611ac057611abf611a66565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b008261176f565b9150611b0b8361176f565b9250828201905080821115611b2357611b22611ac6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b85602583611665565b9150611b9082611b29565b604082019050919050565b60006020820190508181036000830152611bb481611b78565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c17602683611665565b9150611c2282611bbb565b604082019050919050565b60006020820190508181036000830152611c4681611c0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ca9602483611665565b9150611cb482611c4d565b604082019050919050565b60006020820190508181036000830152611cd881611c9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b602283611665565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b6000611d7c8261176f565b9150611d878361176f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611dc057611dbf611ac6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e058261176f565b9150611e108361176f565b925082611e2057611e1f611dcb565b5b828204905092915050565b6000611e368261176f565b9150611e418361176f565b9250828203905081811115611e5957611e58611ac6565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb602583611665565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d602383611665565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fdf602683611665565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061204b602083611665565b915061205682612015565b602082019050919050565b6000602082019050818103600083015261207a8161203e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120dd602183611665565b91506120e882612081565b604082019050919050565b6000602082019050818103600083015261210c816120d0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061216f602283611665565b915061217a82612113565b604082019050919050565b6000602082019050818103600083015261219e81612162565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006121db600b83611665565b91506121e6826121a5565b602082019050919050565b6000602082019050818103600083015261220a816121ce565b9050919050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b6000612247601783611665565b915061225282612211565b602082019050919050565b600060208201905081810360008301526122768161223a565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b60006122b3600983611665565b91506122be8261227d565b602082019050919050565b600060208201905081810360008301526122e2816122a6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061231f601d83611665565b915061232a826122e9565b602082019050919050565b6000602082019050818103600083015261234e81612312565b905091905056fea26469706673582212209a2d7537560059c324a4c16d94c463ea6c7c6496883cf0b0b1487959dce32f7464736f6c63430008100033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


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.