ETH Price: $3,444.60 (-1.13%)

Token

BOSCToken (BOSC)
 

Overview

Max Total Supply

428,679,360 BOSC

Holders

259

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
112.122 BOSC

Value
$0.00
0x37E87aA11288F975e45eA54ac8e3c0165aF9048B
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:
TokenBOSC

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

/*
file:       BOSCToken
version:    7.2
The Greatest Tao is formless
-----------------------------------------------------------------
*/

pragma solidity ^0.4.24;

///
//Math operations with safety checks
///
contract SafeMath {
  function safeMul(uint256 a, uint256 b) internal pure returns (uint256)  {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b > 0);
    uint256 c = a / b;
    assert(a == b * c + a % b);
    return c;
  }

  function safeSub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function safeAdd(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c>=a && c>=b);
    return c;
  }

}
///
contract owned {
    address public owner;

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}


///
// ERC Token Standard #20 Interface
///
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }


///
contract TokenERC20 is SafeMath{
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    uint256 public _totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);
    
    // This generates a public event on the blockchain that will notify clients
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    constructor(uint256 initialSupply,string tokenName,string tokenSymbol) public {
        _totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = _totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }
    

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        uint256 mbalanceofto = SafeMath.safeAdd(balanceOf[_to], _value);
        require(mbalanceofto > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = SafeMath.safeAdd(balanceOf[_from],balanceOf[_to]);
        // Subtract from the sender
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from],_value);
        // Add the same to the recipient
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to],_value);
        //
        uint currentBalances = SafeMath.safeAdd(balanceOf[_from],balanceOf[_to]);
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(currentBalances == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public returns (bool success) {
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);            // Subtract from the sender
        _totalSupply = SafeMath.safeSub(_totalSupply, _value);                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value);                         // Subtract from the targeted balance
        // Subtract from the sender's allowance
        allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);             
        _totalSupply = SafeMath.safeSub(_totalSupply,_value);                              // Update totalSupply
        emit Burn(_from, _value);
        return true;
    }
}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract TokenBOSC is owned, TokenERC20 {

    uint256 public buyPrice=2000;   
    uint256 public sellPrice=2500;     
    uint public minBalanceForAccounts;
    uint256 linitialSupply=428679360;
    string ltokenName="BOSCToken";
    string ltokenSymbol="BOSC";
    

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    constructor() TokenERC20(linitialSupply, ltokenName, ltokenSymbol) public {
    }

    /*Get total Token Supply*/
    function totalSupply() public constant returns (uint totalsupply) {
        totalsupply = _totalSupply ;
    }

      
    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (SafeMath.safeAdd(balanceOf[_to],_value) >= balanceOf[_to]); // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value);                         // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);  // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] = SafeMath.safeAdd(balanceOf[target],mintedAmount);
        _totalSupply = SafeMath.safeAdd(_totalSupply, mintedAmount);
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        emit FrozenFunds(target, freeze);
    }

    /// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth
    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }

    ///default function
    function () public payable {
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalsupply","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minBalanceForAccounts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","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":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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

6003805460ff191660121790556107d06007556109c460085563198d20c0600a5560c0604052600960808190527f424f5343546f6b656e000000000000000000000000000000000000000000000060a09081526200006191600b919062000243565b506040805180820190915260048082527f424f5343000000000000000000000000000000000000000000000000000000006020909201918252620000a891600c9162000243565b50348015620000b657600080fd5b50600a54600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620001445780601f10620001185761010080835404028352916020019162000144565b820191906000526020600020905b8154815290600101906020018083116200012657829003601f168201915b5050600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815295509193509150830182828015620001d65780601f10620001aa57610100808354040283529160200191620001d6565b820191906000526020600020905b815481529060010190602001808311620001b857829003601f168201915b505060008054600160a060020a03191633908117825560035460ff16600a0a8802600481905590825260056020908152604090922055855162000223945060019350908601915062000243565b5080516200023990600290602084019062000243565b50505050620002e8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028657805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b657825182559160200191906001019062000299565b50620002c4929150620002c8565b5090565b620002e591905b80821115620002c45760008155600101620002cf565b90565b610d8980620002f86000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461012957806306fdde0314610144578063095ea7b3146101ce57806318160ddd1461020657806323b872dd1461022d578063313ce567146102575780633eaaf86b1461028257806342966c681461029757806347f1d8d7146102af5780634b750334146102c457806370a08231146102d957806379c65068146102fa57806379cc67901461031e5780638620410b146103425780638da5cb5b1461035757806395d89b4114610388578063a9059cbb1461039d578063b414d4b6146103c1578063cae9ca51146103e2578063dd62ed3e1461044b578063e724529c14610472578063f2fde38b14610498575b005b34801561013557600080fd5b506101276004356024356104b9565b34801561015057600080fd5b506101596104db565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019357818101518382015260200161017b565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101da57600080fd5b506101f2600160a060020a0360043516602435610568565b604080519115158252519081900360200190f35b34801561021257600080fd5b5061021b6105ce565b60408051918252519081900360200190f35b34801561023957600080fd5b506101f2600160a060020a03600435811690602435166044356105d4565b34801561026357600080fd5b5061026c61066b565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b5061021b610674565b3480156102a357600080fd5b506101f260043561067a565b3480156102bb57600080fd5b5061021b61070e565b3480156102d057600080fd5b5061021b610714565b3480156102e557600080fd5b5061021b600160a060020a036004351661071a565b34801561030657600080fd5b50610127600160a060020a036004351660243561072c565b34801561032a57600080fd5b506101f2600160a060020a036004351660243561080b565b34801561034e57600080fd5b5061021b610936565b34801561036357600080fd5b5061036c61093c565b60408051600160a060020a039092168252519081900360200190f35b34801561039457600080fd5b5061015961094b565b3480156103a957600080fd5b506101f2600160a060020a03600435166024356109a3565b3480156103cd57600080fd5b506101f2600160a060020a03600435166109b9565b3480156103ee57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101f2948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506109ce9650505050505050565b34801561045757600080fd5b5061021b600160a060020a0360043581169060243516610ae7565b34801561047e57600080fd5b50610127600160a060020a03600435166024351515610b04565b3480156104a457600080fd5b50610127600160a060020a0360043516610b7f565b600054600160a060020a031633146104d057600080fd5b600891909155600755565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a038316600090815260066020908152604080832033845290915281205482111561060457600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020546106329083610bc5565b600160a060020a0385166000908152600660209081526040808320338452909152902055610661848484610bd7565b5060019392505050565b60035460ff1681565b60045481565b3360009081526005602052604081205482111561069657600080fd5b336000908152600560205260409020546106b09083610bc5565b336000908152600560205260409020556004546106cd9083610bc5565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60095481565b60085481565b60056020526000908152604090205481565b600054600160a060020a0316331461074357600080fd5b600160a060020a0382166000908152600560205260409020546107669082610d39565b600160a060020a03831660009081526005602052604090205560045461078c9082610d39565b60045560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a03821660009081526005602052604081205482111561083057600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561086057600080fd5b600160a060020a0383166000908152600560205260409020546108839083610bc5565b600160a060020a03841660009081526005602090815260408083209390935560068152828220338352905220546108ba9083610bc5565b600160a060020a03841660009081526006602090815260408083203384529091529020556004546108eb9083610bc5565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b60075481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b60006109b0338484610bd7565b50600192915050565b600d6020526000908152604090205460ff1681565b6000836109db8185610568565b15610adf576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610a73578181015183820152602001610a5b565b50505050905090810190601f168015610aa05780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610ac257600080fd5b505af1158015610ad6573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610b1b57600080fd5b600160a060020a0382166000818152600d6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610b9657600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bd157fe5b50900390565b600160a060020a0382161515610bec57600080fd5b600160a060020a038316600090815260056020526040902054811115610c1157600080fd5b600160a060020a038216600090815260056020526040902054610c348183610d39565b1015610c3f57600080fd5b600160a060020a0383166000908152600d602052604090205460ff1615610c6557600080fd5b600160a060020a0382166000908152600d602052604090205460ff1615610c8b57600080fd5b600160a060020a038316600090815260056020526040902054610cae9082610bc5565b600160a060020a038085166000908152600560205260408082209390935590841681522054610cdd9082610d39565b600160a060020a0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110801590610d4e5750828110155b1515610d5657fe5b93925050505600a165627a7a723058205dcdea1d3a0b9db127c3d5e51cde95192b0aa38d65dcfd23ff3ab16402d3031c0029

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461012957806306fdde0314610144578063095ea7b3146101ce57806318160ddd1461020657806323b872dd1461022d578063313ce567146102575780633eaaf86b1461028257806342966c681461029757806347f1d8d7146102af5780634b750334146102c457806370a08231146102d957806379c65068146102fa57806379cc67901461031e5780638620410b146103425780638da5cb5b1461035757806395d89b4114610388578063a9059cbb1461039d578063b414d4b6146103c1578063cae9ca51146103e2578063dd62ed3e1461044b578063e724529c14610472578063f2fde38b14610498575b005b34801561013557600080fd5b506101276004356024356104b9565b34801561015057600080fd5b506101596104db565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019357818101518382015260200161017b565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101da57600080fd5b506101f2600160a060020a0360043516602435610568565b604080519115158252519081900360200190f35b34801561021257600080fd5b5061021b6105ce565b60408051918252519081900360200190f35b34801561023957600080fd5b506101f2600160a060020a03600435811690602435166044356105d4565b34801561026357600080fd5b5061026c61066b565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b5061021b610674565b3480156102a357600080fd5b506101f260043561067a565b3480156102bb57600080fd5b5061021b61070e565b3480156102d057600080fd5b5061021b610714565b3480156102e557600080fd5b5061021b600160a060020a036004351661071a565b34801561030657600080fd5b50610127600160a060020a036004351660243561072c565b34801561032a57600080fd5b506101f2600160a060020a036004351660243561080b565b34801561034e57600080fd5b5061021b610936565b34801561036357600080fd5b5061036c61093c565b60408051600160a060020a039092168252519081900360200190f35b34801561039457600080fd5b5061015961094b565b3480156103a957600080fd5b506101f2600160a060020a03600435166024356109a3565b3480156103cd57600080fd5b506101f2600160a060020a03600435166109b9565b3480156103ee57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101f2948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506109ce9650505050505050565b34801561045757600080fd5b5061021b600160a060020a0360043581169060243516610ae7565b34801561047e57600080fd5b50610127600160a060020a03600435166024351515610b04565b3480156104a457600080fd5b50610127600160a060020a0360043516610b7f565b600054600160a060020a031633146104d057600080fd5b600891909155600755565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a038316600090815260066020908152604080832033845290915281205482111561060457600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020546106329083610bc5565b600160a060020a0385166000908152600660209081526040808320338452909152902055610661848484610bd7565b5060019392505050565b60035460ff1681565b60045481565b3360009081526005602052604081205482111561069657600080fd5b336000908152600560205260409020546106b09083610bc5565b336000908152600560205260409020556004546106cd9083610bc5565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60095481565b60085481565b60056020526000908152604090205481565b600054600160a060020a0316331461074357600080fd5b600160a060020a0382166000908152600560205260409020546107669082610d39565b600160a060020a03831660009081526005602052604090205560045461078c9082610d39565b60045560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a03821660009081526005602052604081205482111561083057600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561086057600080fd5b600160a060020a0383166000908152600560205260409020546108839083610bc5565b600160a060020a03841660009081526005602090815260408083209390935560068152828220338352905220546108ba9083610bc5565b600160a060020a03841660009081526006602090815260408083203384529091529020556004546108eb9083610bc5565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b60075481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b60006109b0338484610bd7565b50600192915050565b600d6020526000908152604090205460ff1681565b6000836109db8185610568565b15610adf576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610a73578181015183820152602001610a5b565b50505050905090810190601f168015610aa05780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610ac257600080fd5b505af1158015610ad6573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610b1b57600080fd5b600160a060020a0382166000818152600d6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610b9657600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bd157fe5b50900390565b600160a060020a0382161515610bec57600080fd5b600160a060020a038316600090815260056020526040902054811115610c1157600080fd5b600160a060020a038216600090815260056020526040902054610c348183610d39565b1015610c3f57600080fd5b600160a060020a0383166000908152600d602052604090205460ff1615610c6557600080fd5b600160a060020a0382166000908152600d602052604090205460ff1615610c8b57600080fd5b600160a060020a038316600090815260056020526040902054610cae9082610bc5565b600160a060020a038085166000908152600560205260408082209390935590841681522054610cdd9082610d39565b600160a060020a0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110801590610d4e5750828110155b1515610d5657fe5b93925050505600a165627a7a723058205dcdea1d3a0b9db127c3d5e51cde95192b0aa38d65dcfd23ff3ab16402d3031c0029

Swarm Source

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