ETH Price: $3,967.11 (+1.93%)

Token

ERC-20: Konohagakure (KONOHA)
 

Overview

Max Total Supply

1,000,000,000 KONOHA

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
whatdidibuy.eth
Balance
58,180,876.24109389817785607 KONOHA

Value
$0.00
0xa6C5175C6b64790cdF7D465945E5227Dfb4f4Ba6
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:
Konoha

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-02
*/

/**
Website: https://www.konoha-vip.com/
Twitter: https://twitter.com/KonohaERC
Telegram: https://t.me/konohaentry
Whitepaper: https://whitepaper.konoha-vip.com/
**/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

pragma solidity ^0.8.0;

contract Konoha is Ownable, ERC20 {
    
    // Anti-MEV 
    mapping (address => uint256) private _lastTradeBlock; 
    bool public antiMEV = false; 
    uint256 public blockCooldown = 0; 

    //Anti-Whale
    mapping(address => bool) public blacklists;

    constructor(uint256 _initialSupply) ERC20("Konohagakure", "KONOHA") {
        _mint(msg.sender, _initialSupply);

        //blacklist Jaredfromsubway.eth && his MEV contract prior to launch
        blacklists[0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13] = true;
        blacklists[0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80] = true;
    }

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

    function setBlockCooldown(uint256 _number) external onlyOwner {
        require(_number > 0 && _number <=4, "Block cooldown cannot exceed 4");
        blockCooldown = _number;
    } 

    function toggleAntiMEV(bool _value) external onlyOwner {
        antiMEV = _value;
    }

    function isContract(address wallet) private view returns(bool) {
        uint256 walletSize;
        assembly {
            walletSize := extcodesize(wallet)
        }
        return(walletSize >0);
    }
    
    function isMEV(address _from, address _to) private view returns(address) {
        require(!isContract(_from) || !isContract(_to));
        if (isContract(_to) && isContract(_from)) {
        return _from; 
        }
        else {
            return _to;
            }
    }

    /* 
       isNotPermitted is when _lastTradeBlock != 0, it means the wallet have made a trade
       and if they have made a trade previously, they will undergo a check if whether
       their trade have ended the cooldown and if the cooldown is yet to end
       they are not allowed to trade yet. Hence, to perform a trade we need
       isNotPermitted to equal to false.
    */
    function checkTxFrequency(address wallet) private view {
        bool isNotPermitted = _lastTradeBlock[wallet] != 0 ||
        ((_lastTradeBlock[wallet] + blockCooldown) > (block.number + 1));
        require(!isNotPermitted, "Please wait for your cooldown to be over");
    }


    function _beforeTokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) override internal virtual {
        require(amount > 0, "Transfer amount has to be greater than 0");

        if (sender != owner() && recipient != owner()) {
            require(!blacklists[sender] && !blacklists[recipient], "You are blacklisted");

            if(antiMEV){
                address account = isMEV(sender, recipient);
                checkTxFrequency(account);
                _lastTradeBlock[account] = block.number;
            }
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initialSupply","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":[],"name":"antiMEV","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_isBlacklisted","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":[],"name":"blockCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"_number","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"toggleAntiMEV","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526007805460ff1916905560006008553480156200002057600080fd5b50604051620017823803806200178283398101604081905262000043916200050a565b6040518060400160405280600c81526020016b4b6f6e6f686167616b75726560a01b815250604051806040016040528060068152602001654b4f4e4f484160d01b815250620000a16200009b6200015260201b60201c565b62000156565b6004620000af8382620005c8565b506005620000be8282620005c8565b505050620000d33382620001a660201b60201c565b5060096020527faf6e1eb9989fb6707941aefd27052008b34991f16bf4ca6e1870736a19871b2b8054600160ff199182168117909255736b75d8af000000e20b7a7ddf000ba900b4009a806000527f154bb98efc83b034ad81fbf23cc88c9737739df170c146ea18e8113dac89366580549091169091179055620006b6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000210600083836200029e565b806003600082825462000224919062000694565b90915550506001600160a01b038216600090815260016020526040812080548392906200025390849062000694565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b60008111620003015760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e742068617320746f20626520677265617465604482015267072207468616e20360c41b6064820152608401620001f9565b6000546001600160a01b038481169116148015906200032e57506000546001600160a01b03838116911614155b1562000407576001600160a01b03831660009081526009602052604090205460ff161580156200037757506001600160a01b03821660009081526009602052604090205460ff16155b620003c55760405162461bcd60e51b815260206004820152601360248201527f596f752061726520626c61636b6c6973746564000000000000000000000000006044820152606401620001f9565b60075460ff161562000407576000620003df84846200040c565b9050620003ec816200044e565b6001600160a01b031660009081526006602052604090204390555b505050565b6000823b15806200041c5750813b155b6200042657600080fd5b813b15158015620004375750823b15155b156200044557508162000448565b50805b92915050565b6001600160a01b038116600090815260066020526040812054151580620004a757506200047d43600162000694565b6008546001600160a01b038416600090815260066020526040902054620004a5919062000694565b115b905080156200029a5760405162461bcd60e51b815260206004820152602860248201527f506c65617365207761697420666f7220796f757220636f6f6c646f776e20746f6044820152671031329037bb32b960c11b6064820152608401620001f9565b6000602082840312156200051d57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200054f57607f821691505b6020821081036200057057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040757600081815260208120601f850160051c810160208610156200059f5750805b601f850160051c820191505b81811015620005c057828155600101620005ab565b505050505050565b81516001600160401b03811115620005e457620005e462000524565b620005fc81620005f584546200053a565b8462000576565b602080601f8311600181146200063457600084156200061b5750858301515b600019600386901b1c1916600185901b178555620005c0565b600085815260208120601f198616915b82811015620006655788860151825594840194600190910190840162000644565b5085821015620006845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200044857634e487b7160e01b600052601160045260246000fd5b6110bc80620006c66000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806339509351116100b85780638da5cb5b1161007c5780638da5cb5b1461027c57806395d89b4114610297578063a457c2d71461029f578063a9059cbb146102b2578063dd62ed3e146102c5578063f2fde38b146102fe57600080fd5b80633950935114610212578063404e51291461022557806342966c681461023857806370a082311461024b578063715018a61461027457600080fd5b806316c02129116100ff57806316c02129146101b257806318160ddd146101d557806323b872dd146101e75780632947c419146101fa578063313ce5671461020357600080fd5b806306fdde031461013c578063095ea7b31461015a57806309fb56391461017d57806313c72aed1461019257806315b5bade146101a5575b600080fd5b610144610311565b6040516101519190610e48565b60405180910390f35b61016d610168366004610eb2565b6103a3565b6040519015158152602001610151565b61019061018b366004610eec565b6103ba565b005b6101906101a0366004610f0e565b610400565b60075461016d9060ff1681565b61016d6101c0366004610f27565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610151565b61016d6101f5366004610f42565b61048c565b6101d960085481565b60405160128152602001610151565b61016d610220366004610eb2565b610536565b610190610233366004610f7e565b610572565b610190610246366004610f0e565b6105c7565b6101d9610259366004610f27565b6001600160a01b031660009081526001602052604090205490565b6101906105d4565b6000546040516001600160a01b039091168152602001610151565b61014461060a565b61016d6102ad366004610eb2565b610619565b61016d6102c0366004610eb2565b6106b2565b6101d96102d3366004610fb1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019061030c366004610f27565b6106bf565b60606004805461032090610fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610fdb565b80156103995780601f1061036e57610100808354040283529160200191610399565b820191906000526020600020905b81548152906001019060200180831161037c57829003601f168201915b5050505050905090565b60006103b0338484610757565b5060015b92915050565b6000546001600160a01b031633146103ed5760405162461bcd60e51b81526004016103e490611015565b60405180910390fd5b6007805460ff1916911515919091179055565b6000546001600160a01b0316331461042a5760405162461bcd60e51b81526004016103e490611015565b60008111801561043b575060048111155b6104875760405162461bcd60e51b815260206004820152601e60248201527f426c6f636b20636f6f6c646f776e2063616e6e6f74206578636565642034000060448201526064016103e4565b600855565b600061049984848461087c565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561051e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103e4565b61052b8533858403610757565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b091859061056d908690611060565b610757565b6000546001600160a01b0316331461059c5760405162461bcd60e51b81526004016103e490611015565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6105d13382610a56565b50565b6000546001600160a01b031633146105fe5760405162461bcd60e51b81526004016103e490611015565b6106086000610bad565b565b60606005805461032090610fdb565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561069b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e4565b6106a83385858403610757565b5060019392505050565b60006103b033848461087c565b6000546001600160a01b031633146106e95760405162461bcd60e51b81526004016103e490611015565b6001600160a01b03811661074e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e4565b6105d181610bad565b6001600160a01b0383166107b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e4565b6001600160a01b03821661081a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e4565b6001600160a01b0382166109425760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e4565b61094d838383610bfd565b6001600160a01b038316600090815260016020526040902054818110156109c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e4565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109fc908490611060565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4891815260200190565b60405180910390a350505050565b6001600160a01b038216610ab65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e4565b610ac282600083610bfd565b6001600160a01b03821660009081526001602052604090205481811015610b365760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e4565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b65908490611073565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161086f565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008111610c5e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e742068617320746f20626520677265617465604482015267072207468616e20360c41b60648201526084016103e4565b6000546001600160a01b03848116911614801590610c8a57506000546001600160a01b03838116911614155b15610ba8576001600160a01b03831660009081526009602052604090205460ff16158015610cd157506001600160a01b03821660009081526009602052604090205460ff16155b610d135760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b60448201526064016103e4565b60075460ff1615610ba8576000610d2a8484610d54565b9050610d3581610d8f565b6001600160a01b03166000908152600660205260409020439055505050565b6000823b1580610d635750813b155b610d6c57600080fd5b813b15158015610d7c5750823b15155b15610d885750816103b4565b50806103b4565b6001600160a01b038116600090815260066020526040812054151580610de35750610dbb436001611060565b6008546001600160a01b038416600090815260066020526040902054610de19190611060565b115b90508015610e445760405162461bcd60e51b815260206004820152602860248201527f506c65617365207761697420666f7220796f757220636f6f6c646f776e20746f6044820152671031329037bb32b960c11b60648201526084016103e4565b5050565b600060208083528351808285015260005b81811015610e7557858101830151858201604001528201610e59565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ead57600080fd5b919050565b60008060408385031215610ec557600080fd5b610ece83610e96565b946020939093013593505050565b80358015158114610ead57600080fd5b600060208284031215610efe57600080fd5b610f0782610edc565b9392505050565b600060208284031215610f2057600080fd5b5035919050565b600060208284031215610f3957600080fd5b610f0782610e96565b600080600060608486031215610f5757600080fd5b610f6084610e96565b9250610f6e60208501610e96565b9150604084013590509250925092565b60008060408385031215610f9157600080fd5b610f9a83610e96565b9150610fa860208401610edc565b90509250929050565b60008060408385031215610fc457600080fd5b610fcd83610e96565b9150610fa860208401610e96565b600181811c90821680610fef57607f821691505b60208210810361100f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b4576103b461104a565b818103818111156103b4576103b461104a56fea26469706673582212200b71d6adbe8b87dd37d4c67095a935e104a0c5334d6bfed83c5ac30674e1999c64736f6c634300081300330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806339509351116100b85780638da5cb5b1161007c5780638da5cb5b1461027c57806395d89b4114610297578063a457c2d71461029f578063a9059cbb146102b2578063dd62ed3e146102c5578063f2fde38b146102fe57600080fd5b80633950935114610212578063404e51291461022557806342966c681461023857806370a082311461024b578063715018a61461027457600080fd5b806316c02129116100ff57806316c02129146101b257806318160ddd146101d557806323b872dd146101e75780632947c419146101fa578063313ce5671461020357600080fd5b806306fdde031461013c578063095ea7b31461015a57806309fb56391461017d57806313c72aed1461019257806315b5bade146101a5575b600080fd5b610144610311565b6040516101519190610e48565b60405180910390f35b61016d610168366004610eb2565b6103a3565b6040519015158152602001610151565b61019061018b366004610eec565b6103ba565b005b6101906101a0366004610f0e565b610400565b60075461016d9060ff1681565b61016d6101c0366004610f27565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610151565b61016d6101f5366004610f42565b61048c565b6101d960085481565b60405160128152602001610151565b61016d610220366004610eb2565b610536565b610190610233366004610f7e565b610572565b610190610246366004610f0e565b6105c7565b6101d9610259366004610f27565b6001600160a01b031660009081526001602052604090205490565b6101906105d4565b6000546040516001600160a01b039091168152602001610151565b61014461060a565b61016d6102ad366004610eb2565b610619565b61016d6102c0366004610eb2565b6106b2565b6101d96102d3366004610fb1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019061030c366004610f27565b6106bf565b60606004805461032090610fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610fdb565b80156103995780601f1061036e57610100808354040283529160200191610399565b820191906000526020600020905b81548152906001019060200180831161037c57829003601f168201915b5050505050905090565b60006103b0338484610757565b5060015b92915050565b6000546001600160a01b031633146103ed5760405162461bcd60e51b81526004016103e490611015565b60405180910390fd5b6007805460ff1916911515919091179055565b6000546001600160a01b0316331461042a5760405162461bcd60e51b81526004016103e490611015565b60008111801561043b575060048111155b6104875760405162461bcd60e51b815260206004820152601e60248201527f426c6f636b20636f6f6c646f776e2063616e6e6f74206578636565642034000060448201526064016103e4565b600855565b600061049984848461087c565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561051e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103e4565b61052b8533858403610757565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b091859061056d908690611060565b610757565b6000546001600160a01b0316331461059c5760405162461bcd60e51b81526004016103e490611015565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6105d13382610a56565b50565b6000546001600160a01b031633146105fe5760405162461bcd60e51b81526004016103e490611015565b6106086000610bad565b565b60606005805461032090610fdb565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561069b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e4565b6106a83385858403610757565b5060019392505050565b60006103b033848461087c565b6000546001600160a01b031633146106e95760405162461bcd60e51b81526004016103e490611015565b6001600160a01b03811661074e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e4565b6105d181610bad565b6001600160a01b0383166107b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e4565b6001600160a01b03821661081a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e4565b6001600160a01b0382166109425760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e4565b61094d838383610bfd565b6001600160a01b038316600090815260016020526040902054818110156109c55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e4565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109fc908490611060565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4891815260200190565b60405180910390a350505050565b6001600160a01b038216610ab65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e4565b610ac282600083610bfd565b6001600160a01b03821660009081526001602052604090205481811015610b365760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e4565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b65908490611073565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161086f565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008111610c5e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e742068617320746f20626520677265617465604482015267072207468616e20360c41b60648201526084016103e4565b6000546001600160a01b03848116911614801590610c8a57506000546001600160a01b03838116911614155b15610ba8576001600160a01b03831660009081526009602052604090205460ff16158015610cd157506001600160a01b03821660009081526009602052604090205460ff16155b610d135760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b60448201526064016103e4565b60075460ff1615610ba8576000610d2a8484610d54565b9050610d3581610d8f565b6001600160a01b03166000908152600660205260409020439055505050565b6000823b1580610d635750813b155b610d6c57600080fd5b813b15158015610d7c5750823b15155b15610d885750816103b4565b50806103b4565b6001600160a01b038116600090815260066020526040812054151580610de35750610dbb436001611060565b6008546001600160a01b038416600090815260066020526040902054610de19190611060565b115b90508015610e445760405162461bcd60e51b815260206004820152602860248201527f506c65617365207761697420666f7220796f757220636f6f6c646f776e20746f6044820152671031329037bb32b960c11b60648201526084016103e4565b5050565b600060208083528351808285015260005b81811015610e7557858101830151858201604001528201610e59565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ead57600080fd5b919050565b60008060408385031215610ec557600080fd5b610ece83610e96565b946020939093013593505050565b80358015158114610ead57600080fd5b600060208284031215610efe57600080fd5b610f0782610edc565b9392505050565b600060208284031215610f2057600080fd5b5035919050565b600060208284031215610f3957600080fd5b610f0782610e96565b600080600060608486031215610f5757600080fd5b610f6084610e96565b9250610f6e60208501610e96565b9150604084013590509250925092565b60008060408385031215610f9157600080fd5b610f9a83610e96565b9150610fa860208401610edc565b90509250929050565b60008060408385031215610fc457600080fd5b610fcd83610e96565b9150610fa860208401610e96565b600181811c90821680610fef57607f821691505b60208210810361100f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b4576103b461104a565b818103818111156103b4576103b461104a56fea26469706673582212200b71d6adbe8b87dd37d4c67095a935e104a0c5334d6bfed83c5ac30674e1999c64736f6c63430008130033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 1000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000


Deployed Bytecode Sourcemap

19350:2933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9362:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11529:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11529:169:0;1004:187:1;20306:90:0;;;;;;:::i;:::-;;:::i;:::-;;20113:184;;;;;;:::i;:::-;;:::i;19475:27::-;;;;;;;;;19570:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10482:108;10570:12;;10482:108;;;2068:25:1;;;2056:2;2041:18;10482:108:0;1922:177:1;12180:492:0;;;;;;:::i;:::-;;:::i;19510:32::-;;;;;;10324:93;;;10407:2;2579:36:1;;2567:2;2552:18;10324:93:0;2437:184:1;13081:215:0;;;;;;:::i;:::-;;:::i;19972:133::-;;;;;;:::i;:::-;;:::i;22199:81::-;;;;;;:::i;:::-;;:::i;10653:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10754:18:0;10727:7;10754:18;;;:9;:18;;;;;;;10653:127;2763:103;;;:::i;2112:87::-;2158:7;2185:6;2112:87;;-1:-1:-1;;;;;2185:6:0;;;3031:51:1;;3019:2;3004:18;2112:87:0;2885:203:1;9581:104:0;;;:::i;13799:413::-;;;;;;:::i;:::-;;:::i;10993:175::-;;;;;;:::i;:::-;;:::i;11231:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11347:18:0;;;11320:7;11347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11231:151;3021:201;;;;;;:::i;:::-;;:::i;9362:100::-;9416:13;9449:5;9442:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9362:100;:::o;11529:169::-;11612:4;11629:39;910:10;11652:7;11661:6;11629:8;:39::i;:::-;-1:-1:-1;11686:4:0;11529:169;;;;;:::o;20306:90::-;2158:7;2185:6;-1:-1:-1;;;;;2185:6:0;910:10;2332:23;2324:68;;;;-1:-1:-1;;;2324:68:0;;;;;;;:::i;:::-;;;;;;;;;20372:7:::1;:16:::0;;-1:-1:-1;;20372:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20306:90::o;20113:184::-;2158:7;2185:6;-1:-1:-1;;;;;2185:6:0;910:10;2332:23;2324:68;;;;-1:-1:-1;;;2324:68:0;;;;;;;:::i;:::-;20204:1:::1;20194:7;:11;:26;;;;;20219:1;20209:7;:11;;20194:26;20186:69;;;::::0;-1:-1:-1;;;20186:69:0;;4306:2:1;20186:69:0::1;::::0;::::1;4288:21:1::0;4345:2;4325:18;;;4318:30;4384:32;4364:18;;;4357:60;4434:18;;20186:69:0::1;4104:354:1::0;20186:69:0::1;20266:13;:23:::0;20113:184::o;12180:492::-;12320:4;12337:36;12347:6;12355:9;12366:6;12337:9;:36::i;:::-;-1:-1:-1;;;;;12413:19:0;;12386:24;12413:19;;;:11;:19;;;;;;;;910:10;12413:33;;;;;;;;12465:26;;;;12457:79;;;;-1:-1:-1;;;12457:79:0;;4665:2:1;12457:79:0;;;4647:21:1;4704:2;4684:18;;;4677:30;4743:34;4723:18;;;4716:62;-1:-1:-1;;;4794:18:1;;;4787:38;4842:19;;12457:79:0;4463:404:1;12457:79:0;12572:57;12581:6;910:10;12622:6;12603:16;:25;12572:8;:57::i;:::-;-1:-1:-1;12660:4:0;;12180:492;-1:-1:-1;;;;12180:492:0:o;13081:215::-;910:10;13169:4;13218:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13218:34:0;;;;;;;;;;13169:4;;13186:80;;13209:7;;13218:47;;13255:10;;13218:47;:::i;:::-;13186:8;:80::i;19972:133::-;2158:7;2185:6;-1:-1:-1;;;;;2185:6:0;910:10;2332:23;2324:68;;;;-1:-1:-1;;;2324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20060:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:37;;-1:-1:-1;;20060:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19972:133::o;22199:81::-;22248:24;22254:10;22266:5;22248;:24::i;:::-;22199:81;:::o;2763:103::-;2158:7;2185:6;-1:-1:-1;;;;;2185:6:0;910:10;2332:23;2324:68;;;;-1:-1:-1;;;2324:68:0;;;;;;;:::i;:::-;2828:30:::1;2855:1;2828:18;:30::i;:::-;2763:103::o:0;9581:104::-;9637:13;9670:7;9663:14;;;;;:::i;13799:413::-;910:10;13892:4;13936:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13936:34:0;;;;;;;;;;13989:35;;;;13981:85;;;;-1:-1:-1;;;13981:85:0;;5336:2:1;13981:85:0;;;5318:21:1;5375:2;5355:18;;;5348:30;5414:34;5394:18;;;5387:62;-1:-1:-1;;;5465:18:1;;;5458:35;5510:19;;13981:85:0;5134:401:1;13981:85:0;14102:67;910:10;14125:7;14153:15;14134:16;:34;14102:8;:67::i;:::-;-1:-1:-1;14200:4:0;;13799:413;-1:-1:-1;;;13799:413:0:o;10993:175::-;11079:4;11096:42;910:10;11120:9;11131:6;11096:9;:42::i;3021:201::-;2158:7;2185:6;-1:-1:-1;;;;;2185:6:0;910:10;2332:23;2324:68;;;;-1:-1:-1;;;2324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3110:22:0;::::1;3102:73;;;::::0;-1:-1:-1;;;3102:73:0;;5742:2:1;3102:73:0::1;::::0;::::1;5724:21:1::0;5781:2;5761:18;;;5754:30;5820:34;5800:18;;;5793:62;-1:-1:-1;;;5871:18:1;;;5864:36;5917:19;;3102:73:0::1;5540:402:1::0;3102:73:0::1;3186:28;3205:8;3186:18;:28::i;17483:380::-:0;-1:-1:-1;;;;;17619:19:0;;17611:68;;;;-1:-1:-1;;;17611:68:0;;6149:2:1;17611:68:0;;;6131:21:1;6188:2;6168:18;;;6161:30;6227:34;6207:18;;;6200:62;-1:-1:-1;;;6278:18:1;;;6271:34;6322:19;;17611:68:0;5947:400:1;17611:68:0;-1:-1:-1;;;;;17698:21:0;;17690:68;;;;-1:-1:-1;;;17690:68:0;;6554:2:1;17690:68:0;;;6536:21:1;6593:2;6573:18;;;6566:30;6632:34;6612:18;;;6605:62;-1:-1:-1;;;6683:18:1;;;6676:32;6725:19;;17690:68:0;6352:398:1;17690:68:0;-1:-1:-1;;;;;17771:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17823:32;;2068:25:1;;;17823:32:0;;2041:18:1;17823:32:0;;;;;;;;17483:380;;;:::o;14702:733::-;-1:-1:-1;;;;;14842:20:0;;14834:70;;;;-1:-1:-1;;;14834:70:0;;6957:2:1;14834:70:0;;;6939:21:1;6996:2;6976:18;;;6969:30;7035:34;7015:18;;;7008:62;-1:-1:-1;;;7086:18:1;;;7079:35;7131:19;;14834:70:0;6755:401:1;14834:70:0;-1:-1:-1;;;;;14923:23:0;;14915:71;;;;-1:-1:-1;;;14915:71:0;;7363:2:1;14915:71:0;;;7345:21:1;7402:2;7382:18;;;7375:30;7441:34;7421:18;;;7414:62;-1:-1:-1;;;7492:18:1;;;7485:33;7535:19;;14915:71:0;7161:399:1;14915:71:0;14999:47;15020:6;15028:9;15039:6;14999:20;:47::i;:::-;-1:-1:-1;;;;;15083:17:0;;15059:21;15083:17;;;:9;:17;;;;;;15119:23;;;;15111:74;;;;-1:-1:-1;;;15111:74:0;;7767:2:1;15111:74:0;;;7749:21:1;7806:2;7786:18;;;7779:30;7845:34;7825:18;;;7818:62;-1:-1:-1;;;7896:18:1;;;7889:36;7942:19;;15111:74:0;7565:402:1;15111:74:0;-1:-1:-1;;;;;15221:17:0;;;;;;;:9;:17;;;;;;15241:22;;;15221:42;;15285:20;;;;;;;;:30;;15257:6;;15221:17;15285:30;;15257:6;;15285:30;:::i;:::-;;;;;;;;15350:9;-1:-1:-1;;;;;15333:35:0;15342:6;-1:-1:-1;;;;;15333:35:0;;15361:6;15333:35;;;;2068:25:1;;2056:2;2041:18;;1922:177;15333:35:0;;;;;;;;14823:612;14702:733;;;:::o;16454:591::-;-1:-1:-1;;;;;16538:21:0;;16530:67;;;;-1:-1:-1;;;16530:67:0;;8174:2:1;16530:67:0;;;8156:21:1;8213:2;8193:18;;;8186:30;8252:34;8232:18;;;8225:62;-1:-1:-1;;;8303:18:1;;;8296:31;8344:19;;16530:67:0;7972:397:1;16530:67:0;16610:49;16631:7;16648:1;16652:6;16610:20;:49::i;:::-;-1:-1:-1;;;;;16697:18:0;;16672:22;16697:18;;;:9;:18;;;;;;16734:24;;;;16726:71;;;;-1:-1:-1;;;16726:71:0;;8576:2:1;16726:71:0;;;8558:21:1;8615:2;8595:18;;;8588:30;8654:34;8634:18;;;8627:62;-1:-1:-1;;;8705:18:1;;;8698:32;8747:19;;16726:71:0;8374:398:1;16726:71:0;-1:-1:-1;;;;;16833:18:0;;;;;;:9;:18;;;;;16854:23;;;16833:44;;16899:12;:22;;16871:6;;16833:18;16899:22;;16871:6;;16899:22;:::i;:::-;;;;-1:-1:-1;;16939:37:0;;2068:25:1;;;16965:1:0;;-1:-1:-1;;;;;16939:37:0;;;;;2056:2:1;2041:18;16939:37:0;1922:177:1;16989:48:0;16519:526;16454:591;;:::o;3382:191::-;3456:16;3475:6;;-1:-1:-1;;;;;3492:17:0;;;-1:-1:-1;;;;;;3492:17:0;;;;;;3525:40;;3475:6;;;;;;;3525:40;;3456:16;3525:40;3445:128;3382:191;:::o;21599:592::-;21768:1;21759:6;:10;21751:63;;;;-1:-1:-1;;;21751:63:0;;9112:2:1;21751:63:0;;;9094:21:1;9151:2;9131:18;;;9124:30;9190:34;9170:18;;;9163:62;-1:-1:-1;;;9241:18:1;;;9234:38;9289:19;;21751:63:0;8910:404:1;21751:63:0;2158:7;2185:6;-1:-1:-1;;;;;21831:17:0;;;2185:6;;21831:17;;;;:41;;-1:-1:-1;2158:7:0;2185:6;-1:-1:-1;;;;;21852:20:0;;;2185:6;;21852:20;;21831:41;21827:357;;;-1:-1:-1;;;;;21898:18:0;;;;;;:10;:18;;;;;;;;21897:19;:45;;;;-1:-1:-1;;;;;;21921:21:0;;;;;;:10;:21;;;;;;;;21920:22;21897:45;21889:77;;;;-1:-1:-1;;;21889:77:0;;9521:2:1;21889:77:0;;;9503:21:1;9560:2;9540:18;;;9533:30;-1:-1:-1;;;9579:18:1;;;9572:49;9638:18;;21889:77:0;9319:343:1;21889:77:0;21986:7;;;;21983:190;;;22013:15;22031:24;22037:6;22045:9;22031:5;:24::i;:::-;22013:42;;22074:25;22091:7;22074:16;:25::i;:::-;-1:-1:-1;;;;;22118:24:0;;;;;:15;:24;;;;;22145:12;22118:39;;21599:592;;;:::o;20626:283::-;20690:7;20545:19;;20592:13;;20718:38;;-1:-1:-1;20545:19:0;;20592:13;20718:38;20710:47;;;;;;20545:19;;20592:13;;20772:36;;;;-1:-1:-1;20545:19:0;;20592:13;;20791:17;20768:134;;;-1:-1:-1;20828:5:0;20821:12;;20768:134;-1:-1:-1;20883:3:0;20876:10;;21309:280;-1:-1:-1;;;;;21397:23:0;;21375:19;21397:23;;;:15;:23;;;;;;:28;;;:105;;-1:-1:-1;21484:16:0;:12;21499:1;21484:16;:::i;:::-;21466:13;;-1:-1:-1;;;;;21440:23:0;;;;;;:15;:23;;;;;;:39;;21466:13;21440:39;:::i;:::-;21439:62;21397:105;21375:127;;21522:14;21521:15;21513:68;;;;-1:-1:-1;;;21513:68:0;;9869:2:1;21513:68:0;;;9851:21:1;9908:2;9888:18;;;9881:30;9947:34;9927:18;;;9920:62;-1:-1:-1;;;9998:18:1;;;9991:38;10046:19;;21513:68:0;9667:404:1;21513:68:0;21364:225;21309:280;:::o;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;1196:160::-;1261:20;;1317:13;;1310:21;1300:32;;1290:60;;1346:1;1343;1336:12;1361:180;1417:6;1470:2;1458:9;1449:7;1445:23;1441:32;1438:52;;;1486:1;1483;1476:12;1438:52;1509:26;1525:9;1509:26;:::i;:::-;1499:36;1361:180;-1:-1:-1;;;1361:180:1:o;1546:::-;1605:6;1658:2;1646:9;1637:7;1633:23;1629:32;1626:52;;;1674:1;1671;1664:12;1626:52;-1:-1:-1;1697:23:1;;1546:180;-1:-1:-1;1546:180:1:o;1731:186::-;1790:6;1843:2;1831:9;1822:7;1818:23;1814:32;1811:52;;;1859:1;1856;1849:12;1811:52;1882:29;1901:9;1882:29;:::i;2104:328::-;2181:6;2189;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2337:38;2371:2;2360:9;2356:18;2337:38;:::i;:::-;2327:48;;2422:2;2411:9;2407:18;2394:32;2384:42;;2104:328;;;;;:::o;2626:254::-;2691:6;2699;2752:2;2740:9;2731:7;2727:23;2723:32;2720:52;;;2768:1;2765;2758:12;2720:52;2791:29;2810:9;2791:29;:::i;:::-;2781:39;;2839:35;2870:2;2859:9;2855:18;2839:35;:::i;:::-;2829:45;;2626:254;;;;;:::o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;3743:356::-;3945:2;3927:21;;;3964:18;;;3957:30;4023:34;4018:2;4003:18;;3996:62;4090:2;4075:18;;3743:356::o;4872:127::-;4933:10;4928:3;4924:20;4921:1;4914:31;4964:4;4961:1;4954:15;4988:4;4985:1;4978:15;5004:125;5069:9;;;5090:10;;;5087:36;;;5103:18;;:::i;8777:128::-;8844:9;;;8865:11;;;8862:37;;;8879:18;;:::i

Swarm Source

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