ETH Price: $3,089.08 (+0.11%)
Gas: 6 Gwei

Contract

0x179E31FB25E433441a2839389A7b8EC9c4654b7B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve198329102024-05-09 13:52:5910 days ago1715262779IN
SynchroBitcoin: SNB Token
0 ETH0.000282996.08190229
Transfer198328622024-05-09 13:43:2310 days ago1715262203IN
SynchroBitcoin: SNB Token
0 ETH0.0005621110
Transfer196605052024-04-15 11:07:1135 days ago1713179231IN
SynchroBitcoin: SNB Token
0 ETH0.0021360138
Transfer196447382024-04-13 6:02:2337 days ago1712988143IN
SynchroBitcoin: SNB Token
0 ETH0.0005082514.83908323
Approve195361472024-03-29 0:39:2352 days ago1711672763IN
SynchroBitcoin: SNB Token
0 ETH0.0012996827.89569032
Approve195126062024-03-25 16:15:4755 days ago1711383347IN
SynchroBitcoin: SNB Token
0 ETH0.002099545.12050078
Approve194936302024-03-23 0:07:5958 days ago1711152479IN
SynchroBitcoin: SNB Token
0 ETH0.000934520.17182225
Approve194928692024-03-22 21:34:4758 days ago1711143287IN
SynchroBitcoin: SNB Token
0 ETH0.0014071130.37346206
Approve194624412024-03-18 15:02:5962 days ago1710774179IN
SynchroBitcoin: SNB Token
0 ETH0.0027107258.5128839
Approve194481742024-03-16 14:53:5964 days ago1710600839IN
SynchroBitcoin: SNB Token
0 ETH0.0015504933.46845169
Approve194458252024-03-16 6:57:1165 days ago1710572231IN
SynchroBitcoin: SNB Token
0 ETH0.0011903925.6954604
Approve194454332024-03-16 5:37:2365 days ago1710567443IN
SynchroBitcoin: SNB Token
0 ETH0.0013042727.99423176
Transfer194379802024-03-15 4:30:1166 days ago1710477011IN
SynchroBitcoin: SNB Token
0 ETH0.0025835150.27563264
Approve194356562024-03-14 20:39:3566 days ago1710448775IN
SynchroBitcoin: SNB Token
0 ETH0.0028375861.25123965
Approve194306662024-03-14 3:45:3567 days ago1710387935IN
SynchroBitcoin: SNB Token
0 ETH0.0030128164.74856755
Approve194294342024-03-13 23:35:1167 days ago1710372911IN
SynchroBitcoin: SNB Token
0 ETH0.0027367458.81551563
Approve194288262024-03-13 21:32:1167 days ago1710365531IN
SynchroBitcoin: SNB Token
0 ETH0.0028397161.40859985
Approve194280412024-03-13 18:52:4767 days ago1710355967IN
SynchroBitcoin: SNB Token
0 ETH0.002772559.95508556
Approve194280222024-03-13 18:48:5967 days ago1710355739IN
SynchroBitcoin: SNB Token
0 ETH0.0027274858.98155058
Transfer194280092024-03-13 18:46:2367 days ago1710355583IN
SynchroBitcoin: SNB Token
0 ETH0.0031952962.12301473
Transfer194227532024-03-13 1:03:2368 days ago1710291803IN
SynchroBitcoin: SNB Token
0 ETH0.0023130944.97125692
Approve194227132024-03-13 0:55:2368 days ago1710291323IN
SynchroBitcoin: SNB Token
0 ETH0.0021201645.56458467
Approve193481142024-03-02 14:35:3578 days ago1709390135IN
SynchroBitcoin: SNB Token
0 ETH0.0025631855.01449754
Approve192260362024-02-14 11:53:3596 days ago1707911615IN
SynchroBitcoin: SNB Token
0 ETH0.0009937121.47783648
Approve190258922024-01-17 10:04:11124 days ago1705485851IN
SynchroBitcoin: SNB Token
0 ETH0.0008421128.81293194
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SynchroBitcoin

Compiler Version
v0.5.3+commit.10d17f24

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-12-12
*/

pragma solidity ^0.5.2;
// ----------------------------------------------------------------------------
// SynchroBit™ Hybrid Digital Assets Trading Platform Smart Contract
//
// Deployed to : 0x6241E4822100Eb51e28B7784636037ed1C657bB9
// Symbol : SNB
// Name : SynchroBitcoin
// Total supply: 1000000000
// Decimals :18
//
// Enjoy.
//
// SynchroBit™ Hybrid Digital Assets Trading Platform by SYNCHRONIUM®
// Compatible with Zero Trading Fee on SynchroBit Hybrid Exchange and integration with WinkPay, PikChat and other SYNCHRONIUM Omni Platforms
// ----------------------------------------------------------------------------

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);
    function approve(address spender, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
    function totalSupply() external view returns (uint256);
    function balanceOf(address who) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b,"Invalid values");
        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0,"Invalid values");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

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

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a,"Invalid values");
        return c;
    }

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

contract SynchroBitcoin is IERC20 {
    using SafeMath for uint256;
    address private _owner;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    bool public _lockStatus = false;
    bool private isValue;
    uint256 public airdropcount = 0;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    mapping (address => uint256) private time;

    mapping (address => uint256) private _lockedAmount;

    constructor (string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address owner) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        _totalSupply = totalSupply*(10**uint256(decimals));
        _balances[owner] = _totalSupply;
        _owner = owner;
    }

    /*----------------------------------------------------------------------------
     * Functions for owner
     *----------------------------------------------------------------------------
     */

    /**
    * @dev get address of smart contract owner
    * @return address of owner
    */
    function getowner() public view returns (address) {
        return _owner;
    }

    /**
    * @dev modifier to check if the message sender is owner
    */
    modifier onlyOwner() {
        require(isOwner(),"You are not authenticate to make this transfer");
        _;
    }

    /**
     * @dev Internal function for modifier
     */
    function isOwner() internal view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Transfer ownership of the smart contract. For owner only
     * @return request status
      */
    function transferOwnership(address newOwner) public onlyOwner returns (bool){
        _owner = newOwner;
        return true;
    }

    /* ----------------------------------------------------------------------------
     * Locking functions
     * ----------------------------------------------------------------------------
     */

    /**
     * @dev Lock all transfer functions of the contract
     * @return request status
     */
    function setAllTransfersLockStatus(bool RunningStatusLock) external onlyOwner returns (bool)
    {
        _lockStatus = RunningStatusLock;
        return true;
    }

    /**
     * @dev check lock status of all transfers
     * @return lock status
     */
    function getAllTransfersLockStatus() public view returns (bool)
    {
        return _lockStatus;
    }

    /**
     * @dev time calculator for locked tokens
     */
     function addLockingTime(address lockingAddress,uint8 lockingTime, uint256 amount) internal returns (bool){
        time[lockingAddress] = now + (lockingTime * 1 days);
        _lockedAmount[lockingAddress] = amount;
        return true;
     }

     /**
      * @dev check for time based lock
      * @param _address address to check for locking time
      * @return time in block format
      */
      function checkLockingTimeByAddress(address _address) public view returns(uint256){
         return time[_address];
      }
      /**
       * @dev return locking status
       * @param userAddress address of to check
       * @return locking status in true or false
       */
       function getLockingStatus(address userAddress) public view returns(bool){
           if (now < time[userAddress]){
               return true;
           }
           else{
               return false;
           }
       }

    /**
     * @dev  Decreaese locking time
     * @param _affectiveAddress Address of the locked address
     * @param _decreasedTime Time in days to be affected
     */
    function decreaseLockingTimeByAddress(address _affectiveAddress, uint _decreasedTime) external onlyOwner returns(bool){
          require(_decreasedTime > 0 && time[_affectiveAddress] > now, "Please check address status or Incorrect input");
          time[_affectiveAddress] = time[_affectiveAddress] - (_decreasedTime * 1 days);
          return true;
      }

      /**
     * @dev Increase locking time
     * @param _affectiveAddress Address of the locked address
     * @param _increasedTime Time in days to be affected
     */
    function increaseLockingTimeByAddress(address _affectiveAddress, uint _increasedTime) external onlyOwner returns(bool){
          require(_increasedTime > 0 && time[_affectiveAddress] > now, "Please check address status or Incorrect input");
          time[_affectiveAddress] = time[_affectiveAddress] + (_increasedTime * 1 days);
          return true;
      }

    /**
     * @dev modifier to check validation of lock status of smart contract
     */
    modifier AllTransfersLockStatus()
    {
        require(_lockStatus == false,"All transactions are locked for this contract");
        _;
    }

    /**
     * @dev modifier to check locking amount
     * @param _address address to check
     * @param requestedAmount Amount to check
     * @return status
     */
     modifier checkLocking(address _address,uint256 requestedAmount){
         if(now < time[_address]){
         require(!( _balances[_address] - _lockedAmount[_address] < requestedAmount), "Insufficient unlocked balance");
         }
        else{
            require(1 == 1,"Transfer can not be processed");
        }
        _;
     }

    /* ----------------------------------------------------------------------------
     * View only functions
     * ----------------------------------------------------------------------------
     */

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Total number of tokens in existence.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /* ----------------------------------------------------------------------------
     * Transfer, allow, mint and burn functions
     * ----------------------------------------------------------------------------
     */

    /**
     * @dev Transfer token to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public AllTransfersLockStatus checkLocking(msg.sender,value) returns (bool) {
            _transfer(msg.sender, to, value);
            return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public AllTransfersLockStatus checkLocking(from,value) returns (bool) {
             _transfer(from, to, value);
             _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
             return true;
    }

    /**
     * @dev Transfer tokens to a secified address (For Only Owner)
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return Transfer status in true or false
     */
    function transferByOwner(address to, uint256 value, uint8 lockingTime) public AllTransfersLockStatus onlyOwner returns (bool) {
        addLockingTime(to,lockingTime,value);
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev withdraw locked tokens only (For Only Owner)
     * @param from locked address
     * @param to address to be transfer tokens
     * @param value amount of tokens to unlock and transfer
     * @return transfer status
     */
     function transferLockedTokens(address from, address to, uint256 value) external onlyOwner returns (bool){
        require((_lockedAmount[from] >= value) && (now < time[from]), "Insufficient unlocked balance");
        require(from != address(0) && to != address(0), "Invalid address");
        _lockedAmount[from] = _lockedAmount[from] - value;
        _transfer(from,to,value);
     }

     /**
      * @dev Airdrop function to airdrop tokens. Best works upto 50 addresses in one time. Maximum limit is 200 addresses in one time.
      * @param _addresses array of address in serial order
      * @param _amount amount in serial order with respect to address array
      */
      function airdropByOwner(address[] memory _addresses, uint256[] memory _amount) public AllTransfersLockStatus onlyOwner returns (bool){
          require(_addresses.length == _amount.length,"Invalid Array");
          uint256 count = _addresses.length;
          for (uint256 i = 0; i < count; i++){
               _transfer(msg.sender, _addresses[i], _amount[i]);
               airdropcount = airdropcount + 1;
          }
          return true;
      }

    /**
     * @dev Transfer token for a specified addresses.
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0),"Invalid to address");
        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0),"Invalid address");
        require(owner != address(0),"Invalid address");
        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0),"Invalid account");
        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public onlyOwner checkLocking(msg.sender,value){
        _burn(msg.sender, value);
    }
}

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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"lockingTime","type":"uint8"}],"name":"transferByOwner","outputs":[{"name":"","type":"bool"}],"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":"RunningStatusLock","type":"bool"}],"name":"setAllTransfersLockStatus","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_affectiveAddress","type":"address"},{"name":"_decreasedTime","type":"uint256"}],"name":"decreaseLockingTimeByAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"checkLockingTimeByAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_affectiveAddress","type":"address"},{"name":"_increasedTime","type":"uint256"}],"name":"increaseLockingTimeByAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAllTransfersLockStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_lockStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferLockedTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"userAddress","type":"address"}],"name":"getLockingStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"airdropcount","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":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256[]"}],"name":"airdropByOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getowner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"totalSupply","type":"uint256"},{"name":"owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

60806040526000600560006101000a81548160ff02191690831515021790555060006006553480156200003157600080fd5b5060405162002cab38038062002cab833981018060405260a08110156200005757600080fd5b8101908080516401000000008111156200007057600080fd5b828101905060208101848111156200008757600080fd5b8151856001820283011164010000000082111715620000a557600080fd5b50509291906020018051640100000000811115620000c257600080fd5b82810190506020810184811115620000d957600080fd5b8151856001820283011164010000000082111715620000f757600080fd5b50509291906020018051906020019092919080519060200190929190805190602001909291905050508460019080519060200190620001389291906200020d565b508360029080519060200190620001519291906200020d565b5082600360006101000a81548160ff021916908360ff1602179055508260ff16600a0a8202600481905550600454600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620002bc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200025057805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028057825182559160200191906001019062000263565b5b50905062000290919062000294565b5090565b620002b991905b80821115620002b55760008160009055506001016200029b565b5090565b90565b6129df80620002cc6000396000f3fe608060405234801561001057600080fd5b5060043610610190576000357c01000000000000000000000000000000000000000000000000000000009004806394a6b712116100fb578063c2fb97f8116100b4578063dd62ed3e1161008e578063dd62ed3e146108a4578063defcf51f1461091c578063f2fde38b14610a80578063fe0174bd14610adc57610190565b8063c2fb97f8146107a4578063cb9bd15a1461082a578063cddade791461088657610190565b806394a6b712146105ab57806395d89b41146106115780639b9843df14610694578063a02619e4146106b6578063a457c2d7146106d8578063a9059cbb1461073e57610190565b80633ec45d891161014d5780633ec45d89146103ac57806342966c681461041f5780636b180d691461044d57806370a08231146104955780637338e39d146104ed578063894f879e1461055357610190565b806306fdde0314610195578063095ea7b31461021857806318160ddd1461027e57806323b872dd1461029c578063313ce567146103225780633950935114610346575b600080fd5b61019d610b26565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101dd5780820151818401526020810190506101c2565b50505050905090810190601f16801561020a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102646004803603604081101561022e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc8565b604051808215151515815260200191505060405180910390f35b610286610bdf565b6040518082815260200191505060405180910390f35b610308600480360360608110156102b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610be9565b604051808215151515815260200191505060405180910390f35b61032a610ec8565b604051808260ff1660ff16815260200191505060405180910390f35b6103926004803603604081101561035c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610edf565b604051808215151515815260200191505060405180910390f35b610405600480360360608110156103c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560ff169060200190929190505050610f84565b604051808215151515815260200191505060405180910390f35b61044b6004803603602081101561043557600080fd5b8101908080359060200190929190505050611074565b005b61047b6004803603602081101561046357600080fd5b810190808035151590602001909291905050506112a1565b604051808215151515815260200191505060405180910390f35b6104d7600480360360208110156104ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611325565b6040518082815260200191505060405180910390f35b6105396004803603604081101561050357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136e565b604051808215151515815260200191505060405180910390f35b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611508565b6040518082815260200191505060405180910390f35b6105f7600480360360408110156105c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611551565b604051808215151515815260200191505060405180910390f35b6106196116eb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561065957808201518184015260208101905061063e565b50505050905090810190601f1680156106865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61069c61178d565b604051808215151515815260200191505060405180910390f35b6106be6117a4565b604051808215151515815260200191505060405180910390f35b610724600480360360408110156106ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117b7565b604051808215151515815260200191505060405180910390f35b61078a6004803603604081101561075457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061185c565b604051808215151515815260200191505060405180910390f35b610810600480360360608110156107ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa1565b604051808215151515815260200191505060405180910390f35b61086c6004803603602081101561084057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d78565b604051808215151515815260200191505060405180910390f35b61088e611dd4565b6040518082815260200191505060405180910390f35b610906600480360360408110156108ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dda565b6040518082815260200191505060405180910390f35b610a666004803603604081101561093257600080fd5b810190808035906020019064010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184602083028401116401000000008311171561098357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156109e357600080fd5b8201836020820111156109f557600080fd5b80359060200191846020830284011164010000000083111715610a1757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611e61565b604051808215151515815260200191505060405180910390f35b610ac260048036036020811015610a9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201a565b604051808215151515815260200191505060405180910390f35b610ae46120c4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd53384846120ed565b6001905092915050565b6000600454905090565b6000801515600560009054906101000a900460ff161515141515610c58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b8382600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015610d9e5780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515610d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b610e17565b600180141515610e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b610e22868686612322565b610ebb8633610eb687600860008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b6120ed565b6001925050509392505050565b6000600360009054906101000a900460ff16905090565b6000610f7a3384610f7585600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e690919063ffffffff16565b6120ed565b6001905092915050565b6000801515600560009054906101000a900460ff161515141515610ff3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b610ffb612670565b1515611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b61105d8483856126c7565b50611069338585612322565b600190509392505050565b61107c612670565b15156110d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b3381600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544210156112195780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b611292565b600180141515611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b61129c338461276b565b505050565b60006112ab612670565b1515611302576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81600560006101000a81548160ff02191690831515021790555060019050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611378612670565b15156113cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b60008211801561141d575042600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1515611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061292b602e913960400191505060405180910390fd5b620151808202600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061155b612670565b15156115b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b600082118015611600575042600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1515611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061292b602e913960400191505060405180910390fd5b620151808202600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b606060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117835780601f1061175857610100808354040283529160200191611783565b820191906000526020600020905b81548152906001019060200180831161176657829003601f168201915b5050505050905090565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b6000611852338461184d85600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b6120ed565b6001905092915050565b6000801515600560009054906101000a900460ff1615151415156118cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b3382600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015611a115780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515611a0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b611a8a565b600180141515611a89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b611a95338686612322565b60019250505092915050565b6000611aab612670565b1515611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410158015611b8f5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442105b1515611c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c6d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1515611ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d71848484612322565b9392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015611dca5760019050611dcf565b600090505b919050565b60065481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000801515600560009054906101000a900460ff161515141515611ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b611ed8612670565b1515611f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81518351141515611fa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642041727261790000000000000000000000000000000000000081525060200191505060405180910390fd5b60008351905060008090505b8181101561200e57611ff5338683815181101515611fce57fe5b906020019060200201518684815181101515611fe657fe5b90602001906020020151612322565b6001600654016006819055508080600101915050611fb4565b50600191505092915050565b6000612024612670565b151561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b61241981600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124ae81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111515156125d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642076616c75657300000000000000000000000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000808284019050838110151515612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642076616c75657300000000000000000000000000000000000081525060200191505060405180910390fd5b8091505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000620151808360ff160262ffffff164201600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c6964206163636f756e74000000000000000000000000000000000081525060200191505060405180910390fd5b6128258160045461255b90919063ffffffff16565b60048190555061287d81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe506c6561736520636865636b206164647265737320737461747573206f7220496e636f727265637420696e707574416c6c207472616e73616374696f6e7320617265206c6f636b656420666f72207468697320636f6e7472616374596f7520617265206e6f742061757468656e74696361746520746f206d616b652074686973207472616e73666572a165627a7a72305820755e01a1d8b66df60316579f690740382d9abb58e2aa55a20d6e450ed0d44622002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000006241e4822100eb51e28b7784636037ed1c657bb9000000000000000000000000000000000000000000000000000000000000000e53796e6368726f426974636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610190576000357c01000000000000000000000000000000000000000000000000000000009004806394a6b712116100fb578063c2fb97f8116100b4578063dd62ed3e1161008e578063dd62ed3e146108a4578063defcf51f1461091c578063f2fde38b14610a80578063fe0174bd14610adc57610190565b8063c2fb97f8146107a4578063cb9bd15a1461082a578063cddade791461088657610190565b806394a6b712146105ab57806395d89b41146106115780639b9843df14610694578063a02619e4146106b6578063a457c2d7146106d8578063a9059cbb1461073e57610190565b80633ec45d891161014d5780633ec45d89146103ac57806342966c681461041f5780636b180d691461044d57806370a08231146104955780637338e39d146104ed578063894f879e1461055357610190565b806306fdde0314610195578063095ea7b31461021857806318160ddd1461027e57806323b872dd1461029c578063313ce567146103225780633950935114610346575b600080fd5b61019d610b26565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101dd5780820151818401526020810190506101c2565b50505050905090810190601f16801561020a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102646004803603604081101561022e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc8565b604051808215151515815260200191505060405180910390f35b610286610bdf565b6040518082815260200191505060405180910390f35b610308600480360360608110156102b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610be9565b604051808215151515815260200191505060405180910390f35b61032a610ec8565b604051808260ff1660ff16815260200191505060405180910390f35b6103926004803603604081101561035c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610edf565b604051808215151515815260200191505060405180910390f35b610405600480360360608110156103c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560ff169060200190929190505050610f84565b604051808215151515815260200191505060405180910390f35b61044b6004803603602081101561043557600080fd5b8101908080359060200190929190505050611074565b005b61047b6004803603602081101561046357600080fd5b810190808035151590602001909291905050506112a1565b604051808215151515815260200191505060405180910390f35b6104d7600480360360208110156104ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611325565b6040518082815260200191505060405180910390f35b6105396004803603604081101561050357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136e565b604051808215151515815260200191505060405180910390f35b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611508565b6040518082815260200191505060405180910390f35b6105f7600480360360408110156105c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611551565b604051808215151515815260200191505060405180910390f35b6106196116eb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561065957808201518184015260208101905061063e565b50505050905090810190601f1680156106865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61069c61178d565b604051808215151515815260200191505060405180910390f35b6106be6117a4565b604051808215151515815260200191505060405180910390f35b610724600480360360408110156106ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117b7565b604051808215151515815260200191505060405180910390f35b61078a6004803603604081101561075457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061185c565b604051808215151515815260200191505060405180910390f35b610810600480360360608110156107ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa1565b604051808215151515815260200191505060405180910390f35b61086c6004803603602081101561084057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d78565b604051808215151515815260200191505060405180910390f35b61088e611dd4565b6040518082815260200191505060405180910390f35b610906600480360360408110156108ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dda565b6040518082815260200191505060405180910390f35b610a666004803603604081101561093257600080fd5b810190808035906020019064010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184602083028401116401000000008311171561098357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156109e357600080fd5b8201836020820111156109f557600080fd5b80359060200191846020830284011164010000000083111715610a1757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611e61565b604051808215151515815260200191505060405180910390f35b610ac260048036036020811015610a9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201a565b604051808215151515815260200191505060405180910390f35b610ae46120c4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd53384846120ed565b6001905092915050565b6000600454905090565b6000801515600560009054906101000a900460ff161515141515610c58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b8382600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015610d9e5780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515610d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b610e17565b600180141515610e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b610e22868686612322565b610ebb8633610eb687600860008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b6120ed565b6001925050509392505050565b6000600360009054906101000a900460ff16905090565b6000610f7a3384610f7585600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e690919063ffffffff16565b6120ed565b6001905092915050565b6000801515600560009054906101000a900460ff161515141515610ff3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b610ffb612670565b1515611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b61105d8483856126c7565b50611069338585612322565b600190509392505050565b61107c612670565b15156110d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b3381600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544210156112195780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b611292565b600180141515611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b61129c338461276b565b505050565b60006112ab612670565b1515611302576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81600560006101000a81548160ff02191690831515021790555060019050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611378612670565b15156113cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b60008211801561141d575042600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1515611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061292b602e913960400191505060405180910390fd5b620151808202600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061155b612670565b15156115b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b600082118015611600575042600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1515611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061292b602e913960400191505060405180910390fd5b620151808202600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b606060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117835780601f1061175857610100808354040283529160200191611783565b820191906000526020600020905b81548152906001019060200180831161176657829003601f168201915b5050505050905090565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b6000611852338461184d85600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b6120ed565b6001905092915050565b6000801515600560009054906101000a900460ff1615151415156118cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b3382600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015611a115780600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540310151515611a0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b611a8a565b600180141515611a89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5472616e736665722063616e206e6f742062652070726f63657373656400000081525060200191505060405180910390fd5b5b611a95338686612322565b60019250505092915050565b6000611aab612670565b1515611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410158015611b8f5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442105b1515611c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e73756666696369656e7420756e6c6f636b65642062616c616e636500000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c6d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1515611ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b81600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d71848484612322565b9392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015611dca5760019050611dcf565b600090505b919050565b60065481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000801515600560009054906101000a900460ff161515141515611ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612959602d913960400191505060405180910390fd5b611ed8612670565b1515611f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b81518351141515611fa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642041727261790000000000000000000000000000000000000081525060200191505060405180910390fd5b60008351905060008090505b8181101561200e57611ff5338683815181101515611fce57fe5b906020019060200201518684815181101515611fe657fe5b90602001906020020151612322565b6001600654016006819055508080600101915050611fb4565b50600191505092915050565b6000612024612670565b151561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612986602e913960400191505060405180910390fd5b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c696420746f2061646472657373000000000000000000000000000081525060200191505060405180910390fd5b61241981600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124ae81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008282111515156125d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642076616c75657300000000000000000000000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000808284019050838110151515612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642076616c75657300000000000000000000000000000000000081525060200191505060405180910390fd5b8091505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000620151808360ff160262ffffff164201600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c6964206163636f756e74000000000000000000000000000000000081525060200191505060405180910390fd5b6128258160045461255b90919063ffffffff16565b60048190555061287d81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255b90919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe506c6561736520636865636b206164647265737320737461747573206f7220496e636f727265637420696e707574416c6c207472616e73616374696f6e7320617265206c6f636b656420666f72207468697320636f6e7472616374596f7520617265206e6f742061757468656e74696361746520746f206d616b652074686973207472616e73666572a165627a7a72305820755e01a1d8b66df60316579f690740382d9abb58e2aa55a20d6e450ed0d446220029

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000006241e4822100eb51e28b7784636037ed1c657bb9000000000000000000000000000000000000000000000000000000000000000e53796e6368726f426974636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SynchroBitcoin
Arg [1] : symbol (string): SNB
Arg [2] : decimals (uint8): 18
Arg [3] : totalSupply (uint256): 1000000000
Arg [4] : owner (address): 0x6241E4822100Eb51e28B7784636037ed1C657bB9

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000006241e4822100eb51e28b7784636037ed1c657bb9
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 53796e6368726f426974636f696e000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 534e420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

3552:14519:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3552:14519:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9329:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9329:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15119:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15119:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9804:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11770:291;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11770:291:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9645:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16354:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16354:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12301:246;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12301:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17949:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17949:119:0;;;;;;;;;;;;;;;;;:::i;:::-;;5797:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5797:170:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10114:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10114:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7368:365;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7368:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6663:124;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6663:124:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7917:365;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7917:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9479:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9479:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6069:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3776:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17088:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17088:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11095:202;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11095:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12808:390;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12808:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6954:230;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6954:230:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3841:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10559:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10559:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13501:462;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13501:462:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13501:462:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13501:462:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13501:462:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13501:462:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13501:462:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13501:462:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13501:462:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13501:462:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5342:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5342:134:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4763:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9329:83;9366:13;9399:5;9392:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9329:83;:::o;15119:148::-;15184:4;15201:36;15210:10;15222:7;15231:5;15201:8;:36::i;:::-;15255:4;15248:11;;15119:148;;;;:::o;9804:91::-;9848:7;9875:12;;9868:19;;9804:91;:::o;11770:291::-;11897:4;8456:5;8441:20;;:11;;;;;;;;;;;:20;;;8433:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11876:4;11881:5;8798:4;:14;8803:8;8798:14;;;;;;;;;;;;;;;;8792:3;:20;8789:246;;;8884:15;8858:13;:23;8872:8;8858:23;;;;;;;;;;;;;;;;8836:9;:19;8846:8;8836:19;;;;;;;;;;;;;;;;:45;:63;8833:67;8825:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;;;8989:1;8984;:6;8976:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;11919:26;11929:4;11935:2;11939:5;11919:9;:26::i;:::-;11961:65;11970:4;11976:10;11988:37;12019:5;11988:8;:14;11997:4;11988:14;;;;;;;;;;;;;;;:26;12003:10;11988:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;11961:8;:65::i;:::-;12049:4;12042:11;;8521:1;;11770:291;;;;;:::o;9645:83::-;9686:5;9711:9;;;;;;;;;;;9704:16;;9645:83;:::o;16354:203::-;16434:4;16451:76;16460:10;16472:7;16481:45;16515:10;16481:8;:20;16490:10;16481:20;;;;;;;;;;;;;;;:29;16502:7;16481:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;16451:8;:76::i;:::-;16545:4;16538:11;;16354:203;;;;:::o;12301:246::-;12421:4;8456:5;8441:20;;:11;;;;;;;;;;;:20;;;8433:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12438:36;12453:2;12456:11;12468:5;12438:14;:36::i;:::-;;12485:32;12495:10;12507:2;12511:5;12485:9;:32::i;:::-;12535:4;12528:11;;12301:246;;;;;:::o;17949:119::-;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18008:10;18019:5;8798:4;:14;8803:8;8798:14;;;;;;;;;;;;;;;;8792:3;:20;8789:246;;;8884:15;8858:13;:23;8872:8;8858:23;;;;;;;;;;;;;;;;8836:9;:19;8846:8;8836:19;;;;;;;;;;;;;;;;:45;:63;8833:67;8825:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;;;8989:1;8984;:6;8976:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;18036:24;18042:10;18054:5;18036;:24::i;:::-;5041:1;;17949:119;:::o;5797:170::-;5884:4;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5920:17;5906:11;;:31;;;;;;;;;;;;;;;;;;5955:4;5948:11;;5797:170;;;:::o;10114:106::-;10169:7;10196:9;:16;10206:5;10196:16;;;;;;;;;;;;;;;;10189:23;;10114:106;;;:::o;7368:365::-;7481:4;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7524:1;7507:14;:18;:51;;;;;7555:3;7529:4;:23;7534:17;7529:23;;;;;;;;;;;;;;;;:29;7507:51;7499:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7692:6;7675:14;:23;7648:4;:23;7653:17;7648:23;;;;;;;;;;;;;;;;:51;7622:4;:23;7627:17;7622:23;;;;;;;;;;;;;;;:77;;;;7719:4;7712:11;;7368:365;;;;:::o;6663:124::-;6736:7;6763:4;:14;6768:8;6763:14;;;;;;;;;;;;;;;;6756:21;;6663:124;;;:::o;7917:365::-;8030:4;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8073:1;8056:14;:18;:51;;;;;8104:3;8078:4;:23;8083:17;8078:23;;;;;;;;;;;;;;;;:29;8056:51;8048:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8241:6;8224:14;:23;8197:4;:23;8202:17;8197:23;;;;;;;;;;;;;;;;:51;8171:4;:23;8176:17;8171:23;;;;;;;;;;;;;;;:77;;;;8268:4;8261:11;;7917:365;;;;:::o;9479:87::-;9518:13;9551:7;9544:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9479:87;:::o;6069:106::-;6127:4;6156:11;;;;;;;;;;;6149:18;;6069:106;:::o;3776:31::-;;;;;;;;;;;;;:::o;17088:213::-;17173:4;17190:81;17199:10;17211:7;17220:50;17254:15;17220:8;:20;17229:10;17220:20;;;;;;;;;;;;;;;:29;17241:7;17220:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;17190:8;:81::i;:::-;17289:4;17282:11;;17088:213;;;;:::o;11095:202::-;11210:4;8456:5;8441:20;;:11;;;;;;;;;;;:20;;;8433:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11183:10;11194:5;8798:4;:14;8803:8;8798:14;;;;;;;;;;;;;;;;8792:3;:20;8789:246;;;8884:15;8858:13;:23;8872:8;8858:23;;;;;;;;;;;;;;;;8836:9;:19;8846:8;8836:19;;;;;;;;;;;;;;;;:45;:63;8833:67;8825:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;;;8989:1;8984;:6;8976:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789:246;11231:32;11241:10;11253:2;11257:5;11231:9;:32::i;:::-;11285:4;11278:11;;8521:1;;11095:202;;;;:::o;12808:390::-;12907:4;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12955:5;12932:13;:19;12946:4;12932:19;;;;;;;;;;;;;;;;:28;;12931:52;;;;;12972:4;:10;12977:4;12972:10;;;;;;;;;;;;;;;;12966:3;:16;12931:52;12923:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13052:1;13036:18;;:4;:18;;;;:38;;;;;13072:1;13058:16;;:2;:16;;;;13036:38;13028:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13149:5;13127:13;:19;13141:4;13127:19;;;;;;;;;;;;;;;;:27;13105:13;:19;13119:4;13105:19;;;;;;;;;;;;;;;:49;;;;13165:24;13175:4;13180:2;13183:5;13165:9;:24::i;:::-;12808:390;;;;;:::o;6954:230::-;7021:4;7050;:17;7055:11;7050:17;;;;;;;;;;;;;;;;7044:3;:23;7040:134;;;7093:4;7086:11;;;;7040:134;7154:5;7147:12;;6954:230;;;;:::o;3841:31::-;;;;:::o;10559:131::-;10631:7;10658:8;:15;10667:5;10658:15;;;;;;;;;;;;;;;:24;10674:7;10658:24;;;;;;;;;;;;;;;;10651:31;;10559:131;;;;:::o;13501:462::-;13629:4;8456:5;8441:20;;:11;;;;;;;;;;;:20;;;8433:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13676:7;:14;13655:10;:17;:35;13647:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13720:13;13736:10;:17;13720:33;;13771:9;13783:1;13771:13;;13766:164;13790:5;13786:1;:9;13766:164;;;13819:48;13829:10;13841;13852:1;13841:13;;;;;;;;;;;;;;;;;;13856:7;13864:1;13856:10;;;;;;;;;;;;;;;;;;13819:9;:48::i;:::-;13915:1;13900:12;;:16;13885:12;:31;;;;13797:3;;;;;;;13766:164;;;;13949:4;13942:11;;;13501:462;;;;:::o;5342:134::-;5413:4;4971:9;:7;:9::i;:::-;4963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5438:8;5429:6;;:17;;;;;;;;;;;;;;;;;;5464:4;5457:11;;5342:134;;;:::o;4763:82::-;4804:7;4831:6;;;;;;;;;;;4824:13;;4763:82;:::o;15540:288::-;15652:1;15633:21;;:7;:21;;;;15625:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15709:1;15692:19;;:5;:19;;;;15684:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15768:5;15741:8;:15;15750:5;15741:15;;;;;;;;;;;;;;;:24;15757:7;15741:24;;;;;;;;;;;;;;;:32;;;;15805:7;15789:31;;15798:5;15789:31;;;15814:5;15789:31;;;;;;;;;;;;;;;;;;15540:288;;;:::o;14191:281::-;14293:1;14279:16;;:2;:16;;;;14271:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14346:26;14366:5;14346:9;:15;14356:4;14346:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;14328:9;:15;14338:4;14328:15;;;;;;;;;;;;;;;:44;;;;14399:24;14417:5;14399:9;:13;14409:2;14399:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;14383:9;:13;14393:2;14383:13;;;;;;;;;;;;;;;:40;;;;14454:2;14439:25;;14448:4;14439:25;;;14458:5;14439:25;;;;;;;;;;;;;;;;;;14191:281;;;:::o;2825:165::-;2883:7;2916:1;2911;:6;;2903:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2946:9;2962:1;2958;:5;2946:17;;2981:1;2974:8;;;2825:165;;;;:::o;3078:::-;3136:7;3156:9;3172:1;3168;:5;3156:17;;3197:1;3192;:6;;3184:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3234:1;3227:8;;;3078:165;;;;:::o;5120:94::-;5162:4;5200:6;;;;;;;;;;;5186:20;;:10;:20;;;5179:27;;5120:94;:::o;6249:247::-;6349:4;6409:6;6395:11;:20;;;6388:28;;:3;:28;6365:4;:20;6370:14;6365:20;;;;;;;;;;;;;;;:51;;;;6459:6;6427:13;:29;6441:14;6427:29;;;;;;;;;;;;;;;:38;;;;6483:4;6476:11;;6249:247;;;;;:::o;17535:285::-;17629:1;17610:21;;:7;:21;;;;17602:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17676:23;17693:5;17676:12;;:16;;:23;;;;:::i;:::-;17661:12;:38;;;;17731:29;17754:5;17731:9;:18;17741:7;17731:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;17710:9;:18;17720:7;17710:18;;;;;;;;;;;;;;;:50;;;;17802:1;17776:36;;17785:7;17776:36;;;17806:5;17776:36;;;;;;;;;;;;;;;;;;17535:285;;:::o

Swarm Source

bzzr://755e01a1d8b66df60316579f690740382d9abb58e2aa55a20d6e450ed0d44622

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

SynchroBit™ Hybrid Exchange is a platform of SYNCHRONIUM® which is the world's first Hybrid P2P Mulipurpose Digital Assets Trading Platform for trading various range of digital assets including crypticurrencies, percious metals, energy, and commodities with innovative trading solutions.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.