ETH Price: $3,339.33 (-1.32%)
Gas: 11 Gwei

Token

ufoodo Token (UFT)
 

Overview

Max Total Supply

500,000,000 UFT

Holders

405

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,722.68907563025 UFT

Value
$0.00
0xc813e4bda8b0582bab22957cc37cf712d6b5bef9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A decentralized food delivery service - fair transparent and competitive

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ufoodoToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-04-16
*/

pragma solidity ^0.4.20;


/**
 * @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) {
    if (a == 0) {
      return 0;
    }
    uint256 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) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

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

}

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

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

/**
 * @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 balance) {
    return balances[_owner];
  }

}

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

}

contract ufoodoToken is StandardToken, Ownable {
    using SafeMath for uint256;

    // Token where will be stored and managed
    address public vault = this;

    string public name = "ufoodo Token";
    string public symbol = "UFT";
    uint8 public decimals = 18;

    // Total Supply DAICO: 500,000,000 UFT
    uint256 public INITIAL_SUPPLY = 500000000 * (10**uint256(decimals));
    // 400,000,000 UFT for DAICO at Q4 2018
    uint256 public supplyDAICO = INITIAL_SUPPLY.mul(80).div(100);

    address public salesAgent;
    mapping (address => bool) public owners;

    event SalesAgentPermissionsTransferred(address indexed previousSalesAgent, address indexed newSalesAgent);
    event SalesAgentRemoved(address indexed currentSalesAgent);

    // 100,000,000 Seed UFT
    function supplySeed() public view returns (uint256) {
        uint256 _supplySeed = INITIAL_SUPPLY.mul(20).div(100);
        return _supplySeed;
    }
    // Constructor
    function ufoodoToken() public {
        totalSupply_ = INITIAL_SUPPLY;
        balances[msg.sender] = INITIAL_SUPPLY;
        emit Transfer(0x0, msg.sender, INITIAL_SUPPLY);
    }
    // Transfer sales agent permissions to another account
    function transferSalesAgentPermissions(address _salesAgent) onlyOwner public {
        emit SalesAgentPermissionsTransferred(salesAgent, _salesAgent);
        salesAgent = _salesAgent;
    }

    // Remove sales agent from token
    function removeSalesAgent() onlyOwner public {
        emit SalesAgentRemoved(salesAgent);
        salesAgent = address(0);
    }

    function transferFromVault(address _from, address _to, uint256 _amount) public {
        require(salesAgent == msg.sender);
        balances[vault] = balances[vault].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
    }

    // Lock the DAICO supply until 2018-09-01 14:00:00
    // Which can then transferred to the created DAICO contract
    function transferDaico(address _to) public onlyOwner returns(bool) {
        require(now >= 1535810400);

        balances[vault] = balances[vault].sub(supplyDAICO);
        balances[_to] = balances[_to].add(supplyDAICO);
        emit Transfer(vault, _to, supplyDAICO);
        return(true);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"owners","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":"salesAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"removeSalesAgent","outputs":[],"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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFromVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_salesAgent","type":"address"}],"name":"transferSalesAgentPermissions","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":true,"inputs":[],"name":"supplyDAICO","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"supplySeed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"transferDaico","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"constant":true,"inputs":[],"name":"vault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousSalesAgent","type":"address"},{"indexed":true,"name":"newSalesAgent","type":"address"}],"name":"SalesAgentPermissionsTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"currentSalesAgent","type":"address"}],"name":"SalesAgentRemoved","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"}]

6060604090815260048054600160a060020a03191630600160a060020a03161790558051908101604052600c81527f75666f6f646f20546f6b656e00000000000000000000000000000000000000006020820152600590805162000068929160200190620001dd565b5060408051908101604052600381527f554654000000000000000000000000000000000000000000000000000000000060208201526006908051620000b2929160200190620001dd565b5060078054601260ff19909116179081905560ff16600a0a631dcd65000260088190556200010d90606490620000f89060506401000000006200018d810262000e351704565b9064010000000062000e60620001c782021704565b60095534156200011c57600080fd5b60038054600160a060020a03191633600160a060020a0316908117909155600854600181905560008281526020819052604080822083905590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef915190815260200160405180910390a362000282565b600080831515620001a25760009150620001c0565b50828202828482811515620001b357fe5b0414620001bc57fe5b8091505b5092915050565b60008183811515620001d557fe5b049392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022057805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200025057825182559160200191906001019062000233565b506200025e92915062000262565b5090565b6200027f91905b808211156200025e576000815560010162000269565b90565b610ec180620002926000396000f3006060604052600436106101325763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461013757806306fdde031461016a578063095ea7b3146101f45780630dfa71ae1461021657806314b85c1b1461024557806318160ddd1461025a57806323b872dd1461027f5780632ff2e9dc146102a7578063313ce567146102ba578063463d50b8146102e35780634a4ede501461030b578063661884631461032a578063686644301461034c57806370a082311461035f57806380d95b421461037e5780638da5cb5b146103915780638ea74d95146103a457806395d89b41146103c3578063a9059cbb146103d6578063d73dd623146103f8578063dd62ed3e1461041a578063f2fde38b1461043f578063fbfa77cf1461045e575b600080fd5b341561014257600080fd5b610156600160a060020a0360043516610471565b604051901515815260200160405180910390f35b341561017557600080fd5b61017d610486565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b95780820151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ff57600080fd5b610156600160a060020a0360043516602435610524565b341561022157600080fd5b610229610590565b604051600160a060020a03909116815260200160405180910390f35b341561025057600080fd5b61025861059f565b005b341561026557600080fd5b61026d610611565b60405190815260200160405180910390f35b341561028a57600080fd5b610156600160a060020a0360043581169060243516604435610617565b34156102b257600080fd5b61026d610785565b34156102c557600080fd5b6102cd61078b565b60405160ff909116815260200160405180910390f35b34156102ee57600080fd5b610258600160a060020a0360043581169060243516604435610794565b341561031657600080fd5b610258600160a060020a036004351661085c565b341561033557600080fd5b610156600160a060020a03600435166024356108e2565b341561035757600080fd5b61026d6109de565b341561036a57600080fd5b61026d600160a060020a03600435166109e4565b341561038957600080fd5b61026d6109ff565b341561039c57600080fd5b610229610a2f565b34156103af57600080fd5b610156600160a060020a0360043516610a3e565b34156103ce57600080fd5b61017d610b29565b34156103e157600080fd5b610156600160a060020a0360043516602435610b94565b341561040357600080fd5b610156600160a060020a0360043516602435610c94565b341561042557600080fd5b61026d600160a060020a0360043581169060243516610d38565b341561044a57600080fd5b610258600160a060020a0360043516610d63565b341561046957600080fd5b610229610dfe565b600b6020526000908152604090205460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600a54600160a060020a031681565b60035433600160a060020a039081169116146105ba57600080fd5b600a54600160a060020a03167fc32e2b421b3313c95a389e1a47e7c8d3982ba31887d19684da68ecb4dec0cd1360405160405180910390a2600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60015490565b6000600160a060020a038316151561062e57600080fd5b600160a060020a03841660009081526020819052604090205482111561065357600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561068657600080fd5b600160a060020a0384166000908152602081905260409020546106af908363ffffffff610e0d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546106e4908363ffffffff610e1f16565b600160a060020a038085166000908152602081815260408083209490945587831682526002815283822033909316825291909152205461072a908363ffffffff610e0d16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610e768339815191529085905190815260200160405180910390a35060019392505050565b60085481565b60075460ff1681565b600a5433600160a060020a039081169116146107af57600080fd5b600454600160a060020a03166000908152602081905260409020546107da908263ffffffff610e0d16565b600454600160a060020a039081166000908152602081905260408082209390935590841681522054610812908263ffffffff610e1f16565b600160a060020a0380841660008181526020819052604090819020939093559190851690600080516020610e768339815191529084905190815260200160405180910390a3505050565b60035433600160a060020a0390811691161461087757600080fd5b600a54600160a060020a0380831691167f5f104c5f2d871de5db74dc4da6a9c7b5cc2a708472e46cf378a64f6d45fa341160405160405180910390a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561093f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610976565b61094f818463ffffffff610e0d16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60095481565b600160a060020a031660009081526020819052604090205490565b600080610a296064610a1d6014600854610e3590919063ffffffff16565b9063ffffffff610e6016565b92915050565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610a5c57600080fd5b635b8a9b60421015610a6d57600080fd5b600954600454600160a060020a0316600090815260208190526040902054610a9a9163ffffffff610e0d16565b600454600160a060020a039081166000908152602081905260408082209390935560095491851681529190912054610ad79163ffffffff610e1f16565b600160a060020a0380841660008181526020819052604090819020939093556004546009549193921691600080516020610e7683398151915291905190815260200160405180910390a3506001919050565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051c5780601f106104f15761010080835404028352916020019161051c565b6000600160a060020a0383161515610bab57600080fd5b600160a060020a033316600090815260208190526040902054821115610bd057600080fd5b600160a060020a033316600090815260208190526040902054610bf9908363ffffffff610e0d16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c2e908363ffffffff610e1f16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610e768339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ccc908363ffffffff610e1f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d7e57600080fd5b600160a060020a0381161515610d9357600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a031681565b600082821115610e1957fe5b50900390565b600082820183811015610e2e57fe5b9392505050565b600080831515610e4857600091506109d7565b50828202828482811515610e5857fe5b0414610e2e57fe5b60008183811515610e6d57fe5b0493925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206ae72dbf75e05b0545bc561a45fc7f2959f21c12b71aedb8b180365b779654760029

Deployed Bytecode

0x6060604052600436106101325763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461013757806306fdde031461016a578063095ea7b3146101f45780630dfa71ae1461021657806314b85c1b1461024557806318160ddd1461025a57806323b872dd1461027f5780632ff2e9dc146102a7578063313ce567146102ba578063463d50b8146102e35780634a4ede501461030b578063661884631461032a578063686644301461034c57806370a082311461035f57806380d95b421461037e5780638da5cb5b146103915780638ea74d95146103a457806395d89b41146103c3578063a9059cbb146103d6578063d73dd623146103f8578063dd62ed3e1461041a578063f2fde38b1461043f578063fbfa77cf1461045e575b600080fd5b341561014257600080fd5b610156600160a060020a0360043516610471565b604051901515815260200160405180910390f35b341561017557600080fd5b61017d610486565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b95780820151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ff57600080fd5b610156600160a060020a0360043516602435610524565b341561022157600080fd5b610229610590565b604051600160a060020a03909116815260200160405180910390f35b341561025057600080fd5b61025861059f565b005b341561026557600080fd5b61026d610611565b60405190815260200160405180910390f35b341561028a57600080fd5b610156600160a060020a0360043581169060243516604435610617565b34156102b257600080fd5b61026d610785565b34156102c557600080fd5b6102cd61078b565b60405160ff909116815260200160405180910390f35b34156102ee57600080fd5b610258600160a060020a0360043581169060243516604435610794565b341561031657600080fd5b610258600160a060020a036004351661085c565b341561033557600080fd5b610156600160a060020a03600435166024356108e2565b341561035757600080fd5b61026d6109de565b341561036a57600080fd5b61026d600160a060020a03600435166109e4565b341561038957600080fd5b61026d6109ff565b341561039c57600080fd5b610229610a2f565b34156103af57600080fd5b610156600160a060020a0360043516610a3e565b34156103ce57600080fd5b61017d610b29565b34156103e157600080fd5b610156600160a060020a0360043516602435610b94565b341561040357600080fd5b610156600160a060020a0360043516602435610c94565b341561042557600080fd5b61026d600160a060020a0360043581169060243516610d38565b341561044a57600080fd5b610258600160a060020a0360043516610d63565b341561046957600080fd5b610229610dfe565b600b6020526000908152604090205460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600a54600160a060020a031681565b60035433600160a060020a039081169116146105ba57600080fd5b600a54600160a060020a03167fc32e2b421b3313c95a389e1a47e7c8d3982ba31887d19684da68ecb4dec0cd1360405160405180910390a2600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60015490565b6000600160a060020a038316151561062e57600080fd5b600160a060020a03841660009081526020819052604090205482111561065357600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561068657600080fd5b600160a060020a0384166000908152602081905260409020546106af908363ffffffff610e0d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546106e4908363ffffffff610e1f16565b600160a060020a038085166000908152602081815260408083209490945587831682526002815283822033909316825291909152205461072a908363ffffffff610e0d16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610e768339815191529085905190815260200160405180910390a35060019392505050565b60085481565b60075460ff1681565b600a5433600160a060020a039081169116146107af57600080fd5b600454600160a060020a03166000908152602081905260409020546107da908263ffffffff610e0d16565b600454600160a060020a039081166000908152602081905260408082209390935590841681522054610812908263ffffffff610e1f16565b600160a060020a0380841660008181526020819052604090819020939093559190851690600080516020610e768339815191529084905190815260200160405180910390a3505050565b60035433600160a060020a0390811691161461087757600080fd5b600a54600160a060020a0380831691167f5f104c5f2d871de5db74dc4da6a9c7b5cc2a708472e46cf378a64f6d45fa341160405160405180910390a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561093f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610976565b61094f818463ffffffff610e0d16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60095481565b600160a060020a031660009081526020819052604090205490565b600080610a296064610a1d6014600854610e3590919063ffffffff16565b9063ffffffff610e6016565b92915050565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610a5c57600080fd5b635b8a9b60421015610a6d57600080fd5b600954600454600160a060020a0316600090815260208190526040902054610a9a9163ffffffff610e0d16565b600454600160a060020a039081166000908152602081905260408082209390935560095491851681529190912054610ad79163ffffffff610e1f16565b600160a060020a0380841660008181526020819052604090819020939093556004546009549193921691600080516020610e7683398151915291905190815260200160405180910390a3506001919050565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051c5780601f106104f15761010080835404028352916020019161051c565b6000600160a060020a0383161515610bab57600080fd5b600160a060020a033316600090815260208190526040902054821115610bd057600080fd5b600160a060020a033316600090815260208190526040902054610bf9908363ffffffff610e0d16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c2e908363ffffffff610e1f16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610e768339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ccc908363ffffffff610e1f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d7e57600080fd5b600160a060020a0381161515610d9357600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600454600160a060020a031681565b600082821115610e1957fe5b50900390565b600082820183811015610e2e57fe5b9392505050565b600080831515610e4857600091506109d7565b50828202828482811515610e5857fe5b0414610e2e57fe5b60008183811515610e6d57fe5b0493925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206ae72dbf75e05b0545bc561a45fc7f2959f21c12b71aedb8b180365b779654760029

Swarm Source

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