ETH Price: $3,503.80 (+4.09%)
Gas: 2 Gwei

Token

Micro AI (MAI)
 

Overview

Max Total Supply

1,000,000 MAI

Holders

1,295

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
126.439481771295992808 MAI

Value
$0.00
0xd573d186a73c47f51f758ef2584090c8c3062ac5
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:
MicroAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

// File: microai.sol


pragma solidity ^0.8.0;

// This is the official Micro AI Token $MAI: https://www.gomicroai.com



contract MicroAI is ERC20, Ownable {
    uint256 public constant TOTAL_SUPPLY = 1000000 * 10**18; // 1,000,000 MAI with 18 decimal places
    address public feeWallet;
    uint256 public buyFee = 0; // 5%
    uint256 public sellFee = 0; // 5%

    mapping(address => bool) public isExcludedFromFees;

    constructor(address _feeWallet) ERC20("Micro AI", "MAI") {
        require(_feeWallet != address(0), "Invalid fee wallet address");
        feeWallet = _feeWallet;
        _mint(msg.sender, TOTAL_SUPPLY);
        isExcludedFromFees[msg.sender] = true;
        isExcludedFromFees[feeWallet] = true;
    }

    function setFeeWallet(address _newFeeWallet) external onlyOwner {
        require(_newFeeWallet != address(0), "Invalid fee wallet address");
        feeWallet = _newFeeWallet;
        isExcludedFromFees[feeWallet] = true;
    }

    function setBuyFee(uint256 _newBuyFee) external onlyOwner {
        require(_newBuyFee <= 100, "Fee cannot be greater than 100%");
        buyFee = _newBuyFee;
    }

    function setSellFee(uint256 _newSellFee) external onlyOwner {
        require(_newSellFee <= 100, "Fee cannot be greater than 100%");
        sellFee = _newSellFee;
    }

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

    function _transfer(address from, address to, uint256 amount) internal override {
        uint256 feeAmount;
        if(!isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            if(from == address(this)) { // Buying
                feeAmount = (amount * buyFee) / 100;
            } else if(to == address(this)) { // Selling
                feeAmount = (amount * sellFee) / 100;
            }
        }
        uint256 amountAfterFee = amount - feeAmount;
        super._transfer(from, feeWallet, feeAmount);
        super._transfer(from, to, amountAfterFee);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeWallet","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075560006008553480156200001b57600080fd5b50604051620012a3380380620012a38339810160408190526200003e91620002a5565b604051806040016040528060088152602001674d6963726f20414960c01b815250604051806040016040528060038152602001624d414960e81b81525081600390816200008c91906200037b565b5060046200009b82826200037b565b505050620000b8620000b26200018760201b60201c565b6200018b565b6001600160a01b038116620001145760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206665652077616c6c6574206164647265737300000000000060448201526064015b60405180910390fd5b600680546001600160a01b0319166001600160a01b038316179055620001453369d3c21bcecceda1000000620001dd565b50336000908152600960205260408082208054600160ff1991821681179092556006546001600160a01b0316845291909220805490911690911790556200046f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002355760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200010b565b806002600082825462000249919062000447565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600060208284031215620002b857600080fd5b81516001600160a01b0381168114620002d057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030257607f821691505b6020821081036200032357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a057600081815260208120601f850160051c81016020861015620003525750805b601f850160051c820191505b8181101562000373578281556001016200035e565b505050505050565b81516001600160401b03811115620003975762000397620002d7565b620003af81620003a88454620002ed565b8462000329565b602080601f831160018114620003e75760008415620003ce5750858301515b600019600386901b1c1916600185901b17855562000373565b600085815260208120601f198616915b828110156200041857888601518255948401946001909101908401620003f7565b5085821015620004375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200046957634e487b7160e01b600052601160045260246000fd5b92915050565b610e24806200047f6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d7146102b9578063a9059cbb146102cc578063c0246668146102df578063dd62ed3e146102f2578063f25f4b5614610305578063f2fde38b1461031857600080fd5b8063715018a61461024d5780638b4cee08146102555780638da5cb5b14610268578063902d55a51461028d57806390d49b9d1461029e57806395d89b41146102b157600080fd5b80632b14ca56116101155780632b14ca56146101cd578063313ce567146101d657806339509351146101e557806347062402146101f85780634fbee1931461020157806370a082311461022457600080fd5b806306fdde0314610152578063095ea7b3146101705780630cc835a31461019357806318160ddd146101a857806323b872dd146101ba575b600080fd5b61015a61032b565b6040516101679190610bc5565b60405180910390f35b61018361017e366004610c2f565b6103bd565b6040519015158152602001610167565b6101a66101a1366004610c59565b6103d7565b005b6002545b604051908152602001610167565b6101836101c8366004610c72565b61043a565b6101ac60085481565b60405160128152602001610167565b6101836101f3366004610c2f565b61045e565b6101ac60075481565b61018361020f366004610cae565b60096020526000908152604090205460ff1681565b6101ac610232366004610cae565b6001600160a01b031660009081526020819052604090205490565b6101a6610480565b6101a6610263366004610c59565b610494565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b6101ac69d3c21bcecceda100000081565b6101a66102ac366004610cae565b6104f2565b61015a61058a565b6101836102c7366004610c2f565b610599565b6101836102da366004610c2f565b610614565b6101a66102ed366004610cd0565b610622565b6101ac610300366004610d0c565b610655565b600654610275906001600160a01b031681565b6101a6610326366004610cae565b610680565b60606003805461033a90610d3f565b80601f016020809104026020016040519081016040528092919081815260200182805461036690610d3f565b80156103b35780601f10610388576101008083540402835291602001916103b3565b820191906000526020600020905b81548152906001019060200180831161039657829003601f168201915b5050505050905090565b6000336103cb8185856106f9565b60019150505b92915050565b6103df61081d565b60648111156104355760405162461bcd60e51b815260206004820152601f60248201527f4665652063616e6e6f742062652067726561746572207468616e20313030250060448201526064015b60405180910390fd5b600755565b600033610448858285610877565b6104538585856108f1565b506001949350505050565b6000336103cb8185856104718383610655565b61047b9190610d8f565b6106f9565b61048861081d565b61049260006109cf565b565b61049c61081d565b60648111156104ed5760405162461bcd60e51b815260206004820152601f60248201527f4665652063616e6e6f742062652067726561746572207468616e203130302500604482015260640161042c565b600855565b6104fa61081d565b6001600160a01b0381166105505760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206665652077616c6c65742061646472657373000000000000604482015260640161042c565b600680546001600160a01b039092166001600160a01b0319909216821790556000908152600960205260409020805460ff19166001179055565b60606004805461033a90610d3f565b600033816105a78286610655565b9050838110156106075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161042c565b61045382868684036106f9565b6000336103cb8185856108f1565b61062a61081d565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61068861081d565b6001600160a01b0381166106ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042c565b6106f6816109cf565b50565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161042c565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161042c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042c565b60006108838484610655565b905060001981146108eb57818110156108de5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161042c565b6108eb84848484036106f9565b50505050565b6001600160a01b03831660009081526009602052604081205460ff1615801561093357506001600160a01b03831660009081526009602052604090205460ff16155b1561099657306001600160a01b03851603610969576064600754836109589190610da2565b6109629190610db9565b9050610996565b306001600160a01b03841603610996576064600854836109899190610da2565b6109939190610db9565b90505b60006109a28284610ddb565b6006549091506109bd9086906001600160a01b031684610a21565b6109c8858583610a21565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a855760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161042c565b6001600160a01b038216610ae75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161042c565b6001600160a01b03831660009081526020819052604090205481811015610b5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161042c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108eb565b600060208083528351808285015260005b81811015610bf257858101830151858201604001528201610bd6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2a57600080fd5b919050565b60008060408385031215610c4257600080fd5b610c4b83610c13565b946020939093013593505050565b600060208284031215610c6b57600080fd5b5035919050565b600080600060608486031215610c8757600080fd5b610c9084610c13565b9250610c9e60208501610c13565b9150604084013590509250925092565b600060208284031215610cc057600080fd5b610cc982610c13565b9392505050565b60008060408385031215610ce357600080fd5b610cec83610c13565b915060208301358015158114610d0157600080fd5b809150509250929050565b60008060408385031215610d1f57600080fd5b610d2883610c13565b9150610d3660208401610c13565b90509250929050565b600181811c90821680610d5357607f821691505b602082108103610d7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d1576103d1610d79565b80820281158282048414176103d1576103d1610d79565b600082610dd657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103d1576103d1610d7956fea264697066735822122030411feac17f384c847331af1a6470bd52f799858733a9306398812de4e1664b64736f6c6343000812003300000000000000000000000032f12bd2c740b4f1fdb2244f9fd8a2f57ae29479

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d7146102b9578063a9059cbb146102cc578063c0246668146102df578063dd62ed3e146102f2578063f25f4b5614610305578063f2fde38b1461031857600080fd5b8063715018a61461024d5780638b4cee08146102555780638da5cb5b14610268578063902d55a51461028d57806390d49b9d1461029e57806395d89b41146102b157600080fd5b80632b14ca56116101155780632b14ca56146101cd578063313ce567146101d657806339509351146101e557806347062402146101f85780634fbee1931461020157806370a082311461022457600080fd5b806306fdde0314610152578063095ea7b3146101705780630cc835a31461019357806318160ddd146101a857806323b872dd146101ba575b600080fd5b61015a61032b565b6040516101679190610bc5565b60405180910390f35b61018361017e366004610c2f565b6103bd565b6040519015158152602001610167565b6101a66101a1366004610c59565b6103d7565b005b6002545b604051908152602001610167565b6101836101c8366004610c72565b61043a565b6101ac60085481565b60405160128152602001610167565b6101836101f3366004610c2f565b61045e565b6101ac60075481565b61018361020f366004610cae565b60096020526000908152604090205460ff1681565b6101ac610232366004610cae565b6001600160a01b031660009081526020819052604090205490565b6101a6610480565b6101a6610263366004610c59565b610494565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b6101ac69d3c21bcecceda100000081565b6101a66102ac366004610cae565b6104f2565b61015a61058a565b6101836102c7366004610c2f565b610599565b6101836102da366004610c2f565b610614565b6101a66102ed366004610cd0565b610622565b6101ac610300366004610d0c565b610655565b600654610275906001600160a01b031681565b6101a6610326366004610cae565b610680565b60606003805461033a90610d3f565b80601f016020809104026020016040519081016040528092919081815260200182805461036690610d3f565b80156103b35780601f10610388576101008083540402835291602001916103b3565b820191906000526020600020905b81548152906001019060200180831161039657829003601f168201915b5050505050905090565b6000336103cb8185856106f9565b60019150505b92915050565b6103df61081d565b60648111156104355760405162461bcd60e51b815260206004820152601f60248201527f4665652063616e6e6f742062652067726561746572207468616e20313030250060448201526064015b60405180910390fd5b600755565b600033610448858285610877565b6104538585856108f1565b506001949350505050565b6000336103cb8185856104718383610655565b61047b9190610d8f565b6106f9565b61048861081d565b61049260006109cf565b565b61049c61081d565b60648111156104ed5760405162461bcd60e51b815260206004820152601f60248201527f4665652063616e6e6f742062652067726561746572207468616e203130302500604482015260640161042c565b600855565b6104fa61081d565b6001600160a01b0381166105505760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206665652077616c6c65742061646472657373000000000000604482015260640161042c565b600680546001600160a01b039092166001600160a01b0319909216821790556000908152600960205260409020805460ff19166001179055565b60606004805461033a90610d3f565b600033816105a78286610655565b9050838110156106075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161042c565b61045382868684036106f9565b6000336103cb8185856108f1565b61062a61081d565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61068861081d565b6001600160a01b0381166106ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042c565b6106f6816109cf565b50565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161042c565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161042c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042c565b60006108838484610655565b905060001981146108eb57818110156108de5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161042c565b6108eb84848484036106f9565b50505050565b6001600160a01b03831660009081526009602052604081205460ff1615801561093357506001600160a01b03831660009081526009602052604090205460ff16155b1561099657306001600160a01b03851603610969576064600754836109589190610da2565b6109629190610db9565b9050610996565b306001600160a01b03841603610996576064600854836109899190610da2565b6109939190610db9565b90505b60006109a28284610ddb565b6006549091506109bd9086906001600160a01b031684610a21565b6109c8858583610a21565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a855760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161042c565b6001600160a01b038216610ae75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161042c565b6001600160a01b03831660009081526020819052604090205481811015610b5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161042c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108eb565b600060208083528351808285015260005b81811015610bf257858101830151858201604001528201610bd6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2a57600080fd5b919050565b60008060408385031215610c4257600080fd5b610c4b83610c13565b946020939093013593505050565b600060208284031215610c6b57600080fd5b5035919050565b600080600060608486031215610c8757600080fd5b610c9084610c13565b9250610c9e60208501610c13565b9150604084013590509250925092565b600060208284031215610cc057600080fd5b610cc982610c13565b9392505050565b60008060408385031215610ce357600080fd5b610cec83610c13565b915060208301358015158114610d0157600080fd5b809150509250929050565b60008060408385031215610d1f57600080fd5b610d2883610c13565b9150610d3660208401610c13565b90509250929050565b600181811c90821680610d5357607f821691505b602082108103610d7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d1576103d1610d79565b80820281158282048414176103d1576103d1610d79565b600082610dd657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103d1576103d1610d7956fea264697066735822122030411feac17f384c847331af1a6470bd52f799858733a9306398812de4e1664b64736f6c63430008120033

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

00000000000000000000000032f12bd2c740b4f1fdb2244f9fd8a2f57ae29479

-----Decoded View---------------
Arg [0] : _feeWallet (address): 0x32f12Bd2C740B4F1Fdb2244f9FD8A2f57aE29479

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000032f12bd2c740b4f1fdb2244f9fd8a2f57ae29479


Deployed Bytecode Sourcemap

20471:1955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11707:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11707:201:0;1004:187:1;21341:168:0;;;;;;:::i;:::-;;:::i;:::-;;10476:108;10564:12;;10476:108;;;1527:25:1;;;1515:2;1500:18;10476:108:0;1381:177:1;12488:261:0;;;;;;:::i;:::-;;:::i;20684:26::-;;;;;;10318:93;;;10401:2;2038:36:1;;2026:2;2011:18;10318:93:0;1896:184:1;13158:238:0;;;;;;:::i;:::-;;:::i;20646:25::-;;;;;;20725:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10647:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10748:18:0;10721:7;10748:18;;;;;;;;;;;;10647:127;2802:103;;;:::i;21517:173::-;;;;;;:::i;:::-;;:::i;2161:87::-;2234:6;;-1:-1:-1;;;;;2234:6:0;2161:87;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;2161:87:0;2276:203:1;20513:55:0;;20552:16;20513:55;;21101:232;;;;;;:::i;:::-;;:::i;9566:104::-;;;:::i;13899:436::-;;;;;;:::i;:::-;;:::i;10980:193::-;;;;;;:::i;:::-;;:::i;21698:131::-;;;;;;:::i;:::-;;:::i;11236:151::-;;;;;;:::i;:::-;;:::i;20615:24::-;;;;;-1:-1:-1;;;;;20615:24:0;;;3060:201;;;;;;:::i;:::-;;:::i;9347:100::-;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;792:10;11846:32;792:10;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;;:::o;21341:168::-;2047:13;:11;:13::i;:::-;21432:3:::1;21418:10;:17;;21410:61;;;::::0;-1:-1:-1;;;21410:61:0;;3688:2:1;21410:61:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;3766:33;3746:18;;;3739:61;3817:18;;21410:61:0::1;;;;;;;;;21482:6;:19:::0;21341:168::o;12488:261::-;12585:4;792:10;12643:38;12659:4;792:10;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;-1:-1:-1;12737:4:0;;12488:261;-1:-1:-1;;;;12488:261:0:o;13158:238::-;13246:4;792:10;13302:64;792:10;13318:7;13355:10;13327:25;792:10;13318:7;13327:9;:25::i;:::-;:38;;;;:::i;:::-;13302:8;:64::i;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;21517:173::-;2047:13;:11;:13::i;:::-;21611:3:::1;21596:11;:18;;21588:62;;;::::0;-1:-1:-1;;;21588:62:0;;3688:2:1;21588:62:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;3766:33;3746:18;;;3739:61;3817:18;;21588:62:0::1;3486:355:1::0;21588:62:0::1;21661:7;:21:::0;21517:173::o;21101:232::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;21184:27:0;::::1;21176:66;;;::::0;-1:-1:-1;;;21176:66:0;;4310:2:1;21176:66:0::1;::::0;::::1;4292:21:1::0;4349:2;4329:18;;;4322:30;4388:28;4368:18;;;4361:56;4434:18;;21176:66:0::1;4108:350:1::0;21176:66:0::1;21253:9;:25:::0;;-1:-1:-1;;;;;21253:25:0;;::::1;-1:-1:-1::0;;;;;;21253:25:0;;::::1;::::0;::::1;::::0;;:9:::1;21289:29:::0;;;:18:::1;:29;::::0;;;;:36;;-1:-1:-1;;21289:36:0::1;21253:25:::0;21289:36:::1;::::0;;21101:232::o;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;13899:436::-;13992:4;792:10;13992:4;14075:25;792:10;14092:7;14075:9;:25::i;:::-;14048:52;;14139:15;14119:16;:35;;14111:85;;;;-1:-1:-1;;;14111:85:0;;4665:2:1;14111:85:0;;;4647:21:1;4704:2;4684:18;;;4677:30;4743:34;4723:18;;;4716:62;-1:-1:-1;;;4794:18:1;;;4787:35;4839:19;;14111:85:0;4463:401:1;14111:85:0;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;10980:193::-;11059:4;792:10;11115:28;792:10;11132:2;11136:6;11115:9;:28::i;21698:131::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;21783:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;21783:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21698:131::o;11236:151::-;-1:-1:-1;;;;;11352:18:0;;;11325:7;11352:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11236:151::o;3060:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3149:22:0;::::1;3141:73;;;::::0;-1:-1:-1;;;3141:73:0;;5071:2:1;3141:73:0::1;::::0;::::1;5053:21:1::0;5110:2;5090:18;;;5083:30;5149:34;5129:18;;;5122:62;-1:-1:-1;;;5200:18:1;;;5193:36;5246:19;;3141:73:0::1;4869:402:1::0;3141:73:0::1;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;17892:346::-;-1:-1:-1;;;;;17994:19:0;;17986:68;;;;-1:-1:-1;;;17986:68:0;;5478:2:1;17986:68:0;;;5460:21:1;5517:2;5497:18;;;5490:30;5556:34;5536:18;;;5529:62;-1:-1:-1;;;5607:18:1;;;5600:34;5651:19;;17986:68:0;5276:400:1;17986:68:0;-1:-1:-1;;;;;18073:21:0;;18065:68;;;;-1:-1:-1;;;18065:68:0;;5883:2:1;18065:68:0;;;5865:21:1;5922:2;5902:18;;;5895:30;5961:34;5941:18;;;5934:62;-1:-1:-1;;;6012:18:1;;;6005:32;6054:19;;18065:68:0;5681:398:1;18065:68:0;-1:-1:-1;;;;;18146:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18198:32;;1527:25:1;;;18198:32:0;;1500:18:1;18198:32:0;;;;;;;17892:346;;;:::o;2326:132::-;2234:6;;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;6286:2:1;2382:68:0;;;6268:21:1;;;6305:18;;;6298:30;6364:34;6344:18;;;6337:62;6416:18;;2382:68:0;6084:356:1;18529:419:0;18630:24;18657:25;18667:5;18674:7;18657:9;:25::i;:::-;18630:52;;-1:-1:-1;;18697:16:0;:37;18693:248;;18779:6;18759:16;:26;;18751:68;;;;-1:-1:-1;;;18751:68:0;;6647:2:1;18751:68:0;;;6629:21:1;6686:2;6666:18;;;6659:30;6725:31;6705:18;;;6698:59;6774:18;;18751:68:0;6445:353:1;18751:68:0;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;:::-;18619:329;18529:419;;;:::o;21837:586::-;-1:-1:-1;;;;;21959:24:0;;21927:17;21959:24;;;:18;:24;;;;;;;;21958:25;:52;;;;-1:-1:-1;;;;;;21988:22:0;;;;;;:18;:22;;;;;;;;21987:23;21958:52;21955:301;;;22046:4;-1:-1:-1;;;;;22030:21:0;;;22027:218;;22114:3;22104:6;;22095;:15;;;;:::i;:::-;22094:23;;;;:::i;:::-;22082:35;;22027:218;;;22156:4;-1:-1:-1;;;;;22142:19:0;;;22139:106;;22226:3;22215:7;;22206:6;:16;;;;:::i;:::-;22205:24;;;;:::i;:::-;22193:36;;22139:106;22266:22;22291:18;22300:9;22291:6;:18;:::i;:::-;22342:9;;22266:43;;-1:-1:-1;22320:43:0;;22336:4;;-1:-1:-1;;;;;22342:9:0;22353;22320:15;:43::i;:::-;22374:41;22390:4;22396:2;22400:14;22374:15;:41::i;:::-;21916:507;;21837:586;;;:::o;3421:191::-;3514:6;;;-1:-1:-1;;;;;3531:17:0;;;-1:-1:-1;;;;;;3531:17:0;;;;;;;3564:40;;3514:6;;;3531:17;3514:6;;3564:40;;3495:16;;3564:40;3484:128;3421:191;:::o;14805:806::-;-1:-1:-1;;;;;14902:18:0;;14894:68;;;;-1:-1:-1;;;14894:68:0;;7533:2:1;14894:68:0;;;7515:21:1;7572:2;7552:18;;;7545:30;7611:34;7591:18;;;7584:62;-1:-1:-1;;;7662:18:1;;;7655:35;7707:19;;14894:68:0;7331:401:1;14894:68:0;-1:-1:-1;;;;;14981:16:0;;14973:64;;;;-1:-1:-1;;;14973:64:0;;7939:2:1;14973:64:0;;;7921:21:1;7978:2;7958:18;;;7951:30;8017:34;7997:18;;;7990:62;-1:-1:-1;;;8068:18:1;;;8061:33;8111:19;;14973:64:0;7737:399:1;14973:64:0;-1:-1:-1;;;;;15123:15:0;;15101:19;15123:15;;;;;;;;;;;15157:21;;;;15149:72;;;;-1:-1:-1;;;15149:72:0;;8343:2:1;15149:72:0;;;8325:21:1;8382:2;8362:18;;;8355:30;8421:34;8401:18;;;8394:62;-1:-1:-1;;;8472:18:1;;;8465:36;8518:19;;15149:72:0;8141:402:1;15149:72:0;-1:-1:-1;;;;;15257:15:0;;;:9;:15;;;;;;;;;;;15275:20;;;15257:38;;15475:13;;;;;;;;;;:23;;;;;;15527:26;;1527:25:1;;;15475:13:0;;15527:26;;1500:18:1;15527:26:0;;;;;;;15566:37;19548:91;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:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2484:347::-;2549:6;2557;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;:::-;2639:39;;2728:2;2717:9;2713:18;2700:32;2775:5;2768:13;2761:21;2754:5;2751:32;2741:60;;2797:1;2794;2787:12;2741:60;2820:5;2810:15;;;2484:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3846:127::-;3907:10;3902:3;3898:20;3895:1;3888:31;3938:4;3935:1;3928:15;3962:4;3959:1;3952:15;3978:125;4043:9;;;4064:10;;;4061:36;;;4077:18;;:::i;6803:168::-;6876:9;;;6907;;6924:15;;;6918:22;;6904:37;6894:71;;6945:18;;:::i;6976:217::-;7016:1;7042;7032:132;;7086:10;7081:3;7077:20;7074:1;7067:31;7121:4;7118:1;7111:15;7149:4;7146:1;7139:15;7032:132;-1:-1:-1;7178:9:1;;6976:217::o;7198:128::-;7265:9;;;7286:11;;;7283:37;;;7300:18;;:::i

Swarm Source

ipfs://30411feac17f384c847331af1a6470bd52f799858733a9306398812de4e1664b
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.