ETH Price: $2,779.71 (+5.90%)

Token

Goochain (GOOC)
 

Overview

Max Total Supply

1,000,000,000 GOOC

Holders

1,537

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
5,731.9 GOOC

Value
$0.00
0x99a9d2c4dbca1ab05631f4bfdf75abc76ca39983
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
Goochain

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-09-16
*/

pragma solidity ^0.4.11;
contract owned {
    address public owner;

    function owned() {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner {
        owner = newOwner;
    }
}

contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract token {
    /* Public variables of the token */
    string public standard = 'Token 0.1';
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;

    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function token(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
        ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(balanceOf[msg.sender] >= _value);           // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value)
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        returns (bool success) {    
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(balanceOf[_from] >= _value);                 // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        require(_value <= allowance[_from][msg.sender]);   // Check allowance
        balanceOf[_from] -= _value;                          // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);
        return true;
    }

    /* This unnamed function is called whenever someone tries to send ether to it */
    function () {
        //throw;     // Prevents accidental sending of ether
    }
}

contract Goochain is owned, token {

    uint256 public sellPrice;
    uint256 public buyPrice;

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function Goochain(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
    ) token (initialSupply, tokenName, decimalUnits, tokenSymbol) {}

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(balanceOf[msg.sender] >= _value);           // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        require(!frozenAccount[msg.sender]);                // Check if frozen
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }


    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(!frozenAccount[_from]);                        // Check if frozen            
        require(balanceOf[_from] >= _value);                 // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        require(_value <= allowance[_from][msg.sender]);   // Check allowance
        balanceOf[_from] -= _value;                          // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);
        return true;
    }

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    function freezeAccount(address target, bool freeze) onlyOwner {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }

    function buy() payable {
        uint amount = msg.value / buyPrice;                // calculates the amount
        require(balanceOf[this] >= amount);               // checks if it has enough to sell
        balanceOf[msg.sender] += amount;                   // adds the amount to buyer's balance
        balanceOf[this] -= amount;                         // subtracts amount from seller's balance
        Transfer(this, msg.sender, amount);                // execute an event reflecting the change
    }

    function sell(uint256 amount) {
        require(balanceOf[msg.sender] >= amount );        // checks if the sender has enough to sell
        balanceOf[this] += amount;                         // adds the amount to owner's balance
        balanceOf[msg.sender] -= amount;                   // subtracts the amount from seller's balance
        require(msg.sender.send(amount * sellPrice));        // sends ether to the seller. It's important
        Transfer(msg.sender, this, amount);            // executes an event reflecting on the change
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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"}]

606060405260408051908101604052600981527f546f6b656e20302e310000000000000000000000000000000000000000000000602082015260019080516200004d9291602001906200011c565b5034156200005a57600080fd5b6040516200109b3803806200109b83398101604052808051919060200180518201919060200180519190602001805190910190505b838383835b5b60008054600160a060020a03191633600160a060020a03161790555b600160a060020a033316600090815260066020526040902084905560058490556002838051620000e69291602001906200011c565b506003818051620000fc9291602001906200011c565b506004805460ff191660ff84161790555b505050505b50505050620001c6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b5b506200019e929150620001a2565b5090565b620001c391905b808211156200019e5760008155600101620001a9565b5090565b90565b610ec580620001d66000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461012e57806306fdde0314610149578063095ea7b3146101d457806318160ddd1461020a57806323b872dd1461022f578063313ce5671461026b5780634b750334146102945780635a3b7e42146102b957806370a082311461034457806379c65068146103755780638620410b146103995780638da5cb5b146103be57806395d89b41146103ed578063a6f2ae3a14610478578063a9059cbb14610482578063b414d4b6146104a6578063cae9ca51146104d9578063dd62ed3e14610552578063e4849b3214610589578063e724529c146105a1578063f2fde38b146105c7575b341561012557600080fd5b61012c5b5b565b005b341561013957600080fd5b61012c6004356024356105e8565b005b341561015457600080fd5b61015c610613565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101df57600080fd5b6101f6600160a060020a03600435166024356106b1565b604051901515815260200160405180910390f35b341561021557600080fd5b61021d6106e2565b60405190815260200160405180910390f35b341561023a57600080fd5b6101f6600160a060020a03600435811690602435166044356106e8565b604051901515815260200160405180910390f35b341561027657600080fd5b61027e61080b565b60405160ff909116815260200160405180910390f35b341561029f57600080fd5b61021d610814565b60405190815260200160405180910390f35b34156102c457600080fd5b61015c61081a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034f57600080fd5b61021d600160a060020a03600435166108b8565b60405190815260200160405180910390f35b341561038057600080fd5b61012c600160a060020a03600435166024356108ca565b005b34156103a457600080fd5b61021d61096e565b60405190815260200160405180910390f35b34156103c957600080fd5b6103d1610974565b604051600160a060020a03909116815260200160405180910390f35b34156103f857600080fd5b61015c610983565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61012c610a21565b005b341561048d57600080fd5b61012c600160a060020a0360043516602435610ab4565b005b34156104b157600080fd5b6101f6600160a060020a0360043516610b7f565b604051901515815260200160405180910390f35b34156104e457600080fd5b6101f660048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b9495505050505050565b604051901515815260200160405180910390f35b341561055d57600080fd5b61021d600160a060020a0360043581169060243516610cc8565b60405190815260200160405180910390f35b341561059457600080fd5b61012c600435610ce5565b005b34156105ac57600080fd5b61012c600160a060020a03600435166024351515610da3565b005b34156105d257600080fd5b61012c600160a060020a0360043516610e31565b005b60005433600160a060020a0390811691161461060357600080fd5b600882905560098190555b5b5050565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561070e57600080fd5b600160a060020a0384166000908152600660205260409020548290101561073457600080fd5b600160a060020a038316600090815260066020526040902054828101101561075b57600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561078e57600080fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452949091529081902080548690039055600080516020610e7a8339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60085481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146108e557600080fd5b600160a060020a0380831660009081526006602052604080822080548501905560058054850190553090921691600080516020610e7a8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610e7a8339815191528360405190815260200160405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b600060095434811515610a3057fe5b600160a060020a033016600090815260066020526040902054919004915081901015610a5b57600080fd5b600160a060020a033381166000818152600660205260408082208054860190553090931680825290839020805485900390559091600080516020610e7a8339815191529084905190815260200160405180910390a35b50565b600160a060020a03331660009081526006602052604090205481901015610ada57600080fd5b600160a060020a0382166000908152600660205260409020548181011015610b0157600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610b2757600080fd5b600160a060020a03338116600081815260066020526040808220805486900390559285168082529083902080548501905591600080516020610e7a8339815191529084905190815260200160405180910390a35b5050565b600a6020526000908152604090205460ff1681565b600083610ba181856106b1565b15610cbf5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c585780820151818401525b602001610c3f565b50505050905090810190601f168015610c855780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ca657600080fd5b6102c65a03f11515610cb757600080fd5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610d0b57600080fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082529082902080548490039055600854909190830280156108fc029151600060405180830381858888f193505050501515610d6a57600080fd5b30600160a060020a031633600160a060020a0316600080516020610e7a8339815191528360405190815260200160405180910390a35b50565b60005433600160a060020a03908116911614610dbe57600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610e4c57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582066bcf9ccdb0ec4ff42fe452c305a791cfff7c5a15671cb7511a61ad2de36200d0029000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008476f6f636861696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474f4f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461012e57806306fdde0314610149578063095ea7b3146101d457806318160ddd1461020a57806323b872dd1461022f578063313ce5671461026b5780634b750334146102945780635a3b7e42146102b957806370a082311461034457806379c65068146103755780638620410b146103995780638da5cb5b146103be57806395d89b41146103ed578063a6f2ae3a14610478578063a9059cbb14610482578063b414d4b6146104a6578063cae9ca51146104d9578063dd62ed3e14610552578063e4849b3214610589578063e724529c146105a1578063f2fde38b146105c7575b341561012557600080fd5b61012c5b5b565b005b341561013957600080fd5b61012c6004356024356105e8565b005b341561015457600080fd5b61015c610613565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101df57600080fd5b6101f6600160a060020a03600435166024356106b1565b604051901515815260200160405180910390f35b341561021557600080fd5b61021d6106e2565b60405190815260200160405180910390f35b341561023a57600080fd5b6101f6600160a060020a03600435811690602435166044356106e8565b604051901515815260200160405180910390f35b341561027657600080fd5b61027e61080b565b60405160ff909116815260200160405180910390f35b341561029f57600080fd5b61021d610814565b60405190815260200160405180910390f35b34156102c457600080fd5b61015c61081a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034f57600080fd5b61021d600160a060020a03600435166108b8565b60405190815260200160405180910390f35b341561038057600080fd5b61012c600160a060020a03600435166024356108ca565b005b34156103a457600080fd5b61021d61096e565b60405190815260200160405180910390f35b34156103c957600080fd5b6103d1610974565b604051600160a060020a03909116815260200160405180910390f35b34156103f857600080fd5b61015c610983565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101995780820151818401525b602001610180565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61012c610a21565b005b341561048d57600080fd5b61012c600160a060020a0360043516602435610ab4565b005b34156104b157600080fd5b6101f6600160a060020a0360043516610b7f565b604051901515815260200160405180910390f35b34156104e457600080fd5b6101f660048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b9495505050505050565b604051901515815260200160405180910390f35b341561055d57600080fd5b61021d600160a060020a0360043581169060243516610cc8565b60405190815260200160405180910390f35b341561059457600080fd5b61012c600435610ce5565b005b34156105ac57600080fd5b61012c600160a060020a03600435166024351515610da3565b005b34156105d257600080fd5b61012c600160a060020a0360043516610e31565b005b60005433600160a060020a0390811691161461060357600080fd5b600882905560098190555b5b5050565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561070e57600080fd5b600160a060020a0384166000908152600660205260409020548290101561073457600080fd5b600160a060020a038316600090815260066020526040902054828101101561075b57600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561078e57600080fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452949091529081902080548690039055600080516020610e7a8339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60085481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146108e557600080fd5b600160a060020a0380831660009081526006602052604080822080548501905560058054850190553090921691600080516020610e7a8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610e7a8339815191528360405190815260200160405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106a95780601f1061067e576101008083540402835291602001916106a9565b820191906000526020600020905b81548152906001019060200180831161068c57829003601f168201915b505050505081565b600060095434811515610a3057fe5b600160a060020a033016600090815260066020526040902054919004915081901015610a5b57600080fd5b600160a060020a033381166000818152600660205260408082208054860190553090931680825290839020805485900390559091600080516020610e7a8339815191529084905190815260200160405180910390a35b50565b600160a060020a03331660009081526006602052604090205481901015610ada57600080fd5b600160a060020a0382166000908152600660205260409020548181011015610b0157600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610b2757600080fd5b600160a060020a03338116600081815260066020526040808220805486900390559285168082529083902080548501905591600080516020610e7a8339815191529084905190815260200160405180910390a35b5050565b600a6020526000908152604090205460ff1681565b600083610ba181856106b1565b15610cbf5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c585780820151818401525b602001610c3f565b50505050905090810190601f168015610c855780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ca657600080fd5b6102c65a03f11515610cb757600080fd5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610d0b57600080fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082529082902080548490039055600854909190830280156108fc029151600060405180830381858888f193505050501515610d6a57600080fd5b30600160a060020a031633600160a060020a0316600080516020610e7a8339815191528360405190815260200160405180910390a35b50565b60005433600160a060020a03908116911614610dbe57600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610e4c57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582066bcf9ccdb0ec4ff42fe452c305a791cfff7c5a15671cb7511a61ad2de36200d0029

Swarm Source

bzzr://66bcf9ccdb0ec4ff42fe452c305a791cfff7c5a15671cb7511a61ad2de36200d
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.