ETH Price: $2,505.76 (-0.31%)

Token

BitDATA Token (BDT)
 

Overview

Max Total Supply

3,000,000,000 BDT

Holders

12,489

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
say520.eth
Balance
0.000000000002097152 BDT

Value
$0.00
0x990548bb88e91de3d88339e61662b22ffde44079
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BitData through the distributed quantitative credit evaluation system, smart contract and other blockchain technologies, the data market tool is transformed into a chain of intelligent financial public chain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BitDATAToken

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-09-29
*/

pragma solidity ^0.4.11;

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

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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;
  }

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

    return c;
  }

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

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

contract Owned {

    /// `owner` is the only address that can call a function with this
    /// modifier
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    address public owner;

    /// @notice The Constructor assigns the message sender to be `owner`
    function Owned() {
        owner = msg.sender;
    }

    address newOwner=0x0;

    event OwnerUpdate(address _prevOwner, address _newOwner);

    ///change the owner
    function changeOwner(address _newOwner) public onlyOwner {
        require(_newOwner != owner);
        newOwner = _newOwner;
    }

    /// accept the ownership
    function acceptOwnership() public{
        require(msg.sender == newOwner);
        OwnerUpdate(owner, newOwner);
        owner = newOwner;
        newOwner = 0x0;
    }
}

contract Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event Frozen(address indexed _spender, uint256 _value);
}

contract Controlled is Owned{

    function Controlled() {
       setExclude(msg.sender);
    }

    // Flag that determines if the token is transferable or not.
    bool public transferEnabled = false;

    // flag that makes locked address effect
    bool lockFlag=true;
    mapping(address => bool) locked;
    mapping(address => bool) exclude;

    function enableTransfer(bool _enable) 
    public onlyOwner{
        transferEnabled=_enable;
    }
    function disableLock(bool _enable)
    onlyOwner
    returns (bool success){
        lockFlag=_enable;
        return true;
    }
    function addLock(address _addr) 
    onlyOwner 
    returns (bool success){
        require(_addr!=msg.sender);
        locked[_addr]=true;
        return true;
    }

    function setExclude(address _addr) 
    onlyOwner 
    returns (bool success){
        exclude[_addr]=true;
        return true;
    }
    function removeLock(address _addr)
    onlyOwner
    returns (bool success){
        locked[_addr]=false;
        return true;
    }

    modifier transferAllowed {
        if (!exclude[msg.sender]) {
            assert(transferEnabled);
            if(lockFlag){
                assert(!locked[msg.sender]);
            }
        }
        
        _;
    }
  
}

/*
You should inherit from StandardToken or, for a token like you would want to
deploy in something like Mist, see HumanStandardToken.sol.
(This implements ONLY the standard functions and NOTHING else.
If you deploy this, you won't have anything useful.)

Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20
.*/

contract StandardToken is Token,Controlled {
    using SafeMath for uint;

    function transfer(address _to, uint256 _value) transferAllowed returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        if (balances[msg.sender] >= _value.add(frozenBalance[msg.sender]) && _value > 0) {
            balances[msg.sender] = balances[msg.sender].sub(_value);
            balances[_to] = balances[_to].add(_value);
            Transfer(msg.sender, _to, _value);
            return true;
        } else { throw; }
    }

    function transferFrom(address _from, address _to, uint256 _value) transferAllowed returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        if (balances[_from] >= _value.add(frozenBalance[_from]) && _value > 0) {
            balances[_to] = balances[_to].add(_value);
            balances[_from] = balances[_from].sub(_value);
            allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
            Transfer(_from, _to, _value);
            return true;
        } else { throw; }
    }

    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    function setFrozen(address _spender, uint256 _value) onlyOwner returns (bool success) {
        if (_value < 0) {
            throw;
        }
        frozenBalance[_spender] = _value;
        Frozen(_spender, _value);
        return true;
    }

    function getFrozen(address _owner) constant returns (uint256 balance) {
        return frozenBalance[_owner];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => uint256) frozenBalance; // user cannot use balance in frozenBalance
}

contract BitDATAToken is StandardToken {

    function () {
        //if ether is sent to this address, send it back.
        throw;
    }

    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   //fancy name: eg Simon Bucks
    uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
    string public symbol;                 //An identifier: eg SBX

    function BitDATAToken() {
        totalSupply = 3000000000 * (10 ** 18); 
        balances[msg.sender] = totalSupply;               // Give the creator all initial tokens
        name = "BitDATA Token";                                   // Set the name for display purposes
        decimals = 18;                            // Amount of decimals for display purposes
        symbol = "BDT";                       // Set the symbol for display purposes
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);

        //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
        //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"setFrozen","outputs":[{"name":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"getFrozen","outputs":[{"name":"balance","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":"_addr","type":"address"}],"name":"removeLock","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"setExclude","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"addLock","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_enable","type":"bool"}],"name":"disableLock","outputs":[{"name":"success","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":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","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":false,"inputs":[{"name":"_enable","type":"bool"}],"name":"enableTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","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"},{"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":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Frozen","type":"event"}]

608060405260028054600160b060020a03191675010000000000000000000000000000000000000000001790553480156200003957600080fd5b5060018054600160a060020a03191633600160a060020a038116919091179091556200006e906401000000006200013d810204565b506b09b18ab5df7180b6b80000006000818155600160a060020a033316815260056020908152604091829020929092558051808201909152600d8082527f4269744441544120546f6b656e0000000000000000000000000000000000000091909201908152620000e2916008919062000185565b506009805460ff191660121790556040805180820190915260038082527f424454000000000000000000000000000000000000000000000000000000000060209092019182526200013691600a9162000185565b506200022a565b60015460009033600160a060020a039081169116146200015c57600080fd5b50600160a060020a03166000908152600460205260409020805460ff1916600190811790915590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b6200022791905b8082111562000206576000815560010162000211565b90565b610f54806200023a6000396000f3006080604052600436106101035763ffffffff60e060020a60003504166306fdde038114610115578063095ea7b31461019f578063139818a1146101d757806318160ddd146101fb57806323b872dd14610222578063298e685a1461024c578063313ce5671461026d5780634a387bef146102985780634cd412d5146102b95780635f6f8b5f146102ce57806370a08231146102ef57806379ba509714610310578063882f327b146103275780638da5cb5b1461034857806391c71e2b1461037957806395d89b4114610393578063a6f9dae1146103a8578063a9059cbb146103c9578063cae9ca51146103ed578063dd62ed3e14610456578063ef7ac0e51461047d575b34801561010f57600080fd5b50600080fd5b34801561012157600080fd5b5061012a610497565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016457818101518382015260200161014c565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ab57600080fd5b506101c3600160a060020a0360043516602435610525565b604080519115158252519081900360200190f35b3480156101e357600080fd5b506101c3600160a060020a0360043516602435610590565b34801561020757600080fd5b50610210610615565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101c3600160a060020a036004358116906024351660443561061b565b34801561025857600080fd5b50610210600160a060020a0360043516610818565b34801561027957600080fd5b50610282610833565b6040805160ff9092168252519081900360200190f35b3480156102a457600080fd5b506101c3600160a060020a036004351661083c565b3480156102c557600080fd5b506101c361087f565b3480156102da57600080fd5b506101c3600160a060020a03600435166108a0565b3480156102fb57600080fd5b50610210600160a060020a03600435166108e7565b34801561031c57600080fd5b50610325610902565b005b34801561033357600080fd5b506101c3600160a060020a036004351661099d565b34801561035457600080fd5b5061035d610a05565b60408051600160a060020a039092168252519081900360200190f35b34801561038557600080fd5b506101c36004351515610a14565b34801561039f57600080fd5b5061012a610a77565b3480156103b457600080fd5b50610325600160a060020a0360043516610ad2565b3480156103d557600080fd5b506101c3600160a060020a0360043516602435610b37565b3480156103f957600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101c3948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610cda9650505050505050565b34801561046257600080fd5b50610210600160a060020a0360043581169060243516610e79565b34801561048957600080fd5b506103256004351515610ea4565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b505050505081565b600160a060020a03338116600081815260066020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60015460009033600160a060020a039081169116146105ae57600080fd5b60008210156105bc57600080fd5b600160a060020a038316600081815260076020908152604091829020859055815185815291517f68e0d8c112165d0949ce87205b719ed7d98c7401866c34a159f7c67c6f5620e79281900390910190a250600192915050565b60005481565b600160a060020a03331660009081526004602052604081205460ff1615156106aa5760025474010000000000000000000000000000000000000000900460ff16151561066357fe5b6002547501000000000000000000000000000000000000000000900460ff16156106aa57600160a060020a03331660009081526003602052604090205460ff16156106aa57fe5b600160a060020a0384166000908152600760205260409020546106d490839063ffffffff610eff16565b600160a060020a038516600090815260056020526040902054108015906106fb5750600082115b1561080c57600160a060020a038316600090815260056020526040902054610729908363ffffffff610eff16565b600160a060020a03808516600090815260056020526040808220939093559086168152205461075e908363ffffffff610f1116565b600160a060020a03808616600090815260056020908152604080832094909455600681528382203390931682529190915220546107a1908363ffffffff610f1116565b600160a060020a038086166000818152600660209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610811565b600080fd5b9392505050565b600160a060020a031660009081526007602052604090205490565b60095460ff1681565b60015460009033600160a060020a0390811691161461085a57600080fd5b50600160a060020a03166000908152600360205260409020805460ff19169055600190565b60025474010000000000000000000000000000000000000000900460ff1681565b60015460009033600160a060020a039081169116146108be57600080fd5b50600160a060020a03166000908152600460205260409020805460ff1916600190811790915590565b600160a060020a031660009081526005602052604090205490565b60025433600160a060020a0390811691161461091d57600080fd5b60015460025460408051600160a060020a03938416815292909116602083015280517f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a9281900390910190a1600280546001805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60015460009033600160a060020a039081169116146109bb57600080fd5b33600160a060020a031682600160a060020a0316141515156109dc57600080fd5b50600160a060020a03166000908152600360205260409020805460ff1916600190811790915590565b600154600160a060020a031681565b60015460009033600160a060020a03908116911614610a3257600080fd5b506002805482151575010000000000000000000000000000000000000000000275ff000000000000000000000000000000000000000000199091161790556001919050565b600a805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051d5780601f106104f25761010080835404028352916020019161051d565b60015433600160a060020a03908116911614610aed57600080fd5b600154600160a060020a0382811691161415610b0857600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03331660009081526004602052604081205460ff161515610bc65760025474010000000000000000000000000000000000000000900460ff161515610b7f57fe5b6002547501000000000000000000000000000000000000000000900460ff1615610bc657600160a060020a03331660009081526003602052604090205460ff1615610bc657fe5b600160a060020a033316600090815260076020526040902054610bf090839063ffffffff610eff16565b600160a060020a03331660009081526005602052604090205410801590610c175750600082115b1561080c57600160a060020a033316600090815260056020526040902054610c45908363ffffffff610f1116565b600160a060020a033381166000908152600560205260408082209390935590851681522054610c7a908363ffffffff610eff16565b600160a060020a038085166000818152600560209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600161058a565b600160a060020a03338116600081815260066020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610e1e578181015183820152602001610e06565b50505050905090810190601f168015610e4b5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af1925050501515610e6f57600080fd5b5060019392505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610ebf57600080fd5b60028054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60008282018381101561081157600080fd5b60008083831115610f2157600080fd5b50509003905600a165627a7a723058202eb04f7fa1d53a43d1aeec1008955b020f21d3e4dc3e8c0c35d53ca381fba2fe0029

Deployed Bytecode

0x6080604052600436106101035763ffffffff60e060020a60003504166306fdde038114610115578063095ea7b31461019f578063139818a1146101d757806318160ddd146101fb57806323b872dd14610222578063298e685a1461024c578063313ce5671461026d5780634a387bef146102985780634cd412d5146102b95780635f6f8b5f146102ce57806370a08231146102ef57806379ba509714610310578063882f327b146103275780638da5cb5b1461034857806391c71e2b1461037957806395d89b4114610393578063a6f9dae1146103a8578063a9059cbb146103c9578063cae9ca51146103ed578063dd62ed3e14610456578063ef7ac0e51461047d575b34801561010f57600080fd5b50600080fd5b34801561012157600080fd5b5061012a610497565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016457818101518382015260200161014c565b50505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ab57600080fd5b506101c3600160a060020a0360043516602435610525565b604080519115158252519081900360200190f35b3480156101e357600080fd5b506101c3600160a060020a0360043516602435610590565b34801561020757600080fd5b50610210610615565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101c3600160a060020a036004358116906024351660443561061b565b34801561025857600080fd5b50610210600160a060020a0360043516610818565b34801561027957600080fd5b50610282610833565b6040805160ff9092168252519081900360200190f35b3480156102a457600080fd5b506101c3600160a060020a036004351661083c565b3480156102c557600080fd5b506101c361087f565b3480156102da57600080fd5b506101c3600160a060020a03600435166108a0565b3480156102fb57600080fd5b50610210600160a060020a03600435166108e7565b34801561031c57600080fd5b50610325610902565b005b34801561033357600080fd5b506101c3600160a060020a036004351661099d565b34801561035457600080fd5b5061035d610a05565b60408051600160a060020a039092168252519081900360200190f35b34801561038557600080fd5b506101c36004351515610a14565b34801561039f57600080fd5b5061012a610a77565b3480156103b457600080fd5b50610325600160a060020a0360043516610ad2565b3480156103d557600080fd5b506101c3600160a060020a0360043516602435610b37565b3480156103f957600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101c3948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610cda9650505050505050565b34801561046257600080fd5b50610210600160a060020a0360043581169060243516610e79565b34801561048957600080fd5b506103256004351515610ea4565b6008805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b505050505081565b600160a060020a03338116600081815260066020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60015460009033600160a060020a039081169116146105ae57600080fd5b60008210156105bc57600080fd5b600160a060020a038316600081815260076020908152604091829020859055815185815291517f68e0d8c112165d0949ce87205b719ed7d98c7401866c34a159f7c67c6f5620e79281900390910190a250600192915050565b60005481565b600160a060020a03331660009081526004602052604081205460ff1615156106aa5760025474010000000000000000000000000000000000000000900460ff16151561066357fe5b6002547501000000000000000000000000000000000000000000900460ff16156106aa57600160a060020a03331660009081526003602052604090205460ff16156106aa57fe5b600160a060020a0384166000908152600760205260409020546106d490839063ffffffff610eff16565b600160a060020a038516600090815260056020526040902054108015906106fb5750600082115b1561080c57600160a060020a038316600090815260056020526040902054610729908363ffffffff610eff16565b600160a060020a03808516600090815260056020526040808220939093559086168152205461075e908363ffffffff610f1116565b600160a060020a03808616600090815260056020908152604080832094909455600681528382203390931682529190915220546107a1908363ffffffff610f1116565b600160a060020a038086166000818152600660209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610811565b600080fd5b9392505050565b600160a060020a031660009081526007602052604090205490565b60095460ff1681565b60015460009033600160a060020a0390811691161461085a57600080fd5b50600160a060020a03166000908152600360205260409020805460ff19169055600190565b60025474010000000000000000000000000000000000000000900460ff1681565b60015460009033600160a060020a039081169116146108be57600080fd5b50600160a060020a03166000908152600460205260409020805460ff1916600190811790915590565b600160a060020a031660009081526005602052604090205490565b60025433600160a060020a0390811691161461091d57600080fd5b60015460025460408051600160a060020a03938416815292909116602083015280517f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a9281900390910190a1600280546001805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60015460009033600160a060020a039081169116146109bb57600080fd5b33600160a060020a031682600160a060020a0316141515156109dc57600080fd5b50600160a060020a03166000908152600360205260409020805460ff1916600190811790915590565b600154600160a060020a031681565b60015460009033600160a060020a03908116911614610a3257600080fd5b506002805482151575010000000000000000000000000000000000000000000275ff000000000000000000000000000000000000000000199091161790556001919050565b600a805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051d5780601f106104f25761010080835404028352916020019161051d565b60015433600160a060020a03908116911614610aed57600080fd5b600154600160a060020a0382811691161415610b0857600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03331660009081526004602052604081205460ff161515610bc65760025474010000000000000000000000000000000000000000900460ff161515610b7f57fe5b6002547501000000000000000000000000000000000000000000900460ff1615610bc657600160a060020a03331660009081526003602052604090205460ff1615610bc657fe5b600160a060020a033316600090815260076020526040902054610bf090839063ffffffff610eff16565b600160a060020a03331660009081526005602052604090205410801590610c175750600082115b1561080c57600160a060020a033316600090815260056020526040902054610c45908363ffffffff610f1116565b600160a060020a033381166000908152600560205260408082209390935590851681522054610c7a908363ffffffff610eff16565b600160a060020a038085166000818152600560209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600161058a565b600160a060020a03338116600081815260066020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610e1e578181015183820152602001610e06565b50505050905090810190601f168015610e4b5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af1925050501515610e6f57600080fd5b5060019392505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610ebf57600080fd5b60028054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b60008282018381101561081157600080fd5b60008083831115610f2157600080fd5b50509003905600a165627a7a723058202eb04f7fa1d53a43d1aeec1008955b020f21d3e4dc3e8c0c35d53ca381fba2fe0029

Swarm Source

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