ETH Price: $3,420.97 (+4.32%)
 

Overview

Max Total Supply

315,220.06926829275 ALLOY

Holders

221

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,288 ALLOY

Value
$0.00
0x68a6139688d905c3d24950cb8ba5adbd9c61eff3
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:
AlloyToken

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-10-08
*/

pragma solidity ^0.4.13;

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    require(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 c;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    require(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    require(c >= a);
    return c;
  }

  function max64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a < b ? a : b;
  }

}

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() {
    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) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

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

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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 constant returns (uint256 balance) {
    return balances[_owner];
  }

}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant 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);
}

contract LimitedTransferToken is ERC20 {

  /**
   * @dev Checks whether it can transfer or otherwise throws.
   */
  modifier canTransfer(address _sender, uint256 _value) {
   require(_value <= transferableTokens(_sender, uint64(now)));
   _;
  }

  /**
   * @dev Checks modifier and allows transfer if tokens are not locked.
   * @param _to The address that will receive the tokens.
   * @param _value The amount of tokens to be transferred.
   */
  function transfer(address _to, uint256 _value) canTransfer(msg.sender, _value) public returns (bool) {
    return super.transfer(_to, _value);
  }

  /**
  * @dev Checks modifier and allows transfer if tokens are not locked.
  * @param _from The address that will send the tokens.
  * @param _to The address that will receive the tokens.
  * @param _value The amount of tokens to be transferred.
  */
  function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from, _value) public returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @dev Default transferable tokens function returns all tokens for a holder (no limit).
   * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the
   * specific logic for limiting token transferability for a holder over time.
   */
  function transferableTokens(address holder, uint64 time) public constant returns (uint256) {
    return balanceOf(holder);
  }
}

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);
    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;
    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 constant returns (uint256 remaining) {
    return allowed[_owner][_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
   */
  function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();
  event MintingAgentChanged(address addr, bool state  );

  bool public mintingFinished = false;

  /** List of agents that are allowed to create new tokens */
  mapping (address => bool) public mintAgents;

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

  modifier onlyMintAgent() {
    // Only whitelisted contracts are allowed to mint new tokens
    if(!mintAgents[msg.sender]) {
      revert();
    }
    _;
  }

  /**
   * @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) onlyMintAgent canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(0x0, _to, _amount);
    return true;
  }

  /**
   * Owner can allow a contract to mint new tokens.
   */
  function setMintAgent(address addr, bool state) onlyOwner canMint public {
    mintAgents[addr] = state;
    MintingAgentChanged(addr, state);
  }

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

contract VestedToken is StandardToken, LimitedTransferToken {

  uint256 MAX_GRANTS_PER_ADDRESS = 20;

  struct TokenGrant {
  address granter;     // 20 bytes
  uint256 value;       // 32 bytes
  uint64 cliff;
  uint64 vesting;
  uint64 start;        // 3 * 8 = 24 bytes
  bool revokable;
  bool burnsOnRevoke;  // 2 * 1 = 2 bits? or 2 bytes?
  } // total 78 bytes = 3 sstore per operation (32 per sstore)

  mapping (address => TokenGrant[]) public grants;

  event NewTokenGrant(address indexed from, address indexed to, uint256 value, uint256 grantId);

  /**
   * @dev Grant tokens to a specified address
   * @param _to address The address which the tokens will be granted to.
   * @param _value uint256 The amount of tokens to be granted.
   * @param _start uint64 Time of the beginning of the grant.
   * @param _cliff uint64 Time of the cliff period.
   * @param _vesting uint64 The vesting period.
   */
  function grantVestedTokens(
  address _to,
  uint256 _value,
  uint64 _start,
  uint64 _cliff,
  uint64 _vesting,
  bool _revokable,
  bool _burnsOnRevoke
  ) public {

    // Check for date inconsistencies that may cause unexpected behavior
    require(_cliff >= _start && _vesting >= _cliff);

    require(tokenGrantsCount(_to) < MAX_GRANTS_PER_ADDRESS);   // To prevent a user being spammed and have his balance locked (out of gas attack when calculating vesting).

    uint256 count = grants[_to].push(
    TokenGrant(
    _revokable ? msg.sender : 0, // avoid storing an extra 20 bytes when it is non-revokable
    _value,
    _cliff,
    _vesting,
    _start,
    _revokable,
    _burnsOnRevoke
    )
    );

    transfer(_to, _value);

    NewTokenGrant(msg.sender, _to, _value, count - 1);
  }

  /**
   * @dev Revoke the grant of tokens of a specifed address.
   * @param _holder The address which will have its tokens revoked.
   * @param _grantId The id of the token grant.
   */
  function revokeTokenGrant(address _holder, uint256 _grantId) public {
    TokenGrant storage grant = grants[_holder][_grantId];

    require(grant.revokable);
    require(grant.granter == msg.sender); // Only granter can revoke it

    address receiver = grant.burnsOnRevoke ? 0xdead : msg.sender;

    uint256 nonVested = nonVestedTokens(grant, uint64(now));

    // remove grant from array
    delete grants[_holder][_grantId];
    grants[_holder][_grantId] = grants[_holder][grants[_holder].length.sub(1)];
    grants[_holder].length -= 1;

    balances[receiver] = balances[receiver].add(nonVested);
    balances[_holder] = balances[_holder].sub(nonVested);

    Transfer(_holder, receiver, nonVested);
  }


  /**
   * @dev Calculate the total amount of transferable tokens of a holder at a given time
   * @param holder address The address of the holder
   * @param time uint64 The specific time.
   * @return An uint256 representing a holder's total amount of transferable tokens.
   */
  function transferableTokens(address holder, uint64 time) public constant returns (uint256) {
    uint256 grantIndex = tokenGrantsCount(holder);

    if (grantIndex == 0) return super.transferableTokens(holder, time); // shortcut for holder without grants

    // Iterate through all the grants the holder has, and add all non-vested tokens
    uint256 nonVested = 0;
    for (uint256 i = 0; i < grantIndex; i++) {
      nonVested = SafeMath.add(nonVested, nonVestedTokens(grants[holder][i], time));
    }

    // Balance - totalNonVested is the amount of tokens a holder can transfer at any given time
    uint256 vestedTransferable = SafeMath.sub(balanceOf(holder), nonVested);

    // Return the minimum of how many vested can transfer and other value
    // in case there are other limiting transferability factors (default is balanceOf)
    return SafeMath.min256(vestedTransferable, super.transferableTokens(holder, time));
  }

  /**
   * @dev Check the amount of grants that an address has.
   * @param _holder The holder of the grants.
   * @return A uint256 representing the total amount of grants.
   */
  function tokenGrantsCount(address _holder) public constant returns (uint256 index) {
    return grants[_holder].length;
  }

  /**
   * @dev Calculate amount of vested tokens at a specific time
   * @param tokens uint256 The amount of tokens granted
   * @param time uint64 The time to be checked
   * @param start uint64 The time representing the beginning of the grant
   * @param cliff uint64  The cliff period, the period before nothing can be paid out
   * @param vesting uint64 The vesting period
   * @return An uint256 representing the amount of vested tokens of a specific grant
   *  transferableTokens
   *   |                         _/--------   vestedTokens rect
   *   |                       _/
   *   |                     _/
   *   |                   _/
   *   |                 _/
   *   |                /
   *   |              .|
   *   |            .  |
   *   |          .    |
   *   |        .      |
   *   |      .        |
   *   |    .          |
   *   +===+===========+---------+----------> time
   *      Start       Cliff    Vesting
   */
  function calculateVestedTokens(
  uint256 tokens,
  uint256 time,
  uint256 start,
  uint256 cliff,
  uint256 vesting) public constant returns (uint256)
  {
    // Shortcuts for before cliff and after vesting cases.
    if (time < cliff) return 0;
    if (time >= vesting) return tokens;

    // Interpolate all vested tokens.
    // As before cliff the shortcut returns 0, we can use just calculate a value
    // in the vesting rect (as shown in above's figure)

    // vestedTokens = (tokens * (time - start)) / (vesting - start)
    uint256 vestedTokens = SafeMath.div(
    SafeMath.mul(
    tokens,
    SafeMath.sub(time, start)
    ),
    SafeMath.sub(vesting, start)
    );

    return vestedTokens;
  }

  /**
   * @dev Get all information about a specific grant.
   * @param _holder The address which will have its tokens revoked.
   * @param _grantId The id of the token grant.
   * @return Returns all the values that represent a TokenGrant(address, value, start, cliff,
   * revokability, burnsOnRevoke, and vesting) plus the vested value at the current time.
   */
  function tokenGrant(address _holder, uint256 _grantId) public constant returns (address granter, uint256 value, uint256 vested, uint64 start, uint64 cliff, uint64 vesting, bool revokable, bool burnsOnRevoke) {
    TokenGrant storage grant = grants[_holder][_grantId];

    granter = grant.granter;
    value = grant.value;
    start = grant.start;
    cliff = grant.cliff;
    vesting = grant.vesting;
    revokable = grant.revokable;
    burnsOnRevoke = grant.burnsOnRevoke;

    vested = vestedTokens(grant, uint64(now));
  }

  /**
   * @dev Get the amount of vested tokens at a specific time.
   * @param grant TokenGrant The grant to be checked.
   * @param time The time to be checked
   * @return An uint256 representing the amount of vested tokens of a specific grant at a specific time.
   */
  function vestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) {
    return calculateVestedTokens(
    grant.value,
    uint256(time),
    uint256(grant.start),
    uint256(grant.cliff),
    uint256(grant.vesting)
    );
  }

  /**
   * @dev Calculate the amount of non vested tokens at a specific time.
   * @param grant TokenGrant The grant to be checked.
   * @param time uint64 The time to be checked
   * @return An uint256 representing the amount of non vested tokens of a specific grant on the
   * passed time frame.
   */
  function nonVestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) {
    return grant.value.sub(vestedTokens(grant, time));
  }

  /**
   * @dev Calculate the date when the holder can transfer all its tokens
   * @param holder address The address of the holder
   * @return An uint256 representing the date of the last transferable tokens.
   */
  function lastTokenIsTransferableDate(address holder) public constant returns (uint64 date) {
    date = uint64(now);
    uint256 grantIndex = grants[holder].length;
    for (uint256 i = 0; i < grantIndex; i++) {
      date = SafeMath.max64(grants[holder][i].vesting, date);
    }
  }
}

contract AlloyToken is MintableToken, VestedToken {

    string constant public name = 'ALLOY';
    string constant public symbol = 'ALLOY';
    uint constant public decimals = 18;

    function AlloyToken(){

    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"tokenGrantsCount","outputs":[{"name":"index","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"","type":"address"},{"name":"","type":"uint256"}],"name":"grants","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"start","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"tokenGrant","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"vested","type":"uint256"},{"name":"start","type":"uint64"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"}],"name":"lastTokenIsTransferableDate","outputs":[{"name":"date","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":"_start","type":"uint64"},{"name":"_cliff","type":"uint64"},{"name":"_vesting","type":"uint64"},{"name":"_revokable","type":"bool"},{"name":"_burnsOnRevoke","type":"bool"}],"name":"grantVestedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"holder","type":"address"},{"name":"time","type":"uint64"}],"name":"transferableTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokens","type":"uint256"},{"name":"time","type":"uint256"},{"name":"start","type":"uint256"},{"name":"cliff","type":"uint256"},{"name":"vesting","type":"uint256"}],"name":"calculateVestedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"revokeTokenGrant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"grantId","type":"uint256"}],"name":"NewTokenGrant","type":"event"},{"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":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","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":"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"}]

60606040526003805460a060020a60ff02191690556014600555341561002457600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b5b5b611d5d806100536000396000f300606060405236156101515763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302a72a4c811461015657806305d2035b1461018757806306fdde03146101ae578063095ea7b31461023957806318160ddd1461026f57806323b872dd146102945780632c71e60a146102d0578063313ce5671461034b57806340c10f191461037057806342c1867b146103a657806343214675146103d9578063600e85b7146103ff57806366188463146104805780636c182e99146104b657806370a08231146104f25780637d64bcb4146105235780638da5cb5b1461054a57806395d89b41146101ae5780639754a4d914610604578063a9059cbb1461064b578063d347c20514610681578063d73dd623146106bf578063dd62ed3e146106f5578063df3c211b1461072c578063eb944e4c14610760578063f2fde38b14610784575b600080fd5b341561016157600080fd5b610175600160a060020a03600435166107a5565b60405190815260200160405180910390f35b341561019257600080fd5b61019a6107c4565b604051901515815260200160405180910390f35b34156101b957600080fd5b6101c16107d4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024457600080fd5b61019a600160a060020a036004351660243561080b565b604051901515815260200160405180910390f35b341561027a57600080fd5b610175610878565b60405190815260200160405180910390f35b341561029f57600080fd5b61019a600160a060020a036004358116906024351660443561087e565b604051901515815260200160405180910390f35b34156102db57600080fd5b6102f2600160a060020a03600435166024356108b0565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561035657600080fd5b610175610936565b60405190815260200160405180910390f35b341561037b57600080fd5b61019a600160a060020a036004351660243561093b565b604051901515815260200160405180910390f35b34156103b157600080fd5b61019a600160a060020a0360043516610a42565b604051901515815260200160405180910390f35b34156103e457600080fd5b6103fd600160a060020a03600435166024351515610a57565b005b341561040a57600080fd5b610421600160a060020a0360043516602435610afd565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561048b57600080fd5b61019a600160a060020a0360043516602435610c4a565b604051901515815260200160405180910390f35b34156104c157600080fd5b6104d5600160a060020a0360043516610d46565b60405167ffffffffffffffff909116815260200160405180910390f35b34156104fd57600080fd5b610175600160a060020a0360043516610dd8565b60405190815260200160405180910390f35b341561052e57600080fd5b61019a610df7565b604051901515815260200160405180910390f35b341561055557600080fd5b61055d610e6d565b604051600160a060020a03909116815260200160405180910390f35b34156101b957600080fd5b6101c16107d4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561060f57600080fd5b6103fd600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c4351515610eb3565b005b341561065657600080fd5b61019a600160a060020a036004351660243561113e565b604051901515815260200160405180910390f35b341561068c57600080fd5b610175600160a060020a036004351667ffffffffffffffff6024351661116e565b60405190815260200160405180910390f35b34156106ca57600080fd5b61019a600160a060020a03600435166024356112bb565b604051901515815260200160405180910390f35b341561070057600080fd5b610175600160a060020a0360043581169060243516611360565b60405190815260200160405180910390f35b341561073757600080fd5b61017560043560243560443560643560843561138d565b60405190815260200160405180910390f35b341561076b57600080fd5b6103fd600160a060020a03600435166024356113e5565b005b341561078f57600080fd5b6103fd600160a060020a03600435166117fa565b005b600160a060020a0381166000908152600660205260409020545b919050565b60035460a060020a900460ff1681565b60408051908101604052600581527f414c4c4f59000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b6000838261088c824261116e565b81111561089857600080fd5b6108a3868686611893565b92505b5b50509392505050565b6006602052816000526040600020818154811015156108cb57fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b601281565b600160a060020a03331660009081526004602052604081205460ff16151561096257600080fd5b60035460a060020a900460ff161561097957600080fd5b60005461098c908363ffffffff611a0416565b6000908155600160a060020a0384168152600160205260409020546109b7908363ffffffff611a0416565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a03166000600080516020611d128339815191528460405190815260200160405180910390a35060015b5b5b92915050565b60046020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a7257600080fd5b60035460a060020a900460ff1615610a8957600080fd5b600160a060020a03821660009081526004602052604090819020805460ff19168315151790557f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5b5050565b6000806000806000806000806000600660008c600160a060020a0316600160a060020a031681526020019081526020016000208a815481101515610b3d57fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a9091041692509050610c398160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611a21565b96505b509295985092959890939650565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610ca757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610cde565b610cb7818463ffffffff611a7116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a03811660009081526006602052604081205442915b81811015610dd057600160a060020a03841660009081526006602052604090208054610dc5919083908110610d9357fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff1684611a8b565b92505b600101610d62565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610e1557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600354600160a060020a031681565b60408051908101604052600581527f414c4c4f59000000000000000000000000000000000000000000000000000000602082015281565b60008567ffffffffffffffff168567ffffffffffffffff1610158015610eed57508467ffffffffffffffff168467ffffffffffffffff1610155b1515610ef857600080fd5b600554610f04896107a5565b10610f0e57600080fd5b600160a060020a0388166000908152600660205260409020805460018101610f368382611c49565b916000526020600020906003020160005b60e06040519081016040528087610f5f576000610f61565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c0909101529190508151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff00000000000000000000000000000000000000000000000000199092169190911790555090506110e1888861113e565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b6000338261114c824261116e565b81111561115857600080fd5b6111628585611aba565b92505b5b505092915050565b600080600080600061117f876107a5565b9350831515611199576111928787611ba4565b94506112b1565b60009250600091505b8382101561128757600160a060020a038716600090815260066020526040902080546112799185916112749190869081106111d957fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015289611bb8565b611a04565b92505b6001909101906111a2565b61129961129388610dd8565b84611a71565b90506112ae816112a98989611ba4565b611be1565b94505b5050505092915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546112f3908363ffffffff611a0416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600080838610156113a157600091506113db565b8286106113b0578691506113db565b6113d56113c6886113c18989611a71565b611bfb565b6113d08588611a71565b611c2d565b90508091505b5095945050505050565b600160a060020a03821660009081526006602052604081208054829182918590811061140d57fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561143c57600080fd5b825433600160a060020a0390811691161461145657600080fd5b600283015460c860020a900460ff1661146f5733611473565b61dead5b91506115028360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611bb8565b600160a060020a03861660009081526006602052604090208054919250908590811061152a57fe5b906000526020600020906003020160005b50805473ffffffffffffffffffffffffffffffffffffffff19168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0387168152600660205260409020805490916115b0919063ffffffff611a7116565b815481106115ba57fe5b906000526020600020906003020160005b50600160a060020a03861660009081526006602052604090208054869081106115f057fe5b906000526020600020906003020160005b508154815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff000000000000000000000000000000000000000000000000001990921691909117909155851660009081526006602052604090208054600019019061174f9082611c49565b50600160a060020a038216600090815260016020526040902054611779908263ffffffff611a0416565b600160a060020a0380841660009081526001602052604080822093909355908716815220546117ae908263ffffffff611a7116565b600160a060020a03808716600081815260016020526040908190209390935590841691600080516020611d128339815191529084905190815260200160405180910390a35b5050505050565b60035433600160a060020a0390811691161461181557600080fd5b600160a060020a038116151561182a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6000600160a060020a03831615156118aa57600080fd5b600160a060020a0384166000908152600160205260409020548211156118cf57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561190257600080fd5b600160a060020a03841660009081526001602052604090205461192b908363ffffffff611a7116565b600160a060020a038086166000908152600160205260408082209390935590851681522054611960908363ffffffff611a0416565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546119a8908363ffffffff611a7116565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020611d128339815191529085905190815260200160405180910390a35060015b9392505050565b600082820183811015611a1657600080fd5b8091505b5092915050565b6000611a6883602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff1661138d565b90505b92915050565b600082821115611a8057600080fd5b508082035b92915050565b60008167ffffffffffffffff168367ffffffffffffffff161015611aaf5781611a68565b825b90505b92915050565b6000600160a060020a0383161515611ad157600080fd5b600160a060020a033316600090815260016020526040902054821115611af657600080fd5b600160a060020a033316600090815260016020526040902054611b1f908363ffffffff611a7116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611b54908363ffffffff611a0416565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020611d128339815191529085905190815260200160405180910390a35060015b92915050565b6000611a6883610dd8565b90505b92915050565b6000611a68611bc78484611a21565b84602001519063ffffffff611a7116565b90505b92915050565b6000818310611aaf5781611a68565b825b90505b92915050565b6000828202831580611c175750828482811515611c1457fe5b04145b1515611a1657600080fd5b8091505b5092915050565b6000808284811515611c3b57fe5b0490508091505b5092915050565b815481835581811511611c7557600302816003028360005260206000209182019101611c759190611cad565b5b505050565b815481835581811511611c7557600302816003028360005260206000209182019101611c759190611cad565b5b505050565b610e6991905b80821115611d0a57805473ffffffffffffffffffffffffffffffffffffffff191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600301611cb3565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f75f04930cc3c180ea82fb0f09bc15fe2c7f01ecec1f72598da83e8bed455b9c0029

Deployed Bytecode

0x606060405236156101515763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302a72a4c811461015657806305d2035b1461018757806306fdde03146101ae578063095ea7b31461023957806318160ddd1461026f57806323b872dd146102945780632c71e60a146102d0578063313ce5671461034b57806340c10f191461037057806342c1867b146103a657806343214675146103d9578063600e85b7146103ff57806366188463146104805780636c182e99146104b657806370a08231146104f25780637d64bcb4146105235780638da5cb5b1461054a57806395d89b41146101ae5780639754a4d914610604578063a9059cbb1461064b578063d347c20514610681578063d73dd623146106bf578063dd62ed3e146106f5578063df3c211b1461072c578063eb944e4c14610760578063f2fde38b14610784575b600080fd5b341561016157600080fd5b610175600160a060020a03600435166107a5565b60405190815260200160405180910390f35b341561019257600080fd5b61019a6107c4565b604051901515815260200160405180910390f35b34156101b957600080fd5b6101c16107d4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024457600080fd5b61019a600160a060020a036004351660243561080b565b604051901515815260200160405180910390f35b341561027a57600080fd5b610175610878565b60405190815260200160405180910390f35b341561029f57600080fd5b61019a600160a060020a036004358116906024351660443561087e565b604051901515815260200160405180910390f35b34156102db57600080fd5b6102f2600160a060020a03600435166024356108b0565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561035657600080fd5b610175610936565b60405190815260200160405180910390f35b341561037b57600080fd5b61019a600160a060020a036004351660243561093b565b604051901515815260200160405180910390f35b34156103b157600080fd5b61019a600160a060020a0360043516610a42565b604051901515815260200160405180910390f35b34156103e457600080fd5b6103fd600160a060020a03600435166024351515610a57565b005b341561040a57600080fd5b610421600160a060020a0360043516602435610afd565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561048b57600080fd5b61019a600160a060020a0360043516602435610c4a565b604051901515815260200160405180910390f35b34156104c157600080fd5b6104d5600160a060020a0360043516610d46565b60405167ffffffffffffffff909116815260200160405180910390f35b34156104fd57600080fd5b610175600160a060020a0360043516610dd8565b60405190815260200160405180910390f35b341561052e57600080fd5b61019a610df7565b604051901515815260200160405180910390f35b341561055557600080fd5b61055d610e6d565b604051600160a060020a03909116815260200160405180910390f35b34156101b957600080fd5b6101c16107d4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561060f57600080fd5b6103fd600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c4351515610eb3565b005b341561065657600080fd5b61019a600160a060020a036004351660243561113e565b604051901515815260200160405180910390f35b341561068c57600080fd5b610175600160a060020a036004351667ffffffffffffffff6024351661116e565b60405190815260200160405180910390f35b34156106ca57600080fd5b61019a600160a060020a03600435166024356112bb565b604051901515815260200160405180910390f35b341561070057600080fd5b610175600160a060020a0360043581169060243516611360565b60405190815260200160405180910390f35b341561073757600080fd5b61017560043560243560443560643560843561138d565b60405190815260200160405180910390f35b341561076b57600080fd5b6103fd600160a060020a03600435166024356113e5565b005b341561078f57600080fd5b6103fd600160a060020a03600435166117fa565b005b600160a060020a0381166000908152600660205260409020545b919050565b60035460a060020a900460ff1681565b60408051908101604052600581527f414c4c4f59000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b6000838261088c824261116e565b81111561089857600080fd5b6108a3868686611893565b92505b5b50509392505050565b6006602052816000526040600020818154811015156108cb57fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b601281565b600160a060020a03331660009081526004602052604081205460ff16151561096257600080fd5b60035460a060020a900460ff161561097957600080fd5b60005461098c908363ffffffff611a0416565b6000908155600160a060020a0384168152600160205260409020546109b7908363ffffffff611a0416565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a03166000600080516020611d128339815191528460405190815260200160405180910390a35060015b5b5b92915050565b60046020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a7257600080fd5b60035460a060020a900460ff1615610a8957600080fd5b600160a060020a03821660009081526004602052604090819020805460ff19168315151790557f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5b5050565b6000806000806000806000806000600660008c600160a060020a0316600160a060020a031681526020019081526020016000208a815481101515610b3d57fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a9091041692509050610c398160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611a21565b96505b509295985092959890939650565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610ca757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610cde565b610cb7818463ffffffff611a7116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a03811660009081526006602052604081205442915b81811015610dd057600160a060020a03841660009081526006602052604090208054610dc5919083908110610d9357fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff1684611a8b565b92505b600101610d62565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610e1557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600354600160a060020a031681565b60408051908101604052600581527f414c4c4f59000000000000000000000000000000000000000000000000000000602082015281565b60008567ffffffffffffffff168567ffffffffffffffff1610158015610eed57508467ffffffffffffffff168467ffffffffffffffff1610155b1515610ef857600080fd5b600554610f04896107a5565b10610f0e57600080fd5b600160a060020a0388166000908152600660205260409020805460018101610f368382611c49565b916000526020600020906003020160005b60e06040519081016040528087610f5f576000610f61565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c0909101529190508151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff00000000000000000000000000000000000000000000000000199092169190911790555090506110e1888861113e565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b6000338261114c824261116e565b81111561115857600080fd5b6111628585611aba565b92505b5b505092915050565b600080600080600061117f876107a5565b9350831515611199576111928787611ba4565b94506112b1565b60009250600091505b8382101561128757600160a060020a038716600090815260066020526040902080546112799185916112749190869081106111d957fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015289611bb8565b611a04565b92505b6001909101906111a2565b61129961129388610dd8565b84611a71565b90506112ae816112a98989611ba4565b611be1565b94505b5050505092915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546112f3908363ffffffff611a0416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600080838610156113a157600091506113db565b8286106113b0578691506113db565b6113d56113c6886113c18989611a71565b611bfb565b6113d08588611a71565b611c2d565b90508091505b5095945050505050565b600160a060020a03821660009081526006602052604081208054829182918590811061140d57fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561143c57600080fd5b825433600160a060020a0390811691161461145657600080fd5b600283015460c860020a900460ff1661146f5733611473565b61dead5b91506115028360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611bb8565b600160a060020a03861660009081526006602052604090208054919250908590811061152a57fe5b906000526020600020906003020160005b50805473ffffffffffffffffffffffffffffffffffffffff19168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0387168152600660205260409020805490916115b0919063ffffffff611a7116565b815481106115ba57fe5b906000526020600020906003020160005b50600160a060020a03861660009081526006602052604090208054869081106115f057fe5b906000526020600020906003020160005b508154815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff000000000000000000000000000000000000000000000000001990921691909117909155851660009081526006602052604090208054600019019061174f9082611c49565b50600160a060020a038216600090815260016020526040902054611779908263ffffffff611a0416565b600160a060020a0380841660009081526001602052604080822093909355908716815220546117ae908263ffffffff611a7116565b600160a060020a03808716600081815260016020526040908190209390935590841691600080516020611d128339815191529084905190815260200160405180910390a35b5050505050565b60035433600160a060020a0390811691161461181557600080fd5b600160a060020a038116151561182a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6000600160a060020a03831615156118aa57600080fd5b600160a060020a0384166000908152600160205260409020548211156118cf57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561190257600080fd5b600160a060020a03841660009081526001602052604090205461192b908363ffffffff611a7116565b600160a060020a038086166000908152600160205260408082209390935590851681522054611960908363ffffffff611a0416565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546119a8908363ffffffff611a7116565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020611d128339815191529085905190815260200160405180910390a35060015b9392505050565b600082820183811015611a1657600080fd5b8091505b5092915050565b6000611a6883602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff1661138d565b90505b92915050565b600082821115611a8057600080fd5b508082035b92915050565b60008167ffffffffffffffff168367ffffffffffffffff161015611aaf5781611a68565b825b90505b92915050565b6000600160a060020a0383161515611ad157600080fd5b600160a060020a033316600090815260016020526040902054821115611af657600080fd5b600160a060020a033316600090815260016020526040902054611b1f908363ffffffff611a7116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611b54908363ffffffff611a0416565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020611d128339815191529085905190815260200160405180910390a35060015b92915050565b6000611a6883610dd8565b90505b92915050565b6000611a68611bc78484611a21565b84602001519063ffffffff611a7116565b90505b92915050565b6000818310611aaf5781611a68565b825b90505b92915050565b6000828202831580611c175750828482811515611c1457fe5b04145b1515611a1657600080fd5b8091505b5092915050565b6000808284811515611c3b57fe5b0490508091505b5092915050565b815481835581811511611c7557600302816003028360005260206000209182019101611c759190611cad565b5b505050565b815481835581811511611c7557600302816003028360005260206000209182019101611c759190611cad565b5b505050565b610e6991905b80821115611d0a57805473ffffffffffffffffffffffffffffffffffffffff191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600301611cb3565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f75f04930cc3c180ea82fb0f09bc15fe2c7f01ecec1f72598da83e8bed455b9c0029

Swarm Source

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