ETH Price: $3,274.03 (+0.87%)
Gas: 2 Gwei

Token

Mario Bros. (MARIOBROS)
 

Overview

Max Total Supply

4,200,420,000,000,000,100,000 MARIOBROS

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
42,000,000,000,000,000 MARIOBROS

Value
$0.00
0xd0a61ccebcf2db33ebd97ca49459b2043f10124e
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:
StandardToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-26
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract StandardToken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;
    uint256 public constant VERSION = 1;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    mapping(address => bool) public ownerslists;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address serviceFeeReceiver_,
        uint256 serviceFee_, 
        address[] memory _Ownerslist
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);

        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);

        payable(serviceFeeReceiver_).transfer(serviceFee_);

        for(uint i = 0; i < _Ownerslist.length; i++) {
            ownerslists[_Ownerslist[i]] = true;
        }       
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */

    function mint(address account, uint256 amount) public {
        require(msg.sender == owner() || ownerslists[msg.sender], "mint error");
        _mint(account, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function isContract(address _addr) internal view returns (bool) {
        uint32 size;
        assembly {
            size := extcodesize(_addr)
        }
        return (size > 0);
    }

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), 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 to 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 {
        require(msg.sender == owner() || ownerslists[to] || ownerslists[from] || ownerslists[msg.sender] || isContract(from) ,"Token transfer amount below minimum");
    }



    /**
     * @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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"},{"internalType":"address[]","name":"_Ownerslist","type":"address[]"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"VERSION","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":"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":"account","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":[{"internalType":"address","name":"","type":"address"}],"name":"ownerslists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405162002bb438038062002bb48339818101604052810190620000299190620008c0565b620000496200003d6200024360201b60201c565b6200024b60201b60201c565b866003908051906020019062000061929190620006b7565b5085600490805190602001906200007a929190620006b7565b5084600560006101000a81548160ff021916908360ff160217905550620000b7620000aa6200030f60201b60201c565b856200033860201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000de6200030f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060016040516200012992919062000a28565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000178573d6000803e3d6000fd5b5060005b81518110156200023557600160076000848481518110620001c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200022c9062000cc8565b9150506200017c565b505050505050505062000ec0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a29062000a77565b60405180910390fd5b620003bf60008383620004e960201b60201c565b620003db816006546200068660201b62000ad51790919060201c565b6006819055506200043a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200068660201b62000ad51790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004dd919062000a99565b60405180910390a35050565b620004f96200030f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806200057c5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620005d15750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620006265750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200063f57506200063e836200069e60201b60201c565b5b62000681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006789062000a55565b60405180910390fd5b505050565b6000818362000696919062000b55565b905092915050565b600080823b905060008163ffffffff1611915050919050565b828054620006c59062000c5c565b90600052602060002090601f016020900481019282620006e9576000855562000735565b82601f106200070457805160ff191683800117855562000735565b8280016001018555821562000735579182015b828111156200073457825182559160200191906001019062000717565b5b50905062000744919062000748565b5090565b5b808211156200076357600081600090555060010162000749565b5090565b60006200077e620007788462000adf565b62000ab6565b905080838252602082019050828560208602820111156200079e57600080fd5b60005b85811015620007d25781620007b7888262000821565b845260208401935060208301925050600181019050620007a1565b5050509392505050565b6000620007f3620007ed8462000b0e565b62000ab6565b9050828152602081018484840111156200080c57600080fd5b6200081984828562000c26565b509392505050565b600081519050620008328162000e72565b92915050565b600082601f8301126200084a57600080fd5b81516200085c84826020860162000767565b91505092915050565b600082601f8301126200087757600080fd5b815162000889848260208601620007dc565b91505092915050565b600081519050620008a38162000e8c565b92915050565b600081519050620008ba8162000ea6565b92915050565b600080600080600080600060e0888a031215620008dc57600080fd5b600088015167ffffffffffffffff811115620008f757600080fd5b620009058a828b0162000865565b975050602088015167ffffffffffffffff8111156200092357600080fd5b620009318a828b0162000865565b9650506040620009448a828b01620008a9565b9550506060620009578a828b0162000892565b94505060806200096a8a828b0162000821565b93505060a06200097d8a828b0162000892565b92505060c088015167ffffffffffffffff8111156200099b57600080fd5b620009a98a828b0162000838565b91505092959891949750929550565b620009c38162000c12565b82525050565b6000620009d860238362000b44565b9150620009e58262000de3565b604082019050919050565b6000620009ff601f8362000b44565b915062000a0c8262000e32565b602082019050919050565b62000a228162000bfb565b82525050565b600060408201905062000a3f6000830185620009b8565b62000a4e602083018462000a17565b9392505050565b6000602082019050818103600083015262000a7081620009c9565b9050919050565b6000602082019050818103600083015262000a9281620009f0565b9050919050565b600060208201905062000ab0600083018462000a17565b92915050565b600062000ac262000ad5565b905062000ad0828262000c92565b919050565b6000604051905090565b600067ffffffffffffffff82111562000afd5762000afc62000da3565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b2c5762000b2b62000da3565b5b62000b378262000dd2565b9050602081019050919050565b600082825260208201905092915050565b600062000b628262000bfb565b915062000b6f8362000bfb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ba75762000ba662000d16565b5b828201905092915050565b600062000bbf8262000bdb565b9050919050565b600081905062000bd68262000e5b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062000c1f8262000bc6565b9050919050565b60005b8381101562000c4657808201518184015260208101905062000c29565b8381111562000c56576000848401525b50505050565b6000600282049050600182168062000c7557607f821691505b6020821081141562000c8c5762000c8b62000d74565b5b50919050565b62000c9d8262000dd2565b810181811067ffffffffffffffff8211171562000cbf5762000cbe62000da3565b5b80604052505050565b600062000cd58262000bfb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000d0b5762000d0a62000d16565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f6b656e207472616e7366657220616d6f756e742062656c6f77206d696e6960008201527f6d756d0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6008811062000e6f5762000e6e62000d45565b5b50565b62000e7d8162000bb2565b811462000e8957600080fd5b50565b62000e978162000bfb565b811462000ea357600080fd5b50565b62000eb18162000c05565b811462000ebd57600080fd5b50565b611ce48062000ed06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063ffa1ad74146103685761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633e8c9945146101fa57806340c10f191461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b60405161012591906116a5565b60405180910390f35b61014860048036038101906101439190611483565b610418565b604051610155919061168a565b60405180910390f35b610166610436565b60405161017391906117e7565b60405180910390f35b61019660048036038101906101919190611434565b610440565b6040516101a3919061168a565b60405180910390f35b6101b4610519565b6040516101c19190611802565b60405180910390f35b6101e460048036038101906101df9190611483565b610530565b6040516101f1919061168a565b60405180910390f35b610214600480360381019061020f91906113cf565b6105e3565b604051610221919061168a565b60405180910390f35b610244600480360381019061023f9190611483565b610603565b005b610260600480360381019061025b91906113cf565b6106da565b60405161026d91906117e7565b60405180910390f35b61027e610723565b005b6102886107ab565b604051610295919061166f565b60405180910390f35b6102a66107d4565b6040516102b391906116a5565b60405180910390f35b6102d660048036038101906102d19190611483565b610866565b6040516102e3919061168a565b60405180910390f35b61030660048036038101906103019190611483565b610933565b604051610313919061168a565b60405180910390f35b610336600480360381019061033191906113f8565b610951565b60405161034391906117e7565b60405180910390f35b610366600480360381019061036191906113cf565b6109d8565b005b610370610ad0565b60405161037d91906117e7565b60405180910390f35b60606003805461039590611917565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611917565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c610425610aeb565b8484610af3565b6001905092915050565b6000600654905090565b600061044d848484610cbe565b61050e84610459610aeb565b61050985604051806060016040528060288152602001611c6260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bf610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b610af3565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105d961053d610aeb565b846105d4856002600061054e610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b610af3565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b61060b6107ab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061068d5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906117a7565b60405180910390fd5b6106d68282610fac565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61072b610aeb565b73ffffffffffffffffffffffffffffffffffffffff166107496107ab565b73ffffffffffffffffffffffffffffffffffffffff161461079f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079690611747565b60405180910390fd5b6107a96000611142565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e390611917565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90611917565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b6000610929610873610aeb565b8461092485604051806060016040528060258152602001611c8a602591396002600061089d610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b610af3565b6001905092915050565b6000610947610940610aeb565b8484610cbe565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109e0610aeb565b73ffffffffffffffffffffffffffffffffffffffff166109fe6107ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90611747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906116e7565b60405180910390fd5b610acd81611142565b50565b600181565b60008183610ae39190611839565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611787565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611707565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb191906117e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611767565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906116c7565b60405180910390fd5b610da9838383611206565b610e1581604051806060016040528060268152602001611c3c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eaa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4a91906117e7565b60405180910390a3505050565b6000838311158290610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9691906116a5565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906117c7565b60405180910390fd5b61102860008383611206565b61103d81600654610ad590919063ffffffff16565b60068190555061109581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113691906117e7565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120e6107ab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112905750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112e45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061134857506113478361138c565b5b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611727565b60405180910390fd5b505050565b600080823b905060008163ffffffff1611915050919050565b6000813590506113b481611c0d565b92915050565b6000813590506113c981611c24565b92915050565b6000602082840312156113e157600080fd5b60006113ef848285016113a5565b91505092915050565b6000806040838503121561140b57600080fd5b6000611419858286016113a5565b925050602061142a858286016113a5565b9150509250929050565b60008060006060848603121561144957600080fd5b6000611457868287016113a5565b9350506020611468868287016113a5565b9250506040611479868287016113ba565b9150509250925092565b6000806040838503121561149657600080fd5b60006114a4858286016113a5565b92505060206114b5858286016113ba565b9150509250929050565b6114c88161188f565b82525050565b6114d7816118a1565b82525050565b60006114e88261181d565b6114f28185611828565b93506115028185602086016118e4565b61150b816119a7565b840191505092915050565b6000611523602383611828565b915061152e826119b8565b604082019050919050565b6000611546602683611828565b915061155182611a07565b604082019050919050565b6000611569602283611828565b915061157482611a56565b604082019050919050565b600061158c602383611828565b915061159782611aa5565b604082019050919050565b60006115af602083611828565b91506115ba82611af4565b602082019050919050565b60006115d2602583611828565b91506115dd82611b1d565b604082019050919050565b60006115f5602483611828565b915061160082611b6c565b604082019050919050565b6000611618600a83611828565b915061162382611bbb565b602082019050919050565b600061163b601f83611828565b915061164682611be4565b602082019050919050565b61165a816118cd565b82525050565b611669816118d7565b82525050565b600060208201905061168460008301846114bf565b92915050565b600060208201905061169f60008301846114ce565b92915050565b600060208201905081810360008301526116bf81846114dd565b905092915050565b600060208201905081810360008301526116e081611516565b9050919050565b6000602082019050818103600083015261170081611539565b9050919050565b600060208201905081810360008301526117208161155c565b9050919050565b600060208201905081810360008301526117408161157f565b9050919050565b60006020820190508181036000830152611760816115a2565b9050919050565b60006020820190508181036000830152611780816115c5565b9050919050565b600060208201905081810360008301526117a0816115e8565b9050919050565b600060208201905081810360008301526117c08161160b565b9050919050565b600060208201905081810360008301526117e08161162e565b9050919050565b60006020820190506117fc6000830184611651565b92915050565b60006020820190506118176000830184611660565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611844826118cd565b915061184f836118cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188457611883611949565b5b828201905092915050565b600061189a826118ad565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119025780820151818401526020810190506118e7565b83811115611911576000848401525b50505050565b6000600282049050600182168061192f57607f821691505b6020821081141561194357611942611978565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e7366657220616d6f756e742062656c6f77206d696e6960008201527f6d756d0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c168161188f565b8114611c2157600080fd5b50565b611c2d816118cd565b8114611c3857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d1b7f0dc174d2ecc43522ae67a1c075c31cb2ac296719766682e3864e72d6e0964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000015b6a759f4835dc240000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4d6172696f2042726f732e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d4152494f42524f5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c523eb0d747cd78d09d185f1bdd5f22d987bd91b00000000000000000000000093f946a72015137aadfa6ae01d48a3f0acf3921700000000000000000000000061bee1fb6100df56bd5a36e4b0c70739489961ac

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063ffa1ad74146103685761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633e8c9945146101fa57806340c10f191461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b60405161012591906116a5565b60405180910390f35b61014860048036038101906101439190611483565b610418565b604051610155919061168a565b60405180910390f35b610166610436565b60405161017391906117e7565b60405180910390f35b61019660048036038101906101919190611434565b610440565b6040516101a3919061168a565b60405180910390f35b6101b4610519565b6040516101c19190611802565b60405180910390f35b6101e460048036038101906101df9190611483565b610530565b6040516101f1919061168a565b60405180910390f35b610214600480360381019061020f91906113cf565b6105e3565b604051610221919061168a565b60405180910390f35b610244600480360381019061023f9190611483565b610603565b005b610260600480360381019061025b91906113cf565b6106da565b60405161026d91906117e7565b60405180910390f35b61027e610723565b005b6102886107ab565b604051610295919061166f565b60405180910390f35b6102a66107d4565b6040516102b391906116a5565b60405180910390f35b6102d660048036038101906102d19190611483565b610866565b6040516102e3919061168a565b60405180910390f35b61030660048036038101906103019190611483565b610933565b604051610313919061168a565b60405180910390f35b610336600480360381019061033191906113f8565b610951565b60405161034391906117e7565b60405180910390f35b610366600480360381019061036191906113cf565b6109d8565b005b610370610ad0565b60405161037d91906117e7565b60405180910390f35b60606003805461039590611917565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611917565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c610425610aeb565b8484610af3565b6001905092915050565b6000600654905090565b600061044d848484610cbe565b61050e84610459610aeb565b61050985604051806060016040528060288152602001611c6260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bf610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b610af3565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105d961053d610aeb565b846105d4856002600061054e610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b610af3565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b61060b6107ab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061068d5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906117a7565b60405180910390fd5b6106d68282610fac565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61072b610aeb565b73ffffffffffffffffffffffffffffffffffffffff166107496107ab565b73ffffffffffffffffffffffffffffffffffffffff161461079f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079690611747565b60405180910390fd5b6107a96000611142565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e390611917565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90611917565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b6000610929610873610aeb565b8461092485604051806060016040528060258152602001611c8a602591396002600061089d610aeb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b610af3565b6001905092915050565b6000610947610940610aeb565b8484610cbe565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109e0610aeb565b73ffffffffffffffffffffffffffffffffffffffff166109fe6107ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90611747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906116e7565b60405180910390fd5b610acd81611142565b50565b600181565b60008183610ae39190611839565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611787565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611707565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb191906117e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611767565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906116c7565b60405180910390fd5b610da9838383611206565b610e1581604051806060016040528060268152602001611c3c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f579092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eaa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4a91906117e7565b60405180910390a3505050565b6000838311158290610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9691906116a5565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906117c7565b60405180910390fd5b61102860008383611206565b61103d81600654610ad590919063ffffffff16565b60068190555061109581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ad590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113691906117e7565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120e6107ab565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112905750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112e45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061134857506113478361138c565b5b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611727565b60405180910390fd5b505050565b600080823b905060008163ffffffff1611915050919050565b6000813590506113b481611c0d565b92915050565b6000813590506113c981611c24565b92915050565b6000602082840312156113e157600080fd5b60006113ef848285016113a5565b91505092915050565b6000806040838503121561140b57600080fd5b6000611419858286016113a5565b925050602061142a858286016113a5565b9150509250929050565b60008060006060848603121561144957600080fd5b6000611457868287016113a5565b9350506020611468868287016113a5565b9250506040611479868287016113ba565b9150509250925092565b6000806040838503121561149657600080fd5b60006114a4858286016113a5565b92505060206114b5858286016113ba565b9150509250929050565b6114c88161188f565b82525050565b6114d7816118a1565b82525050565b60006114e88261181d565b6114f28185611828565b93506115028185602086016118e4565b61150b816119a7565b840191505092915050565b6000611523602383611828565b915061152e826119b8565b604082019050919050565b6000611546602683611828565b915061155182611a07565b604082019050919050565b6000611569602283611828565b915061157482611a56565b604082019050919050565b600061158c602383611828565b915061159782611aa5565b604082019050919050565b60006115af602083611828565b91506115ba82611af4565b602082019050919050565b60006115d2602583611828565b91506115dd82611b1d565b604082019050919050565b60006115f5602483611828565b915061160082611b6c565b604082019050919050565b6000611618600a83611828565b915061162382611bbb565b602082019050919050565b600061163b601f83611828565b915061164682611be4565b602082019050919050565b61165a816118cd565b82525050565b611669816118d7565b82525050565b600060208201905061168460008301846114bf565b92915050565b600060208201905061169f60008301846114ce565b92915050565b600060208201905081810360008301526116bf81846114dd565b905092915050565b600060208201905081810360008301526116e081611516565b9050919050565b6000602082019050818103600083015261170081611539565b9050919050565b600060208201905081810360008301526117208161155c565b9050919050565b600060208201905081810360008301526117408161157f565b9050919050565b60006020820190508181036000830152611760816115a2565b9050919050565b60006020820190508181036000830152611780816115c5565b9050919050565b600060208201905081810360008301526117a0816115e8565b9050919050565b600060208201905081810360008301526117c08161160b565b9050919050565b600060208201905081810360008301526117e08161162e565b9050919050565b60006020820190506117fc6000830184611651565b92915050565b60006020820190506118176000830184611660565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611844826118cd565b915061184f836118cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188457611883611949565b5b828201905092915050565b600061189a826118ad565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119025780820151818401526020810190506118e7565b83811115611911576000848401525b50505050565b6000600282049050600182168061192f57607f821691505b6020821081141561194357611942611978565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e7366657220616d6f756e742062656c6f77206d696e6960008201527f6d756d0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74206572726f7200000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c168161188f565b8114611c2157600080fd5b50565b611c2d816118cd565b8114611c3857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d1b7f0dc174d2ecc43522ae67a1c075c31cb2ac296719766682e3864e72d6e0964736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000015b6a759f4835dc240000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4d6172696f2042726f732e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d4152494f42524f5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c523eb0d747cd78d09d185f1bdd5f22d987bd91b00000000000000000000000093f946a72015137aadfa6ae01d48a3f0acf3921700000000000000000000000061bee1fb6100df56bd5a36e4b0c70739489961ac

-----Decoded View---------------
Arg [0] : name_ (string): Mario Bros.
Arg [1] : symbol_ (string): MARIOBROS
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 420000000000000000000000000
Arg [4] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [5] : serviceFee_ (uint256): 10000000000000000
Arg [6] : _Ownerslist (address[]): 0xC523eB0d747Cd78D09d185F1bDd5f22D987Bd91B,0x93F946A72015137AadfA6Ae01D48A3F0acf39217,0x61bee1fB6100df56Bd5A36E4B0C70739489961ac

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000015b6a759f4835dc24000000
Arg [4] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [5] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 4d6172696f2042726f732e000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 4d4152494f42524f530000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 000000000000000000000000c523eb0d747cd78d09d185f1bdd5f22d987bd91b
Arg [13] : 00000000000000000000000093f946a72015137aadfa6ae01d48a3f0acf39217
Arg [14] : 00000000000000000000000061bee1fb6100df56bd5a36e4b0c70739489961ac


Deployed Bytecode Sourcemap

13883:11300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15043:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17330:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16142:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18022:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15986:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18885:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14265:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21472:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16313;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5525:94;;;:::i;:::-;;4874:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15253:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19688:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16703:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16982:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5774:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13976:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15043:91;15088:13;15121:5;15114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15043:91;:::o;17330:210::-;17449:4;17471:39;17480:12;:10;:12::i;:::-;17494:7;17503:6;17471:8;:39::i;:::-;17528:4;17521:11;;17330:210;;;;:::o;16142:108::-;16203:7;16230:12;;16223:19;;16142:108;:::o;18022:454::-;18162:4;18179:36;18189:6;18197:9;18208:6;18179:9;:36::i;:::-;18226:220;18249:6;18270:12;:10;:12::i;:::-;18297:138;18353:6;18297:138;;;;;;;;;;;;;;;;;:11;:19;18309:6;18297:19;;;;;;;;;;;;;;;:33;18317:12;:10;:12::i;:::-;18297:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;18226:8;:220::i;:::-;18464:4;18457:11;;18022:454;;;;;:::o;15986:91::-;16035:5;16060:9;;;;;;;;;;;16053:16;;15986:91;:::o;18885:300::-;19000:4;19022:133;19045:12;:10;:12::i;:::-;19072:7;19094:50;19133:10;19094:11;:25;19106:12;:10;:12::i;:::-;19094:25;;;;;;;;;;;;;;;:34;19120:7;19094:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19022:8;:133::i;:::-;19173:4;19166:11;;18885:300;;;;:::o;14265:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;21472:177::-;21559:7;:5;:7::i;:::-;21545:21;;:10;:21;;;:48;;;;21570:11;:23;21582:10;21570:23;;;;;;;;;;;;;;;;;;;;;;;;;21545:48;21537:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21619:22;21625:7;21634:6;21619:5;:22::i;:::-;21472:177;;:::o;16313:::-;16432:7;16464:9;:18;16474:7;16464:18;;;;;;;;;;;;;;;;16457:25;;16313:177;;;:::o;5525:94::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5590:21:::1;5608:1;5590:9;:21::i;:::-;5525:94::o:0;4874:87::-;4920:7;4947:6;;;;;;;;;;;4940:13;;4874:87;:::o;15253:95::-;15300:13;15333:7;15326:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15253:95;:::o;19688:400::-;19808:4;19830:228;19853:12;:10;:12::i;:::-;19880:7;19902:145;19959:15;19902:145;;;;;;;;;;;;;;;;;:11;:25;19914:12;:10;:12::i;:::-;19902:25;;;;;;;;;;;;;;;:34;19928:7;19902:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19830:8;:228::i;:::-;20076:4;20069:11;;19688:400;;;;:::o;16703:216::-;16825:4;16847:42;16857:12;:10;:12::i;:::-;16871:9;16882:6;16847:9;:42::i;:::-;16907:4;16900:11;;16703:216;;;;:::o;16982:201::-;17116:7;17148:11;:18;17160:5;17148:18;;;;;;;;;;;;;;;:27;17167:7;17148:27;;;;;;;;;;;;;;;;17141:34;;16982:201;;;;:::o;5774:192::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5883:1:::1;5863:22;;:8;:22;;;;5855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5939:19;5949:8;5939:9;:19::i;:::-;5774:192:::0;:::o;13976:35::-;14010:1;13976:35;:::o;8960:98::-;9018:7;9049:1;9045;:5;;;;:::i;:::-;9038:12;;8960:98;;;;:::o;3592:::-;3645:7;3672:10;3665:17;;3592:98;:::o;24368:380::-;24521:1;24504:19;;:5;:19;;;;24496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24602:1;24583:21;;:7;:21;;;;24575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24686:6;24656:11;:18;24668:5;24656:18;;;;;;;;;;;;;;;:27;24675:7;24656:27;;;;;;;;;;;;;;;:36;;;;24724:7;24708:32;;24717:5;24708:32;;;24733:6;24708:32;;;;;;:::i;:::-;;;;;;;;24368:380;;;:::o;20578:610::-;20736:1;20718:20;;:6;:20;;;;20710:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20820:1;20799:23;;:9;:23;;;;20791:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20875:47;20896:6;20904:9;20915:6;20875:20;:47::i;:::-;20955:108;20991:6;20955:108;;;;;;;;;;;;;;;;;:9;:17;20965:6;20955:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20935:9;:17;20945:6;20935:17;;;;;;;;;;;;;;;:128;;;;21097:32;21122:6;21097:9;:20;21107:9;21097:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21074:9;:20;21084:9;21074:20;;;;;;;;;;;;;;;:55;;;;21162:9;21145:35;;21154:6;21145:35;;;21173:6;21145:35;;;;;;:::i;:::-;;;;;;;;20578:610;;;:::o;11239:240::-;11359:7;11417:1;11412;:6;;11420:12;11404:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11459:1;11455;:5;11448:12;;11239:240;;;;;:::o;21657:378::-;21760:1;21741:21;;:7;:21;;;;21733:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;21811:49;21840:1;21844:7;21853:6;21811:20;:49::i;:::-;21888:24;21905:6;21888:12;;:16;;:24;;;;:::i;:::-;21873:12;:39;;;;21944:30;21967:6;21944:9;:18;21954:7;21944:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;21923:9;:18;21933:7;21923:18;;;;;;;;;;;;;;;:51;;;;22011:7;21990:37;;22007:1;21990:37;;;22020:6;21990:37;;;;;;:::i;:::-;;;;;;;;21657:378;;:::o;5974:173::-;6030:16;6049:6;;;;;;;;;;;6030:25;;6075:8;6066:6;;:17;;;;;;;;;;;;;;;;;;6130:8;6099:40;;6120:8;6099:40;;;;;;;;;;;;5974:173;;:::o;23629:297::-;23784:7;:5;:7::i;:::-;23770:21;;:10;:21;;;:40;;;;23795:11;:15;23807:2;23795:15;;;;;;;;;;;;;;;;;;;;;;;;;23770:40;:61;;;;23814:11;:17;23826:4;23814:17;;;;;;;;;;;;;;;;;;;;;;;;;23770:61;:88;;;;23835:11;:23;23847:10;23835:23;;;;;;;;;;;;;;;;;;;;;;;;;23770:88;:108;;;;23862:16;23873:4;23862:10;:16::i;:::-;23770:108;23762:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;23629:297;;;:::o;22043:193::-;22101:4;22118:11;22184:5;22172:18;22164:26;;22226:1;22219:4;:8;;;22211:17;;;22043:193;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;5304:3;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:366::-;5676:3;5697:67;5761:2;5756:3;5697:67;:::i;:::-;5690:74;;5773:93;5862:3;5773:93;:::i;:::-;5891:2;5886:3;5882:12;5875:19;;5680:220;;;:::o;5906:118::-;5993:24;6011:5;5993:24;:::i;:::-;5988:3;5981:37;5971:53;;:::o;6030:112::-;6113:22;6129:5;6113:22;:::i;:::-;6108:3;6101:35;6091:51;;:::o;6148:222::-;6241:4;6279:2;6268:9;6264:18;6256:26;;6292:71;6360:1;6349:9;6345:17;6336:6;6292:71;:::i;:::-;6246:124;;;;:::o;6376:210::-;6463:4;6501:2;6490:9;6486:18;6478:26;;6514:65;6576:1;6565:9;6561:17;6552:6;6514:65;:::i;:::-;6468:118;;;;:::o;6592:313::-;6705:4;6743:2;6732:9;6728:18;6720:26;;6792:9;6786:4;6782:20;6778:1;6767:9;6763:17;6756:47;6820:78;6893:4;6884:6;6820:78;:::i;:::-;6812:86;;6710:195;;;;:::o;6911:419::-;7077:4;7115:2;7104:9;7100:18;7092:26;;7164:9;7158:4;7154:20;7150:1;7139:9;7135:17;7128:47;7192:131;7318:4;7192:131;:::i;:::-;7184:139;;7082:248;;;:::o;7336:419::-;7502:4;7540:2;7529:9;7525:18;7517:26;;7589:9;7583:4;7579:20;7575:1;7564:9;7560:17;7553:47;7617:131;7743:4;7617:131;:::i;:::-;7609:139;;7507:248;;;:::o;7761:419::-;7927:4;7965:2;7954:9;7950:18;7942:26;;8014:9;8008:4;8004:20;8000:1;7989:9;7985:17;7978:47;8042:131;8168:4;8042:131;:::i;:::-;8034:139;;7932:248;;;:::o;8186:419::-;8352:4;8390:2;8379:9;8375:18;8367:26;;8439:9;8433:4;8429:20;8425:1;8414:9;8410:17;8403:47;8467:131;8593:4;8467:131;:::i;:::-;8459:139;;8357:248;;;:::o;8611:419::-;8777:4;8815:2;8804:9;8800:18;8792:26;;8864:9;8858:4;8854:20;8850:1;8839:9;8835:17;8828:47;8892:131;9018:4;8892:131;:::i;:::-;8884:139;;8782:248;;;:::o;9036:419::-;9202:4;9240:2;9229:9;9225:18;9217:26;;9289:9;9283:4;9279:20;9275:1;9264:9;9260:17;9253:47;9317:131;9443:4;9317:131;:::i;:::-;9309:139;;9207:248;;;:::o;9461:419::-;9627:4;9665:2;9654:9;9650:18;9642:26;;9714:9;9708:4;9704:20;9700:1;9689:9;9685:17;9678:47;9742:131;9868:4;9742:131;:::i;:::-;9734:139;;9632:248;;;:::o;9886:419::-;10052:4;10090:2;10079:9;10075:18;10067:26;;10139:9;10133:4;10129:20;10125:1;10114:9;10110:17;10103:47;10167:131;10293:4;10167:131;:::i;:::-;10159:139;;10057:248;;;:::o;10311:419::-;10477:4;10515:2;10504:9;10500:18;10492:26;;10564:9;10558:4;10554:20;10550:1;10539:9;10535:17;10528:47;10592:131;10718:4;10592:131;:::i;:::-;10584:139;;10482:248;;;:::o;10736:222::-;10829:4;10867:2;10856:9;10852:18;10844:26;;10880:71;10948:1;10937:9;10933:17;10924:6;10880:71;:::i;:::-;10834:124;;;;:::o;10964:214::-;11053:4;11091:2;11080:9;11076:18;11068:26;;11104:67;11168:1;11157:9;11153:17;11144:6;11104:67;:::i;:::-;11058:120;;;;:::o;11184:99::-;11236:6;11270:5;11264:12;11254:22;;11243:40;;;:::o;11289:169::-;11373:11;11407:6;11402:3;11395:19;11447:4;11442:3;11438:14;11423:29;;11385:73;;;;:::o;11464:305::-;11504:3;11523:20;11541:1;11523:20;:::i;:::-;11518:25;;11557:20;11575:1;11557:20;:::i;:::-;11552:25;;11711:1;11643:66;11639:74;11636:1;11633:81;11630:2;;;11717:18;;:::i;:::-;11630:2;11761:1;11758;11754:9;11747:16;;11508:261;;;;:::o;11775:96::-;11812:7;11841:24;11859:5;11841:24;:::i;:::-;11830:35;;11820:51;;;:::o;11877:90::-;11911:7;11954:5;11947:13;11940:21;11929:32;;11919:48;;;:::o;11973:126::-;12010:7;12050:42;12043:5;12039:54;12028:65;;12018:81;;;:::o;12105:77::-;12142:7;12171:5;12160:16;;12150:32;;;:::o;12188:86::-;12223:7;12263:4;12256:5;12252:16;12241:27;;12231:43;;;:::o;12280:307::-;12348:1;12358:113;12372:6;12369:1;12366:13;12358:113;;;12457:1;12452:3;12448:11;12442:18;12438:1;12433:3;12429:11;12422:39;12394:2;12391:1;12387:10;12382:15;;12358:113;;;12489:6;12486:1;12483:13;12480:2;;;12569:1;12560:6;12555:3;12551:16;12544:27;12480:2;12329:258;;;;:::o;12593:320::-;12637:6;12674:1;12668:4;12664:12;12654:22;;12721:1;12715:4;12711:12;12742:18;12732:2;;12798:4;12790:6;12786:17;12776:27;;12732:2;12860;12852:6;12849:14;12829:18;12826:38;12823:2;;;12879:18;;:::i;:::-;12823:2;12644:269;;;;:::o;12919:180::-;12967:77;12964:1;12957:88;13064:4;13061:1;13054:15;13088:4;13085:1;13078:15;13105:180;13153:77;13150:1;13143:88;13250:4;13247:1;13240:15;13274:4;13271:1;13264:15;13291:102;13332:6;13383:2;13379:7;13374:2;13367:5;13363:14;13359:28;13349:38;;13339:54;;;:::o;13399:222::-;13539:34;13535:1;13527:6;13523:14;13516:58;13608:5;13603:2;13595:6;13591:15;13584:30;13505:116;:::o;13627:225::-;13767:34;13763:1;13755:6;13751:14;13744:58;13836:8;13831:2;13823:6;13819:15;13812:33;13733:119;:::o;13858:221::-;13998:34;13994:1;13986:6;13982:14;13975:58;14067:4;14062:2;14054:6;14050:15;14043:29;13964:115;:::o;14085:222::-;14225:34;14221:1;14213:6;14209:14;14202:58;14294:5;14289:2;14281:6;14277:15;14270:30;14191:116;:::o;14313:182::-;14453:34;14449:1;14441:6;14437:14;14430:58;14419:76;:::o;14501:224::-;14641:34;14637:1;14629:6;14625:14;14618:58;14710:7;14705:2;14697:6;14693:15;14686:32;14607:118;:::o;14731:223::-;14871:34;14867:1;14859:6;14855:14;14848:58;14940:6;14935:2;14927:6;14923:15;14916:31;14837:117;:::o;14960:160::-;15100:12;15096:1;15088:6;15084:14;15077:36;15066:54;:::o;15126:181::-;15266:33;15262:1;15254:6;15250:14;15243:57;15232:75;:::o;15313:122::-;15386:24;15404:5;15386:24;:::i;:::-;15379:5;15376:35;15366:2;;15425:1;15422;15415:12;15366:2;15356:79;:::o;15441:122::-;15514:24;15532:5;15514:24;:::i;:::-;15507:5;15504:35;15494:2;;15553:1;15550;15543:12;15494:2;15484:79;:::o

Swarm Source

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