ETH Price: $3,106.78 (+1.47%)
Gas: 4 Gwei

Token

GetPaid (GPaid)
 

Overview

Max Total Supply

30,000,000,000 GPaid

Holders

39,320

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
200,000 GPaid

Value
$0.00
0x5ad175dc86c01825cb8875b629ea10758e9052b8
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:
GetPaidToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.22;

// GetPaid Token Project Updated

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

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    return c;
  }

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

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

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

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

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

interface Token { 
    function distr(address _to, uint256 _value) external returns (bool);
    function totalSupply() constant external returns (uint256 supply);
    function balanceOf(address _owner) constant external returns (uint256 balance);
}

contract GetPaidToken is ERC20 {

  
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public blacklist;

    string public constant name = "GetPaid";
    string public constant symbol = "GPaid";
    uint public constant decimals = 18;
    
    uint256 public totalSupply = 30000000000e18;
    
    uint256 public totalDistributed = 0;

    uint256 public totalValue = 0;
    
    uint256 public totalRemaining = totalSupply.sub(totalDistributed);
    
    uint256 public value = 200000e18;

    uint256 public tokensPerEth = 20000000e18;

    uint256 public constant minContribution = 1 ether / 100; // 0.01 Eth

    uint256 public constant maxTotalValue = 15000000000e18;



    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event Distr0(address indexed to, uint256 amount);
    event DistrFinished();
    event ZeroEthFinished();

    event Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;

    bool public zeroDistrFinished = false;
    

    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    modifier onlyWhitelist() {
        require(blacklist[msg.sender] == false);
        _;
    }
    
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }
    
    function finishZeroDistribution() onlyOwner canDistr public returns (bool) {
        zeroDistrFinished = true;
        emit ZeroEthFinished();
        return true;
    }

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }

    function distr0(address _to, uint256 _amount) canDistr private returns (bool) {
        require( totalValue < maxTotalValue );
        totalDistributed = totalDistributed.add(_amount);
        totalValue = totalValue.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;
        
        if (totalValue >= maxTotalValue) {
            zeroDistrFinished = true;
        }
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);
        totalRemaining = totalRemaining.sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }

    function () external payable {
        getTokens();
     }

    function getTokens() payable canDistr public {
        
        address investor = msg.sender;
        uint256 toGive = value;
        uint256 tokens = 0;
        tokens = tokensPerEth.mul(msg.value) / 1 ether;
        uint256 bonusFourth = 0;
        uint256 bonusHalf = 0;
        uint256 bonusTwentyFive = 0;
        uint256 bonusFifty = 0;
        uint256 bonusOneHundred = 0;
        bonusFourth = tokens / 4;
        bonusHalf = tokens / 2;
        bonusTwentyFive = tokens.add(bonusFourth);
        bonusFifty = tokens.add(bonusHalf);
        bonusOneHundred = tokens.add(tokens);
        

        if (msg.value == 0 ether) {
            require( blacklist[investor] == false );
            require( totalValue <= maxTotalValue );
            distr0(investor, toGive);
            blacklist[investor] = true;

            if (totalValue >= maxTotalValue) {
                zeroDistrFinished = true;
            }
        } 
        
        if (msg.value > 0 ether && msg.value < 0.1 ether ) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, tokens);

            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value == 0.1 ether ) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusTwentyFive);

            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value > 0.1 ether && msg.value < 0.5 ether ) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusTwentyFive);
    
            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value == 0.5 ether ) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusFifty);

            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value > 0.5 ether && msg.value < 1 ether ) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusFifty);
    
            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value == 1 ether) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusOneHundred);

            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }

        if (msg.value > 1 ether) {
            blacklist[investor] = false;
            require( msg.value >= minContribution );
            require( msg.value > 0 );
            distr(investor, bonusOneHundred);

            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }
    }

    function doAirdrop(address _participant, uint _amount) internal {

        require( _amount > 0 );      

        require( totalDistributed < totalSupply );
        
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }

        //log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }

    function adminClaimAirdrop(address _participant, uint _amount) public onlyOwner {        
        doAirdrop(_participant, _amount);
    }

    function adminClaimAirdropMultiple(address[] _addresses, uint _amount) public onlyOwner {        
        for (uint i = 0; i < _addresses.length; i++) doAirdrop(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {
        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }
    
    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

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":"success","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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"value","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"zeroDistrFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishZeroDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdropMultiple","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":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"minContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTotalValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr0","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"ZeroEthFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405260018054600160a060020a031916331790556b60ef6b1aba6f072330000000600581905560006006819055600781905561004b91906401000000006114ea61008882021704565b600855692a5a058fc295ed0000006009556a108b2a2c28029094000000600a55600b805461ffff1916905534801561008257600080fd5b5061009a565b60008282111561009457fe5b50900390565b61165b806100a96000396000f30060806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610189578063095ea7b31461021357806318160ddd1461024b57806323b872dd14610272578063313ce5671461029c5780633ccfd60b146102b15780633fa4f245146102c657806342966c68146102db5780634a63464d146102f35780634f4dc71d14610317578063500e9eaa1461032c57806367220fd71461034157806370a082311461039857806395d89b41146103b95780639b1cbccc146103ce5780639ea407be146103e3578063a9059cbb146103fb578063aa6ca8081461017f578063aaffadf31461041f578063c108d54214610434578063c489744b14610449578063cbdd69b514610470578063d4c3eea014610485578063d8a543601461049a578063dd62ed3e146104af578063e58fc54c146104d6578063efca2eed146104f7578063f2fde38b1461050c578063f82a3d6f1461052d578063f9f92be414610542575b610187610563565b005b34801561019557600080fd5b5061019e610a08565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d85781810151838201526020016101c0565b50505050905090810190601f1680156102055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021f57600080fd5b50610237600160a060020a0360043516602435610a3f565b604080519115158252519081900360200190f35b34801561025757600080fd5b50610260610ae7565b60408051918252519081900360200190f35b34801561027e57600080fd5b50610237600160a060020a0360043581169060243516604435610aed565b3480156102a857600080fd5b50610260610c60565b3480156102bd57600080fd5b50610187610c65565b3480156102d257600080fd5b50610260610cc7565b3480156102e757600080fd5b50610187600435610ccd565b3480156102ff57600080fd5b50610187600160a060020a0360043516602435610dac565b34801561032357600080fd5b50610237610dd1565b34801561033857600080fd5b50610237610ddf565b34801561034d57600080fd5b5060408051602060048035808201358381028086018501909652808552610187953695939460249493850192918291850190849080828437509497505093359450610e479350505050565b3480156103a457600080fd5b50610260600160a060020a0360043516610e97565b3480156103c557600080fd5b5061019e610eb2565b3480156103da57600080fd5b50610237610ee9565b3480156103ef57600080fd5b50610187600435610f4f565b34801561040757600080fd5b50610237600160a060020a0360043516602435610fa1565b34801561042b57600080fd5b50610260611080565b34801561044057600080fd5b5061023761108b565b34801561045557600080fd5b50610260600160a060020a0360043581169060243516611094565b34801561047c57600080fd5b50610260611145565b34801561049157600080fd5b5061026061114b565b3480156104a657600080fd5b50610260611151565b3480156104bb57600080fd5b50610260600160a060020a0360043581169060243516611157565b3480156104e257600080fd5b50610237600160a060020a0360043516611182565b34801561050357600080fd5b506102606112d6565b34801561051857600080fd5b50610187600160a060020a03600435166112dc565b34801561053957600080fd5b5061026061132e565b34801561054e57600080fd5b50610237600160a060020a036004351661133e565b600b54600090819081908190819081908190819060ff161561058457600080fd5b339750600954965060009550670de0b6b3a76400006105ae34600a5461135390919063ffffffff16565b8115156105b757fe5b04955050600485049350506002840491506000905080806105d8868661137e565b92506105ea868563ffffffff61137e16565b91506105fc868063ffffffff61137e16565b905034151561069957600160a060020a03881660009081526004602052604090205460ff161561062b57600080fd5b6007546b3077b58d5d37839198000000101561064657600080fd5b610650888861138d565b50600160a060020a0388166000908152600460205260409020805460ff191660011790556007546b3077b58d5d378391980000001161069957600b805461ff0019166101001790555b6000341180156106b0575067016345785d8a000034105b1561071a57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156106e957600080fd5b600034116106f657600080fd5b61070088876114ae565b506005546006541061071a57600b805460ff191660011790555b3467016345785d8a0000141561078f57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561075e57600080fd5b6000341161076b57600080fd5b61077588846114ae565b506005546006541061078f57600b805460ff191660011790555b67016345785d8a0000341180156107ad57506706f05b59d3b2000034105b1561081757600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156107e657600080fd5b600034116107f357600080fd5b6107fd88846114ae565b506005546006541061081757600b805460ff191660011790555b346706f05b59d3b20000141561088c57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561085b57600080fd5b6000341161086857600080fd5b61087288836114ae565b506005546006541061088c57600b805460ff191660011790555b6706f05b59d3b20000341180156108aa5750670de0b6b3a764000034105b1561091457600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156108e357600080fd5b600034116108f057600080fd5b6108fa88836114ae565b506005546006541061091457600b805460ff191660011790555b34670de0b6b3a7640000141561098957600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561095857600080fd5b6000341161096557600080fd5b61096f88826114ae565b506005546006541061098957600b805460ff191660011790555b670de0b6b3a76400003411156109fe57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156109cd57600080fd5b600034116109da57600080fd5b6109e488826114ae565b50600554600654106109fe57600b805460ff191660011790555b5050505050505050565b60408051808201909152600781527f4765745061696400000000000000000000000000000000000000000000000000602082015281565b60008115801590610a725750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610a7f57506000610ae1565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055481565b600060606064361015610afc57fe5b600160a060020a0384161515610b1157600080fd5b600160a060020a038516600090815260026020526040902054831115610b3657600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610b6657600080fd5b600160a060020a038516600090815260026020526040902054610b8f908463ffffffff6114ea16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610bcc908463ffffffff6114ea16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610c10908463ffffffff61137e16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061161083398151915292918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610c8157600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610cc2573d6000803e3d6000fd5b505050565b60095481565b600154600090600160a060020a03163314610ce757600080fd5b33600090815260026020526040902054821115610d0357600080fd5b5033600081815260026020526040902054610d24908363ffffffff6114ea16565b600160a060020a038216600090815260026020526040902055600554610d50908363ffffffff6114ea16565b600555600654610d66908363ffffffff6114ea16565b600655604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600154600160a060020a03163314610dc357600080fd5b610dcd82826114fc565b5050565b600b54610100900460ff1681565b600154600090600160a060020a03163314610df957600080fd5b600b5460ff1615610e0957600080fd5b600b805461ff0019166101001790556040517f2612d8c095cf60b4798a169571c718da6662b26b0b7daf32efa89d0ed8e6984f90600090a150600190565b600154600090600160a060020a03163314610e6157600080fd5b5060005b8251811015610cc257610e8f8382815181101515610e7f57fe5b90602001906020020151836114fc565b600101610e65565b600160a060020a031660009081526002602052604090205490565b60408051808201909152600581527f4750616964000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610f0357600080fd5b600b5460ff1615610f1357600080fd5b600b805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610f6657600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610fb057fe5b600160a060020a0384161515610fc557600080fd5b33600090815260026020526040902054831115610fe157600080fd5b33600090815260026020526040902054611001908463ffffffff6114ea16565b3360009081526002602052604080822092909255600160a060020a03861681522054611033908463ffffffff61137e16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206116108339815191529281900390910190a35060019392505050565b662386f26fc1000081565b600b5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561111057600080fd5b505af1158015611124573d6000803e3d6000fd5b505050506040513d602081101561113a57600080fd5b505195945050505050565b600a5481565b60075481565b60085481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a031633146111a057600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050506040513d602081101561122e57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156112a257600080fd5b505af11580156112b6573d6000803e3d6000fd5b505050506040513d60208110156112cc57600080fd5b5051949350505050565b60065481565b600154600160a060020a031633146112f357600080fd5b600160a060020a0381161561132b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6b3077b58d5d3783919800000081565b60046020526000908152604090205460ff1681565b600082820283158061136f575082848281151561136c57fe5b04145b151561137757fe5b9392505050565b60008282018381101561137757fe5b600b5460009060ff16156113a057600080fd5b6007546b3077b58d5d37839198000000116113ba57600080fd5b6006546113cd908363ffffffff61137e16565b6006556007546113e3908363ffffffff61137e16565b6007556008546113f9908363ffffffff6114ea16565b600855600160a060020a038316600090815260026020526040902054611425908363ffffffff61137e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206116108339815191529181900360200190a3506001610ae1565b600b5460009060ff16156114c157600080fd5b6006546114d4908363ffffffff61137e16565b6006556008546113f9908363ffffffff6114ea16565b6000828211156114f657fe5b50900390565b6000811161150957600080fd5b6005546006541061151957600080fd5b600160a060020a038216600090815260026020526040902054611542908263ffffffff61137e16565b600160a060020a03831660009081526002602052604090205560065461156e908263ffffffff61137e16565b60068190556005541161158957600b805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206116108339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206c8d50ceeb486c63c29bd333c0ca57f45d24a9c684a5a804e990a175f57061ad0029

Deployed Bytecode

0x60806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610189578063095ea7b31461021357806318160ddd1461024b57806323b872dd14610272578063313ce5671461029c5780633ccfd60b146102b15780633fa4f245146102c657806342966c68146102db5780634a63464d146102f35780634f4dc71d14610317578063500e9eaa1461032c57806367220fd71461034157806370a082311461039857806395d89b41146103b95780639b1cbccc146103ce5780639ea407be146103e3578063a9059cbb146103fb578063aa6ca8081461017f578063aaffadf31461041f578063c108d54214610434578063c489744b14610449578063cbdd69b514610470578063d4c3eea014610485578063d8a543601461049a578063dd62ed3e146104af578063e58fc54c146104d6578063efca2eed146104f7578063f2fde38b1461050c578063f82a3d6f1461052d578063f9f92be414610542575b610187610563565b005b34801561019557600080fd5b5061019e610a08565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d85781810151838201526020016101c0565b50505050905090810190601f1680156102055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021f57600080fd5b50610237600160a060020a0360043516602435610a3f565b604080519115158252519081900360200190f35b34801561025757600080fd5b50610260610ae7565b60408051918252519081900360200190f35b34801561027e57600080fd5b50610237600160a060020a0360043581169060243516604435610aed565b3480156102a857600080fd5b50610260610c60565b3480156102bd57600080fd5b50610187610c65565b3480156102d257600080fd5b50610260610cc7565b3480156102e757600080fd5b50610187600435610ccd565b3480156102ff57600080fd5b50610187600160a060020a0360043516602435610dac565b34801561032357600080fd5b50610237610dd1565b34801561033857600080fd5b50610237610ddf565b34801561034d57600080fd5b5060408051602060048035808201358381028086018501909652808552610187953695939460249493850192918291850190849080828437509497505093359450610e479350505050565b3480156103a457600080fd5b50610260600160a060020a0360043516610e97565b3480156103c557600080fd5b5061019e610eb2565b3480156103da57600080fd5b50610237610ee9565b3480156103ef57600080fd5b50610187600435610f4f565b34801561040757600080fd5b50610237600160a060020a0360043516602435610fa1565b34801561042b57600080fd5b50610260611080565b34801561044057600080fd5b5061023761108b565b34801561045557600080fd5b50610260600160a060020a0360043581169060243516611094565b34801561047c57600080fd5b50610260611145565b34801561049157600080fd5b5061026061114b565b3480156104a657600080fd5b50610260611151565b3480156104bb57600080fd5b50610260600160a060020a0360043581169060243516611157565b3480156104e257600080fd5b50610237600160a060020a0360043516611182565b34801561050357600080fd5b506102606112d6565b34801561051857600080fd5b50610187600160a060020a03600435166112dc565b34801561053957600080fd5b5061026061132e565b34801561054e57600080fd5b50610237600160a060020a036004351661133e565b600b54600090819081908190819081908190819060ff161561058457600080fd5b339750600954965060009550670de0b6b3a76400006105ae34600a5461135390919063ffffffff16565b8115156105b757fe5b04955050600485049350506002840491506000905080806105d8868661137e565b92506105ea868563ffffffff61137e16565b91506105fc868063ffffffff61137e16565b905034151561069957600160a060020a03881660009081526004602052604090205460ff161561062b57600080fd5b6007546b3077b58d5d37839198000000101561064657600080fd5b610650888861138d565b50600160a060020a0388166000908152600460205260409020805460ff191660011790556007546b3077b58d5d378391980000001161069957600b805461ff0019166101001790555b6000341180156106b0575067016345785d8a000034105b1561071a57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156106e957600080fd5b600034116106f657600080fd5b61070088876114ae565b506005546006541061071a57600b805460ff191660011790555b3467016345785d8a0000141561078f57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561075e57600080fd5b6000341161076b57600080fd5b61077588846114ae565b506005546006541061078f57600b805460ff191660011790555b67016345785d8a0000341180156107ad57506706f05b59d3b2000034105b1561081757600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156107e657600080fd5b600034116107f357600080fd5b6107fd88846114ae565b506005546006541061081757600b805460ff191660011790555b346706f05b59d3b20000141561088c57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561085b57600080fd5b6000341161086857600080fd5b61087288836114ae565b506005546006541061088c57600b805460ff191660011790555b6706f05b59d3b20000341180156108aa5750670de0b6b3a764000034105b1561091457600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156108e357600080fd5b600034116108f057600080fd5b6108fa88836114ae565b506005546006541061091457600b805460ff191660011790555b34670de0b6b3a7640000141561098957600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc1000034101561095857600080fd5b6000341161096557600080fd5b61096f88826114ae565b506005546006541061098957600b805460ff191660011790555b670de0b6b3a76400003411156109fe57600160a060020a0388166000908152600460205260409020805460ff19169055662386f26fc100003410156109cd57600080fd5b600034116109da57600080fd5b6109e488826114ae565b50600554600654106109fe57600b805460ff191660011790555b5050505050505050565b60408051808201909152600781527f4765745061696400000000000000000000000000000000000000000000000000602082015281565b60008115801590610a725750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610a7f57506000610ae1565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055481565b600060606064361015610afc57fe5b600160a060020a0384161515610b1157600080fd5b600160a060020a038516600090815260026020526040902054831115610b3657600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610b6657600080fd5b600160a060020a038516600090815260026020526040902054610b8f908463ffffffff6114ea16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610bcc908463ffffffff6114ea16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610c10908463ffffffff61137e16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061161083398151915292918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610c8157600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610cc2573d6000803e3d6000fd5b505050565b60095481565b600154600090600160a060020a03163314610ce757600080fd5b33600090815260026020526040902054821115610d0357600080fd5b5033600081815260026020526040902054610d24908363ffffffff6114ea16565b600160a060020a038216600090815260026020526040902055600554610d50908363ffffffff6114ea16565b600555600654610d66908363ffffffff6114ea16565b600655604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600154600160a060020a03163314610dc357600080fd5b610dcd82826114fc565b5050565b600b54610100900460ff1681565b600154600090600160a060020a03163314610df957600080fd5b600b5460ff1615610e0957600080fd5b600b805461ff0019166101001790556040517f2612d8c095cf60b4798a169571c718da6662b26b0b7daf32efa89d0ed8e6984f90600090a150600190565b600154600090600160a060020a03163314610e6157600080fd5b5060005b8251811015610cc257610e8f8382815181101515610e7f57fe5b90602001906020020151836114fc565b600101610e65565b600160a060020a031660009081526002602052604090205490565b60408051808201909152600581527f4750616964000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610f0357600080fd5b600b5460ff1615610f1357600080fd5b600b805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610f6657600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610fb057fe5b600160a060020a0384161515610fc557600080fd5b33600090815260026020526040902054831115610fe157600080fd5b33600090815260026020526040902054611001908463ffffffff6114ea16565b3360009081526002602052604080822092909255600160a060020a03861681522054611033908463ffffffff61137e16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206116108339815191529281900390910190a35060019392505050565b662386f26fc1000081565b600b5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561111057600080fd5b505af1158015611124573d6000803e3d6000fd5b505050506040513d602081101561113a57600080fd5b505195945050505050565b600a5481565b60075481565b60085481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a031633146111a057600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050506040513d602081101561122e57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156112a257600080fd5b505af11580156112b6573d6000803e3d6000fd5b505050506040513d60208110156112cc57600080fd5b5051949350505050565b60065481565b600154600160a060020a031633146112f357600080fd5b600160a060020a0381161561132b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6b3077b58d5d3783919800000081565b60046020526000908152604090205460ff1681565b600082820283158061136f575082848281151561136c57fe5b04145b151561137757fe5b9392505050565b60008282018381101561137757fe5b600b5460009060ff16156113a057600080fd5b6007546b3077b58d5d37839198000000116113ba57600080fd5b6006546113cd908363ffffffff61137e16565b6006556007546113e3908363ffffffff61137e16565b6007556008546113f9908363ffffffff6114ea16565b600855600160a060020a038316600090815260026020526040902054611425908363ffffffff61137e16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206116108339815191529181900360200190a3506001610ae1565b600b5460009060ff16156114c157600080fd5b6006546114d4908363ffffffff61137e16565b6006556008546113f9908363ffffffff6114ea16565b6000828211156114f657fe5b50900390565b6000811161150957600080fd5b6005546006541061151957600080fd5b600160a060020a038216600090815260026020526040902054611542908263ffffffff61137e16565b600160a060020a03831660009081526002602052604090205560065461156e908263ffffffff61137e16565b60068190556005541161158957600b805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206116108339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206c8d50ceeb486c63c29bd333c0ca57f45d24a9c684a5a804e990a175f57061ad0029

Swarm Source

bzzr://6c8d50ceeb486c63c29bd333c0ca57f45d24a9c684a5a804e990a175f57061ad
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.