ETH Price: $2,274.91 (+3.39%)
Gas: 50 Gwei

Token

Future (Future)
 

Overview

Max Total Supply

10,000,000,000 Future

Holders

138

Total Transfers

-

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Future

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-01
*/

pragma solidity 0.6.12;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



pragma solidity 0.6.12;

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



pragma solidity ^0.6.2;


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 () public {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity 0.6.12;

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow anananan");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


contract ERC20 is Context, IERC20,Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) public _balances;

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

    uint256 public  _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_,uint8 decimals_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals =decimals_;
    }

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


    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:
     *
     * - `account` cannot be the zero address.
     */


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


    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}



// SPDX-License-Identifier: MIT



pragma solidity 0.6.12;



contract  Future is ERC20 {
    using SafeMath for uint256;
 
    constructor() public ERC20("Future", "Future",18) {   
        _totalSupply = (1*10**10) * (10**18);
        _balances[owner()] = (1*10**10) * (10**18);
          emit Transfer(address(0), owner(), (1*10**10) * (10**18));
    }

    receive() external payable {

  	}



    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        super._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]

Contract Creation Code

60806040523480156200001157600080fd5b506040518060400160405280600681526020016546757475726560d01b8152506040518060400160405280600681526020016546757475726560d01b81525060126000620000646200019160201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251620000c3906004906020860190620001a4565b508151620000d9906005906020850190620001a4565b506006805460ff191660ff9290921691909117905550506b204fce5e3e250261100000006003819055600160006200011062000195565b6001600160a01b031681526020810191909152604001600020556200013462000195565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b204fce5e3e250261100000006040518082815260200191505060405180910390a362000240565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001e757805160ff191683800117855562000217565b8280016001018555821562000217579182015b8281111562000217578251825591602001919060010190620001fa565b506200022592915062000229565b5090565b5b808211156200022557600081556001016200022a565b610e5f80620002506000396000f3fe6080604052600436106100f75760003560e01c806370a082311161008a578063a457c2d711610059578063a457c2d714610380578063a9059cbb146103b9578063dd62ed3e146103f2578063f2fde38b1461042d576100fe565b806370a08231146102f0578063715018a6146103235780638da5cb5b1461033a57806395d89b411461036b576100fe565b8063313ce567116100c6578063313ce56714610244578063395093511461026f5780633eaaf86b146102a85780636ebcf607146102bd576100fe565b806306fdde0314610103578063095ea7b31461018d57806318160ddd146101da57806323b872dd14610201576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b50610118610460565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019957600080fd5b506101c6600480360360408110156101b057600080fd5b506001600160a01b0381351690602001356104f6565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610513565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c66004803603606081101561022457600080fd5b506001600160a01b03813581169160208101359091169060400135610519565b34801561025057600080fd5b506102596105a0565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101c66004803603604081101561029257600080fd5b506001600160a01b0381351690602001356105a9565b3480156102b457600080fd5b506101ef6105f7565b3480156102c957600080fd5b506101ef600480360360208110156102e057600080fd5b50356001600160a01b03166105fd565b3480156102fc57600080fd5b506101ef6004803603602081101561031357600080fd5b50356001600160a01b031661060f565b34801561032f57600080fd5b5061033861062a565b005b34801561034657600080fd5b5061034f6106de565b604080516001600160a01b039092168252519081900360200190f35b34801561037757600080fd5b506101186106ed565b34801561038c57600080fd5b506101c6600480360360408110156103a357600080fd5b506001600160a01b03813516906020013561074e565b3480156103c557600080fd5b506101c6600480360360408110156103dc57600080fd5b506001600160a01b0381351690602001356107b6565b3480156103fe57600080fd5b506101ef6004803603604081101561041557600080fd5b506001600160a01b03813581169160200135166107ca565b34801561043957600080fd5b506103386004803603602081101561045057600080fd5b50356001600160a01b03166107f5565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600061050a6105036108ff565b8484610903565b50600192915050565b60035490565b60006105268484846109ef565b610596846105326108ff565b61059185604051806060016040528060288152602001610d94602891396001600160a01b038a166000908152600260205260408120906105706108ff565b6001600160a01b031681526020810191909152604001600020549190610a9f565b610903565b5060019392505050565b60065460ff1690565b600061050a6105b66108ff565b8461059185600260006105c76108ff565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b36565b60035481565b60016020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b6106326108ff565b6000546001600160a01b03908116911614610694576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b600061050a61075b6108ff565b8461059185604051806060016040528060258152602001610e0560259139600260006107856108ff565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610a9f565b600061050a6107c36108ff565b84846109ef565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107fd6108ff565b6000546001600160a01b0390811691161461085f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166108a45760405162461bcd60e51b8152600401808060200182810382526026815260200180610d026026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166109485760405162461bcd60e51b8152600401808060200182810382526024815260200180610de16024913960400191505060405180910390fd5b6001600160a01b03821661098d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610d286022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a345760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbc6025913960400191505060405180910390fd5b6001600160a01b038216610a795760405162461bcd60e51b8152600401808060200182810382526023815260200180610cdf6023913960400191505060405180910390fd5b80610a8f57610a8a83836000610b81565b610a9a565b610a9a838383610b81565b505050565b60008184841115610b2e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610af3578181015183820152602001610adb565b50505050905090810190601f168015610b205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610b7a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d706024913960400191505060405180910390fd5b9392505050565b6001600160a01b038316610bc65760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbc6025913960400191505060405180910390fd5b6001600160a01b038216610c0b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610cdf6023913960400191505060405180910390fd5b610c16838383610a9a565b610c5381604051806060016040528060268152602001610d4a602691396001600160a01b0386166000908152600160205260409020549190610a9f565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c829082610b36565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206164646974696f6e206f766572666c6f7720616e616e616e616e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201763ab6f1b60e4e9ef359cf5482fe54420f51591a8b3a0d3af8c46fd7f55dbd564736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c806370a082311161008a578063a457c2d711610059578063a457c2d714610380578063a9059cbb146103b9578063dd62ed3e146103f2578063f2fde38b1461042d576100fe565b806370a08231146102f0578063715018a6146103235780638da5cb5b1461033a57806395d89b411461036b576100fe565b8063313ce567116100c6578063313ce56714610244578063395093511461026f5780633eaaf86b146102a85780636ebcf607146102bd576100fe565b806306fdde0314610103578063095ea7b31461018d57806318160ddd146101da57806323b872dd14610201576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b50610118610460565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019957600080fd5b506101c6600480360360408110156101b057600080fd5b506001600160a01b0381351690602001356104f6565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610513565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c66004803603606081101561022457600080fd5b506001600160a01b03813581169160208101359091169060400135610519565b34801561025057600080fd5b506102596105a0565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101c66004803603604081101561029257600080fd5b506001600160a01b0381351690602001356105a9565b3480156102b457600080fd5b506101ef6105f7565b3480156102c957600080fd5b506101ef600480360360208110156102e057600080fd5b50356001600160a01b03166105fd565b3480156102fc57600080fd5b506101ef6004803603602081101561031357600080fd5b50356001600160a01b031661060f565b34801561032f57600080fd5b5061033861062a565b005b34801561034657600080fd5b5061034f6106de565b604080516001600160a01b039092168252519081900360200190f35b34801561037757600080fd5b506101186106ed565b34801561038c57600080fd5b506101c6600480360360408110156103a357600080fd5b506001600160a01b03813516906020013561074e565b3480156103c557600080fd5b506101c6600480360360408110156103dc57600080fd5b506001600160a01b0381351690602001356107b6565b3480156103fe57600080fd5b506101ef6004803603604081101561041557600080fd5b506001600160a01b03813581169160200135166107ca565b34801561043957600080fd5b506103386004803603602081101561045057600080fd5b50356001600160a01b03166107f5565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600061050a6105036108ff565b8484610903565b50600192915050565b60035490565b60006105268484846109ef565b610596846105326108ff565b61059185604051806060016040528060288152602001610d94602891396001600160a01b038a166000908152600260205260408120906105706108ff565b6001600160a01b031681526020810191909152604001600020549190610a9f565b610903565b5060019392505050565b60065460ff1690565b600061050a6105b66108ff565b8461059185600260006105c76108ff565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b36565b60035481565b60016020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b6106326108ff565b6000546001600160a01b03908116911614610694576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b600061050a61075b6108ff565b8461059185604051806060016040528060258152602001610e0560259139600260006107856108ff565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610a9f565b600061050a6107c36108ff565b84846109ef565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107fd6108ff565b6000546001600160a01b0390811691161461085f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166108a45760405162461bcd60e51b8152600401808060200182810382526026815260200180610d026026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166109485760405162461bcd60e51b8152600401808060200182810382526024815260200180610de16024913960400191505060405180910390fd5b6001600160a01b03821661098d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610d286022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a345760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbc6025913960400191505060405180910390fd5b6001600160a01b038216610a795760405162461bcd60e51b8152600401808060200182810382526023815260200180610cdf6023913960400191505060405180910390fd5b80610a8f57610a8a83836000610b81565b610a9a565b610a9a838383610b81565b505050565b60008184841115610b2e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610af3578181015183820152602001610adb565b50505050905090810190601f168015610b205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610b7a5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d706024913960400191505060405180910390fd5b9392505050565b6001600160a01b038316610bc65760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbc6025913960400191505060405180910390fd5b6001600160a01b038216610c0b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610cdf6023913960400191505060405180910390fd5b610c16838383610a9a565b610c5381604051806060016040528060268152602001610d4a602691396001600160a01b0386166000908152600160205260409020549190610a9f565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c829082610b36565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206164646974696f6e206f766572666c6f7720616e616e616e616e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201763ab6f1b60e4e9ef359cf5482fe54420f51591a8b3a0d3af8c46fd7f55dbd564736f6c634300060c0033

Deployed Bytecode Sourcemap

17640:780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12086:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12086:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11039:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12737:355;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12737:355:0;;;;;;;;;;;;;;;;;:::i;10882:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13501:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13501:218:0;;;;;;;;:::i;9888:28::-;;;;;;;;;;;;;:::i;9759:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9759:44:0;-1:-1:-1;;;;;9759:44:0;;:::i;11210:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11210:127:0;-1:-1:-1;;;;;11210:127:0;;:::i;4360:148::-;;;;;;;;;;;;;:::i;:::-;;3718:79;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;3718:79:0;;;;;;;;;;;;;;10776:96;;;;;;;;;;;;;:::i;14222:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14222:269:0;;;;;;;;:::i;11550:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11550:175:0;;;;;;;;:::i;11788:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11788:151:0;;;;;;;;;;:::i;4663:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4663:244:0;-1:-1:-1;;;;;4663:244:0;;:::i;10565:92::-;10644:5;10637:12;;;;;;;;-1:-1:-1;;10637:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10611:13;;10637:12;;10644:5;;10637:12;;10644:5;10637:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:92;:::o;12086:169::-;12169:4;12186:39;12195:12;:10;:12::i;:::-;12209:7;12218:6;12186:8;:39::i;:::-;-1:-1:-1;12243:4:0;12086:169;;;;:::o;11039:108::-;11127:12;;11039:108;:::o;12737:355::-;12877:4;12894:36;12904:6;12912:9;12923:6;12894:9;:36::i;:::-;12941:121;12950:6;12958:12;:10;:12::i;:::-;12972:89;13010:6;12972:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12972:19:0;;;;;;:11;:19;;;;;;12992:12;:10;:12::i;:::-;-1:-1:-1;;;;;12972:33:0;;;;;;;;;;;;-1:-1:-1;12972:33:0;;;:89;:37;:89::i;:::-;12941:8;:121::i;:::-;-1:-1:-1;13080:4:0;12737:355;;;;;:::o;10882:92::-;10957:9;;;;10882:92;:::o;13501:218::-;13589:4;13606:83;13615:12;:10;:12::i;:::-;13629:7;13638:50;13677:10;13638:11;:25;13650:12;:10;:12::i;:::-;-1:-1:-1;;;;;13638:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13638:25:0;;;:34;;;;;;;;;;;:38;:50::i;9888:28::-;;;;:::o;9759:44::-;;;;;;;;;;;;;:::o;11210:127::-;-1:-1:-1;;;;;11311:18:0;11284:7;11311:18;;;:9;:18;;;;;;;11210:127::o;4360:148::-;3940:12;:10;:12::i;:::-;3930:6;;-1:-1:-1;;;;;3930:6:0;;;:22;;;3922:67;;;;;-1:-1:-1;;;3922:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4467:1:::1;4451:6:::0;;4430:40:::1;::::0;-1:-1:-1;;;;;4451:6:0;;::::1;::::0;4430:40:::1;::::0;4467:1;;4430:40:::1;4498:1;4481:19:::0;;-1:-1:-1;;;;;;4481:19:0::1;::::0;;4360:148::o;3718:79::-;3756:7;3783:6;-1:-1:-1;;;;;3783:6:0;3718:79;:::o;10776:96::-;10857:7;10850:14;;;;;;;;-1:-1:-1;;10850:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10824:13;;10850:14;;10857:7;;10850:14;;10857:7;10850:14;;;;;;;;;;;;;;;;;;;;;;;;14222:269;14315:4;14332:129;14341:12;:10;:12::i;:::-;14355:7;14364:96;14403:15;14364:96;;;;;;;;;;;;;;;;;:11;:25;14376:12;:10;:12::i;:::-;-1:-1:-1;;;;;14364:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14364:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;11550:175::-;11636:4;11653:42;11663:12;:10;:12::i;:::-;11677:9;11688:6;11653:9;:42::i;11788:151::-;-1:-1:-1;;;;;11904:18:0;;;11877:7;11904:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11788:151::o;4663:244::-;3940:12;:10;:12::i;:::-;3930:6;;-1:-1:-1;;;;;3930:6:0;;;:22;;;3922:67;;;;;-1:-1:-1;;;3922:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4752:22:0;::::1;4744:73;;;;-1:-1:-1::0;;;4744:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4854:6;::::0;;4833:38:::1;::::0;-1:-1:-1;;;;;4833:38:0;;::::1;::::0;4854:6;::::1;::::0;4833:38:::1;::::0;::::1;4882:6;:17:::0;;-1:-1:-1;;;;;;4882:17:0::1;-1:-1:-1::0;;;;;4882:17:0;;;::::1;::::0;;;::::1;::::0;;4663:244::o;62:98::-;142:10;62:98;:::o;17044:380::-;-1:-1:-1;;;;;17180:19:0;;17172:68;;;;-1:-1:-1;;;17172:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17259:21:0;;17251:68;;;;-1:-1:-1;;;17251:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17332:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17384:32;;;;;;;;;;;;;;;;;17044:380;;;:::o;17996:421::-;-1:-1:-1;;;;;18128:18:0;;18120:68;;;;-1:-1:-1;;;18120:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18207:16:0;;18199:64;;;;-1:-1:-1;;;18199:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18277:11;18274:92;;18305:28;18321:4;18327:2;18331:1;18305:15;:28::i;:::-;18348:7;;18274:92;18376:33;18392:4;18398:2;18402:6;18376:15;:33::i;:::-;17996:421;;;:::o;6116:192::-;6202:7;6238:12;6230:6;;;;6222:29;;;;-1:-1:-1;;;6222:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6274:5:0;;;6116:192::o;5204:190::-;5262:7;5294:5;;;5318:6;;;;5310:55;;;;-1:-1:-1;;;5310:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5385:1;5204:190;-1:-1:-1;;;5204:190:0:o;14997:573::-;-1:-1:-1;;;;;15137:20:0;;15129:70;;;;-1:-1:-1;;;15129:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15218:23:0;;15210:71;;;;-1:-1:-1;;;15210:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15294:47;15315:6;15323:9;15334:6;15294:20;:47::i;:::-;15374:71;15396:6;15374:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15374:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;15354:17:0;;;;;;;:9;:17;;;;;;:91;;;;15479:20;;;;;;;:32;;15504:6;15479:24;:32::i;:::-;-1:-1:-1;;;;;15456:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;15527:35;;;;;;;15456:20;;15527:35;;;;;;;;;;;;;14997:573;;;:::o

Swarm Source

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