ETH Price: $2,633.47 (+0.84%)

Token

Plumix (PLXT)
 

Overview

Max Total Supply

7,500,000,000 PLXT

Holders

1,093

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
779 PLXT

Value
$0.00
0x83d0f8ebe4ba1e5ed200fdf332056bd3ac879e6e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Our aim is for plumix to be used as a form of digital currency which can be used for our day-to-day business and personal transactions.

ICO Information

ICO Start Date : Nov 01, 2018 
ICO End Date : Nov 30, 2018
ICO Price  : 0.0000001 ETH

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Plumix

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        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 a / b;
    }

    /**
    * @dev Subtracts 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 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract Token {

    /// @return total amount of tokens
    function totalSupply() constant returns (uint256 supply) {}
    

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance) {}

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success) {}



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

}

contract StandardToken is Token {

    function transfer(address _to, uint256 _value) returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            emit Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }


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


    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    uint256 public totalSupply;
}

contract ERC20 is StandardToken {
    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);
}
contract Plumix is ERC20 { 

    /* Public variables of the token */

    using SafeMath for uint256;
    string public name;                   
    uint8 public decimals;                
    string public symbol;                 
    uint256 public unitsOneEthCanBuy;     // How many units of your coin can be bought by 1 ETH?
    uint256 public minSales;                 // Minimum amount to be bought (0.01ETH)
    uint256 public totalEthInWei;         
    address internal fundsWallet;           
    uint256 public airDropBal;
    uint256 public icoSales;
    uint256 public icoSalesBal;
    uint256 public icoSalesCount;
    bool public distributionClosed;

    
    modifier canDistr() {
        require(!distributionClosed);
        _;
    }
    
    address owner = msg.sender;
    
     modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    
    event Airdrop(address indexed _owner, uint _amount, uint _balance);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event DistrClosed();
    event DistrStarted();
    event Burn(address indexed burner, uint256 value);
    
    
    function endDistribution() onlyOwner canDistr public returns (bool) {
        distributionClosed = true;
        emit DistrClosed();
        return true;
    }
    
    function startDistribution() onlyOwner public returns (bool) {
        distributionClosed = false;
        emit DistrStarted();
        return true;
    }
    

    function Plumix() {
        balances[msg.sender] = 10000000000e18;               
        totalSupply = 10000000000e18;                        
        airDropBal = 1500000000e18;
        icoSales = 5000000000e18;
        icoSalesBal = 5000000000e18;
        name = "Plumix";                                   
        decimals = 18;                                               
        symbol = "PLXT";                                             
        unitsOneEthCanBuy = 10000000;
        minSales = 1 ether / 100; // 0.01ETH
        icoSalesCount = 0;
        fundsWallet = msg.sender;                                   
        distributionClosed = true;
        
    }

    function() public canDistr payable{
        totalEthInWei = totalEthInWei.add(msg.value);
        uint256 amount = msg.value.mul(unitsOneEthCanBuy);
        require(msg.value >= minSales);
        require(amount <= icoSalesBal);
        

        balances[fundsWallet] = balances[fundsWallet].sub(amount);
        balances[msg.sender] = balances[msg.sender].add(amount);

        Transfer(fundsWallet, msg.sender, amount); // Broadcast a message to the blockchain

        
        fundsWallet.transfer(msg.value);
        
        icoSalesCount = icoSalesCount.add(amount);
        icoSalesBal = icoSalesBal.sub(amount);
        if (icoSalesCount >= icoSales) {
            distributionClosed = true;
        }
    }

    function transferMul(address _to, uint256 _value) internal returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[msg.sender] >= _value && _value > 0) {
            require( _value <= airDropBal );
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            airDropBal = airDropBal.sub(_value);
            emit Transfer(msg.sender, _to, _value);
            emit Airdrop(msg.sender, _value, balances[msg.sender]);
            return true;
        } else { return false; }
    }
    
    function payAirdrop(address[] _addresses, uint256 _value) public onlyOwner {        
        for (uint i = 0; i < _addresses.length; i++) transferMul(_addresses[i], _value);
    }
 
    
    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);
        emit Burn(burner, _value);
    }
    
    // mitigates the ERC20 short address attack
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    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) {
        // mitigates the ERC20 spend/approval race condition
        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];
    }

}

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":"icoSales","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"distributionClosed","outputs":[{"name":"","type":"bool"}],"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":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"endDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"unitsOneEthCanBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoSalesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minSales","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthInWei","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":true,"inputs":[],"name":"icoSalesBal","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"startDistribution","outputs":[{"name":"","type":"bool"}],"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"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"payAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"airDropBal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrClosed","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

6080604052600e805461010060a860020a031916336101000217905534801561002757600080fd5b5033600090815260208181526040918290206b204fce5e3e25026110000000908190556002556b04d8c55aefb8c05b5c000000600a556b1027e72f1f12813088000000600b819055600c55815180830190925260068083527f506c756d69780000000000000000000000000000000000000000000000000000929091019182526100b391600391610140565b506004805460ff19166012178155604080518082019091528181527f504c58540000000000000000000000000000000000000000000000000000000060209091019081526101049160059190610140565b5062989680600655662386f26fc100006007556000600d5560098054600160a060020a03191633179055600e805460ff191660011790556101db565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018157805160ff19168380011785556101ae565b828001600101855582156101ae579182015b828111156101ae578251825591602001919060010190610193565b506101ba9291506101be565b5090565b6101d891905b808211156101ba57600081556001016101c4565b90565b610d25806101ea6000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146102a0578063095ea7b31461032a5780630f751e601461036257806318160ddd1461038957806323b872dd1461039e578063259653b8146103c8578063313ce567146103dd57806342966c681461040857806364c761171461042257806365f2bc2e1461043757806370a082311461044c5780637b5fe3971461046d57806387c68bcc14610482578063933ba4131461049757806395d89b41146104ac578063965f3f99146104c1578063a9059cbb146104d6578063d83623dd146104fa578063dd62ed3e1461050f578063e9b4a02814610536578063f16838f91461058d575b600e5460009060ff161561012f57600080fd5b600854610142903463ffffffff6105a216565b60085560065461015990349063ffffffff6105b516565b60075490915034101561016b57600080fd5b600c5481111561017a57600080fd5b600954600160a060020a03166000908152602081905260409020546101a5908263ffffffff6105de16565b600954600160a060020a03166000908152602081905260408082209290925533815220546101d9908263ffffffff6105a216565b336000818152602081815260409182902093909355600954815185815291519293600160a060020a0390911692600080516020610cda8339815191529281900390910190a3600954604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610257573d6000803e3d6000fd5b50600d5461026b908263ffffffff6105a216565b600d55600c54610281908263ffffffff6105de16565b600c55600b54600d541061029d57600e805460ff191660011790555b50005b3480156102ac57600080fd5b506102b56105f0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ef5781810151838201526020016102d7565b50505050905090810190601f16801561031c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033657600080fd5b5061034e600160a060020a036004351660243561067e565b604080519115158252519081900360200190f35b34801561036e57600080fd5b50610377610725565b60408051918252519081900360200190f35b34801561039557600080fd5b5061037761072b565b3480156103aa57600080fd5b5061034e600160a060020a0360043581169060243516604435610731565b3480156103d457600080fd5b5061034e61089f565b3480156103e957600080fd5b506103f26108a8565b6040805160ff9092168252519081900360200190f35b34801561041457600080fd5b506104206004356108b1565b005b34801561042e57600080fd5b5061034e61097f565b34801561044357600080fd5b506103776109ea565b34801561045857600080fd5b50610377600160a060020a03600435166109f0565b34801561047957600080fd5b50610377610a0b565b34801561048e57600080fd5b50610377610a11565b3480156104a357600080fd5b50610377610a17565b3480156104b857600080fd5b506102b5610a1d565b3480156104cd57600080fd5b50610377610a78565b3480156104e257600080fd5b5061034e600160a060020a0360043516602435610a7e565b34801561050657600080fd5b5061034e610b03565b34801561051b57600080fd5b50610377600160a060020a0360043581169060243516610b5b565b34801561054257600080fd5b5060408051602060048035808201358381028086018501909652808552610420953695939460249493850192918291850190849080828437509497505093359450610b869350505050565b34801561059957600080fd5b50610377610be1565b818101828110156105af57fe5b92915050565b60008215156105c6575060006105af565b508181028183828115156105d657fe5b04146105af57fe5b6000828211156105ea57fe5b50900390565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b505050505081565b600081158015906106b15750336000908152600160209081526040808320600160a060020a038716845290915290205415155b156106be575060006105af565b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600b5481565b60025481565b60006060606436101561074057fe5b600160a060020a038416151561075557600080fd5b600160a060020a03851660009081526020819052604090205483111561077a57600080fd5b600160a060020a03851660009081526001602090815260408083203384529091529020548311156107aa57600080fd5b600160a060020a0385166000908152602081905260409020546107d3908463ffffffff6105de16565b600160a060020a03861660009081526020818152604080832093909355600181528282203383529052205461080e908463ffffffff6105de16565b600160a060020a0380871660009081526001602090815260408083203384528252808320949094559187168152908190522054610851908463ffffffff6105a216565b600160a060020a03808616600081815260208181526040918290209490945580518781529051919392891692600080516020610cda83398151915292918290030190a3506001949350505050565b600e5460ff1681565b60045460ff1681565b600e546000906101009004600160a060020a031633146108d057600080fd5b336000908152602081905260409020548211156108ec57600080fd5b503360008181526020819052604090205461090d908363ffffffff6105de16565b600160a060020a038216600090815260208190526040902055600254610939908363ffffffff6105de16565b600255604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600e546000906101009004600160a060020a0316331461099e57600080fd5b600e5460ff16156109ae57600080fd5b600e805460ff191660011790556040517fab357ed546a9708f6cc1f2c2e4b67853ad0baa96a0150360a4ebbc0d7e80748590600090a150600190565b60065481565b600160a060020a031660009081526020819052604090205490565b600d5481565b60075481565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106765780601f1061064b57610100808354040283529160200191610676565b600c5481565b336000908152602081905260408120548211801590610a9d5750600082115b15610afb573360008181526020818152604080832080548790039055600160a060020a0387168084529281902080548701905580518681529051929392600080516020610cda833981519152929181900390910190a35060016105af565b5060006105af565b600e546000906101009004600160a060020a03163314610b2257600080fd5b600e805460ff191690556040517f159b30ae850d9e3bc5d4db2ee06d52111229dd7cf4b4def72f83d2724d7e4fc690600090a150600190565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600e546000906101009004600160a060020a03163314610ba557600080fd5b5060005b8251811015610bdc57610bd38382815181101515610bc357fe5b9060200190602002015183610be7565b50600101610ba9565b505050565b600a5481565b336000908152602081905260408120548211801590610c065750600082115b15610afb57600a54821115610c1a57600080fd5b3360009081526020819052604080822080548590039055600160a060020a03851682529020805483019055600a54610c58908363ffffffff6105de16565b600a55604080518381529051600160a060020a038516913391600080516020610cda8339815191529181900360200190a333600081815260208181526040918290205482518681529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a25060016105af5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209ddb5e1ee281fff32dd8a78ca17828790fd87a6060eff3d93a41856a71a2879c0029

Deployed Bytecode

0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146102a0578063095ea7b31461032a5780630f751e601461036257806318160ddd1461038957806323b872dd1461039e578063259653b8146103c8578063313ce567146103dd57806342966c681461040857806364c761171461042257806365f2bc2e1461043757806370a082311461044c5780637b5fe3971461046d57806387c68bcc14610482578063933ba4131461049757806395d89b41146104ac578063965f3f99146104c1578063a9059cbb146104d6578063d83623dd146104fa578063dd62ed3e1461050f578063e9b4a02814610536578063f16838f91461058d575b600e5460009060ff161561012f57600080fd5b600854610142903463ffffffff6105a216565b60085560065461015990349063ffffffff6105b516565b60075490915034101561016b57600080fd5b600c5481111561017a57600080fd5b600954600160a060020a03166000908152602081905260409020546101a5908263ffffffff6105de16565b600954600160a060020a03166000908152602081905260408082209290925533815220546101d9908263ffffffff6105a216565b336000818152602081815260409182902093909355600954815185815291519293600160a060020a0390911692600080516020610cda8339815191529281900390910190a3600954604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610257573d6000803e3d6000fd5b50600d5461026b908263ffffffff6105a216565b600d55600c54610281908263ffffffff6105de16565b600c55600b54600d541061029d57600e805460ff191660011790555b50005b3480156102ac57600080fd5b506102b56105f0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ef5781810151838201526020016102d7565b50505050905090810190601f16801561031c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033657600080fd5b5061034e600160a060020a036004351660243561067e565b604080519115158252519081900360200190f35b34801561036e57600080fd5b50610377610725565b60408051918252519081900360200190f35b34801561039557600080fd5b5061037761072b565b3480156103aa57600080fd5b5061034e600160a060020a0360043581169060243516604435610731565b3480156103d457600080fd5b5061034e61089f565b3480156103e957600080fd5b506103f26108a8565b6040805160ff9092168252519081900360200190f35b34801561041457600080fd5b506104206004356108b1565b005b34801561042e57600080fd5b5061034e61097f565b34801561044357600080fd5b506103776109ea565b34801561045857600080fd5b50610377600160a060020a03600435166109f0565b34801561047957600080fd5b50610377610a0b565b34801561048e57600080fd5b50610377610a11565b3480156104a357600080fd5b50610377610a17565b3480156104b857600080fd5b506102b5610a1d565b3480156104cd57600080fd5b50610377610a78565b3480156104e257600080fd5b5061034e600160a060020a0360043516602435610a7e565b34801561050657600080fd5b5061034e610b03565b34801561051b57600080fd5b50610377600160a060020a0360043581169060243516610b5b565b34801561054257600080fd5b5060408051602060048035808201358381028086018501909652808552610420953695939460249493850192918291850190849080828437509497505093359450610b869350505050565b34801561059957600080fd5b50610377610be1565b818101828110156105af57fe5b92915050565b60008215156105c6575060006105af565b508181028183828115156105d657fe5b04146105af57fe5b6000828211156105ea57fe5b50900390565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b505050505081565b600081158015906106b15750336000908152600160209081526040808320600160a060020a038716845290915290205415155b156106be575060006105af565b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600b5481565b60025481565b60006060606436101561074057fe5b600160a060020a038416151561075557600080fd5b600160a060020a03851660009081526020819052604090205483111561077a57600080fd5b600160a060020a03851660009081526001602090815260408083203384529091529020548311156107aa57600080fd5b600160a060020a0385166000908152602081905260409020546107d3908463ffffffff6105de16565b600160a060020a03861660009081526020818152604080832093909355600181528282203383529052205461080e908463ffffffff6105de16565b600160a060020a0380871660009081526001602090815260408083203384528252808320949094559187168152908190522054610851908463ffffffff6105a216565b600160a060020a03808616600081815260208181526040918290209490945580518781529051919392891692600080516020610cda83398151915292918290030190a3506001949350505050565b600e5460ff1681565b60045460ff1681565b600e546000906101009004600160a060020a031633146108d057600080fd5b336000908152602081905260409020548211156108ec57600080fd5b503360008181526020819052604090205461090d908363ffffffff6105de16565b600160a060020a038216600090815260208190526040902055600254610939908363ffffffff6105de16565b600255604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600e546000906101009004600160a060020a0316331461099e57600080fd5b600e5460ff16156109ae57600080fd5b600e805460ff191660011790556040517fab357ed546a9708f6cc1f2c2e4b67853ad0baa96a0150360a4ebbc0d7e80748590600090a150600190565b60065481565b600160a060020a031660009081526020819052604090205490565b600d5481565b60075481565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106765780601f1061064b57610100808354040283529160200191610676565b600c5481565b336000908152602081905260408120548211801590610a9d5750600082115b15610afb573360008181526020818152604080832080548790039055600160a060020a0387168084529281902080548701905580518681529051929392600080516020610cda833981519152929181900390910190a35060016105af565b5060006105af565b600e546000906101009004600160a060020a03163314610b2257600080fd5b600e805460ff191690556040517f159b30ae850d9e3bc5d4db2ee06d52111229dd7cf4b4def72f83d2724d7e4fc690600090a150600190565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600e546000906101009004600160a060020a03163314610ba557600080fd5b5060005b8251811015610bdc57610bd38382815181101515610bc357fe5b9060200190602002015183610be7565b50600101610ba9565b505050565b600a5481565b336000908152602081905260408120548211801590610c065750600082115b15610afb57600a54821115610c1a57600080fd5b3360009081526020819052604080822080548590039055600160a060020a03851682529020805483019055600a54610c58908363ffffffff6105de16565b600a55604080518381529051600160a060020a038516913391600080516020610cda8339815191529181900360200190a333600081815260208181526040918290205482518681529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a25060016105af5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209ddb5e1ee281fff32dd8a78ca17828790fd87a6060eff3d93a41856a71a2879c0029

Swarm Source

bzzr://9ddb5e1ee281fff32dd8a78ca17828790fd87a6060eff3d93a41856a71a2879c
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.