ETH Price: $1,995.12 (+1.10%)
Gas: 0.05 GWei

Token

Mai Stablecoin (MAI)

Overview

Max Total Supply

685,000 MAI

Holders

1,683

Market

Price

$1.00 @ 0.000501 ETH (+0.03%)

Onchain Market Cap

$685,000.00

Circulating Supply Market Cap

$27,569,609.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
e4e4.linea.eth
Balance
0.102363030656166562 MAI

Value
$0.10 ( ~5.01223765791157E-05 ETH) [0.0000%]
0x837049591b24620c62a45437b3862b66fe1889e4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mai Finance is an open source and non-custodial stable protocol for extracting value out of priced assets

Market

Volume (24H):$2,658.65
Market Capitalization:$27,569,609.00
Circulating Supply:27,563,987.00 MAI
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
EditableERC20

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at lineascan.build/ on 2023-08-09
*/

// Sources flattened with hardhat v2.16.0 https://hardhat.org

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

// 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/[email protected]

// 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/[email protected]

// 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/[email protected]

// 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/[email protected]

// 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 contracts/token/ERC20/EditableERC20.sol

pragma solidity ^0.8.0;


contract EditableERC20 is Ownable, ERC20 {
    string public _name;
    string public _symbol;

    event NameChanged(string newName, address by);
    event SymbolChanged(string newName, address by);
    event Mint(address receiver, uint256 amount, address by);

    constructor (string memory _tempName, string memory _tempSymbol) ERC20(_name, _symbol) public {
        _name = _tempName;
        _symbol = _tempSymbol;
    }

    function setName(string memory _newName) public onlyOwner {
        _name = _newName;
        emit NameChanged(_newName, msg.sender);
    }

    function setSymbol(string memory _newSymbol) public onlyOwner {
        _symbol = _newSymbol;
        emit SymbolChanged(_newSymbol, msg.sender);
    }

    function mint(address _receiver, uint256 _amount) public onlyOwner {
        _mint(_receiver, _amount);
        emit Mint(_receiver, _amount, msg.sender);
    }

    function name() public view virtual override returns (string memory){
      return _name;
    }

    function symbol() public view virtual override returns (string memory){
      return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function burnBurned() public {
        address burned = address(1);
        _burn(burned, balanceOf(burned));
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_tempName","type":"string"},{"internalType":"string","name":"_tempSymbol","type":"string"}],"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":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newName","type":"string"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newName","type":"string"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"SymbolChanged","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":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"burnBurned","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":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"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":"string","name":"_newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newSymbol","type":"string"}],"name":"setSymbol","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"}]

60806040523480156200001157600080fd5b506040516200150c3803806200150c8339810160408190526200003491620002d5565b6006805462000043906200033f565b80601f016020809104026020016040519081016040528092919081815260200182805462000071906200033f565b8015620000c25780601f106200009657610100808354040283529160200191620000c2565b820191906000526020600020905b815481529060010190602001808311620000a457829003601f168201915b505050505060078054620000d6906200033f565b80601f016020809104026020016040519081016040528092919081815260200182805462000104906200033f565b8015620001555780601f10620001295761010080835404028352916020019162000155565b820191906000526020600020905b8154815290600101906020018083116200013757829003601f168201915b5050505050620001746200016e620001bc60201b60201c565b620001c0565b6004620001828382620003ce565b506005620001918282620003ce565b5060069150620001a490508382620003ce565b506007620001b38282620003ce565b5050506200049a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023857600080fd5b81516001600160401b038082111562000255576200025562000210565b604051601f8301601f19908116603f0116810190828211818310171562000280576200028062000210565b816040528381526020925086838588010111156200029d57600080fd5b600091505b83821015620002c15785820183015181830184015290820190620002a2565b600093810190920192909252949350505050565b60008060408385031215620002e957600080fd5b82516001600160401b03808211156200030157600080fd5b6200030f8683870162000226565b935060208501519150808211156200032657600080fd5b50620003358582860162000226565b9150509250929050565b600181811c908216806200035457607f821691505b6020821081036200037557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003c957600081815260208120601f850160051c81016020861015620003a45750805b601f850160051c820191505b81811015620003c557828155600101620003b0565b5050505b505050565b81516001600160401b03811115620003ea57620003ea62000210565b6200040281620003fb84546200033f565b846200037b565b602080601f8311600181146200043a5760008415620004215750858301515b600019600386901b1c1916600185901b178555620003c5565b600085815260208120601f198616915b828110156200046b578886015182559484019460019091019084016200044a565b50858210156200048a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61106280620004aa6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063b84c824611610071578063b84c824614610258578063c47f00271461026b578063d28d88521461027e578063dd62ed3e14610286578063f2fde38b1461029957600080fd5b80638da5cb5b1461020757806395d89b4114610222578063a457c2d71461022a578063a9059cbb1461023d578063b09f12661461025057600080fd5b806339509351116100f457806339509351146101a657806340c10f19146101b957806370a08231146101ce578063715018a6146101f7578063730f5240146101ff57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102ac565b6040516101469190610ce8565b60405180910390f35b61016261015d366004610d1e565b61033e565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610d48565b610358565b60405160128152602001610146565b6101626101b4366004610d1e565b61037c565b6101cc6101c7366004610d1e565b61039e565b005b6101766101dc366004610d84565b6001600160a01b031660009081526001602052604090205490565b6101cc6103fc565b6101cc610410565b6000546040516001600160a01b039091168152602001610146565b61013961044c565b610162610238366004610d1e565b61045b565b61016261024b366004610d1e565b6104db565b6101396104e9565b6101cc610266366004610db5565b610577565b6101cc610279366004610db5565b6105c8565b61013961060e565b610176610294366004610e66565b61061b565b6101cc6102a7366004610d84565b610646565b6060600680546102bb90610e99565b80601f01602080910402602001604051908101604052809291908181526020018280546102e790610e99565b80156103345780601f1061030957610100808354040283529160200191610334565b820191906000526020600020905b81548152906001019060200180831161031757829003601f168201915b5050505050905090565b60003361034c8185856106bc565b60019150505b92915050565b6000336103668582856107e1565b61037185858561085b565b506001949350505050565b60003361034c81858561038f838361061b565b6103999190610ed3565b6106bc565b6103a6610a06565b6103b08282610a60565b604080516001600160a01b038416815260208101839052338183015290517fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d9181900360600190a15050565b610404610a06565b61040e6000610b21565b565b6001600081905260208190527fcc69885fda6bcc1a4ace058b4a62bf5e179ea78fd58a1ccd71c22cc9b688792f54610449908290610b71565b50565b6060600780546102bb90610e99565b60003381610469828661061b565b9050838110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61037182868684036106bc565b60003361034c81858561085b565b600780546104f690610e99565b80601f016020809104026020016040519081016040528092919081815260200182805461052290610e99565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b505050505081565b61057f610a06565b600761058b8282610f42565b507f653270c8338e84172b2847363c8c0de7a9bf4a957ee465b74a13aa6897dfa98b81336040516105bd929190611002565b60405180910390a150565b6105d0610a06565b60066105dc8282610f42565b507f1e3652b21ef1bd2c76130610ad0be2b8ab01fbea80964c84c54473bf090dc8a481336040516105bd929190611002565b600680546104f690610e99565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61064e610a06565b6001600160a01b0381166106b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c5565b61044981610b21565b6001600160a01b03831661071e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107ed848461061b565b9050600019811461085557818110156108485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104c5565b61085584848484036106bc565b50505050565b6001600160a01b0383166108bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c5565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c5565b6001600160a01b038316600090815260016020526040902054818110156109995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109f99086815260200190565b60405180910390a3610855565b6000546001600160a01b0316331461040e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6001600160a01b038216610ab65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c5565b8060036000828254610ac89190610ed3565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610bd15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c5565b6001600160a01b03821660009081526001602052604090205481811015610c455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c5565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d4565b505050565b6000815180845260005b81811015610cc857602081850181015186830182015201610cac565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610cfb6020830184610ca2565b9392505050565b80356001600160a01b0381168114610d1957600080fd5b919050565b60008060408385031215610d3157600080fd5b610d3a83610d02565b946020939093013593505050565b600080600060608486031215610d5d57600080fd5b610d6684610d02565b9250610d7460208501610d02565b9150604084013590509250925092565b600060208284031215610d9657600080fd5b610cfb82610d02565b634e487b7160e01b600052604160045260246000fd5b600060208284031215610dc757600080fd5b813567ffffffffffffffff80821115610ddf57600080fd5b818401915084601f830112610df357600080fd5b813581811115610e0557610e05610d9f565b604051601f8201601f19908116603f01168101908382118183101715610e2d57610e2d610d9f565b81604052828152876020848701011115610e4657600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215610e7957600080fd5b610e8283610d02565b9150610e9060208401610d02565b90509250929050565b600181811c90821680610ead57607f821691505b602082108103610ecd57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561035257634e487b7160e01b600052601160045260246000fd5b601f821115610c9d57600081815260208120601f850160051c81016020861015610f1b5750805b601f850160051c820191505b81811015610f3a57828155600101610f27565b505050505050565b815167ffffffffffffffff811115610f5c57610f5c610d9f565b610f7081610f6a8454610e99565b84610ef4565b602080601f831160018114610fa55760008415610f8d5750858301515b600019600386901b1c1916600185901b178555610f3a565b600085815260208120601f198616915b82811015610fd457888601518255948401946001909101908401610fb5565b5085821015610ff25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006110156040830185610ca2565b905060018060a01b0383166020830152939250505056fea264697066735822122041c207abe30e090abc03402212cc56272587ec63af16c76e2f1cddde688ea22864736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063b84c824611610071578063b84c824614610258578063c47f00271461026b578063d28d88521461027e578063dd62ed3e14610286578063f2fde38b1461029957600080fd5b80638da5cb5b1461020757806395d89b4114610222578063a457c2d71461022a578063a9059cbb1461023d578063b09f12661461025057600080fd5b806339509351116100f457806339509351146101a657806340c10f19146101b957806370a08231146101ce578063715018a6146101f7578063730f5240146101ff57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102ac565b6040516101469190610ce8565b60405180910390f35b61016261015d366004610d1e565b61033e565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610d48565b610358565b60405160128152602001610146565b6101626101b4366004610d1e565b61037c565b6101cc6101c7366004610d1e565b61039e565b005b6101766101dc366004610d84565b6001600160a01b031660009081526001602052604090205490565b6101cc6103fc565b6101cc610410565b6000546040516001600160a01b039091168152602001610146565b61013961044c565b610162610238366004610d1e565b61045b565b61016261024b366004610d1e565b6104db565b6101396104e9565b6101cc610266366004610db5565b610577565b6101cc610279366004610db5565b6105c8565b61013961060e565b610176610294366004610e66565b61061b565b6101cc6102a7366004610d84565b610646565b6060600680546102bb90610e99565b80601f01602080910402602001604051908101604052809291908181526020018280546102e790610e99565b80156103345780601f1061030957610100808354040283529160200191610334565b820191906000526020600020905b81548152906001019060200180831161031757829003601f168201915b5050505050905090565b60003361034c8185856106bc565b60019150505b92915050565b6000336103668582856107e1565b61037185858561085b565b506001949350505050565b60003361034c81858561038f838361061b565b6103999190610ed3565b6106bc565b6103a6610a06565b6103b08282610a60565b604080516001600160a01b038416815260208101839052338183015290517fbcad3d7d3dfccb90d49c6063bf70f828901fefc88937d90af74e58e6e55bc39d9181900360600190a15050565b610404610a06565b61040e6000610b21565b565b6001600081905260208190527fcc69885fda6bcc1a4ace058b4a62bf5e179ea78fd58a1ccd71c22cc9b688792f54610449908290610b71565b50565b6060600780546102bb90610e99565b60003381610469828661061b565b9050838110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61037182868684036106bc565b60003361034c81858561085b565b600780546104f690610e99565b80601f016020809104026020016040519081016040528092919081815260200182805461052290610e99565b801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b505050505081565b61057f610a06565b600761058b8282610f42565b507f653270c8338e84172b2847363c8c0de7a9bf4a957ee465b74a13aa6897dfa98b81336040516105bd929190611002565b60405180910390a150565b6105d0610a06565b60066105dc8282610f42565b507f1e3652b21ef1bd2c76130610ad0be2b8ab01fbea80964c84c54473bf090dc8a481336040516105bd929190611002565b600680546104f690610e99565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61064e610a06565b6001600160a01b0381166106b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c5565b61044981610b21565b6001600160a01b03831661071e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107ed848461061b565b9050600019811461085557818110156108485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104c5565b61085584848484036106bc565b50505050565b6001600160a01b0383166108bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c5565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c5565b6001600160a01b038316600090815260016020526040902054818110156109995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109f99086815260200190565b60405180910390a3610855565b6000546001600160a01b0316331461040e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6001600160a01b038216610ab65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c5565b8060036000828254610ac89190610ed3565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610bd15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c5565b6001600160a01b03821660009081526001602052604090205481811015610c455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c5565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d4565b505050565b6000815180845260005b81811015610cc857602081850181015186830182015201610cac565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610cfb6020830184610ca2565b9392505050565b80356001600160a01b0381168114610d1957600080fd5b919050565b60008060408385031215610d3157600080fd5b610d3a83610d02565b946020939093013593505050565b600080600060608486031215610d5d57600080fd5b610d6684610d02565b9250610d7460208501610d02565b9150604084013590509250925092565b600060208284031215610d9657600080fd5b610cfb82610d02565b634e487b7160e01b600052604160045260246000fd5b600060208284031215610dc757600080fd5b813567ffffffffffffffff80821115610ddf57600080fd5b818401915084601f830112610df357600080fd5b813581811115610e0557610e05610d9f565b604051601f8201601f19908116603f01168101908382118183101715610e2d57610e2d610d9f565b81604052828152876020848701011115610e4657600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215610e7957600080fd5b610e8283610d02565b9150610e9060208401610d02565b90509250929050565b600181811c90821680610ead57607f821691505b602082108103610ecd57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561035257634e487b7160e01b600052601160045260246000fd5b601f821115610c9d57600081815260208120601f850160051c81016020861015610f1b5750805b601f850160051c820191505b81811015610f3a57828155600101610f27565b505050505050565b815167ffffffffffffffff811115610f5c57610f5c610d9f565b610f7081610f6a8454610e99565b84610ef4565b602080601f831160018114610fa55760008415610f8d5750858301515b600019600386901b1c1916600185901b178555610f3a565b600085815260208120601f198616915b82811015610fd457888601518255948401946001909101908401610fb5565b5085821015610ff25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006110156040830185610ca2565b905060018060a01b0383166020830152939250505056fea264697066735822122041c207abe30e090abc03402212cc56272587ec63af16c76e2f1cddde688ea22864736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tempName (string): Mai Stablecoin
Arg [1] : _tempSymbol (string): MAI

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4d616920537461626c65636f696e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4d41490000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20476:1364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21404:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11761:201;;;;;;:::i;:::-;;:::i;:::-;;;1269:14:1;;1262:22;1244:41;;1232:2;1217:18;11761:201:0;1104:187:1;10530:108:0;10618:12;;10530:108;;;1442:25:1;;;1430:2;1415:18;10530:108:0;1296:177:1;12542:261:0;;;;;;:::i;:::-;;:::i;21618:93::-;;;21701:2;1953:36:1;;1941:2;1926:18;21618:93:0;1811:184:1;13212:238:0;;;;;;:::i;:::-;;:::i;21233:163::-;;;;;;:::i;:::-;;:::i;:::-;;10701:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10802:18:0;10775:7;10802:18;;;:9;:18;;;;;;;10701:127;2842:103;;;:::i;21719:118::-;;;:::i;2201:87::-;2247:7;2274:6;2201:87;;-1:-1:-1;;;;;2274:6:0;;;2337:51:1;;2325:2;2310:18;2201:87:0;2191:203:1;21509:101:0;;;:::i;13953:436::-;;;;;;:::i;:::-;;:::i;11034:193::-;;;;;;:::i;:::-;;:::i;20550:21::-;;;:::i;21071:154::-;;;;;;:::i;:::-;;:::i;20921:142::-;;;;;;:::i;:::-;;:::i;20524:19::-;;;:::i;11290:151::-;;;;;;:::i;:::-;;:::i;3100:201::-;;;;;;:::i;:::-;;:::i;21404:97::-;21458:13;21488:5;21481:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21404:97;:::o;11761:201::-;11844:4;828:10;11900:32;828:10;11916:7;11925:6;11900:8;:32::i;:::-;11950:4;11943:11;;;11761:201;;;;;:::o;12542:261::-;12639:4;828:10;12697:38;12713:4;828:10;12728:6;12697:15;:38::i;:::-;12746:27;12756:4;12762:2;12766:6;12746:9;:27::i;:::-;-1:-1:-1;12791:4:0;;12542:261;-1:-1:-1;;;;12542:261:0:o;13212:238::-;13300:4;828:10;13356:64;828:10;13372:7;13409:10;13381:25;828:10;13372:7;13381:9;:25::i;:::-;:38;;;;:::i;:::-;13356:8;:64::i;21233:163::-;2087:13;:11;:13::i;:::-;21311:25:::1;21317:9;21328:7;21311:5;:25::i;:::-;21352:36;::::0;;-1:-1:-1;;;;;4593:15:1;;4575:34;;4640:2;4625:18;;4618:34;;;21377:10:0::1;4668:18:1::0;;;4661:43;21352:36:0;;::::1;::::0;;;;4525:2:1;21352:36:0;;::::1;21233:163:::0;;:::o;2842:103::-;2087:13;:11;:13::i;:::-;2907:30:::1;2934:1;2907:18;:30::i;:::-;2842:103::o:0;21719:118::-;21784:1;10775:7;10802:18;;;;;;;;;21797:32;;21784:1;;21797:5;:32::i;:::-;21748:89;21719:118::o;21509:101::-;21565:13;21595:7;21588:14;;;;;:::i;13953:436::-;14046:4;828:10;14046:4;14129:25;828:10;14146:7;14129:9;:25::i;:::-;14102:52;;14193:15;14173:16;:35;;14165:85;;;;-1:-1:-1;;;14165:85:0;;4917:2:1;14165:85:0;;;4899:21:1;4956:2;4936:18;;;4929:30;4995:34;4975:18;;;4968:62;-1:-1:-1;;;5046:18:1;;;5039:35;5091:19;;14165:85:0;;;;;;;;;14286:60;14295:5;14302:7;14330:15;14311:16;:34;14286:8;:60::i;11034:193::-;11113:4;828:10;11169:28;828:10;11186:2;11190:6;11169:9;:28::i;20550:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21071:154::-;2087:13;:11;:13::i;:::-;21144:7:::1;:20;21154:10:::0;21144:7;:20:::1;:::i;:::-;;21180:37;21194:10;21206;21180:37;;;;;;;:::i;:::-;;;;;;;;21071:154:::0;:::o;20921:142::-;2087:13;:11;:13::i;:::-;20990:5:::1;:16;20998:8:::0;20990:5;:16:::1;:::i;:::-;;21022:33;21034:8;21044:10;21022:33;;;;;;;:::i;20524:19::-:0;;;;;;;:::i;11290:151::-;-1:-1:-1;;;;;11406:18:0;;;11379:7;11406:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11290:151::o;3100:201::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;3189:22:0;::::1;3181:73;;;::::0;-1:-1:-1;;;3181:73:0;;7849:2:1;3181:73:0::1;::::0;::::1;7831:21:1::0;7888:2;7868:18;;;7861:30;7927:34;7907:18;;;7900:62;-1:-1:-1;;;7978:18:1;;;7971:36;8024:19;;3181:73:0::1;7647:402:1::0;3181:73:0::1;3265:28;3284:8;3265:18;:28::i;17946:346::-:0;-1:-1:-1;;;;;18048:19:0;;18040:68;;;;-1:-1:-1;;;18040:68:0;;8256:2:1;18040:68:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:34;8429:19;;18040:68:0;8054:400:1;18040:68:0;-1:-1:-1;;;;;18127:21:0;;18119:68;;;;-1:-1:-1;;;18119:68:0;;8661:2:1;18119:68:0;;;8643:21:1;8700:2;8680:18;;;8673:30;8739:34;8719:18;;;8712:62;-1:-1:-1;;;8790:18:1;;;8783:32;8832:19;;18119:68:0;8459:398:1;18119:68:0;-1:-1:-1;;;;;18200:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18252:32;;1442:25:1;;;18252:32:0;;1415:18:1;18252:32:0;;;;;;;;17946:346;;;:::o;18583:419::-;18684:24;18711:25;18721:5;18728:7;18711:9;:25::i;:::-;18684:52;;-1:-1:-1;;18751:16:0;:37;18747:248;;18833:6;18813:16;:26;;18805:68;;;;-1:-1:-1;;;18805:68:0;;9064:2:1;18805:68:0;;;9046:21:1;9103:2;9083:18;;;9076:30;9142:31;9122:18;;;9115:59;9191:18;;18805:68:0;8862:353:1;18805:68:0;18917:51;18926:5;18933:7;18961:6;18942:16;:25;18917:8;:51::i;:::-;18673:329;18583:419;;;:::o;14859:806::-;-1:-1:-1;;;;;14956:18:0;;14948:68;;;;-1:-1:-1;;;14948:68:0;;9422:2:1;14948:68:0;;;9404:21:1;9461:2;9441:18;;;9434:30;9500:34;9480:18;;;9473:62;-1:-1:-1;;;9551:18:1;;;9544:35;9596:19;;14948:68:0;9220:401:1;14948:68:0;-1:-1:-1;;;;;15035:16:0;;15027:64;;;;-1:-1:-1;;;15027:64:0;;9828:2:1;15027:64:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:34;9886:18;;;9879:62;-1:-1:-1;;;9957:18:1;;;9950:33;10000:19;;15027:64:0;9626:399:1;15027:64:0;-1:-1:-1;;;;;15177:15:0;;15155:19;15177:15;;;:9;:15;;;;;;15211:21;;;;15203:72;;;;-1:-1:-1;;;15203:72:0;;10232:2:1;15203:72:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310:34;10290:18;;;10283:62;-1:-1:-1;;;10361:18:1;;;10354:36;10407:19;;15203:72:0;10030:402:1;15203:72:0;-1:-1:-1;;;;;15311:15:0;;;;;;;:9;:15;;;;;;15329:20;;;15311:38;;15529:13;;;;;;;;;;:23;;;;;;15581:26;;;;;;15343:6;1442:25:1;;1430:2;1415:18;;1296:177;15581:26:0;;;;;;;;15620:37;16833:675;2366:132;2247:7;2274:6;-1:-1:-1;;;;;2274:6:0;828:10;2430:23;2422:68;;;;-1:-1:-1;;;2422:68:0;;10639:2:1;2422:68:0;;;10621:21:1;;;10658:18;;;10651:30;10717:34;10697:18;;;10690:62;10769:18;;2422:68:0;10437:356:1;15952:548:0;-1:-1:-1;;;;;16036:21:0;;16028:65;;;;-1:-1:-1;;;16028:65:0;;11000:2:1;16028:65:0;;;10982:21:1;11039:2;11019:18;;;11012:30;11078:33;11058:18;;;11051:61;11129:18;;16028:65:0;10798:355:1;16028:65:0;16184:6;16168:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16339:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;16394:37;1442:25:1;;;16394:37:0;;1415:18:1;16394:37:0;;;;;;;15952:548;;:::o;3461:191::-;3535:16;3554:6;;-1:-1:-1;;;;;3571:17:0;;;-1:-1:-1;;;;;;3571:17:0;;;;;;3604:40;;3554:6;;;;;;;3604:40;;3535:16;3604:40;3524:128;3461:191;:::o;16833:675::-;-1:-1:-1;;;;;16917:21:0;;16909:67;;;;-1:-1:-1;;;16909:67:0;;11360:2:1;16909:67:0;;;11342:21:1;11399:2;11379:18;;;11372:30;11438:34;11418:18;;;11411:62;-1:-1:-1;;;11489:18:1;;;11482:31;11530:19;;16909:67:0;11158:397:1;16909:67:0;-1:-1:-1;;;;;17076:18:0;;17051:22;17076:18;;;:9;:18;;;;;;17113:24;;;;17105:71;;;;-1:-1:-1;;;17105:71:0;;11762:2:1;17105:71:0;;;11744:21:1;11801:2;11781:18;;;11774:30;11840:34;11820:18;;;11813:62;-1:-1:-1;;;11891:18:1;;;11884:32;11933:19;;17105:71:0;11560:398:1;17105:71:0;-1:-1:-1;;;;;17212:18:0;;;;;;:9;:18;;;;;;;;17233:23;;;17212:44;;17351:12;:22;;;;;;;17402:37;1442:25:1;;;17212:18:0;;;17402:37;;1415:18:1;17402:37:0;1296:177:1;17452:48:0;16898:610;16833:675;;:::o;14:423:1:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;:::-;603:53;442:220;-1:-1:-1;;;442:220:1:o;667:173::-;735:20;;-1:-1:-1;;;;;784:31:1;;774:42;;764:70;;830:1;827;820:12;764:70;667:173;;;:::o;845:254::-;913:6;921;974:2;962:9;953:7;949:23;945:32;942:52;;;990:1;987;980:12;942:52;1013:29;1032:9;1013:29;:::i;:::-;1003:39;1089:2;1074:18;;;;1061:32;;-1:-1:-1;;;845:254:1:o;1478:328::-;1555:6;1563;1571;1624:2;1612:9;1603:7;1599:23;1595:32;1592:52;;;1640:1;1637;1630:12;1592:52;1663:29;1682:9;1663:29;:::i;:::-;1653:39;;1711:38;1745:2;1734:9;1730:18;1711:38;:::i;:::-;1701:48;;1796:2;1785:9;1781:18;1768:32;1758:42;;1478:328;;;;;:::o;2000:186::-;2059:6;2112:2;2100:9;2091:7;2087:23;2083:32;2080:52;;;2128:1;2125;2118:12;2080:52;2151:29;2170:9;2151:29;:::i;2399:127::-;2460:10;2455:3;2451:20;2448:1;2441:31;2491:4;2488:1;2481:15;2515:4;2512:1;2505:15;2531:922;2600:6;2653:2;2641:9;2632:7;2628:23;2624:32;2621:52;;;2669:1;2666;2659:12;2621:52;2709:9;2696:23;2738:18;2779:2;2771:6;2768:14;2765:34;;;2795:1;2792;2785:12;2765:34;2833:6;2822:9;2818:22;2808:32;;2878:7;2871:4;2867:2;2863:13;2859:27;2849:55;;2900:1;2897;2890:12;2849:55;2936:2;2923:16;2958:2;2954;2951:10;2948:36;;;2964:18;;:::i;:::-;3039:2;3033:9;3007:2;3093:13;;-1:-1:-1;;3089:22:1;;;3113:2;3085:31;3081:40;3069:53;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3258:2;3250:6;3243:18;3298:7;3293:2;3288;3284;3280:11;3276:20;3273:33;3270:53;;;3319:1;3316;3309:12;3270:53;3375:2;3370;3366;3362:11;3357:2;3349:6;3345:15;3332:46;3420:1;3398:15;;;3415:2;3394:24;3387:35;;;;-1:-1:-1;3402:6:1;2531:922;-1:-1:-1;;;;;2531:922:1:o;3458:260::-;3526:6;3534;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;3626:29;3645:9;3626:29;:::i;:::-;3616:39;;3674:38;3708:2;3697:9;3693:18;3674:38;:::i;:::-;3664:48;;3458:260;;;;;:::o;3723:380::-;3802:1;3798:12;;;;3845;;;3866:61;;3920:4;3912:6;3908:17;3898:27;;3866:61;3973:2;3965:6;3962:14;3942:18;3939:38;3936:161;;4019:10;4014:3;4010:20;4007:1;4000:31;4054:4;4051:1;4044:15;4082:4;4079:1;4072:15;3936:161;;3723:380;;;:::o;4108:222::-;4173:9;;;4194:10;;;4191:133;;;4246:10;4241:3;4237:20;4234:1;4227:31;4281:4;4278:1;4271:15;4309:4;4306:1;4299:15;5247:545;5349:2;5344:3;5341:11;5338:448;;;5385:1;5410:5;5406:2;5399:17;5455:4;5451:2;5441:19;5525:2;5513:10;5509:19;5506:1;5502:27;5496:4;5492:38;5561:4;5549:10;5546:20;5543:47;;;-1:-1:-1;5584:4:1;5543:47;5639:2;5634:3;5630:12;5627:1;5623:20;5617:4;5613:31;5603:41;;5694:82;5712:2;5705:5;5702:13;5694:82;;;5757:17;;;5738:1;5727:13;5694:82;;;5698:3;;;5247:545;;;:::o;5968:1352::-;6094:3;6088:10;6121:18;6113:6;6110:30;6107:56;;;6143:18;;:::i;:::-;6172:97;6262:6;6222:38;6254:4;6248:11;6222:38;:::i;:::-;6216:4;6172:97;:::i;:::-;6324:4;;6388:2;6377:14;;6405:1;6400:663;;;;7107:1;7124:6;7121:89;;;-1:-1:-1;7176:19:1;;;7170:26;7121:89;-1:-1:-1;;5925:1:1;5921:11;;;5917:24;5913:29;5903:40;5949:1;5945:11;;;5900:57;7223:81;;6370:944;;6400:663;5194:1;5187:14;;;5231:4;5218:18;;-1:-1:-1;;6436:20:1;;;6554:236;6568:7;6565:1;6562:14;6554:236;;;6657:19;;;6651:26;6636:42;;6749:27;;;;6717:1;6705:14;;;;6584:19;;6554:236;;;6558:3;6818:6;6809:7;6806:19;6803:201;;;6879:19;;;6873:26;-1:-1:-1;;6962:1:1;6958:14;;;6974:3;6954:24;6950:37;6946:42;6931:58;6916:74;;6803:201;-1:-1:-1;;;;;7050:1:1;7034:14;;;7030:22;7017:36;;-1:-1:-1;5968:1352:1:o;7325:317::-;7502:2;7491:9;7484:21;7465:4;7522:45;7563:2;7552:9;7548:18;7540:6;7522:45;:::i;:::-;7514:53;;7632:1;7628;7623:3;7619:11;7615:19;7607:6;7603:32;7598:2;7587:9;7583:18;7576:60;7325:317;;;;;:::o

Swarm Source

ipfs://41c207abe30e090abc03402212cc56272587ec63af16c76e2f1cddde688ea228
[ 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.