ETH Price: $2,656.71 (+1.99%)

Token

BEZ KANAŁU Coin (BKCoin)
 

Overview

Max Total Supply

21,000,000 BKCoin

Holders

127

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,000 BKCoin

Value
$0.00
0xd5dade544aadeaaea4ffb2495eaa7a3f9bc49d3c
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:
TGEToken

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-10-05
*/

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

  function div(uint256 a, uint256 b) internal constant returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

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

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

contract Ownable {
  address public owner;


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}

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

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) returns (bool) {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of. 
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) constant returns (uint256 balance) {
    return balances[_owner];
  }

}

contract StandardToken is ERC20, BasicToken {

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


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

    balances[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) returns (bool) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifing the amount of tokens still avaible for the spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}


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

  bool public mintingFinished = false;


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

  /**
   * @dev Function to mint tokens
   * @param _to The address that will recieve the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    return true;
  }

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


contract TGEToken is MintableToken {
    string public name;       
    uint8 public decimals = 18;                
    string public symbol;                 
    string public version = "H0.1";
    
    function TGEToken(
        string _tokenName,
        string _tokenSymbol
        ) {
        name = _tokenName;
        symbol = _tokenSymbol;
    }
    
    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.
        assert(_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
        return true;
    }

    function burn(uint256 _value) returns (bool success) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            totalSupply -= _value;
            Transfer(msg.sender, 0x0, _value);
            return true;
        } else {
            return false;
        }
    }

    function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool) {
        totalSupply = totalSupply.add(_amount);
        balances[_to] = balances[_to].add(_amount);
        Mint(_to, _amount);
        Transfer(0x0, _to, _amount);
        return true;
    } 
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenName","type":"string"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

606060409081526003805460a060020a60ff02191690556005805460ff191660121790558051908101604052600481527f48302e3100000000000000000000000000000000000000000000000000000000602082015260079080516200006a929160200190620000f0565b5034156200007757600080fd5b6040516200104c3803806200104c8339810160405280805182019190602001805190910190505b5b60038054600160a060020a03191633600160a060020a03161790555b6004828051620000d0929160200190620000f0565b506006818051620000e6929160200190620000f0565b505b50506200019a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013357805160ff191683800117855562000163565b8280016001018555821562000163579182015b828111156200016357825182559160200191906001019062000146565b5b506200017292915062000176565b5090565b6200019791905b808211156200017257600081556001016200017d565b5090565b90565b610ea280620001aa6000396000f300606060405236156100d55763ffffffff60e060020a60003504166305d2035b81146100da57806306fdde0314610101578063095ea7b31461018c57806318160ddd146101c257806323b872dd146101e7578063313ce5671461022357806340c10f191461024c57806342966c681461028257806354fd4d50146102ac57806370a08231146103375780637d64bcb4146103685780638da5cb5b1461038f57806395d89b41146103be578063a9059cbb14610449578063cae9ca511461047f578063dd62ed3e146104f8578063f2fde38b1461052f575b600080fd5b34156100e557600080fd5b6100ed610550565b604051901515815260200160405180910390f35b341561010c57600080fd5b610114610571565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019757600080fd5b6100ed600160a060020a036004351660243561060f565b604051901515815260200160405180910390f35b34156101cd57600080fd5b6101d56106b6565b60405190815260200160405180910390f35b34156101f257600080fd5b6100ed600160a060020a03600435811690602435166044356106bc565b604051901515815260200160405180910390f35b341561022e57600080fd5b6102366107bf565b60405160ff909116815260200160405180910390f35b341561025757600080fd5b6100ed600160a060020a03600435166024356107c8565b604051901515815260200160405180910390f35b341561028d57600080fd5b6100ed6004356108d7565b604051901515815260200160405180910390f35b34156102b757600080fd5b610114610962565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034257600080fd5b6101d5600160a060020a0360043516610a00565b60405190815260200160405180910390f35b341561037357600080fd5b6100ed610a1f565b604051901515815260200160405180910390f35b341561039a57600080fd5b6103a2610aa6565b604051600160a060020a03909116815260200160405180910390f35b34156103c957600080fd5b610114610ab5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561045457600080fd5b6100ed600160a060020a0360043516602435610b53565b604051901515815260200160405180910390f35b341561048a57600080fd5b6100ed60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610c0195505050505050565b604051901515815260200160405180910390f35b341561050357600080fd5b6101d5600160a060020a0360043581169060243516610da0565b60405190815260200160405180910390f35b341561053a57600080fd5b61054e600160a060020a0360043516610dcd565b005b60035474010000000000000000000000000000000000000000900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b60008115806106415750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561064c57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610703908463ffffffff610e2516565b600160a060020a038086166000908152600160205260408082209390935590871681522054610738908463ffffffff610e3f16565b600160a060020a038616600090815260016020526040902055610761818463ffffffff610e3f16565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610e578339815191529086905190815260200160405180910390a3600191505b509392505050565b60055460ff1681565b60035460009033600160a060020a039081169116146107e657600080fd5b60035474010000000000000000000000000000000000000000900460ff161561080e57600080fd5b600054610821908363ffffffff610e2516565b6000908155600160a060020a03841681526001602052604090205461084c908363ffffffff610e2516565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a03166000600080516020610e578339815191528460405190815260200160405180910390a35060015b5b5b92915050565b600160a060020a0333166000908152600160205260408120548290108015906109005750600082115b1561095857600160a060020a0333166000818152600160205260408082208054869003905581548590038255909190600080516020610e578339815191529085905190815260200160405180910390a350600161095c565b5060005b5b919050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610a3d57600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054610b7c908363ffffffff610e3f16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610bb1908363ffffffff610e2516565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610e578339815191529085905190815260200160405180910390a35060015b92915050565b600160a060020a03338116600081815260026020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c81527f616464726573732c6279746573290000000000000000000000000000000000006020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610d435780820151818401525b602001610d2a565b50505050905090810190601f168015610d705780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610d9557fe5b5060015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610de857600080fd5b600160a060020a03811615610e20576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600082820183811015610e3457fe5b8091505b5092915050565b600082821115610e4b57fe5b508082035b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820395b4c1cc7273712b11c783f11dfc662e7b633b1a41984217c9480d4068296f8002900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001042455a204b414e41c5815520436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424b436f696e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156100d55763ffffffff60e060020a60003504166305d2035b81146100da57806306fdde0314610101578063095ea7b31461018c57806318160ddd146101c257806323b872dd146101e7578063313ce5671461022357806340c10f191461024c57806342966c681461028257806354fd4d50146102ac57806370a08231146103375780637d64bcb4146103685780638da5cb5b1461038f57806395d89b41146103be578063a9059cbb14610449578063cae9ca511461047f578063dd62ed3e146104f8578063f2fde38b1461052f575b600080fd5b34156100e557600080fd5b6100ed610550565b604051901515815260200160405180910390f35b341561010c57600080fd5b610114610571565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019757600080fd5b6100ed600160a060020a036004351660243561060f565b604051901515815260200160405180910390f35b34156101cd57600080fd5b6101d56106b6565b60405190815260200160405180910390f35b34156101f257600080fd5b6100ed600160a060020a03600435811690602435166044356106bc565b604051901515815260200160405180910390f35b341561022e57600080fd5b6102366107bf565b60405160ff909116815260200160405180910390f35b341561025757600080fd5b6100ed600160a060020a03600435166024356107c8565b604051901515815260200160405180910390f35b341561028d57600080fd5b6100ed6004356108d7565b604051901515815260200160405180910390f35b34156102b757600080fd5b610114610962565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034257600080fd5b6101d5600160a060020a0360043516610a00565b60405190815260200160405180910390f35b341561037357600080fd5b6100ed610a1f565b604051901515815260200160405180910390f35b341561039a57600080fd5b6103a2610aa6565b604051600160a060020a03909116815260200160405180910390f35b34156103c957600080fd5b610114610ab5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561045457600080fd5b6100ed600160a060020a0360043516602435610b53565b604051901515815260200160405180910390f35b341561048a57600080fd5b6100ed60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610c0195505050505050565b604051901515815260200160405180910390f35b341561050357600080fd5b6101d5600160a060020a0360043581169060243516610da0565b60405190815260200160405180910390f35b341561053a57600080fd5b61054e600160a060020a0360043516610dcd565b005b60035474010000000000000000000000000000000000000000900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b60008115806106415750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561064c57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610703908463ffffffff610e2516565b600160a060020a038086166000908152600160205260408082209390935590871681522054610738908463ffffffff610e3f16565b600160a060020a038616600090815260016020526040902055610761818463ffffffff610e3f16565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610e578339815191529086905190815260200160405180910390a3600191505b509392505050565b60055460ff1681565b60035460009033600160a060020a039081169116146107e657600080fd5b60035474010000000000000000000000000000000000000000900460ff161561080e57600080fd5b600054610821908363ffffffff610e2516565b6000908155600160a060020a03841681526001602052604090205461084c908363ffffffff610e2516565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a03166000600080516020610e578339815191528460405190815260200160405180910390a35060015b5b5b92915050565b600160a060020a0333166000908152600160205260408120548290108015906109005750600082115b1561095857600160a060020a0333166000818152600160205260408082208054869003905581548590038255909190600080516020610e578339815191529085905190815260200160405180910390a350600161095c565b5060005b5b919050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610a3d57600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054610b7c908363ffffffff610e3f16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610bb1908363ffffffff610e2516565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610e578339815191529085905190815260200160405180910390a35060015b92915050565b600160a060020a03338116600081815260026020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c81527f616464726573732c6279746573290000000000000000000000000000000000006020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610d435780820151818401525b602001610d2a565b50505050905090810190601f168015610d705780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610d9557fe5b5060015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610de857600080fd5b600160a060020a03811615610e20576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600082820183811015610e3457fe5b8091505b5092915050565b600082821115610e4b57fe5b508082035b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820395b4c1cc7273712b11c783f11dfc662e7b633b1a41984217c9480d4068296f80029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001042455a204b414e41c5815520436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424b436f696e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): BEZ KANAŁU Coin
Arg [1] : _tokenSymbol (string): BKCoin

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 42455a204b414e41c5815520436f696e00000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 424b436f696e0000000000000000000000000000000000000000000000000000


Swarm Source

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