ETH Price: $3,456.01 (-1.05%)
Gas: 11 Gwei

Token

Retro Block Token 2 (RTB2)
 

Overview

Max Total Supply

700 RTB2

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
2 RTB2

Value
$0.00
0xff0719687738c1e7fce3c50ee53140fcc56a5791
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RTB2

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-08-31
*/

pragma solidity ^0.4.23;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
     * @dev Multiplies two numbers, throws on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
     * @dev Integer division of two numbers, truncating the quotient.
     */
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    /**
     * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
     * @dev Adds two numbers, throws on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }

     /**
     * @dev x to the power of y 
     */
    function pwr(uint256 x, uint256 y)
        internal 
        pure 
        returns (uint256)
    {
        if (x==0)
            return (0);
        else if (y==0)
            return (1);
        else{
            uint256 z = x;
            for (uint256 i = 1; i < y; i++)
                z = mul(z,x);
            return (z);
        }
    }
}

interface shareProfit {
    function increaseProfit() external payable returns(bool);
}

contract RTB2 is shareProfit {
    using SafeMath for uint256;

    uint8 public decimals = 0;
    uint256 public totalSupply = 700;                                            
    uint256 public totalSold = 0;
    uint256 public constant price = 1 ether;
    string public name = "Retro Block Token 2";
    string public symbol = "RTB2";
    address public owner;
    address public finance;
    
    mapping (address=>uint256) received;
    uint256 profit;
    address public jackpot;
    shareProfit public shareContract;
    mapping (address=>uint256) changeProfit;

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

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event AddProfit(address indexed _from, uint256 _value, uint256 _newProfit);
    event Withdraw(address indexed _addr, uint256 _value);
    
    modifier onlyOwner() {
        require(msg.sender == owner, "only owner");
        _;
    }
    
    modifier onlyHuman() {
        address _addr = msg.sender;
        uint256 _codeLength;
        
        assembly {_codeLength := extcodesize(_addr)}
        require(_codeLength == 0, "sorry humans only");
        _;
    }
    
    constructor(address _shareAddr) public {
        owner = msg.sender;
        finance = 0x28Dd611d5d2cAA117239bD3f3A548DcE5Fa873b0;
        jackpot = 0x119ea7f823588D2Db81d86cEFe4F3BE25e4C34DC;
        shareContract = shareProfit(_shareAddr);
        balances[this] = 700;
    }

    function() public payable {
        require(msg.value > 0, "Amount must be provided");
        profit = msg.value.div(totalSupply).add(profit);
        emit AddProfit(msg.sender, msg.value, profit);
    }
    
    function increaseProfit() external payable returns(bool){
        if(msg.value > 0){
            profit = msg.value.div(totalSupply).add(profit);
            emit AddProfit(msg.sender, msg.value, profit);
            return true;
        }else{
            return false;
        }
    }
    
    function totalSupply() external view returns (uint256){
        return totalSupply;
    }

    function balanceOf(address _owner) external view returns (uint256) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool) {
        require(_value > 0 && allowed[msg.sender][_spender] == 0);
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) external returns (bool) {
        require(_value <= allowed[_from][msg.sender]);
        allowed[_from][msg.sender] -= _value;
        return _transfer(_from, _to, _value);
    }

    function allowance(address _owner, address _spender) external view returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function transfer(address _to, uint256 _value) external returns (bool) {
        return _transfer(msg.sender, _to, _value);
    }

    function _transfer(address _from, address _to, uint256 _value) internal returns (bool) {
        require(_to != address(0), "Receiver address cannot be null");
        require(_from != _to);
        require(_value > 0 && _value <= balances[_from]);
        uint256 newToVal = balances[_to] + _value;
        assert(newToVal >= balances[_to]);
        uint256 newFromVal = balances[_from] - _value;
        balances[_to] = newToVal;
        balances[_from] =  newFromVal;
        uint256 temp = _value.mul(profit);
        changeProfit[_from] = changeProfit[_from].add(temp);
        received[_to] = received[_to].add(temp);
        emit Transfer(_from, _to, _value);
        return true;
    }
    
    function buy(uint256 _amount) external onlyHuman payable{
        require(_amount > 0);
        uint256 _money = _amount.mul(price);
        require(msg.value == _money);
        require(balances[this] >= _amount);
        require((totalSupply - totalSold) >= _amount, "Sold out");
        _transfer(this, msg.sender, _amount);
        finance.transfer(_money.mul(60).div(100));
        jackpot.transfer(_money.mul(20).div(100));
        shareContract.increaseProfit.value(_money.mul(20).div(100))();
        totalSold += _amount;
    }

    function withdraw() external {
        uint256 value = getProfit(msg.sender);
        require(value > 0, "No cash available");
        emit Withdraw(msg.sender, value);
        received[msg.sender] = received[msg.sender].add(value);
        msg.sender.transfer(value);
    } 

    function devWithdraw() public onlyOwner{
        uint256 value = getProfit(this);
        emit Withdraw(msg.sender, value);
        received[this] = received[this].add(value);
        owner.transfer(value);
    }

    function getProfit(address _addr) public view returns(uint256){
        return profit.mul(balances[_addr]).add(changeProfit[_addr]).sub(received[_addr]);
    }
    
    function setJackpot(address _addr) public onlyOwner{
        jackpot = _addr;
    }
    
    function setShare(address _addr) public onlyOwner{
        shareContract = shareProfit(_addr);
    }
    
    function setFinance(address _addr) public onlyOwner{
        finance = _addr;
    }

}

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":false,"inputs":[],"name":"increaseProfit","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"finance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"jackpot","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"_addr","type":"address"}],"name":"setShare","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"setJackpot","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":"totalSold","outputs":[{"name":"","type":"uint256"}],"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":"_addr","type":"address"}],"name":"setFinance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"devWithdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getProfit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"shareContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","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":"_shareAddr","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"indexed":false,"name":"_newProfit","type":"uint256"}],"name":"AddProfit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_addr","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Withdraw","type":"event"}]

6000805460ff191681556102bc60015560025560c0604052601360808190527f526574726f20426c6f636b20546f6b656e20320000000000000000000000000060a090815262000053916003919062000141565b506040805180820190915260048082527f5254423200000000000000000000000000000000000000000000000000000000602090920191825262000098918162000141565b50348015620000a657600080fd5b5060405160208062001391833981016040908152905160058054600160a060020a03338116600160a060020a0319928316179092556006805482167328dd611d5d2caa117239bd3f3a548dce5fa873b017905560098054821673119ea7f823588d2db81d86cefe4f3be25e4c34dc179055600a8054938316939091169290921790915530166000908152600c602052206102bc9055620001e6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b620001e391905b80821115620001c25760008155600101620001cd565b90565b61119b80620001f66000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101fd578063095ea7b31461028757806318160ddd146102bf57806323b872dd146102e657806330cc248e14610310578063313b7b1914610318578063313ce567146103495780633ccfd60b146103745780636b31ee011461038b57806370a08231146103a05780637de7a18d146103c15780637e95385c146103e25780638da5cb5b146104035780639106d7ba1461041857806395d89b411461042d5780639b8d306414610442578063a035b1fe14610463578063a9059cbb14610478578063ad606c721461049c578063c600e1dc146104b1578063d1f55764146104d2578063d96a094a146104e7578063dd62ed3e146104f2575b6000341161018a576040805160e560020a62461bcd02815260206004820152601760248201527f416d6f756e74206d7573742062652070726f7669646564000000000000000000604482015290519081900360640190fd5b6101b16008546101a56001543461051990919063ffffffff16565b9063ffffffff61055816565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2005b34801561020957600080fd5b50610212610567565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024c578181015183820152602001610234565b50505050905090810190601f1680156102795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029357600080fd5b506102ab600160a060020a03600435166024356105f5565b604080519115158252519081900360200190f35b3480156102cb57600080fd5b506102d461069a565b60408051918252519081900360200190f35b3480156102f257600080fd5b506102ab600160a060020a03600435811690602435166044356106a1565b6102ab610716565b34801561032457600080fd5b5061032d610795565b60408051600160a060020a039092168252519081900360200190f35b34801561035557600080fd5b5061035e6107a4565b6040805160ff9092168252519081900360200190f35b34801561038057600080fd5b506103896107ad565b005b34801561039757600080fd5b5061032d6108c5565b3480156103ac57600080fd5b506102d4600160a060020a03600435166108d4565b3480156103cd57600080fd5b50610389600160a060020a03600435166108ef565b3480156103ee57600080fd5b50610389600160a060020a0360043516610972565b34801561040f57600080fd5b5061032d6109f5565b34801561042457600080fd5b506102d4610a04565b34801561043957600080fd5b50610212610a0a565b34801561044e57600080fd5b50610389600160a060020a0360043516610a65565b34801561046f57600080fd5b506102d4610ae8565b34801561048457600080fd5b506102ab600160a060020a0360043516602435610af4565b3480156104a857600080fd5b50610389610b08565b3480156104bd57600080fd5b506102d4600160a060020a0360043516610c21565b3480156104de57600080fd5b5061032d610c7c565b610389600435610c8b565b3480156104fe57600080fd5b506102d4600160a060020a0360043581169060243516610efa565b60008080831161052557fe5b828481151561053057fe5b049050828481151561053e57fe5b06818402018414151561054d57fe5b8091505b5092915050565b60008282018381101561054d57fe5b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b505050505081565b600080821180156106295750600160a060020a033381166000908152600d6020908152604080832093871683529290522054155b151561063457600080fd5b600160a060020a033381166000818152600d6020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6001545b90565b600160a060020a038084166000908152600d60209081526040808320339094168352929052908120548211156106d657600080fd5b600160a060020a038085166000908152600d60209081526040808320339094168352929052208054839003905561070e848484610f25565b949350505050565b60008034111561078d5761073b6008546101a56001543461051990919063ffffffff16565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a250600161069e565b50600061069e565b600654600160a060020a031681565b60005460ff1681565b60006107b833610c21565b905060008111610812576040805160e560020a62461bcd02815260206004820152601160248201527f4e6f206361736820617661696c61626c65000000000000000000000000000000604482015290519081900360640190fd5b604080518281529051600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a2600160a060020a03331660009081526007602052604090205461087a908263ffffffff61055816565b600160a060020a033316600081815260076020526040808220939093559151909183156108fc02918491818181858888f193505050501580156108c1573d6000803e3d6000fd5b5050565b600954600160a060020a031681565b600160a060020a03166000908152600c602052604090205490565b60055433600160a060020a03908116911614610943576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055433600160a060020a039081169116146109c6576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b60025481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105ed5780601f106105c2576101008083540402835291602001916105ed565b60055433600160a060020a03908116911614610ab9576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b670de0b6b3a764000081565b6000610b01338484610f25565b9392505050565b60055460009033600160a060020a03908116911614610b5f576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b610b6830610c21565b604080518281529051919250600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649181900360200190a2600160a060020a033016600090815260076020526040902054610bd2908263ffffffff61055816565b600160a060020a03308116600090815260076020526040808220939093556005549251929091169183156108fc0291849190818181858888f193505050501580156108c1573d6000803e3d6000fd5b600160a060020a038116600090815260076020908152604080832054600b835281842054600c90935290832054600854610c7693610c6a9290916101a59163ffffffff61111216565b9063ffffffff61113d16565b92915050565b600a54600160a060020a031681565b600033803b8015610ce6576040805160e560020a62461bcd02815260206004820152601160248201527f736f7272792068756d616e73206f6e6c79000000000000000000000000000000604482015290519081900360640190fd5b60008411610cf357600080fd5b610d0b84670de0b6b3a764000063ffffffff61111216565b9250348314610d1957600080fd5b600160a060020a0330166000908152600c6020526040902054841115610d3e57600080fd5b60025460015403841115610d9c576040805160e560020a62461bcd02815260206004820152600860248201527f536f6c64206f7574000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610da7303386610f25565b50600654600160a060020a03166108fc610dd96064610dcd87603c63ffffffff61111216565b9063ffffffff61051916565b6040518115909202916000818181858888f19350505050158015610e01573d6000803e3d6000fd5b50600954600160a060020a03166108fc610e276064610dcd87601463ffffffff61111216565b6040518115909202916000818181858888f19350505050158015610e4f573d6000803e3d6000fd5b50600a54600160a060020a03166330cc248e610e776064610dcd87601463ffffffff61111216565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016020604051808303818588803b158015610ebe57600080fd5b505af1158015610ed2573d6000803e3d6000fd5b50505050506040513d6020811015610ee957600080fd5b505060028054909401909355505050565b600160a060020a039182166000908152600d6020908152604080832093909416825291909152205490565b6000808080600160a060020a0386161515610f8a576040805160e560020a62461bcd02815260206004820152601f60248201527f526563656976657220616464726573732063616e6e6f74206265206e756c6c00604482015290519081900360640190fd5b600160a060020a038781169087161415610fa357600080fd5b600085118015610fcb5750600160a060020a0387166000908152600c60205260409020548511155b1515610fd657600080fd5b600160a060020a0386166000908152600c60205260409020548086019350831015610ffd57fe5b600160a060020a038088166000818152600c60205260408082208054948b168352908220879055919052908690039081905560085490925061104690869063ffffffff61111216565b600160a060020a0388166000908152600b6020526040902054909150611072908263ffffffff61055816565b600160a060020a038089166000908152600b60209081526040808320949094559189168152600790915220546110ae908263ffffffff61055816565b600160a060020a0380881660008181526007602090815260409182902094909455805189815290519193928b16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019695505050505050565b6000808315156111255760009150610551565b5082820282848281151561113557fe5b041461054d57fe5b60008282111561114957fe5b5090039056006f6e6c79206f776e657200000000000000000000000000000000000000000000a165627a7a723058205bc079f43da3b67c0098f0eb1c02696e3fc3e988203f0d298202aa6cc0f57ea10029000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101fd578063095ea7b31461028757806318160ddd146102bf57806323b872dd146102e657806330cc248e14610310578063313b7b1914610318578063313ce567146103495780633ccfd60b146103745780636b31ee011461038b57806370a08231146103a05780637de7a18d146103c15780637e95385c146103e25780638da5cb5b146104035780639106d7ba1461041857806395d89b411461042d5780639b8d306414610442578063a035b1fe14610463578063a9059cbb14610478578063ad606c721461049c578063c600e1dc146104b1578063d1f55764146104d2578063d96a094a146104e7578063dd62ed3e146104f2575b6000341161018a576040805160e560020a62461bcd02815260206004820152601760248201527f416d6f756e74206d7573742062652070726f7669646564000000000000000000604482015290519081900360640190fd5b6101b16008546101a56001543461051990919063ffffffff16565b9063ffffffff61055816565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2005b34801561020957600080fd5b50610212610567565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024c578181015183820152602001610234565b50505050905090810190601f1680156102795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029357600080fd5b506102ab600160a060020a03600435166024356105f5565b604080519115158252519081900360200190f35b3480156102cb57600080fd5b506102d461069a565b60408051918252519081900360200190f35b3480156102f257600080fd5b506102ab600160a060020a03600435811690602435166044356106a1565b6102ab610716565b34801561032457600080fd5b5061032d610795565b60408051600160a060020a039092168252519081900360200190f35b34801561035557600080fd5b5061035e6107a4565b6040805160ff9092168252519081900360200190f35b34801561038057600080fd5b506103896107ad565b005b34801561039757600080fd5b5061032d6108c5565b3480156103ac57600080fd5b506102d4600160a060020a03600435166108d4565b3480156103cd57600080fd5b50610389600160a060020a03600435166108ef565b3480156103ee57600080fd5b50610389600160a060020a0360043516610972565b34801561040f57600080fd5b5061032d6109f5565b34801561042457600080fd5b506102d4610a04565b34801561043957600080fd5b50610212610a0a565b34801561044e57600080fd5b50610389600160a060020a0360043516610a65565b34801561046f57600080fd5b506102d4610ae8565b34801561048457600080fd5b506102ab600160a060020a0360043516602435610af4565b3480156104a857600080fd5b50610389610b08565b3480156104bd57600080fd5b506102d4600160a060020a0360043516610c21565b3480156104de57600080fd5b5061032d610c7c565b610389600435610c8b565b3480156104fe57600080fd5b506102d4600160a060020a0360043581169060243516610efa565b60008080831161052557fe5b828481151561053057fe5b049050828481151561053e57fe5b06818402018414151561054d57fe5b8091505b5092915050565b60008282018381101561054d57fe5b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b505050505081565b600080821180156106295750600160a060020a033381166000908152600d6020908152604080832093871683529290522054155b151561063457600080fd5b600160a060020a033381166000818152600d6020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6001545b90565b600160a060020a038084166000908152600d60209081526040808320339094168352929052908120548211156106d657600080fd5b600160a060020a038085166000908152600d60209081526040808320339094168352929052208054839003905561070e848484610f25565b949350505050565b60008034111561078d5761073b6008546101a56001543461051990919063ffffffff16565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a250600161069e565b50600061069e565b600654600160a060020a031681565b60005460ff1681565b60006107b833610c21565b905060008111610812576040805160e560020a62461bcd02815260206004820152601160248201527f4e6f206361736820617661696c61626c65000000000000000000000000000000604482015290519081900360640190fd5b604080518281529051600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a2600160a060020a03331660009081526007602052604090205461087a908263ffffffff61055816565b600160a060020a033316600081815260076020526040808220939093559151909183156108fc02918491818181858888f193505050501580156108c1573d6000803e3d6000fd5b5050565b600954600160a060020a031681565b600160a060020a03166000908152600c602052604090205490565b60055433600160a060020a03908116911614610943576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055433600160a060020a039081169116146109c6576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b60025481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105ed5780601f106105c2576101008083540402835291602001916105ed565b60055433600160a060020a03908116911614610ab9576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b670de0b6b3a764000081565b6000610b01338484610f25565b9392505050565b60055460009033600160a060020a03908116911614610b5f576040805160e560020a62461bcd02815260206004820152600a6024820152600080516020611150833981519152604482015290519081900360640190fd5b610b6830610c21565b604080518281529051919250600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649181900360200190a2600160a060020a033016600090815260076020526040902054610bd2908263ffffffff61055816565b600160a060020a03308116600090815260076020526040808220939093556005549251929091169183156108fc0291849190818181858888f193505050501580156108c1573d6000803e3d6000fd5b600160a060020a038116600090815260076020908152604080832054600b835281842054600c90935290832054600854610c7693610c6a9290916101a59163ffffffff61111216565b9063ffffffff61113d16565b92915050565b600a54600160a060020a031681565b600033803b8015610ce6576040805160e560020a62461bcd02815260206004820152601160248201527f736f7272792068756d616e73206f6e6c79000000000000000000000000000000604482015290519081900360640190fd5b60008411610cf357600080fd5b610d0b84670de0b6b3a764000063ffffffff61111216565b9250348314610d1957600080fd5b600160a060020a0330166000908152600c6020526040902054841115610d3e57600080fd5b60025460015403841115610d9c576040805160e560020a62461bcd02815260206004820152600860248201527f536f6c64206f7574000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610da7303386610f25565b50600654600160a060020a03166108fc610dd96064610dcd87603c63ffffffff61111216565b9063ffffffff61051916565b6040518115909202916000818181858888f19350505050158015610e01573d6000803e3d6000fd5b50600954600160a060020a03166108fc610e276064610dcd87601463ffffffff61111216565b6040518115909202916000818181858888f19350505050158015610e4f573d6000803e3d6000fd5b50600a54600160a060020a03166330cc248e610e776064610dcd87601463ffffffff61111216565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016020604051808303818588803b158015610ebe57600080fd5b505af1158015610ed2573d6000803e3d6000fd5b50505050506040513d6020811015610ee957600080fd5b505060028054909401909355505050565b600160a060020a039182166000908152600d6020908152604080832093909416825291909152205490565b6000808080600160a060020a0386161515610f8a576040805160e560020a62461bcd02815260206004820152601f60248201527f526563656976657220616464726573732063616e6e6f74206265206e756c6c00604482015290519081900360640190fd5b600160a060020a038781169087161415610fa357600080fd5b600085118015610fcb5750600160a060020a0387166000908152600c60205260409020548511155b1515610fd657600080fd5b600160a060020a0386166000908152600c60205260409020548086019350831015610ffd57fe5b600160a060020a038088166000818152600c60205260408082208054948b168352908220879055919052908690039081905560085490925061104690869063ffffffff61111216565b600160a060020a0388166000908152600b6020526040902054909150611072908263ffffffff61055816565b600160a060020a038089166000908152600b60209081526040808320949094559189168152600790915220546110ae908263ffffffff61055816565b600160a060020a0380881660008181526007602090815260409182902094909455805189815290519193928b16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019695505050505050565b6000808315156111255760009150610551565b5082820282848281151561113557fe5b041461054d57fe5b60008282111561114957fe5b5090039056006f6e6c79206f776e657200000000000000000000000000000000000000000000a165627a7a723058205bc079f43da3b67c0098f0eb1c02696e3fc3e988203f0d298202aa6cc0f57ea10029

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

000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01

-----Decoded View---------------
Arg [0] : _shareAddr (address): 0xD0955bD45d5EeF5BEdCe84a3471c825288a14b01

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01


Swarm Source

bzzr://5bc079f43da3b67c0098f0eb1c02696e3fc3e988203f0d298202aa6cc0f57ea1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.