ETH Price: $2,527.78 (+0.66%)

Token

Vision City (VIZ)
 

Overview

Max Total Supply

300,000,000,000 VIZ

Holders

242 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-0.02%)

Onchain Market Cap

$100,121.70

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 9 Decimals)

Balance
500,000,000 VIZ

Value
$166.87 ( ~0.0660143741722272 Eth) [0.1667%]
0x85873285837051E23DE3197AC3183b31e2FB7c42
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The RYOSHIVERSE is committed to empowering developers, projects and the communities within web3. Our mission is to provide a supportive community and innovative tools to projects looking to push the boundaries of what's possible in the world of digital currencies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VisionCity

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-11
*/

// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.19;

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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) {
        this; // silence state mutability warning without generating bytecode - see 
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

contract VisionCity is ERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => bool) private _isExcludedFromFees;

    uint256 public buyTax;
    uint256 private buyDevFee;

    uint256 public sellTax;
    uint256 private sellDevFee;

    address public devWallet; 
    uint256 private tokensForDev;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);

    constructor() ERC20("Vision City", "VIZ") {
        uint256 _buyDevFee = 3;
        uint256 _sellDevFee = 3;

        uint256 totalSupply = 300 * 10**9 * 10**9;

        buyDevFee = _buyDevFee;
        buyTax = buyDevFee;

        sellDevFee = _sellDevFee;
        sellTax = sellDevFee;

        devWallet = address(0x2F240C6C0f8d78e4435655cE7f853510eeeC6FBF);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function setBuyFees(uint256 _devFee) external onlyOwner {
        buyDevFee = _devFee;
        buyTax = buyDevFee;
    }

    function setSellFees(uint256 _devFee) external onlyOwner {
        sellDevFee = _devFee;
        sellTax = sellDevFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = sellDevFee;
        
        if (takeFee) 
        {
            if (fees > 0) 
            {
                fees = amount.mul(sellTax).div(100);
                tokensForDev += (fees * sellDevFee) / sellTax;
            }
            else {
                fees = amount.mul(buyTax).div(100);
                tokensForDev += (fees * buyDevFee) / buyTax;
            }
            if (fees > 0) {
                super._transfer(from, address(devWallet), fees);
            }
            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function withdrawEthFromSc() external onlyOwner () {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
    
    function withdrawTokenFromSc(address _tokenContract, uint256 _amount) external onlyOwner {
        IERC20 tokenContract = IERC20(_tokenContract);
        tokenContract.transfer(msg.sender, _amount);
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"withdrawEthFromSc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokenFromSc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a566973696f6e204369747960a81b815250604051806040016040528060038152602001622b24ad60e91b8152508160039081620000639190620003ba565b506004620000728282620003ba565b5050506200008f620000896200011760201b60201c565b6200011b565b600360088190556007819055600a8190556009819055600b80546001600160a01b031916732f240c6c0f8d78e4435655ce7f853510eeec6fbf17905580681043561a8829300000620000f5620000ed6005546001600160a01b031690565b60016200016d565b620001023060016200016d565b6200010e33826200022c565b505050620004ae565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620002845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001c4565b806002600082825462000298919062000486565b90915550506001600160a01b03821660009081526020819052604081208054839290620002c790849062000486565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034157607f821691505b6020821081036200036257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031157600081815260208120601f850160051c81016020861015620003915750805b601f850160051c820191505b81811015620003b2578281556001016200039d565b505050505050565b81516001600160401b03811115620003d657620003d662000316565b620003ee81620003e784546200032c565b8462000368565b602080601f8311600181146200042657600084156200040d5750858301515b600019600386901b1c1916600185901b178555620003b2565b600085815260208120601f198616915b82811015620004575788860151825594840194600190910190840162000436565b5085821015620004765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004a857634e487b7160e01b600052601160045260246000fd5b92915050565b61121e80620004be6000396000f3fe60806040526004361061014f5760003560e01c80638da5cb5b116100b6578063c02466681161006f578063c0246668146103c9578063cc1776d3146103e9578063dcf7aef3146103ff578063dd62ed3e1461041f578063f2fde38b14610465578063f4504f881461048557600080fd5b80638da5cb5b146103025780638ea5220f1461033457806395927c251461035457806395d89b4114610374578063a457c2d714610389578063a9059cbb146103a957600080fd5b8063313ce56711610108578063313ce5671461022c57806339509351146102485780634f7041a5146102685780634fbee1931461027e57806370a08231146102b7578063715018a6146102ed57600080fd5b806306fdde031461015b578063095ea7b3146101865780630b0157db146101b657806318160ddd146101cd5780631f53ac02146101ec57806323b872dd1461020c57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104a5565b60405161017d9190610ee3565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610f4d565b610537565b604051901515815260200161017d565b3480156101c257600080fd5b506101cb61054e565b005b3480156101d957600080fd5b506002545b60405190815260200161017d565b3480156101f857600080fd5b506101cb610207366004610f77565b6105d0565b34801561021857600080fd5b506101a6610227366004610f92565b610657565b34801561023857600080fd5b506040516009815260200161017d565b34801561025457600080fd5b506101a6610263366004610f4d565b610701565b34801561027457600080fd5b506101de60075481565b34801561028a57600080fd5b506101a6610299366004610f77565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156102c357600080fd5b506101de6102d2366004610f77565b6001600160a01b031660009081526020819052604090205490565b3480156102f957600080fd5b506101cb61073d565b34801561030e57600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161017d565b34801561034057600080fd5b50600b5461031c906001600160a01b031681565b34801561036057600080fd5b506101cb61036f366004610fce565b610773565b34801561038057600080fd5b506101706107a7565b34801561039557600080fd5b506101a66103a4366004610f4d565b6107b6565b3480156103b557600080fd5b506101a66103c4366004610f4d565b61084f565b3480156103d557600080fd5b506101cb6103e4366004610ff5565b61085c565b3480156103f557600080fd5b506101de60095481565b34801561040b57600080fd5b506101cb61041a366004610fce565b6108e5565b34801561042b57600080fd5b506101de61043a36600461102c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561047157600080fd5b506101cb610480366004610f77565b610919565b34801561049157600080fd5b506101cb6104a0366004610f4d565b6109b4565b6060600380546104b49061105f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061105f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610a57565b5060015b92915050565b6005546001600160a01b031633146105815760405162461bcd60e51b815260040161057890611099565b60405180910390fd5b476105946005546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156105cc573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146105fa5760405162461bcd60e51b815260040161057890611099565b600b546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610664848484610b7b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106e95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610578565b6106f68533858403610a57565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105449185906107389086906110e4565b610a57565b6005546001600160a01b031633146107675760405162461bcd60e51b815260040161057890611099565b6107716000610d1e565b565b6005546001600160a01b0316331461079d5760405162461bcd60e51b815260040161057890611099565b600a819055600955565b6060600480546104b49061105f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610578565b6108453385858403610a57565b5060019392505050565b6000610544338484610b7b565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161057890611099565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461090f5760405162461bcd60e51b815260040161057890611099565b6008819055600755565b6005546001600160a01b031633146109435760405162461bcd60e51b815260040161057890611099565b6001600160a01b0381166109a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b6109b181610d1e565b50565b6005546001600160a01b031633146109de5760405162461bcd60e51b815260040161057890611099565b60405163a9059cbb60e01b81523360048201526024810182905282906001600160a01b0382169063a9059cbb906044016020604051808303816000875af1158015610a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5191906110f7565b50505050565b6001600160a01b038316610ab95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610578565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ba15760405162461bcd60e51b815260040161057890611114565b6001600160a01b038216610bc75760405162461bcd60e51b815260040161057890611159565b80600003610be057610bdb83836000610d70565b505050565b6001600160a01b03831660009081526006602052604090205460019060ff1680610c2257506001600160a01b03831660009081526006602052604090205460ff165b15610c2b575060005b600a548115610d0c578015610c9357610c5a6064610c5460095486610ec490919063ffffffff16565b90610ed7565b9050600954600a5482610c6d919061119c565b610c7791906111b3565b600c6000828254610c8891906110e4565b90915550610ce19050565b610cad6064610c5460075486610ec490919063ffffffff16565b905060075460085482610cc0919061119c565b610cca91906111b3565b600c6000828254610cdb91906110e4565b90915550505b8015610cff57600b54610cff9086906001600160a01b031683610d70565b610d0981846111d5565b92505b610d17858585610d70565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d965760405162461bcd60e51b815260040161057890611114565b6001600160a01b038216610dbc5760405162461bcd60e51b815260040161057890611159565b6001600160a01b03831660009081526020819052604090205481811015610e345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610578565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e6b9084906110e4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb791815260200190565b60405180910390a3610a51565b6000610ed0828461119c565b9392505050565b6000610ed082846111b3565b600060208083528351808285015260005b81811015610f1057858101830151858201604001528201610ef4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f4857600080fd5b919050565b60008060408385031215610f6057600080fd5b610f6983610f31565b946020939093013593505050565b600060208284031215610f8957600080fd5b610ed082610f31565b600080600060608486031215610fa757600080fd5b610fb084610f31565b9250610fbe60208501610f31565b9150604084013590509250925092565b600060208284031215610fe057600080fd5b5035919050565b80151581146109b157600080fd5b6000806040838503121561100857600080fd5b61101183610f31565b9150602083013561102181610fe7565b809150509250929050565b6000806040838503121561103f57600080fd5b61104883610f31565b915061105660208401610f31565b90509250929050565b600181811c9082168061107357607f821691505b60208210810361109357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610548576105486110ce565b60006020828403121561110957600080fd5b8151610ed081610fe7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610548576105486110ce565b6000826111d057634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610548576105486110ce56fea26469706673582212202564dc78bb47bca19abad6ad5de5bf370e684fec4a2b32d4809ac2a696cd4fc864736f6c63430008130033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80638da5cb5b116100b6578063c02466681161006f578063c0246668146103c9578063cc1776d3146103e9578063dcf7aef3146103ff578063dd62ed3e1461041f578063f2fde38b14610465578063f4504f881461048557600080fd5b80638da5cb5b146103025780638ea5220f1461033457806395927c251461035457806395d89b4114610374578063a457c2d714610389578063a9059cbb146103a957600080fd5b8063313ce56711610108578063313ce5671461022c57806339509351146102485780634f7041a5146102685780634fbee1931461027e57806370a08231146102b7578063715018a6146102ed57600080fd5b806306fdde031461015b578063095ea7b3146101865780630b0157db146101b657806318160ddd146101cd5780631f53ac02146101ec57806323b872dd1461020c57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104a5565b60405161017d9190610ee3565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610f4d565b610537565b604051901515815260200161017d565b3480156101c257600080fd5b506101cb61054e565b005b3480156101d957600080fd5b506002545b60405190815260200161017d565b3480156101f857600080fd5b506101cb610207366004610f77565b6105d0565b34801561021857600080fd5b506101a6610227366004610f92565b610657565b34801561023857600080fd5b506040516009815260200161017d565b34801561025457600080fd5b506101a6610263366004610f4d565b610701565b34801561027457600080fd5b506101de60075481565b34801561028a57600080fd5b506101a6610299366004610f77565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156102c357600080fd5b506101de6102d2366004610f77565b6001600160a01b031660009081526020819052604090205490565b3480156102f957600080fd5b506101cb61073d565b34801561030e57600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161017d565b34801561034057600080fd5b50600b5461031c906001600160a01b031681565b34801561036057600080fd5b506101cb61036f366004610fce565b610773565b34801561038057600080fd5b506101706107a7565b34801561039557600080fd5b506101a66103a4366004610f4d565b6107b6565b3480156103b557600080fd5b506101a66103c4366004610f4d565b61084f565b3480156103d557600080fd5b506101cb6103e4366004610ff5565b61085c565b3480156103f557600080fd5b506101de60095481565b34801561040b57600080fd5b506101cb61041a366004610fce565b6108e5565b34801561042b57600080fd5b506101de61043a36600461102c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561047157600080fd5b506101cb610480366004610f77565b610919565b34801561049157600080fd5b506101cb6104a0366004610f4d565b6109b4565b6060600380546104b49061105f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061105f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000610544338484610a57565b5060015b92915050565b6005546001600160a01b031633146105815760405162461bcd60e51b815260040161057890611099565b60405180910390fd5b476105946005546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156105cc573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146105fa5760405162461bcd60e51b815260040161057890611099565b600b546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610664848484610b7b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106e95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610578565b6106f68533858403610a57565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105449185906107389086906110e4565b610a57565b6005546001600160a01b031633146107675760405162461bcd60e51b815260040161057890611099565b6107716000610d1e565b565b6005546001600160a01b0316331461079d5760405162461bcd60e51b815260040161057890611099565b600a819055600955565b6060600480546104b49061105f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610578565b6108453385858403610a57565b5060019392505050565b6000610544338484610b7b565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161057890611099565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461090f5760405162461bcd60e51b815260040161057890611099565b6008819055600755565b6005546001600160a01b031633146109435760405162461bcd60e51b815260040161057890611099565b6001600160a01b0381166109a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b6109b181610d1e565b50565b6005546001600160a01b031633146109de5760405162461bcd60e51b815260040161057890611099565b60405163a9059cbb60e01b81523360048201526024810182905282906001600160a01b0382169063a9059cbb906044016020604051808303816000875af1158015610a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5191906110f7565b50505050565b6001600160a01b038316610ab95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610578565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ba15760405162461bcd60e51b815260040161057890611114565b6001600160a01b038216610bc75760405162461bcd60e51b815260040161057890611159565b80600003610be057610bdb83836000610d70565b505050565b6001600160a01b03831660009081526006602052604090205460019060ff1680610c2257506001600160a01b03831660009081526006602052604090205460ff165b15610c2b575060005b600a548115610d0c578015610c9357610c5a6064610c5460095486610ec490919063ffffffff16565b90610ed7565b9050600954600a5482610c6d919061119c565b610c7791906111b3565b600c6000828254610c8891906110e4565b90915550610ce19050565b610cad6064610c5460075486610ec490919063ffffffff16565b905060075460085482610cc0919061119c565b610cca91906111b3565b600c6000828254610cdb91906110e4565b90915550505b8015610cff57600b54610cff9086906001600160a01b031683610d70565b610d0981846111d5565b92505b610d17858585610d70565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d965760405162461bcd60e51b815260040161057890611114565b6001600160a01b038216610dbc5760405162461bcd60e51b815260040161057890611159565b6001600160a01b03831660009081526020819052604090205481811015610e345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610578565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e6b9084906110e4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb791815260200190565b60405180910390a3610a51565b6000610ed0828461119c565b9392505050565b6000610ed082846111b3565b600060208083528351808285015260005b81811015610f1057858101830151858201604001528201610ef4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f4857600080fd5b919050565b60008060408385031215610f6057600080fd5b610f6983610f31565b946020939093013593505050565b600060208284031215610f8957600080fd5b610ed082610f31565b600080600060608486031215610fa757600080fd5b610fb084610f31565b9250610fbe60208501610f31565b9150604084013590509250925092565b600060208284031215610fe057600080fd5b5035919050565b80151581146109b157600080fd5b6000806040838503121561100857600080fd5b61101183610f31565b9150602083013561102181610fe7565b809150509250929050565b6000806040838503121561103f57600080fd5b61104883610f31565b915061105660208401610f31565b90509250929050565b600181811c9082168061107357607f821691505b60208210810361109357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610548576105486110ce565b60006020828403121561110957600080fd5b8151610ed081610fe7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610548576105486110ce565b6000826111d057634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610548576105486110ce56fea26469706673582212202564dc78bb47bca19abad6ad5de5bf370e684fec4a2b32d4809ac2a696cd4fc864736f6c63430008130033

Deployed Bytecode Sourcemap

25231:3365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15271:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17437:169;;;;;;;;;;-1:-1:-1;17437:169:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;17437:169:0;1004:187:1;28218:154:0;;;;;;;;;;;;;:::i;:::-;;16390:108;;;;;;;;;;-1:-1:-1;16478:12:0;;16390:108;;;1342:25:1;;;1330:2;1315:18;16390:108:0;1196:177:1;26735:154:0;;;;;;;;;;-1:-1:-1;26735:154:0;;;;;:::i;:::-;;:::i;18088:492::-;;;;;;;;;;-1:-1:-1;18088:492:0;;;;;:::i;:::-;;:::i;16233:92::-;;;;;;;;;;-1:-1:-1;16233:92:0;;16316:1;2044:36:1;;2032:2;2017:18;16233:92:0;1902:184:1;18989:215:0;;;;;;;;;;-1:-1:-1;18989:215:0;;;;;:::i;:::-;;:::i;25372:21::-;;;;;;;;;;;;;;;;26897:126;;;;;;;;;;-1:-1:-1;26897:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;26987:28:0;26963:4;26987:28;;;:19;:28;;;;;;;;;26897:126;16561:127;;;;;;;;;;-1:-1:-1;16561:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16662:18:0;16635:7;16662:18;;;;;;;;;;;;16561:127;11930:103;;;;;;;;;;;;;:::i;11279:87::-;;;;;;;;;;-1:-1:-1;11352:6:0;;-1:-1:-1;;;;;11352:6:0;11279:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;11279:87:0;2091:203:1;25498:24:0;;;;;;;;;;-1:-1:-1;25498:24:0;;;;-1:-1:-1;;;;;25498:24:0;;;26410:127;;;;;;;;;;-1:-1:-1;26410:127:0;;;;;:::i;:::-;;:::i;15490:104::-;;;;;;;;;;;;;:::i;19707:413::-;;;;;;;;;;-1:-1:-1;19707:413:0;;;;;:::i;:::-;;:::i;16901:175::-;;;;;;;;;;-1:-1:-1;16901:175:0;;;;;:::i;:::-;;:::i;26545:182::-;;;;;;;;;;-1:-1:-1;26545:182:0;;;;;:::i;:::-;;:::i;25434:22::-;;;;;;;;;;;;;;;;26279:123;;;;;;;;;;-1:-1:-1;26279:123:0;;;;;:::i;:::-;;:::i;17139:151::-;;;;;;;;;;-1:-1:-1;17139:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;17255:18:0;;;17228:7;17255:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17139:151;12188:201;;;;;;;;;;-1:-1:-1;12188:201:0;;;;;:::i;:::-;;:::i;28384:207::-;;;;;;;;;;-1:-1:-1;28384:207:0;;;;;:::i;:::-;;:::i;15271:100::-;15325:13;15358:5;15351:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15271:100;:::o;17437:169::-;17520:4;17537:39;10140:10;17560:7;17569:6;17537:8;:39::i;:::-;-1:-1:-1;17594:4:0;17437:169;;;;;:::o;28218:154::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;;;;;;;;;28298:21:::1;28338:7;11352:6:::0;;-1:-1:-1;;;;;11352:6:0;;11279:87;28338:7:::1;-1:-1:-1::0;;;;;28330:25:0::1;:34;28356:7;28330:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28269:103;28218:154::o:0;26735:::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;26839:9:::1;::::0;26811:38:::1;::::0;-1:-1:-1;;;;;26839:9:0;;::::1;::::0;26811:38;::::1;::::0;::::1;::::0;26839:9:::1;::::0;26811:38:::1;26860:9;:21:::0;;-1:-1:-1;;;;;;26860:21:0::1;-1:-1:-1::0;;;;;26860:21:0;;;::::1;::::0;;;::::1;::::0;;26735:154::o;18088:492::-;18228:4;18245:36;18255:6;18263:9;18274:6;18245:9;:36::i;:::-;-1:-1:-1;;;;;18321:19:0;;18294:24;18321:19;;;:11;:19;;;;;;;;10140:10;18321:33;;;;;;;;18373:26;;;;18365:79;;;;-1:-1:-1;;;18365:79:0;;4140:2:1;18365:79:0;;;4122:21:1;4179:2;4159:18;;;4152:30;4218:34;4198:18;;;4191:62;-1:-1:-1;;;4269:18:1;;;4262:38;4317:19;;18365:79:0;3938:404:1;18365:79:0;18480:57;18489:6;10140:10;18530:6;18511:16;:25;18480:8;:57::i;:::-;-1:-1:-1;18568:4:0;;18088:492;-1:-1:-1;;;;18088:492:0:o;18989:215::-;10140:10;19077:4;19126:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19126:34:0;;;;;;;;;;19077:4;;19094:80;;19117:7;;19126:47;;19163:10;;19126:47;:::i;:::-;19094:8;:80::i;11930:103::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;11995:30:::1;12022:1;11995:18;:30::i;:::-;11930:103::o:0;26410:127::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;26478:10:::1;:20:::0;;;26509:7:::1;:20:::0;26410:127::o;15490:104::-;15546:13;15579:7;15572:14;;;;;:::i;19707:413::-;10140:10;19800:4;19844:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19844:34:0;;;;;;;;;;19897:35;;;;19889:85;;;;-1:-1:-1;;;19889:85:0;;4811:2:1;19889:85:0;;;4793:21:1;4850:2;4830:18;;;4823:30;4889:34;4869:18;;;4862:62;-1:-1:-1;;;4940:18:1;;;4933:35;4985:19;;19889:85:0;4609:401:1;19889:85:0;20010:67;10140:10;20033:7;20061:15;20042:16;:34;20010:8;:67::i;:::-;-1:-1:-1;20108:4:0;;19707:413;-1:-1:-1;;;19707:413:0:o;16901:175::-;16987:4;17004:42;10140:10;17028:9;17039:6;17004:9;:42::i;26545:182::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26630:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;26630:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;26685:34;;1144:41:1;;;26685:34:0::1;::::0;1117:18:1;26685:34:0::1;;;;;;;26545:182:::0;;:::o;26279:123::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;26346:9:::1;:19:::0;;;26376:6:::1;:18:::0;26279:123::o;12188:201::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12277:22:0;::::1;12269:73;;;::::0;-1:-1:-1;;;12269:73:0;;5217:2:1;12269:73:0::1;::::0;::::1;5199:21:1::0;5256:2;5236:18;;;5229:30;5295:34;5275:18;;;5268:62;-1:-1:-1;;;5346:18:1;;;5339:36;5392:19;;12269:73:0::1;5015:402:1::0;12269:73:0::1;12353:28;12372:8;12353:18;:28::i;:::-;12188:201:::0;:::o;28384:207::-;11352:6;;-1:-1:-1;;;;;11352:6:0;10140:10;11499:23;11491:68;;;;-1:-1:-1;;;11491:68:0;;;;;;;:::i;:::-;28540:43:::1;::::0;-1:-1:-1;;;28540:43:0;;28563:10:::1;28540:43;::::0;::::1;5596:51:1::0;5663:18;;;5656:34;;;28514:14:0;;-1:-1:-1;;;;;28540:22:0;::::1;::::0;::::1;::::0;5569:18:1;;28540:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28473:118;28384:207:::0;;:::o;23391:380::-;-1:-1:-1;;;;;23527:19:0;;23519:68;;;;-1:-1:-1;;;23519:68:0;;6153:2:1;23519:68:0;;;6135:21:1;6192:2;6172:18;;;6165:30;6231:34;6211:18;;;6204:62;-1:-1:-1;;;6282:18:1;;;6275:34;6326:19;;23519:68:0;5951:400:1;23519:68:0;-1:-1:-1;;;;;23606:21:0;;23598:68;;;;-1:-1:-1;;;23598:68:0;;6558:2:1;23598:68:0;;;6540:21:1;6597:2;6577:18;;;6570:30;6636:34;6616:18;;;6609:62;-1:-1:-1;;;6687:18:1;;;6680:32;6729:19;;23598:68:0;6356:398:1;23598:68:0;-1:-1:-1;;;;;23679:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23731:32;;1342:25:1;;;23731:32:0;;1315:18:1;23731:32:0;;;;;;;23391:380;;;:::o;27031:1179::-;-1:-1:-1;;;;;27129:18:0;;27121:68;;;;-1:-1:-1;;;27121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27208:16:0;;27200:64;;;;-1:-1:-1;;;27200:64:0;;;;;;;:::i;:::-;27281:6;27291:1;27281:11;27277:93;;27309:28;27325:4;27331:2;27335:1;27309:15;:28::i;:::-;27031:1179;;;:::o;27277:93::-;-1:-1:-1;;;;;27503:25:0;;27382:12;27503:25;;;:19;:25;;;;;;27397:4;;27503:25;;;:52;;-1:-1:-1;;;;;;27532:23:0;;;;;;:19;:23;;;;;;;;27503:52;27499:100;;;-1:-1:-1;27582:5:0;27499:100;27626:10;;27657:500;;;;27699:8;;27695:312;;27749:28;27773:3;27749:19;27760:7;;27749:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;27742:35;;27834:7;;27820:10;;27813:4;:17;;;;:::i;:::-;27812:29;;;;:::i;:::-;27796:12;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;27695:312:0;;-1:-1:-1;27695:312:0;;27902:27;27925:3;27902:18;27913:6;;27902;:10;;:18;;;;:::i;:27::-;27895:34;;27985:6;;27972:9;;27965:4;:16;;;;:::i;:::-;27964:27;;;;:::i;:::-;27948:12;;:43;;;;;;;:::i;:::-;;;;-1:-1:-1;;27695:312:0;28025:8;;28021:96;;28084:9;;28054:47;;28070:4;;-1:-1:-1;;;;;28084:9:0;28096:4;28054:15;:47::i;:::-;28131:14;28141:4;28131:14;;:::i;:::-;;;27657:500;28169:33;28185:4;28191:2;28195:6;28169:15;:33::i;:::-;27110:1100;;27031:1179;;;:::o;12549:191::-;12642:6;;;-1:-1:-1;;;;;12659:17:0;;;-1:-1:-1;;;;;;12659:17:0;;;;;;;12692:40;;12642:6;;;12659:17;12642:6;;12692:40;;12623:16;;12692:40;12612:128;12549:191;:::o;20610:733::-;-1:-1:-1;;;;;20750:20:0;;20742:70;;;;-1:-1:-1;;;20742:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20831:23:0;;20823:71;;;;-1:-1:-1;;;20823:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20991:17:0;;20967:21;20991:17;;;;;;;;;;;21027:23;;;;21019:74;;;;-1:-1:-1;;;21019:74:0;;8299:2:1;21019:74:0;;;8281:21:1;8338:2;8318:18;;;8311:30;8377:34;8357:18;;;8350:62;-1:-1:-1;;;8428:18:1;;;8421:36;8474:19;;21019:74:0;8097:402:1;21019:74:0;-1:-1:-1;;;;;21129:17:0;;;:9;:17;;;;;;;;;;;21149:22;;;21129:42;;21193:20;;;;;;;;:30;;21165:6;;21129:9;21193:30;;21165:6;;21193:30;:::i;:::-;;;;;;;;21258:9;-1:-1:-1;;;;;21241:35:0;21250:6;-1:-1:-1;;;;;21241:35:0;;21269:6;21241:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;21241:35:0;;;;;;;;21289:46;27031:1179;6127:98;6185:7;6212:5;6216:1;6212;:5;:::i;:::-;6205:12;6127:98;-1:-1:-1;;;6127:98:0:o;6526:::-;6584:7;6611:5;6615:1;6611;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:186::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1529:29;1548:9;1529:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:118::-;2570:5;2563:13;2556:21;2549:5;2546:32;2536:60;;2592:1;2589;2582:12;2607:315;2672:6;2680;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2772:29;2791:9;2772:29;:::i;:::-;2762:39;;2851:2;2840:9;2836:18;2823:32;2864:28;2886:5;2864:28;:::i;:::-;2911:5;2901:15;;;2607:315;;;;;:::o;2927:260::-;2995:6;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3095:29;3114:9;3095:29;:::i;:::-;3085:39;;3143:38;3177:2;3166:9;3162:18;3143:38;:::i;:::-;3133:48;;2927:260;;;;;:::o;3192:380::-;3271:1;3267:12;;;;3314;;;3335:61;;3389:4;3381:6;3377:17;3367:27;;3335:61;3442:2;3434:6;3431:14;3411:18;3408:38;3405:161;;3488:10;3483:3;3479:20;3476:1;3469:31;3523:4;3520:1;3513:15;3551:4;3548:1;3541:15;3405:161;;3192:380;;;:::o;3577:356::-;3779:2;3761:21;;;3798:18;;;3791:30;3857:34;3852:2;3837:18;;3830:62;3924:2;3909:18;;3577:356::o;4347:127::-;4408:10;4403:3;4399:20;4396:1;4389:31;4439:4;4436:1;4429:15;4463:4;4460:1;4453:15;4479:125;4544:9;;;4565:10;;;4562:36;;;4578:18;;:::i;5701:245::-;5768:6;5821:2;5809:9;5800:7;5796:23;5792:32;5789:52;;;5837:1;5834;5827:12;5789:52;5869:9;5863:16;5888:28;5910:5;5888:28;:::i;6759:401::-;6961:2;6943:21;;;7000:2;6980:18;;;6973:30;7039:34;7034:2;7019:18;;7012:62;-1:-1:-1;;;7105:2:1;7090:18;;7083:35;7150:3;7135:19;;6759:401::o;7165:399::-;7367:2;7349:21;;;7406:2;7386:18;;;7379:30;7445:34;7440:2;7425:18;;7418:62;-1:-1:-1;;;7511:2:1;7496:18;;7489:33;7554:3;7539:19;;7165:399::o;7569:168::-;7642:9;;;7673;;7690:15;;;7684:22;;7670:37;7660:71;;7711:18;;:::i;7742:217::-;7782:1;7808;7798:132;;7852:10;7847:3;7843:20;7840:1;7833:31;7887:4;7884:1;7877:15;7915:4;7912:1;7905:15;7798:132;-1:-1:-1;7944:9:1;;7742:217::o;7964:128::-;8031:9;;;8052:11;;;8049:37;;;8066:18;;:::i

Swarm Source

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