ETH Price: $3,348.99 (-3.76%)

Token

TrcBoxChain (TRCB)
 

Overview

Max Total Supply

83,410,000 TRCB

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,264.0053 TRCB

Value
$0.00
0xB9E3dcFb9083E10c466A4EF0beA26e4bBE70d8ab
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:
TrcBoxChain

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-04-19
*/

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

contract TrcBoxChain{
    /* Public variables of the token */
    string public standard = 'TrcBoxChain 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);

    /* This notifies clients about the amount burnt */
    event Burn(address indexed from, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function TrcBoxChain() {
        balanceOf[msg.sender] =  83410000 * 1000000000000000000;              // Give the creator all initial tokens
        totalSupply =  83410000 * 1000000000000000000;                        // Update total supply
        name = "TrcBoxChain";                                   // Set the name for display purposes
        symbol = "TRCB";                               // Set the symbol for display purposes
        decimals = 18;                            // Amount of decimals for display purposes
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        if (_to == 0x0) throw;                               // Prevent transfer to 0x0 address. Use burn() instead
        if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw; // 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) {
        if (_to == 0x0) throw;                                // Prevent transfer to 0x0 address. Use burn() instead
        if (balanceOf[_from] < _value) throw;                 // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw;  // Check for overflows
        if (_value > allowance[_from][msg.sender]) throw;     // 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 burn(uint256 _value) returns (bool success) {
        if (balanceOf[msg.sender] < _value) throw;            // Check if the sender has enough
        balanceOf[msg.sender] -= _value;                      // Subtract from the sender
        totalSupply -= _value;                                // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    function burnFrom(address _from, uint256 _value) returns (bool success) {
        if (balanceOf[_from] < _value) throw;                // Check if the sender has enough
        if (_value > allowance[_from][msg.sender]) throw;    // Check allowance
        balanceOf[_from] -= _value;                          // Subtract from the sender
        totalSupply -= _value;                               // Updates totalSupply
        Burn(_from, _value);
        return true;
    }
}

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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60c0604052600f60808190527f547263426f78436861696e20302e31000000000000000000000000000000000060a090815261003e916000919061010b565b5034801561004b57600080fd5b50336000908152600560209081526040918290206a44fec1290cbff1bf400000908190556004558151808301909252600b8083527f547263426f78436861696e000000000000000000000000000000000000000000929091019182526100b39160019161010b565b506040805180820190915260048082527f545243420000000000000000000000000000000000000000000000000000000060209092019182526100f89160029161010b565b506003805460ff191660121790556101a6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014c57805160ff1916838001178555610179565b82800160010185558215610179579182015b8281111561017957825182559160200191906001019061015e565b50610185929150610189565b5090565b6101a391905b80821115610185576000815560010161018f565b90565b610945806101b56000396000f3006080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018b57806323b872dd146101b2578063313ce567146101dc57806342966c68146102075780635a3b7e421461021f57806370a082311461023457806379cc67901461025557806395d89b4114610279578063a9059cbb1461028e578063cae9ca51146102b4578063dd62ed3e1461031d575b600080fd5b3480156100d557600080fd5b506100de610344565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b50610177600160a060020a03600435166024356103d1565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06103fe565b60408051918252519081900360200190f35b3480156101be57600080fd5b50610177600160a060020a0360043581169060243516604435610404565b3480156101e857600080fd5b506101f1610521565b6040805160ff9092168252519081900360200190f35b34801561021357600080fd5b5061017760043561052a565b34801561022b57600080fd5b506100de6105a2565b34801561024057600080fd5b506101a0600160a060020a03600435166105fd565b34801561026157600080fd5b50610177600160a060020a036004351660243561060f565b34801561028557600080fd5b506100de6106ca565b34801561029a57600080fd5b506102b2600160a060020a0360043516602435610722565b005b3480156102c057600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610177948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107e39650505050505050565b34801561032957600080fd5b506101a0600160a060020a03600435811690602435166108fc565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b820191906000526020600020905b8154815290600101906020018083116103ac57829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b6000600160a060020a038316151561041b57600080fd5b600160a060020a03841660009081526005602052604090205482111561044057600080fd5b600160a060020a038316600090815260056020526040902054828101101561046757600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561049757600080fd5b600160a060020a0380851660008181526005602090815260408083208054889003905593871680835284832080548801905583835260068252848320338452825291849020805487900390558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561054657600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b60056020526000908152604090205481565b600160a060020a03821660009081526005602052604081205482111561063457600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561066457600080fd5b600160a060020a03831660008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b600160a060020a038216151561073757600080fd5b3360009081526005602052604090205481111561075357600080fd5b600160a060020a038216600090815260056020526040902054818101101561077a57600080fd5b33600081815260056020908152604080832080548690039055600160a060020a03861680845292819020805486019055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6000836107f081856103d1565b156108f4576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610888578181015183820152602001610870565b50505050905090810190601f1680156108b55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b50505050600191505b509392505050565b6006602090815260009283526040808420909152908252902054815600a165627a7a72305820bcb24ff93ad6e63252151cfe559a393e9bbadef9019accc880852d8b7026b5170029

Deployed Bytecode

0x6080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018b57806323b872dd146101b2578063313ce567146101dc57806342966c68146102075780635a3b7e421461021f57806370a082311461023457806379cc67901461025557806395d89b4114610279578063a9059cbb1461028e578063cae9ca51146102b4578063dd62ed3e1461031d575b600080fd5b3480156100d557600080fd5b506100de610344565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b50610177600160a060020a03600435166024356103d1565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06103fe565b60408051918252519081900360200190f35b3480156101be57600080fd5b50610177600160a060020a0360043581169060243516604435610404565b3480156101e857600080fd5b506101f1610521565b6040805160ff9092168252519081900360200190f35b34801561021357600080fd5b5061017760043561052a565b34801561022b57600080fd5b506100de6105a2565b34801561024057600080fd5b506101a0600160a060020a03600435166105fd565b34801561026157600080fd5b50610177600160a060020a036004351660243561060f565b34801561028557600080fd5b506100de6106ca565b34801561029a57600080fd5b506102b2600160a060020a0360043516602435610722565b005b3480156102c057600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610177948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107e39650505050505050565b34801561032957600080fd5b506101a0600160a060020a03600435811690602435166108fc565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b820191906000526020600020905b8154815290600101906020018083116103ac57829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b6000600160a060020a038316151561041b57600080fd5b600160a060020a03841660009081526005602052604090205482111561044057600080fd5b600160a060020a038316600090815260056020526040902054828101101561046757600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290205482111561049757600080fd5b600160a060020a0380851660008181526005602090815260408083208054889003905593871680835284832080548801905583835260068252848320338452825291849020805487900390558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561054657600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b60056020526000908152604090205481565b600160a060020a03821660009081526005602052604081205482111561063457600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561066457600080fd5b600160a060020a03831660008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103c95780601f1061039e576101008083540402835291602001916103c9565b600160a060020a038216151561073757600080fd5b3360009081526005602052604090205481111561075357600080fd5b600160a060020a038216600090815260056020526040902054818101101561077a57600080fd5b33600081815260056020908152604080832080548690039055600160a060020a03861680845292819020805486019055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6000836107f081856103d1565b156108f4576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610888578181015183820152602001610870565b50505050905090810190601f1680156108b55780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b50505050600191505b509392505050565b6006602090815260009283526040808420909152908252902054815600a165627a7a72305820bcb24ff93ad6e63252151cfe559a393e9bbadef9019accc880852d8b7026b5170029

Deployed Bytecode Sourcemap

148:4393:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:164;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2233:164:0;-1:-1:-1;;;;;2233:164:0;;;;;;;;;;;;;;;;;;;;;;;;;345:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;345:26:0;;;;;;;;;;;;;;;;;;;;2869:777;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2869:777:0;-1:-1:-1;;;;;2869:777:0;;;;;;;;;;;;317:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;317:21:0;;;;;;;;;;;;;;;;;;;;;;;3654:392;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3654:392:0;;;;;216:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;216:42:0;;;;433:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;433:45:0;-1:-1:-1;;;;;433:45:0;;;;;4054:484;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4054:484:0;-1:-1:-1;;;;;4054:484:0;;;;;;;290:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;290:20:0;;;;1498:657;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1498:657:0;-1:-1:-1;;;;;1498:657:0;;;;;;;;;2482:331;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2482:331:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2482:331:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2482:331:0;;-1:-1:-1;2482:331:0;;-1:-1:-1;;;;;;;2482:331:0;485:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;485:66:0;-1:-1:-1;;;;;485:66:0;;;;;;;;;;265:18;;;;;;;;;;;;;;;-1:-1:-1;;265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2233:164::-;2337:10;2302:12;2327:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2327:31:0;;;;;;;;;;;;;:40;2385:4;;2233:164::o;345:26::-;;;;:::o;2869:777::-;2944:12;-1:-1:-1;;;;;2973:10:0;;;2969:21;;;2985:5;;;2969:21;-1:-1:-1;;;;;3091:16:0;;;;;;:9;:16;;;;;;:25;-1:-1:-1;3087:36:0;;;3118:5;;;3087:36;-1:-1:-1;;;;;3214:14:0;;;;;;:9;:14;;;;;;3188:23;;;:40;3184:51;;;3230:5;;;3184:51;-1:-1:-1;;;;;3283:16:0;;;;;;:9;:16;;;;;;;;3300:10;3283:28;;;;;;;;3274:37;;3270:48;;;3313:5;;;3270:48;-1:-1:-1;;;;;3352:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;3443:14;;;;;;;;;:24;;;;;;3539:16;;;:9;:16;;;;;3556:10;3539:28;;;;;;;;:38;;;;;;;3588:28;;;;;;;3443:14;;3588:28;;;;;;;;;;;-1:-1:-1;3634:4:0;2869:777;;;;;:::o;317:21::-;;;;;;:::o;3654:392::-;3732:10;3693:12;3722:21;;;:9;:21;;;;;;:30;-1:-1:-1;3718:41:0;;;3754:5;;;3718:41;3825:10;3815:21;;;;:9;:21;;;;;;;;;:31;;;;;;;3906:11;:21;;;;;;;3992:24;;;;;;;;;;;;;;;;;-1:-1:-1;4034:4:0;3654:392;;;:::o;216:42::-;;;;;;;;;;;;;;;-1:-1:-1;;216:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433:45;;;;;;;;;;;;;:::o;4054:484::-;-1:-1:-1;;;;;4141:16:0;;4112:12;4141:16;;;:9;:16;;;;;;:25;-1:-1:-1;4137:36:0;;;4168:5;;;4137:36;-1:-1:-1;;;;;4246:16:0;;;;;;:9;:16;;;;;;;;4263:10;4246:28;;;;;;;;4237:37;;4233:48;;;4276:5;;;4233:48;-1:-1:-1;;;;;4314:16:0;;;;;;:9;:16;;;;;;;;;:26;;;;;;;4404:11;:21;;;;;;;4489:19;;;;;;;;;;;;;;;;;-1:-1:-1;4526:4:0;4054:484;;;;:::o;290:20::-;;;;;;;;;;;;;;-1:-1:-1;;290:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498:657;-1:-1:-1;;;;;1560:10:0;;;1556:21;;;1572:5;;;1556:21;1687:10;1677:21;;;;:9;:21;;;;;;:30;-1:-1:-1;1673:41:0;;;1709:5;;;1673:41;-1:-1:-1;;;;;1799:14:0;;;;;;:9;:14;;;;;;1773:23;;;:40;1769:51;;;1815:5;;;1769:51;1864:10;1854:21;;;;:9;:21;;;;;;;;:31;;;;;;;-1:-1:-1;;;;;1944:14:0;;;;;;;;;:24;;;;;;2039:33;;;;;;;1944:14;;1864:10;2039:33;;;;;;;;;;;1498:657;;:::o;2482:331::-;2576:12;2641:8;2665:25;2641:8;2683:6;2665:7;:25::i;:::-;2661:145;;;2707:61;;;;;2731:10;2707:61;;;;;;;;;;;;2751:4;2707:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2707:23:0;;;;;2731:10;2743:6;;2751:4;2757:10;;2707:61;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2707:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2707:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2707:61:0;;;;2790:4;2783:11;;2661:145;2482:331;;;;;;:::o;485:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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