ETH Price: $2,180.15 (+4.37%)
Gas: 0.03 Gwei

Contract

0xbefDecF20d823Cb46AEf036C04C96E54Ab8D6BC2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve65402952018-10-18 21:21:542705 days ago1539897714IN
0xbefDecF2...4Ab8D6BC2
0 ETH0.000183894
Transfer57232752018-06-03 4:32:592842 days ago1528000379IN
0xbefDecF2...4Ab8D6BC2
0 ETH0.000131656
Transfer57179812018-06-02 5:52:262843 days ago1527918746IN
0xbefDecF2...4Ab8D6BC2
0 ETH0.00026915.2
Transfer Ownersh...57179532018-06-02 5:46:102843 days ago1527918370IN
0xbefDecF2...4Ab8D6BC2
0 ETH0.0018019941
Issue57179432018-06-02 5:44:022843 days ago1527918242IN
0xbefDecF2...4Ab8D6BC2
0 ETH0.0027730741

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8Ae56a68...20167eAC8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SmartToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-22
*/

pragma solidity ^0.4.18;

/*
    ERC20 Standard Token interface
*/
contract IERC20Token {
    // these functions aren't abstract since the compiler emits automatically generated getter functions as external
    function name() public view returns (string) {}
    function symbol() public view returns (string) {}
    function decimals() public view returns (uint8) {}
    function totalSupply() public view returns (uint256) {}
    function balanceOf(address _owner) public view returns (uint256) { _owner; }
    function allowance(address _owner, address _spender) public view returns (uint256) { _owner; _spender; }

    function transfer(address _to, uint256 _value) public returns (bool success);
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
    function approve(address _spender, uint256 _value) public returns (bool success);
}


/*
    Owned contract interface
*/
contract IOwned {
    // this function isn't abstract since the compiler emits automatically generated getter functions as external
    function owner() public view returns (address) {}

    function transferOwnership(address _newOwner) public;
    function acceptOwnership() public;
}


/*
    Provides support and utilities for contract ownership
*/
contract Owned is IOwned {
    address public owner;
    address public newOwner;

    event OwnerUpdate(address indexed _prevOwner, address indexed _newOwner);

    /**
        @dev constructor
    */
    constructor () public {
        owner = msg.sender;
    }

    // allows execution by the owner only
    modifier ownerOnly {
        assert(msg.sender == owner);
        _;
    }

    /**
        @dev allows transferring the contract ownership
        the new owner still needs to accept the transfer
        can only be called by the contract owner

        @param _newOwner    new contract owner
    */
    function transferOwnership(address _newOwner) public ownerOnly {
        require(_newOwner != owner);
        newOwner = _newOwner;
    }

    /**
        @dev used by a new owner to accept an ownership transfer
    */
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnerUpdate(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}

/*
    Utilities & Common Modifiers
*/
contract Utils {

    // verifies that an amount is greater than zero
    modifier greaterThanZero(uint256 _amount) {
        require(_amount > 0);
        _;
    }

    // validates an address - currently only checks that it isn't null
    modifier validAddress(address _address) {
        require(_address != address(0));
        _;
    }

    // verifies that the address is different than this contract address
    modifier notThis(address _address) {
        require(_address != address(this));
        _;
    }

    // Overflow protected math functions

    /**
        @dev returns the sum of _x and _y, asserts if the calculation overflows

        @param _x   value 1
        @param _y   value 2

        @return sum
    */
    function safeAdd(uint256 _x, uint256 _y) internal pure returns (uint256) {
        uint256 z = _x + _y;
        assert(z >= _x);
        return z;
    }

    /**
        @dev returns the difference of _x minus _y, asserts if the subtraction results in a negative number

        @param _x   minuend
        @param _y   subtrahend

        @return difference
    */
    function safeSub(uint256 _x, uint256 _y) internal pure returns (uint256) {
        assert(_x >= _y);
        return _x - _y;
    }

    /**
        @dev returns the product of multiplying _x by _y, asserts if the calculation overflows

        @param _x   factor 1
        @param _y   factor 2

        @return product
    */
    function safeMul(uint256 _x, uint256 _y) internal pure returns (uint256) {
        uint256 z = _x * _y;
        assert(_x == 0 || z / _x == _y);
        return z;
    }
}



/**
    ERC20 Standard Token implementation
*/
contract ERC20Token is IERC20Token, Utils {
    string public standard = "Token 0.1";
    string public name = "";
    string public symbol = "";
    uint8 public decimals = 0;
    uint256 public totalSupply = 0;
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

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

    /**
        @dev constructor

        @param _name        token name
        @param _symbol      token symbol
        @param _decimals    decimal points, for display purposes
    */
    constructor(string _name, string _symbol, uint8 _decimals) public {
        require(bytes(_name).length > 0 && bytes(_symbol).length > 0); // validate input

        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }

    /**
        @dev send coins
        throws on any error rather then return a false flag to minimize user errors

        @param _to      target address
        @param _value   transfer amount

        @return true if the transfer was successful, false if it wasn't
    */
    function transfer(address _to, uint256 _value)
        public
        validAddress(_to)
        returns (bool success)
    {
        balanceOf[msg.sender] = safeSub(balanceOf[msg.sender], _value);
        balanceOf[_to] = safeAdd(balanceOf[_to], _value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
        @dev an account/contract attempts to get the coins
        throws on any error rather then return a false flag to minimize user errors

        @param _from    source address
        @param _to      target address
        @param _value   transfer amount

        @return true if the transfer was successful, false if it wasn't
    */
    function transferFrom(address _from, address _to, uint256 _value)
        public
        validAddress(_from)
        validAddress(_to)
        returns (bool success)
    {
        allowance[_from][msg.sender] = safeSub(allowance[_from][msg.sender], _value);
        balanceOf[_from] = safeSub(balanceOf[_from], _value);
        balanceOf[_to] = safeAdd(balanceOf[_to], _value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
        @dev allow another account/contract to spend some tokens on your behalf
        throws on any error rather then return a false flag to minimize user errors

        also, to minimize the risk of the approve/transferFrom attack vector
        (see https://docs.google.com/document/d/1YLPtQxZu1UAvO9cZ1O2RPXBbT0mooh4DYKjA_jp-RLM/), approve has to be called twice
        in 2 separate transactions - once to change the allowance to 0 and secondly to change it to the new allowance value

        @param _spender approved address
        @param _value   allowance amount

        @return true if the approval was successful, false if it wasn't
    */
    function approve(address _spender, uint256 _value)
        public
        validAddress(_spender)
        returns (bool success)
    {
        // if the allowance isn't 0, it can only be updated to 0 to prevent an allowance change immediately after withdrawal
        require(_value == 0 || allowance[msg.sender][_spender] == 0);

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









/*
    Token Holder interface
*/
contract ITokenHolder is IOwned {
    function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public;
}


/*
    We consider every contract to be a 'token holder' since it's currently not possible
    for a contract to deny receiving tokens.

    The TokenHolder's contract sole purpose is to provide a safety mechanism that allows
    the owner to send tokens that were sent to the contract by mistake back to their sender.
*/
contract TokenHolder is ITokenHolder, Owned, Utils {

    /**
        @dev withdraws tokens held by the contract and sends them to an account
        can only be called by the owner

        @param _token   ERC20 token contract address
        @param _to      account to receive the new amount
        @param _amount  amount to withdraw
    */
    function withdrawTokens(IERC20Token _token, address _to, uint256 _amount)
        public
        ownerOnly
        validAddress(_token)
        validAddress(_to)
        notThis(_to)
    {
        assert(_token.transfer(_to, _amount));
    }
}










/*
    Smart Token interface
*/
contract ISmartToken is IOwned, IERC20Token {
    function disableTransfers(bool _disable) public;
    function issue(address _to, uint256 _amount) public;
    function destroy(address _from, uint256 _amount) public;
}


contract SmartToken is ISmartToken, Owned, ERC20Token, TokenHolder {
    string public version = "0.3";
    bool public transfersEnabled = true;
    event NewSmartToken(address _token);
    event Issuance(uint256 _amount);
    event Destruction(uint256 _amount);

    constructor(string _name, string _symbol, uint8 _decimals)
        public
        ERC20Token(_name, _symbol, _decimals)
    {
        emit NewSmartToken(address(this));
    }

    modifier transfersAllowed {
        assert(transfersEnabled);
        _;
    }

    function disableTransfers(bool _disable) public ownerOnly {
        transfersEnabled = !_disable;
    }

    function issue(address _to, uint256 _amount)
        public
        ownerOnly
        validAddress(_to)
        notThis(_to)
    {
        totalSupply = safeAdd(totalSupply, _amount);
        balanceOf[_to] = safeAdd(balanceOf[_to], _amount);

        emit Issuance(_amount);
        emit Transfer(this, _to, _amount);
    }

    function destroy(address _from, uint256 _amount) public {
        require(msg.sender == _from || msg.sender == owner);

        balanceOf[_from] = safeSub(balanceOf[_from], _amount);
        totalSupply = safeSub(totalSupply, _amount);

        emit Transfer(_from, this, _amount);
        emit Destruction(_amount);
    }

    function transfer(address _to, uint256 _value) public transfersAllowed returns (bool success) {
        assert(super.transfer(_to, _value));
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public transfersAllowed returns (bool success) {
        assert(super.transferFrom(_from, _to, _value));
        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_disable","type":"bool"}],"name":"disableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_token","type":"address"}],"name":"NewSmartToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Issuance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Destruction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_prevOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"}]

0x60c0604052600960808190527f546f6b656e20302e31000000000000000000000000000000000000000000000060a0908152620000409160029190620001d6565b506040805160208101918290526000908190526200006191600391620001d6565b506040805160208101918290526000908190526200008291600491620001d6565b506005805460ff1916905560006006556040805180820190915260038082527f302e3300000000000000000000000000000000000000000000000000000000006020909201918252620000d891600991620001d6565b50600a805460ff19166001179055348015620000f357600080fd5b506040516200133538038062001335833981016040908152815160208301519183015160008054600160a060020a0319163317815591840180519094939093019290918491849184911180156200014b575060008251115b15156200015757600080fd5b82516200016c906003906020860190620001d6565b50815162000182906004906020850190620001d6565b506005805460ff90921660ff1990921691909117905550506040805130815290517ff4cd1f8571e8d9c97ffcb81558807ab73f9803d54de5da6a0420593c82a4a9f09181900360200190a15050506200027b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b6200027891905b8082111562000257576000815560010162000262565b90565b6110aa806200028b6000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a05780631608f18f146101e557806318160ddd1461020157806323b872dd14610228578063313ce5671461025f57806354fd4d501461028a5780635a3b7e421461029f5780635e35359e146102b457806370a08231146102eb57806379ba509714610319578063867904b41461032e5780638da5cb5b1461035f57806395d89b411461039d578063a24835d1146103b2578063a9059cbb146103e3578063bef97c8714610414578063d4ee1d9014610429578063dd62ed3e1461043e578063f2fde38b14610472575b600080fd5b34801561012257600080fd5b5061012b6104a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff6004351660243561054c565b604080519115158252519081900360200190f35b3480156101f157600080fd5b506101ff600435151561062c565b005b34801561020d57600080fd5b5061021661067d565b60408051918252519081900360200190f35b34801561023457600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff60043581169060243516604435610683565b34801561026b57600080fd5b506102746106b1565b6040805160ff9092168252519081900360200190f35b34801561029657600080fd5b5061012b6106ba565b3480156102ab57600080fd5b5061012b610733565b3480156102c057600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff600435811690602435166044356107a9565b3480156102f757600080fd5b5061021673ffffffffffffffffffffffffffffffffffffffff60043516610913565b34801561032557600080fd5b506101ff610925565b34801561033a57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff600435166024356109df565b34801561036b57600080fd5b50610374610b38565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156103a957600080fd5b5061012b610b54565b3480156103be57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff60043516602435610bcd565b3480156103ef57600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff60043516602435610cfd565b34801561042057600080fd5b506101d1610d29565b34801561043557600080fd5b50610374610d32565b34801561044a57600080fd5b5061021673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610d4e565b34801561047e57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff60043516610d6b565b6003805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b60008273ffffffffffffffffffffffffffffffffffffffff8116151561057157600080fd5b8215806105ac575033600090815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff88168452909152902054155b15156105b757600080fd5b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461064d57fe5b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115919091179055565b60065481565b600a5460009060ff16151561069457fe5b61069f848484610dfb565b15156106a757fe5b5060019392505050565b60055460ff1681565b6009805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b600280546040805160206001841615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01909316849004601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107ca57fe5b8273ffffffffffffffffffffffffffffffffffffffff811615156107ed57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff8116151561081057600080fd5b8373ffffffffffffffffffffffffffffffffffffffff811630141561083457600080fd5b8573ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b5051151561090b57fe5b505050505050565b60076020526000908152604090205481565b60015473ffffffffffffffffffffffffffffffffffffffff16331461094957600080fd5b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a360018054600080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a0057fe5b8173ffffffffffffffffffffffffffffffffffffffff81161515610a2357600080fd5b8273ffffffffffffffffffffffffffffffffffffffff8116301415610a4757600080fd5b610a5360065484610f72565b60065573ffffffffffffffffffffffffffffffffffffffff8416600090815260076020526040902054610a869084610f72565b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260409182902092909255805185815290517f9386c90217c323f58030f9dadcbc938f807a940f4ff41cd4cead9562f5da7dc3929181900390910190a160408051848152905173ffffffffffffffffffffffffffffffffffffffff86169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b3373ffffffffffffffffffffffffffffffffffffffff83161480610c08575060005473ffffffffffffffffffffffffffffffffffffffff1633145b1515610c1357600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260076020526040902054610c439082610f88565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020526040902055600654610c769082610f88565b600655604080518281529051309173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36040805182815290517f9a1b418bc061a5d80270261562e6986a35d995f8051145f277be16103abd34539181900360200190a15050565b600a5460009060ff161515610d0e57fe5b610d188383610f9a565b1515610d2057fe5b50600192915050565b600a5460ff1681565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b600860209081526000928352604080842090915290825290205481565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d8c57fe5b60005473ffffffffffffffffffffffffffffffffffffffff82811691161415610db457600080fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60008373ffffffffffffffffffffffffffffffffffffffff81161515610e2057600080fd5b8373ffffffffffffffffffffffffffffffffffffffff81161515610e4357600080fd5b73ffffffffffffffffffffffffffffffffffffffff86166000908152600860209081526040808320338452909152902054610e7e9085610f88565b73ffffffffffffffffffffffffffffffffffffffff8716600081815260086020908152604080832033845282528083209490945591815260079091522054610ec69085610f88565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600760205260408082209390935590871681522054610f029085610f72565b73ffffffffffffffffffffffffffffffffffffffff80871660008181526007602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b600082820183811015610f8157fe5b9392505050565b600081831015610f9457fe5b50900390565b60008273ffffffffffffffffffffffffffffffffffffffff81161515610fbf57600080fd5b33600090815260076020526040902054610fd99084610f88565b336000908152600760205260408082209290925573ffffffffffffffffffffffffffffffffffffffff8616815220546110129084610f72565b73ffffffffffffffffffffffffffffffffffffffff85166000818152600760209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600193925050505600a165627a7a72305820bf744679ab54c2af095545c96d29a3255e4a22ada7f46f30e82707a9c0793a510029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000013536c696365204e6574776f726b20546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534c494345000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a05780631608f18f146101e557806318160ddd1461020157806323b872dd14610228578063313ce5671461025f57806354fd4d501461028a5780635a3b7e421461029f5780635e35359e146102b457806370a08231146102eb57806379ba509714610319578063867904b41461032e5780638da5cb5b1461035f57806395d89b411461039d578063a24835d1146103b2578063a9059cbb146103e3578063bef97c8714610414578063d4ee1d9014610429578063dd62ed3e1461043e578063f2fde38b14610472575b600080fd5b34801561012257600080fd5b5061012b6104a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff6004351660243561054c565b604080519115158252519081900360200190f35b3480156101f157600080fd5b506101ff600435151561062c565b005b34801561020d57600080fd5b5061021661067d565b60408051918252519081900360200190f35b34801561023457600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff60043581169060243516604435610683565b34801561026b57600080fd5b506102746106b1565b6040805160ff9092168252519081900360200190f35b34801561029657600080fd5b5061012b6106ba565b3480156102ab57600080fd5b5061012b610733565b3480156102c057600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff600435811690602435166044356107a9565b3480156102f757600080fd5b5061021673ffffffffffffffffffffffffffffffffffffffff60043516610913565b34801561032557600080fd5b506101ff610925565b34801561033a57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff600435166024356109df565b34801561036b57600080fd5b50610374610b38565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156103a957600080fd5b5061012b610b54565b3480156103be57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff60043516602435610bcd565b3480156103ef57600080fd5b506101d173ffffffffffffffffffffffffffffffffffffffff60043516602435610cfd565b34801561042057600080fd5b506101d1610d29565b34801561043557600080fd5b50610374610d32565b34801561044a57600080fd5b5061021673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610d4e565b34801561047e57600080fd5b506101ff73ffffffffffffffffffffffffffffffffffffffff60043516610d6b565b6003805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b60008273ffffffffffffffffffffffffffffffffffffffff8116151561057157600080fd5b8215806105ac575033600090815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff88168452909152902054155b15156105b757600080fd5b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461064d57fe5b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115919091179055565b60065481565b600a5460009060ff16151561069457fe5b61069f848484610dfb565b15156106a757fe5b5060019392505050565b60055460ff1681565b6009805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b600280546040805160206001841615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01909316849004601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107ca57fe5b8273ffffffffffffffffffffffffffffffffffffffff811615156107ed57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff8116151561081057600080fd5b8373ffffffffffffffffffffffffffffffffffffffff811630141561083457600080fd5b8573ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b5051151561090b57fe5b505050505050565b60076020526000908152604090205481565b60015473ffffffffffffffffffffffffffffffffffffffff16331461094957600080fd5b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a360018054600080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a0057fe5b8173ffffffffffffffffffffffffffffffffffffffff81161515610a2357600080fd5b8273ffffffffffffffffffffffffffffffffffffffff8116301415610a4757600080fd5b610a5360065484610f72565b60065573ffffffffffffffffffffffffffffffffffffffff8416600090815260076020526040902054610a869084610f72565b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260409182902092909255805185815290517f9386c90217c323f58030f9dadcbc938f807a940f4ff41cd4cead9562f5da7dc3929181900390910190a160408051848152905173ffffffffffffffffffffffffffffffffffffffff86169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b3373ffffffffffffffffffffffffffffffffffffffff83161480610c08575060005473ffffffffffffffffffffffffffffffffffffffff1633145b1515610c1357600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260076020526040902054610c439082610f88565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020526040902055600654610c769082610f88565b600655604080518281529051309173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36040805182815290517f9a1b418bc061a5d80270261562e6986a35d995f8051145f277be16103abd34539181900360200190a15050565b600a5460009060ff161515610d0e57fe5b610d188383610f9a565b1515610d2057fe5b50600192915050565b600a5460ff1681565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b600860209081526000928352604080842090915290825290205481565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d8c57fe5b60005473ffffffffffffffffffffffffffffffffffffffff82811691161415610db457600080fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60008373ffffffffffffffffffffffffffffffffffffffff81161515610e2057600080fd5b8373ffffffffffffffffffffffffffffffffffffffff81161515610e4357600080fd5b73ffffffffffffffffffffffffffffffffffffffff86166000908152600860209081526040808320338452909152902054610e7e9085610f88565b73ffffffffffffffffffffffffffffffffffffffff8716600081815260086020908152604080832033845282528083209490945591815260079091522054610ec69085610f88565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600760205260408082209390935590871681522054610f029085610f72565b73ffffffffffffffffffffffffffffffffffffffff80871660008181526007602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b600082820183811015610f8157fe5b9392505050565b600081831015610f9457fe5b50900390565b60008273ffffffffffffffffffffffffffffffffffffffff81161515610fbf57600080fd5b33600090815260076020526040902054610fd99084610f88565b336000908152600760205260408082209290925573ffffffffffffffffffffffffffffffffffffffff8616815220546110129084610f72565b73ffffffffffffffffffffffffffffffffffffffff85166000818152600760209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600193925050505600a165627a7a72305820bf744679ab54c2af095545c96d29a3255e4a22ada7f46f30e82707a9c0793a510029

Swarm Source

bzzr://bf744679ab54c2af095545c96d29a3255e4a22ada7f46f30e82707a9c0793a51

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.