ETH Price: $3,466.97 (+2.28%)
Gas: 13 Gwei

Token

BARRELNETWORK (BARL)
 

Overview

Max Total Supply

2,000,000,000 BARL

Holders

228

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
10,000 BARL

Value
$0.00
0xf811c7cda02d03012577d45d9cbfad4358d5390d
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:
BARL

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-06-23
*/

pragma solidity ^0.4.23;



/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 * Name : BARRELNETWORK (BARL)
 * Decimals : 18
 * TotalSupply : 2000000000
 * 
 * 
 * 
 * 
 */
library SafeMath {

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

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

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

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

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

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 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 BARL is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

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

    string public constant name = "BARRELNETWORK";
    string public constant symbol = "BARL";
    uint public constant decimals = 0;
    
    uint256 public totalSupply = 2000000000;
    uint256 public totalDistributed = 400000000;    
    uint256 public tokensPerEth = 1000000;
    

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();

    event Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    
    function BARL () public {
        owner = msg.sender;    
        distr(owner, totalDistributed);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }
    

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);        
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }

    function doAirdrop(address _participant, uint _amount) internal {

        require( _amount > 0 );      

        require( totalDistributed < totalSupply );
        
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }

        // log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }

    function adminClaimAirdrop(address _participant, uint _amount) public onlyOwner {        
        doAirdrop(_participant, _amount);
    }

    function adminClaimAirdropMultiple(address[] _addresses, uint _amount) public onlyOwner {        
        for (uint i = 0; i < _addresses.length; i++) doAirdrop(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
           
    function () external payable {
        getTokens();
     }
    
    function getTokens() payable canDistr  public {
        uint256 tokens = 0;

        
        // get baseline number of tokens
        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;
        
        if (tokens > 0) {
            distr(investor, tokens);
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }

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

    // mitigates the ERC20 short address attack
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        // mitigates the ERC20 spend/approval race condition
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }
    
    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

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":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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405260018054600160a060020a03191633600160a060020a031617905563773594006004556317d78400600555620f42406006556007805460ff1916905534801561004c57600080fd5b5060018054600160a060020a03191633600160a060020a039081169190911791829055600554610088929091169064010000000061008e810204565b5061019d565b60075460009060ff16156100a157600080fd5b6005546100bb9083640100000000610e8e61018a82021704565b600555600160a060020a0383166000908152600260205260409020546100ee9083640100000000610e8e61018a82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b8181018281101561019757fe5b92915050565b610ffa806101ac6000396000f30060806040526004361061010e5763ffffffff60e060020a60003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101da57806323b872dd14610201578063313ce5671461022b5780633ccfd60b1461024057806342966c68146102555780634a63464d1461026d57806367220fd71461029157806370a08231146102e857806395d89b41146103095780639b1cbccc1461031e5780639ea407be14610333578063a9059cbb1461034b578063aa6ca8081461010e578063c108d5421461036f578063c489744b14610384578063cbdd69b5146103ab578063dd62ed3e146103c0578063e58fc54c146103e7578063efca2eed14610408578063f2fde38b1461041d575b61011661043e565b005b34801561012457600080fd5b5061012d6104b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016757818101518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ae57600080fd5b506101c6600160a060020a03600435166024356104ec565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610595565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c6600160a060020a036004358116906024351660443561059b565b34801561023757600080fd5b506101ef610719565b34801561024c57600080fd5b5061011661071e565b34801561026157600080fd5b50610116600435610785565b34801561027957600080fd5b50610116600160a060020a0360043516602435610875565b34801561029d57600080fd5b506040805160206004803580820135838102808601850190965280855261011695369593946024949385019291829185019084908082843750949750509335945061089a9350505050565b3480156102f457600080fd5b506101ef600160a060020a03600435166108ee565b34801561031557600080fd5b5061012d610909565b34801561032a57600080fd5b506101c6610940565b34801561033f57600080fd5b506101166004356109aa565b34801561035757600080fd5b506101c6600160a060020a0360043516602435610a00565b34801561037b57600080fd5b506101c6610af7565b34801561039057600080fd5b506101ef600160a060020a0360043581169060243516610b00565b3480156103b757600080fd5b506101ef610b98565b3480156103cc57600080fd5b506101ef600160a060020a0360043581169060243516610b9e565b3480156103f357600080fd5b506101c6600160a060020a0360043516610bc9565b34801561041457600080fd5b506101ef610d1b565b34801561042957600080fd5b50610116600160a060020a0360043516610d21565b600754600090819060ff161561045357600080fd5b60065460009250670de0b6b3a764000090610474903463ffffffff610d7716565b81151561047d57fe5b0491503390506000821115610498576104968183610da0565b505b600454600554106104b1576007805460ff191660011790555b5050565b60408051808201909152600d81527f42415252454c4e4554574f524b00000000000000000000000000000000000000602082015281565b600081158015906105215750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561052e5750600061058f565b600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60045481565b6000606060643610156105aa57fe5b600160a060020a03841615156105bf57600080fd5b600160a060020a0385166000908152600260205260409020548311156105e457600080fd5b600160a060020a038086166000908152600360209081526040808320339094168352929052205483111561061757600080fd5b600160a060020a038516600090815260026020526040902054610640908463ffffffff610e7c16565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610683908463ffffffff610e7c16565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546106c9908463ffffffff610e8e16565b600160a060020a038086166000818152600260209081526040918290209490945580518781529051919392891692600080516020610faf83398151915292918290030190a3506001949350505050565b600081565b600154600090819033600160a060020a0390811691161461073e57600080fd5b50506001546040513091600160a060020a03808416319291169082156108fc029083906000818181858888f19350505050158015610780573d6000803e3d6000fd5b505050565b60015460009033600160a060020a039081169116146107a357600080fd5b600160a060020a0333166000908152600260205260409020548211156107c857600080fd5b5033600160a060020a0381166000908152600260205260409020546107ed9083610e7c565b600160a060020a038216600090815260026020526040902055600454610819908363ffffffff610e7c16565b60045560055461082f908363ffffffff610e7c16565b600555604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60015433600160a060020a0390811691161461089057600080fd5b6104b18282610e9b565b60015460009033600160a060020a039081169116146108b857600080fd5b5060005b8251811015610780576108e683828151811015156108d657fe5b9060200190602002015183610e9b565b6001016108bc565b600160a060020a031660009081526002602052604090205490565b60408051808201909152600481527f4241524c00000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461095e57600080fd5b60075460ff161561096e57600080fd5b6007805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b60015433600160a060020a039081169116146109c557600080fd5b60068190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610a0f57fe5b600160a060020a0384161515610a2457600080fd5b600160a060020a033316600090815260026020526040902054831115610a4957600080fd5b600160a060020a033316600090815260026020526040902054610a72908463ffffffff610e7c16565b600160a060020a033381166000908152600260205260408082209390935590861681522054610aa7908463ffffffff610e8e16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191933390931692600080516020610faf83398151915292918290030190a35060019392505050565b60075460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610b6357600080fd5b505af1158015610b77573d6000803e3d6000fd5b505050506040513d6020811015610b8d57600080fd5b505195945050505050565b60065481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610beb57600080fd5b83915081600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610c4957600080fd5b505af1158015610c5d573d6000803e3d6000fd5b505050506040513d6020811015610c7357600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610ce757600080fd5b505af1158015610cfb573d6000803e3d6000fd5b505050506040513d6020811015610d1157600080fd5b5051949350505050565b60055481565b60015433600160a060020a03908116911614610d3c57600080fd5b600160a060020a03811615610d74576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610d885750600061058f565b50818102818382811515610d9857fe5b041461058f57fe5b60075460009060ff1615610db357600080fd5b600554610dc6908363ffffffff610e8e16565b600555600160a060020a038316600090815260026020526040902054610df2908363ffffffff610e8e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a03851691600091600080516020610faf8339815191529181900360200190a350600192915050565b600082821115610e8857fe5b50900390565b8181018281101561058f57fe5b60008111610ea857600080fd5b60045460055410610eb857600080fd5b600160a060020a038216600090815260026020526040902054610ee1908263ffffffff610e8e16565b600160a060020a038316600090815260026020526040902055600554610f0d908263ffffffff610e8e16565b600581905560045411610f28576007805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a03841691600091600080516020610faf8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bab5eae3fd8dbe49874d51a233669abae06b5c3c8fbd04a174cbc636463b1cf30029

Deployed Bytecode

0x60806040526004361061010e5763ffffffff60e060020a60003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101da57806323b872dd14610201578063313ce5671461022b5780633ccfd60b1461024057806342966c68146102555780634a63464d1461026d57806367220fd71461029157806370a08231146102e857806395d89b41146103095780639b1cbccc1461031e5780639ea407be14610333578063a9059cbb1461034b578063aa6ca8081461010e578063c108d5421461036f578063c489744b14610384578063cbdd69b5146103ab578063dd62ed3e146103c0578063e58fc54c146103e7578063efca2eed14610408578063f2fde38b1461041d575b61011661043e565b005b34801561012457600080fd5b5061012d6104b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016757818101518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ae57600080fd5b506101c6600160a060020a03600435166024356104ec565b604080519115158252519081900360200190f35b3480156101e657600080fd5b506101ef610595565b60408051918252519081900360200190f35b34801561020d57600080fd5b506101c6600160a060020a036004358116906024351660443561059b565b34801561023757600080fd5b506101ef610719565b34801561024c57600080fd5b5061011661071e565b34801561026157600080fd5b50610116600435610785565b34801561027957600080fd5b50610116600160a060020a0360043516602435610875565b34801561029d57600080fd5b506040805160206004803580820135838102808601850190965280855261011695369593946024949385019291829185019084908082843750949750509335945061089a9350505050565b3480156102f457600080fd5b506101ef600160a060020a03600435166108ee565b34801561031557600080fd5b5061012d610909565b34801561032a57600080fd5b506101c6610940565b34801561033f57600080fd5b506101166004356109aa565b34801561035757600080fd5b506101c6600160a060020a0360043516602435610a00565b34801561037b57600080fd5b506101c6610af7565b34801561039057600080fd5b506101ef600160a060020a0360043581169060243516610b00565b3480156103b757600080fd5b506101ef610b98565b3480156103cc57600080fd5b506101ef600160a060020a0360043581169060243516610b9e565b3480156103f357600080fd5b506101c6600160a060020a0360043516610bc9565b34801561041457600080fd5b506101ef610d1b565b34801561042957600080fd5b50610116600160a060020a0360043516610d21565b600754600090819060ff161561045357600080fd5b60065460009250670de0b6b3a764000090610474903463ffffffff610d7716565b81151561047d57fe5b0491503390506000821115610498576104968183610da0565b505b600454600554106104b1576007805460ff191660011790555b5050565b60408051808201909152600d81527f42415252454c4e4554574f524b00000000000000000000000000000000000000602082015281565b600081158015906105215750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561052e5750600061058f565b600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60045481565b6000606060643610156105aa57fe5b600160a060020a03841615156105bf57600080fd5b600160a060020a0385166000908152600260205260409020548311156105e457600080fd5b600160a060020a038086166000908152600360209081526040808320339094168352929052205483111561061757600080fd5b600160a060020a038516600090815260026020526040902054610640908463ffffffff610e7c16565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610683908463ffffffff610e7c16565b600160a060020a03808716600090815260036020908152604080832033851684528252808320949094559187168152600290915220546106c9908463ffffffff610e8e16565b600160a060020a038086166000818152600260209081526040918290209490945580518781529051919392891692600080516020610faf83398151915292918290030190a3506001949350505050565b600081565b600154600090819033600160a060020a0390811691161461073e57600080fd5b50506001546040513091600160a060020a03808416319291169082156108fc029083906000818181858888f19350505050158015610780573d6000803e3d6000fd5b505050565b60015460009033600160a060020a039081169116146107a357600080fd5b600160a060020a0333166000908152600260205260409020548211156107c857600080fd5b5033600160a060020a0381166000908152600260205260409020546107ed9083610e7c565b600160a060020a038216600090815260026020526040902055600454610819908363ffffffff610e7c16565b60045560055461082f908363ffffffff610e7c16565b600555604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60015433600160a060020a0390811691161461089057600080fd5b6104b18282610e9b565b60015460009033600160a060020a039081169116146108b857600080fd5b5060005b8251811015610780576108e683828151811015156108d657fe5b9060200190602002015183610e9b565b6001016108bc565b600160a060020a031660009081526002602052604090205490565b60408051808201909152600481527f4241524c00000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461095e57600080fd5b60075460ff161561096e57600080fd5b6007805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b60015433600160a060020a039081169116146109c557600080fd5b60068190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610a0f57fe5b600160a060020a0384161515610a2457600080fd5b600160a060020a033316600090815260026020526040902054831115610a4957600080fd5b600160a060020a033316600090815260026020526040902054610a72908463ffffffff610e7c16565b600160a060020a033381166000908152600260205260408082209390935590861681522054610aa7908463ffffffff610e8e16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191933390931692600080516020610faf83398151915292918290030190a35060019392505050565b60075460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610b6357600080fd5b505af1158015610b77573d6000803e3d6000fd5b505050506040513d6020811015610b8d57600080fd5b505195945050505050565b60065481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610beb57600080fd5b83915081600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610c4957600080fd5b505af1158015610c5d573d6000803e3d6000fd5b505050506040513d6020811015610c7357600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610ce757600080fd5b505af1158015610cfb573d6000803e3d6000fd5b505050506040513d6020811015610d1157600080fd5b5051949350505050565b60055481565b60015433600160a060020a03908116911614610d3c57600080fd5b600160a060020a03811615610d74576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610d885750600061058f565b50818102818382811515610d9857fe5b041461058f57fe5b60075460009060ff1615610db357600080fd5b600554610dc6908363ffffffff610e8e16565b600555600160a060020a038316600090815260026020526040902054610df2908363ffffffff610e8e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a03851691600091600080516020610faf8339815191529181900360200190a350600192915050565b600082821115610e8857fe5b50900390565b8181018281101561058f57fe5b60008111610ea857600080fd5b60045460055410610eb857600080fd5b600160a060020a038216600090815260026020526040902054610ee1908263ffffffff610e8e16565b600160a060020a038316600090815260026020526040902055600554610f0d908263ffffffff610e8e16565b600581905560045411610f28576007805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a03841691600091600080516020610faf8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bab5eae3fd8dbe49874d51a233669abae06b5c3c8fbd04a174cbc636463b1cf30029

Swarm Source

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