ETH Price: $2,631.84 (-0.15%)
Gas: 1 Gwei

Token

POA ERC20 on Foundation (POA20)
 

Overview

Max Total Supply

26,804,744.878236192681271316 POA20

Holders

940 (0.00%)

Market

Price

$0.02 @ 0.000006 ETH (+1.52%)

Onchain Market Cap

$428,588.78

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000264254810031026 POA20

Value
$0.00 ( ~0 Eth) [0.0000%]
0x66ac0f7de491783d46341d81c61d668f6e0be13e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

POA Network is an Ethereum-based platform that offers an open-source framework for smart contracts.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 POA20
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
POA20

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-08
*/

pragma solidity 0.4.23;

// File: contracts/ERC677Receiver.sol

contract ERC677Receiver {
  function onTokenTransfer(address _from, uint _value, bytes _data) external returns(bool);
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/ERC677.sol

contract ERC677 is ERC20 {
    event Transfer(address indexed from, address indexed to, uint value, bytes data);

    function transferAndCall(address, uint, bytes) external returns (bool);

}

// File: contracts/IBurnableMintableERC677Token.sol

contract IBurnableMintableERC677Token is ERC677 {
    function mint(address, uint256) public returns (bool);
    function burn(uint256 _value) public;
    function claimTokens(address _token, address _to) public;
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    if (a == 0) {
      return 0;
    }
    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  function DetailedERC20(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

// File: contracts/POA20.sol

contract POA20 is
    IBurnableMintableERC677Token,
    DetailedERC20,
    BurnableToken,
    MintableToken {
    function POA20(
        string _name,
        string _symbol,
        uint8 _decimals)
    public DetailedERC20(_name, _symbol, _decimals) {}

    modifier validRecipient(address _recipient) {
        require(_recipient != address(0) && _recipient != address(this));
        _;
    }

    function transferAndCall(address _to, uint _value, bytes _data)
        external validRecipient(_to) returns (bool)
    {
        require(transfer(_to, _value));
        emit Transfer(msg.sender, _to, _value, _data);
        if (isContract(_to)) {
            require(contractFallback(_to, _value, _data));
        }
        return true;
    }

    function contractFallback(address _to, uint _value, bytes _data)
        private
        returns(bool)
    {
        ERC677Receiver receiver = ERC677Receiver(_to);
        return receiver.onTokenTransfer(msg.sender, _value, _data);
    }

    function isContract(address _addr)
        private
        view
        returns (bool)
    {
        uint length;
        assembly { length := extcodesize(_addr) }
        return length > 0;
    }

    function finishMinting() public returns (bool) {
        revert();
    }

    function claimTokens(address _token, address _to) public onlyOwner {
        require(_to != address(0));
        if (_token == address(0)) {
            _to.transfer(address(this).balance);
            return;
        }

        DetailedERC20 token = DetailedERC20(_token);
        uint256 balance = token.balanceOf(address(this));
        require(token.transfer(_to, balance));
    }


}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526006805460a060020a60ff02191690553480156200002157600080fd5b506040516200127e3803806200127e8339810160409081528151602080840151928401519184018051909493909301928491849184916200006891600091860190620000ba565b5081516200007e906001906020850190620000ba565b506002805460ff191660ff92909216919091179055505060068054600160a060020a03191633600160a060020a0316179055506200015f915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000fd57805160ff19168380011785556200012d565b828001600101855582156200012d579182015b828111156200012d57825182559160200191906001019062000110565b506200013b9291506200013f565b5090565b6200015c91905b808211156200013b576000815560010162000146565b90565b61110f806200016f6000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010b57806306fdde0314610134578063095ea7b3146101be57806318160ddd146101e257806323b872dd14610209578063313ce567146102335780634000aea01461025e57806340c10f191461028f57806342966c68146102b357806366188463146102cd57806369ffa08a146102f157806370a08231146103185780637d64bcb4146103395780638da5cb5b1461034e57806395d89b411461037f578063a9059cbb14610394578063d73dd623146103b8578063dd62ed3e146103dc578063f2fde38b14610403575b600080fd5b34801561011757600080fd5b50610120610424565b604080519115158252519081900360200190f35b34801561014057600080fd5b50610149610445565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018357818101518382015260200161016b565b50505050905090810190601f1680156101b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ca57600080fd5b50610120600160a060020a03600435166024356104d3565b3480156101ee57600080fd5b506101f761053d565b60408051918252519081900360200190f35b34801561021557600080fd5b50610120600160a060020a0360043581169060243516604435610543565b34801561023f57600080fd5b506102486106b3565b6040805160ff9092168252519081900360200190f35b34801561026a57600080fd5b5061012060048035600160a060020a03169060248035916044359182019101356106bc565b34801561029b57600080fd5b50610120600160a060020a03600435166024356107d5565b3480156102bf57600080fd5b506102cb6004356108e4565b005b3480156102d957600080fd5b50610120600160a060020a03600435166024356108f1565b3480156102fd57600080fd5b506102cb600160a060020a03600435811690602435166109ea565b34801561032457600080fd5b506101f7600160a060020a0360043516610bbe565b34801561034557600080fd5b50610120610bd9565b34801561035a57600080fd5b50610363610be0565b60408051600160a060020a039092168252519081900360200190f35b34801561038b57600080fd5b50610149610bef565b3480156103a057600080fd5b50610120600160a060020a0360043516602435610c49565b3480156103c457600080fd5b50610120600160a060020a0360043516602435610d32565b3480156103e857600080fd5b506101f7600160a060020a0360043581169060243516610dd4565b34801561040f57600080fd5b506102cb600160a060020a0360043516610dff565b60065474010000000000000000000000000000000000000000900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104cb5780601f106104a0576101008083540402835291602001916104cb565b820191906000526020600020905b8154815290600101906020018083116104ae57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045490565b6000600160a060020a038316151561055a57600080fd5b600160a060020a03841660009081526003602052604090205482111561057f57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156105b257600080fd5b600160a060020a0384166000908152600360205260409020546105db908363ffffffff610e9816565b600160a060020a038086166000908152600360205260408082209390935590851681522054610610908363ffffffff610eaa16565b600160a060020a03808516600090815260036020908152604080832094909455878316825260058152838220339093168252919091522054610658908363ffffffff610e9816565b600160a060020a038086166000818152600560209081526040808320338616845282529182902094909455805186815290519287169391926000805160206110c4833981519152929181900390910190a35060019392505050565b60025460ff1681565b600084600160a060020a038116158015906106e9575030600160a060020a031681600160a060020a031614155b15156106f457600080fd5b6106fe8686610c49565b151561070957600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a361077e86610ebd565b156107c9576107be868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843750610ec5945050505050565b15156107c957600080fd5b50600195945050505050565b60065460009033600160a060020a039081169116146107f357600080fd5b60065474010000000000000000000000000000000000000000900460ff161561081b57600080fd5b60045461082e908363ffffffff610eaa16565b600455600160a060020a03831660009081526003602052604090205461085a908363ffffffff610eaa16565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110c48339815191529181900360200190a350600192915050565b6108ee3382610fd4565b50565b600160a060020a0333811660009081526005602090815260408083209386168352929052908120548083111561094e57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610985565b61095e818463ffffffff610e9816565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600654600090819033600160a060020a03908116911614610a0a57600080fd5b600160a060020a0383161515610a1f57600080fd5b600160a060020a0384161515610a6f57604051600160a060020a0380851691309091163180156108fc02916000818181858888f19350505050158015610a69573d6000803e3d6000fd5b50610bb8565b83915081600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ae657600080fd5b505af1158015610afa573d6000803e3d6000fd5b505050506040513d6020811015610b1057600080fd5b5051604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d6020811015610bab57600080fd5b50511515610bb857600080fd5b50505050565b600160a060020a031660009081526003602052604090205490565b6000806000fd5b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104cb5780601f106104a0576101008083540402835291602001916104cb565b6000600160a060020a0383161515610c6057600080fd5b600160a060020a033316600090815260036020526040902054821115610c8557600080fd5b600160a060020a033316600090815260036020526040902054610cae908363ffffffff610e9816565b600160a060020a033381166000908152600360205260408082209390935590851681522054610ce3908363ffffffff610eaa16565b600160a060020a038085166000818152600360209081526040918290209490945580518681529051919333909316926000805160206110c483398151915292918290030190a350600192915050565b600160a060020a033381166000908152600560209081526040808320938616835292905290812054610d6a908363ffffffff610eaa16565b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a03908116911614610e1a57600080fd5b600160a060020a0381161515610e2f57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610ea457fe5b50900390565b81810182811015610eb757fe5b92915050565b6000903b1190565b6040517fa4c0ed36000000000000000000000000000000000000000000000000000000008152600160a060020a03338181166004840190815260248401869052606060448501908152855160648601528551600095899586169463a4c0ed369490938a938a936084019060208501908083838e5b83811015610f51578181015183820152602001610f39565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610f9f57600080fd5b505af1158015610fb3573d6000803e3d6000fd5b505050506040513d6020811015610fc957600080fd5b505195945050505050565b600160a060020a038216600090815260036020526040902054811115610ff957600080fd5b600160a060020a038216600090815260036020526040902054611022908263ffffffff610e9816565b600160a060020a03831660009081526003602052604090205560045461104e908263ffffffff610e9816565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110c48339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582043fcf63231967257f94fd4ccac8d14567ecb2b601a4e04fcf78c45099bf157be0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000017504f41204552433230206f6e20466f756e646174696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000005504f413230000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010b57806306fdde0314610134578063095ea7b3146101be57806318160ddd146101e257806323b872dd14610209578063313ce567146102335780634000aea01461025e57806340c10f191461028f57806342966c68146102b357806366188463146102cd57806369ffa08a146102f157806370a08231146103185780637d64bcb4146103395780638da5cb5b1461034e57806395d89b411461037f578063a9059cbb14610394578063d73dd623146103b8578063dd62ed3e146103dc578063f2fde38b14610403575b600080fd5b34801561011757600080fd5b50610120610424565b604080519115158252519081900360200190f35b34801561014057600080fd5b50610149610445565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018357818101518382015260200161016b565b50505050905090810190601f1680156101b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ca57600080fd5b50610120600160a060020a03600435166024356104d3565b3480156101ee57600080fd5b506101f761053d565b60408051918252519081900360200190f35b34801561021557600080fd5b50610120600160a060020a0360043581169060243516604435610543565b34801561023f57600080fd5b506102486106b3565b6040805160ff9092168252519081900360200190f35b34801561026a57600080fd5b5061012060048035600160a060020a03169060248035916044359182019101356106bc565b34801561029b57600080fd5b50610120600160a060020a03600435166024356107d5565b3480156102bf57600080fd5b506102cb6004356108e4565b005b3480156102d957600080fd5b50610120600160a060020a03600435166024356108f1565b3480156102fd57600080fd5b506102cb600160a060020a03600435811690602435166109ea565b34801561032457600080fd5b506101f7600160a060020a0360043516610bbe565b34801561034557600080fd5b50610120610bd9565b34801561035a57600080fd5b50610363610be0565b60408051600160a060020a039092168252519081900360200190f35b34801561038b57600080fd5b50610149610bef565b3480156103a057600080fd5b50610120600160a060020a0360043516602435610c49565b3480156103c457600080fd5b50610120600160a060020a0360043516602435610d32565b3480156103e857600080fd5b506101f7600160a060020a0360043581169060243516610dd4565b34801561040f57600080fd5b506102cb600160a060020a0360043516610dff565b60065474010000000000000000000000000000000000000000900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104cb5780601f106104a0576101008083540402835291602001916104cb565b820191906000526020600020905b8154815290600101906020018083116104ae57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045490565b6000600160a060020a038316151561055a57600080fd5b600160a060020a03841660009081526003602052604090205482111561057f57600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156105b257600080fd5b600160a060020a0384166000908152600360205260409020546105db908363ffffffff610e9816565b600160a060020a038086166000908152600360205260408082209390935590851681522054610610908363ffffffff610eaa16565b600160a060020a03808516600090815260036020908152604080832094909455878316825260058152838220339093168252919091522054610658908363ffffffff610e9816565b600160a060020a038086166000818152600560209081526040808320338616845282529182902094909455805186815290519287169391926000805160206110c4833981519152929181900390910190a35060019392505050565b60025460ff1681565b600084600160a060020a038116158015906106e9575030600160a060020a031681600160a060020a031614155b15156106f457600080fd5b6106fe8686610c49565b151561070957600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a361077e86610ebd565b156107c9576107be868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843750610ec5945050505050565b15156107c957600080fd5b50600195945050505050565b60065460009033600160a060020a039081169116146107f357600080fd5b60065474010000000000000000000000000000000000000000900460ff161561081b57600080fd5b60045461082e908363ffffffff610eaa16565b600455600160a060020a03831660009081526003602052604090205461085a908363ffffffff610eaa16565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110c48339815191529181900360200190a350600192915050565b6108ee3382610fd4565b50565b600160a060020a0333811660009081526005602090815260408083209386168352929052908120548083111561094e57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610985565b61095e818463ffffffff610e9816565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600654600090819033600160a060020a03908116911614610a0a57600080fd5b600160a060020a0383161515610a1f57600080fd5b600160a060020a0384161515610a6f57604051600160a060020a0380851691309091163180156108fc02916000818181858888f19350505050158015610a69573d6000803e3d6000fd5b50610bb8565b83915081600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ae657600080fd5b505af1158015610afa573d6000803e3d6000fd5b505050506040513d6020811015610b1057600080fd5b5051604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d6020811015610bab57600080fd5b50511515610bb857600080fd5b50505050565b600160a060020a031660009081526003602052604090205490565b6000806000fd5b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104cb5780601f106104a0576101008083540402835291602001916104cb565b6000600160a060020a0383161515610c6057600080fd5b600160a060020a033316600090815260036020526040902054821115610c8557600080fd5b600160a060020a033316600090815260036020526040902054610cae908363ffffffff610e9816565b600160a060020a033381166000908152600360205260408082209390935590851681522054610ce3908363ffffffff610eaa16565b600160a060020a038085166000818152600360209081526040918290209490945580518681529051919333909316926000805160206110c483398151915292918290030190a350600192915050565b600160a060020a033381166000908152600560209081526040808320938616835292905290812054610d6a908363ffffffff610eaa16565b600160a060020a0333811660008181526005602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a03908116911614610e1a57600080fd5b600160a060020a0381161515610e2f57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610ea457fe5b50900390565b81810182811015610eb757fe5b92915050565b6000903b1190565b6040517fa4c0ed36000000000000000000000000000000000000000000000000000000008152600160a060020a03338181166004840190815260248401869052606060448501908152855160648601528551600095899586169463a4c0ed369490938a938a936084019060208501908083838e5b83811015610f51578181015183820152602001610f39565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610f9f57600080fd5b505af1158015610fb3573d6000803e3d6000fd5b505050506040513d6020811015610fc957600080fd5b505195945050505050565b600160a060020a038216600090815260036020526040902054811115610ff957600080fd5b600160a060020a038216600090815260036020526040902054611022908263ffffffff610e9816565b600160a060020a03831660009081526003602052604090205560045461104e908263ffffffff610e9816565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110c48339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582043fcf63231967257f94fd4ccac8d14567ecb2b601a4e04fcf78c45099bf157be0029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000017504f41204552433230206f6e20466f756e646174696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000005504f413230000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): POA ERC20 on Foundation
Arg [1] : _symbol (string): POA20
Arg [2] : _decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [4] : 504f41204552433230206f6e20466f756e646174696f6e000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 504f413230000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://43fcf63231967257f94fd4ccac8d14567ecb2b601a4e04fcf78c45099bf157be
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.