ETH Price: $2,936.13 (+0.38%)
Gas: 4 Gwei

Contract

0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer164249242023-01-17 7:08:23481 days ago1673939303IN
RenrenBit Token
0 ETH0.000560915.3625
Transfer155960242022-09-23 12:23:47597 days ago1663935827IN
RenrenBit Token
0 ETH0.0008043415
Transfer155833682022-09-21 17:55:59598 days ago1663782959IN
RenrenBit Token
0 ETH0.0011618321.66188844
Transfer137769422021-12-10 10:48:48884 days ago1639133328IN
RenrenBit Token
0 ETH0.0016056443.9625
Transfer136068472021-11-13 9:23:43911 days ago1636795423IN
RenrenBit Token
0 ETH0.00436677119.52301701
Transfer136068432021-11-13 9:23:03911 days ago1636795383IN
RenrenBit Token
0 ETH0.00870141148.90760768
Transfer136068282021-11-13 9:19:07911 days ago1636795147IN
RenrenBit Token
0 ETH0.00737045126.13074447
Transfer136068022021-11-13 9:13:02911 days ago1636794782IN
RenrenBit Token
0 ETH0.00913075250
Transfer135953582021-11-11 14:08:18913 days ago1636639698IN
RenrenBit Token
0 ETH0.00973388166.57624737
Transfer135953492021-11-11 14:05:23913 days ago1636639523IN
RenrenBit Token
0 ETH0.00913075250
Transfer135933112021-11-11 6:23:23913 days ago1636611803IN
RenrenBit Token
0 ETH0.00986078168.74786503
Transfer135933012021-11-11 6:20:07913 days ago1636611607IN
RenrenBit Token
0 ETH0.00847333232
Transfer135922202021-11-11 2:15:06913 days ago1636596906IN
RenrenBit Token
0 ETH0.00498248136.37567276
Transfer135922012021-11-11 2:11:38913 days ago1636596698IN
RenrenBit Token
0 ETH0.0097301166.51151033
Transfer135758312021-11-08 12:40:25916 days ago1636375225IN
RenrenBit Token
0 ETH0.0030215282.70227033
Transfer135757952021-11-08 12:34:08916 days ago1636374848IN
RenrenBit Token
0 ETH0.00657257112.476738
Burn135484482021-11-04 5:45:08920 days ago1636004708IN
RenrenBit Token
0 ETH0.00373383111.38785932
Transfer135400442021-11-02 21:58:55921 days ago1635890335IN
RenrenBit Token
0 ETH0.01267338216.92462817
Transfer135400432021-11-02 21:58:19921 days ago1635890299IN
RenrenBit Token
0 ETH0.01267599216.92462817
Transfer135400372021-11-02 21:57:00921 days ago1635890220IN
RenrenBit Token
0 ETH0.01278725350
Transfer135099392021-10-29 4:11:50926 days ago1635480710IN
RenrenBit Token
0 ETH0.00525875143.98468668
Transfer135099212021-10-29 4:08:32926 days ago1635480512IN
RenrenBit Token
0 ETH0.01021772174.89209198
Transfer134985952021-10-27 9:22:47928 days ago1635326567IN
RenrenBit Token
0 ETH0.00729251176.42476179
Transfer134985942021-10-27 9:22:21928 days ago1635326541IN
RenrenBit Token
0 ETH0.0050341176.42476179
Transfer134985762021-10-27 9:18:32928 days ago1635326312IN
RenrenBit Token
0 ETH0.00978996167.53600549
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:
RRB

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

/**
 * Source Code first verified at https://etherscan.io on Sunday, April 28, 2019
 (UTC) */

pragma solidity ^0.5.7;


/**
 * @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);
    
    event Freeze(address indexed from, uint256 value);
    
    event Unfreeze(address indexed from, uint256 value);
}



/**
 * @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);

        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);
        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);
        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);

        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);
        return a % b;
    }
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    /**
     * @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 Gets the balance of the specified freeze address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the freeze address.
     */
    function freezeOf(address owner) public view returns (uint256) {
        return _freezeOf[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];
    }

    /**
     * @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 returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @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 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 returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @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 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));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));
        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @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));
        
        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }
    
    function _freeze(uint256 value) internal {
        require(_balances[msg.sender]>=value); // Check if the sender has enough
        require(value > 0);
        _balances[msg.sender] = _balances[msg.sender].sub(value);
        _freezeOf[msg.sender] = _freezeOf[msg.sender].add(value);
        emit Freeze(msg.sender, value);
    }
    
    function _unfreeze(uint256 value) internal{
        require(_freezeOf[msg.sender]>=value); 
		require(value > 0);
        _freezeOf[msg.sender] = _freezeOf[msg.sender].sub(value); 
		_balances[msg.sender] = _balances[msg.sender].add(value);
        emit Unfreeze(msg.sender, value);

    }
    
    /**
     * @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));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

}


/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @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;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}


contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return True if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused);
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Lockable is PauserRole{
    

    mapping (address => bool) private lockers;
    

    event LockAccount(address account, bool islock);
    
    
    /**
     * @dev Check if the account is locked.
     * @param account specific account address.
     */
    function isLock(address account) public view returns (bool) {
        return lockers[account];
    }
    
    /**
     * @dev Lock or thaw account address
     * @param account specific account address.
     * @param islock true lock, false thaw.
     */
    function lock(address account, bool islock)  public onlyPauser {
        lockers[account] = islock;
        emit LockAccount(account, islock);
    }
    
}




/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers. 
 */
contract ERC20Pausable is ERC20, Pausable,Lockable {
    
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        require(!isLock(msg.sender));
        require(!isLock(to));
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        require(!isLock(msg.sender));
        require(!isLock(from));
        require(!isLock(to));
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        require(!isLock(msg.sender));
        require(!isLock(spender));
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
        require(!isLock(msg.sender));
        require(!isLock(spender));
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
        require(!isLock(msg.sender));
        require(!isLock(spender));
        return super.decreaseAllowance(spender, subtractedValue);
    }
}


contract RRB is ERC20, ERC20Detailed, ERC20Pausable {
    
    constructor(string memory name, string memory symbol, uint8 decimals,uint256 _totalSupply) ERC20Pausable()  ERC20Detailed(name, symbol, decimals) ERC20() public {
        require(_totalSupply > 0);
        _mint(msg.sender, _totalSupply);
    }
    
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public whenNotPaused {
        require(!isLock(msg.sender));
        _burn(msg.sender, value);
    }
    
    /**
     * @dev Freeze a specific amount of tokens.
     * @param value The amount of token to be Freeze.
     */
    function freeze(uint256 value) public whenNotPaused {
        require(!isLock(msg.sender));
        _freeze(value);
    }
    
        /**
     * @dev unFreeze a specific amount of tokens.
     * @param value The amount of token to be unFreeze.
     */
    function unfreeze(uint256 value) public whenNotPaused {
        require(!isLock(msg.sender));
        _unfreeze(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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"islock","type":"bool"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"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":true,"inputs":[{"name":"owner","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"},{"indexed":false,"name":"islock","type":"bool"}],"name":"LockAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"}]

60806040523480156200001157600080fd5b50604051620021f0380380620021f0833981810160405260808110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b828101905060208101848111156200006757600080fd5b81518560018202830111640100000000821117156200008557600080fd5b50509291906020018051640100000000811115620000a257600080fd5b82810190506020810184811115620000b957600080fd5b8151856001820283011164010000000082111715620000d757600080fd5b505092919060200180519060200190929190805190602001909291905050508383838260049080519060200190620001119291906200048f565b5081600590805190602001906200012a9291906200048f565b5080600660006101000a81548160ff021916908360ff1602179055505050506200015a336200019f60201b60201c565b6000600860006101000a81548160ff021916908315150217905550600081116200018357600080fd5b6200019533826200020060201b60201c565b505050506200053e565b620001ba8160076200036160201b62001bfb1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200023b57600080fd5b6200025781600354620003dc60201b62001b6b1790919060201c565b600381905550620002b5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003dc60201b62001b6b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620003738282620003fc60201b60201c565b156200037e57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620003f257600080fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004d257805160ff191683800117855562000503565b8280016001018555821562000503579182015b8281111562000502578251825591602001919060010190620004e5565b5b50905062000512919062000516565b5090565b6200053b91905b80821115620005375760008160009055506001016200051d565b5090565b90565b611ca2806200054e6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635f8f9c5d116100c357806395d89b411161007c57806395d89b41146105a9578063a457c2d71461062c578063a9059cbb14610692578063cd4217c1146106f8578063d7a78db814610750578063dd62ed3e1461077e5761014d565b80635f8f9c5d1461047b5780636623fc46146104cb5780636ef8d66d146104f957806370a082311461050357806382dc1ec41461055b5780638456cb591461059f5761014d565b8063395093511161011557806339509351146103035780633f4ba83a1461036957806342966c681461037357806346fbf68e146103a15780635016128e146103fd5780635c975abb146104595761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b57806323b872dd14610259578063313ce567146102df575b600080fd5b61015a6107f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610898565b604051808215151515815260200191505060405180910390f35b6102436108ec565b6040518082815260200191505060405180910390f35b6102c56004803603606081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108f6565b604051808215151515815260200191505060405180910390f35b6102e761095f565b604051808260ff1660ff16815260200191505060405180910390f35b61034f6004803603604081101561031957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610976565b604051808215151515815260200191505060405180910390f35b6103716109ca565b005b61039f6004803603602081101561038957600080fd5b8101908080359060200190929190505050610a75565b005b6103e3600480360360208110156103b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561041357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acc565b604051808215151515815260200191505060405180910390f35b610461610b22565b604051808215151515815260200191505060405180910390f35b6104c96004803603604081101561049157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610b39565b005b6104f7600480360360208110156104e157600080fd5b8101908080359060200190929190505050610c15565b005b610501610c4e565b005b6105456004803603602081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c59565b6040518082815260200191505060405180910390f35b61059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca1565b005b6105a7610cbf565b005b6105b1610d6b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105f15780820151818401526020810190506105d6565b50505050905090810190601f16801561061e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106786004803603604081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0d565b604051808215151515815260200191505060405180910390f35b6106de600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e61565b604051808215151515815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eb5565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b8101908080359060200190929190505050610efe565b005b6107e06004803603604081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff16156108b457600080fd5b6108bd33610acc565b156108c757600080fd5b6108d083610acc565b156108da57600080fd5b6108e48383610fbe565b905092915050565b6000600354905090565b6000600860009054906101000a900460ff161561091257600080fd5b61091b33610acc565b1561092557600080fd5b61092e84610acc565b1561093857600080fd5b61094183610acc565b1561094b57600080fd5b610956848484610fd5565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000600860009054906101000a900460ff161561099257600080fd5b61099b33610acc565b156109a557600080fd5b6109ae83610acc565b156109b857600080fd5b6109c28383611086565b905092915050565b6109d333610aaf565b6109dc57600080fd5b600860009054906101000a900460ff166109f557600080fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900460ff1615610a8f57600080fd5b610a9833610acc565b15610aa257600080fd5b610aac338261112b565b50565b6000610ac582600761127d90919063ffffffff16565b9050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900460ff16905090565b610b4233610aaf565b610b4b57600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44470762d57decc756f36bb9c7381b522388c21b7b48a4b012357d29611386128282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b600860009054906101000a900460ff1615610c2f57600080fd5b610c3833610acc565b15610c4257600080fd5b610c4b8161130f565b50565b610c57336114e1565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa33610aaf565b610cb357600080fd5b610cbc8161153b565b50565b610cc833610aaf565b610cd157600080fd5b600860009054906101000a900460ff1615610ceb57600080fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff1615610e2957600080fd5b610e3233610acc565b15610e3c57600080fd5b610e4583610acc565b15610e4f57600080fd5b610e598383611595565b905092915050565b6000600860009054906101000a900460ff1615610e7d57600080fd5b610e8633610acc565b15610e9057600080fd5b610e9983610acc565b15610ea357600080fd5b610ead838361163a565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900460ff1615610f1857600080fd5b610f2133610acc565b15610f2b57600080fd5b610f3481611651565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fcb338484611822565b6001905092915050565b6000610fe2848484611981565b61107b843361107685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b600190509392505050565b6000611121338461111c85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b611822565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116557600080fd5b61117a81600354611b4b90919063ffffffff16565b6003819055506111d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561135b57600080fd5b6000811161136857600080fd5b6113ba81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144e816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f826040518082815260200191505060405180910390a250565b6114f5816007611b8a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61154f816007611bfb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611630338461162b85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b6001905092915050565b6000611647338484611981565b6001905092915050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561169c57600080fd5b600081116116a957600080fd5b6116fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061178e81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e0826040518082815260200191505060405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561189657600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb57600080fd5b611a0c816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611b5a57600080fd5b600082840390508091505092915050565b600080828401905083811015611b8057600080fd5b8091505092915050565b611b94828261127d565b611b9d57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c05828261127d565b15611c0f57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea265627a7a72305820e4b715e06645587c9932ce970b327b1b70882591da659f1a0ffd2014805fe85064736f6c634300050a0032000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000eebe0b40e8000000000000000000000000000000000000000000000000000000000000000000f52656e72656e42697420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035252420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635f8f9c5d116100c357806395d89b411161007c57806395d89b41146105a9578063a457c2d71461062c578063a9059cbb14610692578063cd4217c1146106f8578063d7a78db814610750578063dd62ed3e1461077e5761014d565b80635f8f9c5d1461047b5780636623fc46146104cb5780636ef8d66d146104f957806370a082311461050357806382dc1ec41461055b5780638456cb591461059f5761014d565b8063395093511161011557806339509351146103035780633f4ba83a1461036957806342966c681461037357806346fbf68e146103a15780635016128e146103fd5780635c975abb146104595761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b57806323b872dd14610259578063313ce567146102df575b600080fd5b61015a6107f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610898565b604051808215151515815260200191505060405180910390f35b6102436108ec565b6040518082815260200191505060405180910390f35b6102c56004803603606081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108f6565b604051808215151515815260200191505060405180910390f35b6102e761095f565b604051808260ff1660ff16815260200191505060405180910390f35b61034f6004803603604081101561031957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610976565b604051808215151515815260200191505060405180910390f35b6103716109ca565b005b61039f6004803603602081101561038957600080fd5b8101908080359060200190929190505050610a75565b005b6103e3600480360360208110156103b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561041357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acc565b604051808215151515815260200191505060405180910390f35b610461610b22565b604051808215151515815260200191505060405180910390f35b6104c96004803603604081101561049157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610b39565b005b6104f7600480360360208110156104e157600080fd5b8101908080359060200190929190505050610c15565b005b610501610c4e565b005b6105456004803603602081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c59565b6040518082815260200191505060405180910390f35b61059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca1565b005b6105a7610cbf565b005b6105b1610d6b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105f15780820151818401526020810190506105d6565b50505050905090810190601f16801561061e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106786004803603604081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0d565b604051808215151515815260200191505060405180910390f35b6106de600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e61565b604051808215151515815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eb5565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b8101908080359060200190929190505050610efe565b005b6107e06004803603604081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff16156108b457600080fd5b6108bd33610acc565b156108c757600080fd5b6108d083610acc565b156108da57600080fd5b6108e48383610fbe565b905092915050565b6000600354905090565b6000600860009054906101000a900460ff161561091257600080fd5b61091b33610acc565b1561092557600080fd5b61092e84610acc565b1561093857600080fd5b61094183610acc565b1561094b57600080fd5b610956848484610fd5565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000600860009054906101000a900460ff161561099257600080fd5b61099b33610acc565b156109a557600080fd5b6109ae83610acc565b156109b857600080fd5b6109c28383611086565b905092915050565b6109d333610aaf565b6109dc57600080fd5b600860009054906101000a900460ff166109f557600080fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900460ff1615610a8f57600080fd5b610a9833610acc565b15610aa257600080fd5b610aac338261112b565b50565b6000610ac582600761127d90919063ffffffff16565b9050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900460ff16905090565b610b4233610aaf565b610b4b57600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44470762d57decc756f36bb9c7381b522388c21b7b48a4b012357d29611386128282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b600860009054906101000a900460ff1615610c2f57600080fd5b610c3833610acc565b15610c4257600080fd5b610c4b8161130f565b50565b610c57336114e1565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa33610aaf565b610cb357600080fd5b610cbc8161153b565b50565b610cc833610aaf565b610cd157600080fd5b600860009054906101000a900460ff1615610ceb57600080fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff1615610e2957600080fd5b610e3233610acc565b15610e3c57600080fd5b610e4583610acc565b15610e4f57600080fd5b610e598383611595565b905092915050565b6000600860009054906101000a900460ff1615610e7d57600080fd5b610e8633610acc565b15610e9057600080fd5b610e9983610acc565b15610ea357600080fd5b610ead838361163a565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900460ff1615610f1857600080fd5b610f2133610acc565b15610f2b57600080fd5b610f3481611651565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fcb338484611822565b6001905092915050565b6000610fe2848484611981565b61107b843361107685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b600190509392505050565b6000611121338461111c85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b611822565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116557600080fd5b61117a81600354611b4b90919063ffffffff16565b6003819055506111d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561135b57600080fd5b6000811161136857600080fd5b6113ba81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144e816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f826040518082815260200191505060405180910390a250565b6114f5816007611b8a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61154f816007611bfb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611630338461162b85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b6001905092915050565b6000611647338484611981565b6001905092915050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561169c57600080fd5b600081116116a957600080fd5b6116fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061178e81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e0826040518082815260200191505060405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561189657600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb57600080fd5b611a0c816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611b5a57600080fd5b600082840390508091505092915050565b600080828401905083811015611b8057600080fd5b8091505092915050565b611b94828261127d565b611b9d57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c05828261127d565b15611c0f57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea265627a7a72305820e4b715e06645587c9932ce970b327b1b70882591da659f1a0ffd2014805fe85064736f6c634300050a0032

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000eebe0b40e8000000000000000000000000000000000000000000000000000000000000000000f52656e72656e42697420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035252420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): RenrenBit Token
Arg [1] : symbol (string): RRB
Arg [2] : decimals (uint8): 8
Arg [3] : _totalSupply (uint256): 4200000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 000000000000000000000000000000000000000000000000000eebe0b40e8000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 52656e72656e42697420546f6b656e0000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5252420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17473:1114:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17473:1114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11760: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;11760:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16739:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16739:215:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3839:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16468:263;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16468:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12076:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16962:242;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16962:242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15148:118;;;:::i;:::-;;17918:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17918:132:0;;;;;;;;;;;;;;;;;:::i;:::-;;13418:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13418:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15670:102;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15670:102:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14401:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15938:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15938:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18450:128;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18450:128:0;;;;;;;;;;;;;;;;;:::i;:::-;;13635:77;;;:::i;:::-;;4149:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4149:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13535:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13535:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14937:116;;;:::i;:::-;;11910: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;11910:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17212:252;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17212:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16258:202;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16258:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4485:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4485:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18184:124;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18184:124:0;;;;;;;;;;;;;;;;;:::i;:::-;;4929:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4929:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11760:83;11797:13;11830:5;11823:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11760:83;:::o;16739:215::-;16818:4;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;16844:18;16851:10;16844:6;:18::i;:::-;16843:19;16835:28;;;;;;16883:15;16890:7;16883:6;:15::i;:::-;16882:16;16874:25;;;;;;16917:29;16931:7;16940:5;16917:13;:29::i;:::-;16910:36;;16739:215;;;;:::o;3839:91::-;3883:7;3910:12;;3903:19;;3839:91;:::o;16468:263::-;16561:4;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;16587:18;16594:10;16587:6;:18::i;:::-;16586:19;16578:28;;;;;;16626:12;16633:4;16626:6;:12::i;:::-;16625:13;16617:22;;;;;;16659:10;16666:2;16659:6;:10::i;:::-;16658:11;16650:20;;;;;;16688:35;16707:4;16713:2;16717:5;16688:18;:35::i;:::-;16681:42;;16468:263;;;;;:::o;12076:83::-;12117:5;12142:9;;;;;;;;;;;12135:16;;12076:83;:::o;16962:242::-;17053:4;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;17079:18;17086:10;17079:6;:18::i;:::-;17078:19;17070:28;;;;;;17118:15;17125:7;17118:6;:15::i;:::-;17117:16;17109:25;;;;;;17152:44;17176:7;17185:10;17152:23;:44::i;:::-;17145:51;;16962:242;;;;:::o;15148:118::-;13369:20;13378:10;13369:8;:20::i;:::-;13361:29;;;;;;14817:7;;;;;;;;;;;14809:16;;;;;;15217:5;15207:7;;:15;;;;;;;;;;;;;;;;;;15238:20;15247:10;15238:20;;;;;;;;;;;;;;;;;;;;;;15148:118::o;17918:132::-;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;17988:18;17995:10;17988:6;:18::i;:::-;17987:19;17979:28;;;;;;18018:24;18024:10;18036:5;18018;:24::i;:::-;17918:132;:::o;13418:109::-;13474:4;13498:21;13511:7;13498:8;:12;;:21;;;;:::i;:::-;13491:28;;13418:109;;;:::o;15670:102::-;15724:4;15748:7;:16;15756:7;15748:16;;;;;;;;;;;;;;;;;;;;;;;;;15741:23;;15670:102;;;:::o;14401:78::-;14440:4;14464:7;;;;;;;;;;;14457:14;;14401:78;:::o;15938:151::-;13369:20;13378:10;13369:8;:20::i;:::-;13361:29;;;;;;16031:6;16012:7;:16;16020:7;16012:16;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;16053:28;16065:7;16074:6;16053:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15938:151;;:::o;18450:128::-;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;18524:18;18531:10;18524:6;:18::i;:::-;18523:19;18515:28;;;;;;18554:16;18564:5;18554:9;:16::i;:::-;18450:128;:::o;13635:77::-;13679:25;13693:10;13679:13;:25::i;:::-;13635:77::o;4149:106::-;4204:7;4231:9;:16;4241:5;4231:16;;;;;;;;;;;;;;;;4224:23;;4149:106;;;:::o;13535:92::-;13369:20;13378:10;13369:8;:20::i;:::-;13361:29;;;;;;13600:19;13611:7;13600:10;:19::i;:::-;13535:92;:::o;14937:116::-;13369:20;13378:10;13369:8;:20::i;:::-;13361:29;;;;;;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;15007:4;14997:7;;:14;;;;;;;;;;;;;;;;;;15027:18;15034:10;15027:18;;;;;;;;;;;;;;;;;;;;;;14937:116::o;11910:87::-;11949:13;11982:7;11975:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11910:87;:::o;17212:252::-;17308:4;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;17334:18;17341:10;17334:6;:18::i;:::-;17333:19;17325:28;;;;;;17373:15;17380:7;17373:6;:15::i;:::-;17372:16;17364:25;;;;;;17407:49;17431:7;17440:15;17407:23;:49::i;:::-;17400:56;;17212:252;;;;:::o;16258:202::-;16333:4;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;16359:18;16366:10;16359:6;:18::i;:::-;16358:19;16350:28;;;;;;16398:10;16405:2;16398:6;:10::i;:::-;16397:11;16389:20;;;;;;16427:25;16442:2;16446:5;16427:14;:25::i;:::-;16420:32;;16258:202;;;;:::o;4485:105::-;4539:7;4566:9;:16;4576:5;4566:16;;;;;;;;;;;;;;;;4559:23;;4485:105;;;:::o;18184:124::-;14638:7;;;;;;;;;;;14637:8;14629:17;;;;;;18256:18;18263:10;18256:6;:18::i;:::-;18255:19;18247:28;;;;;;18286:14;18294:5;18286:7;:14::i;:::-;18184:124;:::o;4929:131::-;5001:7;5028:8;:15;5037:5;5028:15;;;;;;;;;;;;;;;:24;5044:7;5028:24;;;;;;;;;;;;;;;;5021:31;;4929:131;;;;:::o;6022:148::-;6087:4;6104:36;6113:10;6125:7;6134:5;6104:8;:36::i;:::-;6158:4;6151:11;;6022:148;;;;:::o;6643:228::-;6722:4;6739:26;6749:4;6755:2;6759:5;6739:9;:26::i;:::-;6776:65;6785:4;6791:10;6803:37;6834:5;6803:8;:14;6812:4;6803:14;;;;;;;;;;;;;;;:26;6818:10;6803:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6776:8;:65::i;:::-;6859:4;6852:11;;6643:228;;;;;:::o;7397:203::-;7477:4;7494:76;7503:10;7515:7;7524:45;7558:10;7524:8;:20;7533:10;7524:20;;;;;;;;;;;;;;;:29;7545:7;7524:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7494:8;:76::i;:::-;7588:4;7581:11;;7397:203;;;;:::o;9687:277::-;9781:1;9762:21;;:7;:21;;;;9754:30;;;;;;9820:23;9837:5;9820:12;;:16;;:23;;;;:::i;:::-;9805:12;:38;;;;9875:29;9898:5;9875:9;:18;9885:7;9875:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9854:9;:18;9864:7;9854:18;;;;;;;;;;;;;;;:50;;;;9946:1;9920:36;;9929:7;9920:36;;;9950:5;9920:36;;;;;;;;;;;;;;;;;;9687:277;;:::o;12881:165::-;12953:4;12997:1;12978:21;;:7;:21;;;;12970:30;;;;;;13018:4;:11;;:20;13030:7;13018:20;;;;;;;;;;;;;;;;;;;;;;;;;13011:27;;12881:165;;;;:::o;10323:296::-;10407:5;10384:9;:21;10394:10;10384:21;;;;;;;;;;;;;;;;:28;;10376:37;;;;;;10435:1;10427:5;:9;10419:18;;;;;;10472:32;10498:5;10472:9;:21;10482:10;10472:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10448:9;:21;10458:10;10448:21;;;;;;;;;;;;;;;:56;;;;10534:32;10560:5;10534:9;:21;10544:10;10534:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10510:9;:21;10520:10;10510:21;;;;;;;;;;;;;;;:56;;;;10591:10;10582:27;;;10603:5;10582:27;;;;;;;;;;;;;;;;;;10323:296;:::o;13850:130::-;13910:24;13926:7;13910:8;:15;;:24;;;;:::i;:::-;13964:7;13950:22;;;;;;;;;;;;13850:130;:::o;13720:122::-;13777:21;13790:7;13777:8;:12;;:21;;;;:::i;:::-;13826:7;13814:20;;;;;;;;;;;;13720:122;:::o;8131:213::-;8216:4;8233:81;8242:10;8254:7;8263:50;8297:15;8263:8;:20;8272:10;8263:20;;;;;;;;;;;;;;;:29;8284:7;8263:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;8233:8;:81::i;:::-;8332:4;8325:11;;8131:213;;;;:::o;5235:140::-;5296:4;5313:32;5323:10;5335:2;5339:5;5313:9;:32::i;:::-;5363:4;5356:11;;5235:140;;;;:::o;9976:335::-;10059:5;10036:9;:21;10046:10;10036:21;;;;;;;;;;;;;;;;:28;;10028:37;;;;;;10126:1;10118:5;:9;10110:18;;;;;;10163:32;10189:5;10163:9;:21;10173:10;10163:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10139:9;:21;10149:10;10139:21;;;;;;;;;;;;;;;:56;;;;10230:32;10256:5;10230:9;:21;10240:10;10230:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10206:9;:21;10216:10;10206:21;;;;;;;;;;;;;;;:56;;;;10285:10;10278:25;;;10297:5;10278:25;;;;;;;;;;;;;;;;;;9976:335;:::o;10896:254::-;11008:1;10989:21;;:7;:21;;;;10981:30;;;;;;11047:1;11030:19;;:5;:19;;;;11022:28;;;;;;11090:5;11063:8;:15;11072:5;11063:15;;;;;;;;;;;;;;;:24;11079:7;11063:24;;;;;;;;;;;;;;;:32;;;;11127:7;11111:31;;11120:5;11111:31;;;11136:5;11111:31;;;;;;;;;;;;;;;;;;10896:254;;;:::o;8572:262::-;8674:1;8660:16;;:2;:16;;;;8652:25;;;;;;8708:26;8728:5;8708:9;:15;8718:4;8708:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8690:9;:15;8700:4;8690:15;;;;;;;;;;;;;;;:44;;;;8761:24;8779:5;8761:9;:13;8771:2;8761:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8745:9;:13;8755:2;8745:13;;;;;;;;;;;;;;;:40;;;;8816:2;8801:25;;8810:4;8801:25;;;8820:5;8801:25;;;;;;;;;;;;;;;;;;8572:262;;;:::o;2238:150::-;2296:7;2329:1;2324;:6;;2316:15;;;;;;2342:9;2358:1;2354;:5;2342:17;;2379:1;2372:8;;;2238:150;;;;:::o;2476:::-;2534:7;2554:9;2570:1;2566;:5;2554:17;;2595:1;2590;:6;;2582:15;;;;;;2617:1;2610:8;;;2476:150;;;;:::o;12638:148::-;12718:18;12722:4;12728:7;12718:3;:18::i;:::-;12710:27;;;;;;12773:5;12750:4;:11;;:20;12762:7;12750:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;12638:148;;:::o;12413:145::-;12491:18;12495:4;12501:7;12491:3;:18::i;:::-;12490:19;12482:28;;;;;;12546:4;12523;:11;;:20;12535:7;12523:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;12413:145;;:::o

Swarm Source

bzzr://e4b715e06645587c9932ce970b327b1b70882591da659f1a0ffd2014805fe850

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

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.