ETH Price: $3,661.20 (+1.68%)

Token

ERC-20: E-scarce (ESCARCE)
 

Overview

Max Total Supply

5,000 ESCARCE

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
10 ESCARCE

Value
$0.00
0x7eea472ae5a4fd2a3a0a47c2e9efa7269fbbc80b
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:
ESCARCE

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-07-15
*/

pragma solidity ^0.4.11;


  
contract ESCARCE {
   
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event Burn(address indexed from, uint256 value);
    
   
    string public constant symbol = "ESCARCE";
    string public constant name = "E-scarce";
    uint8 public constant decimals = 8;
    uint256 _totalSupply = 500000000000;    
    uint256 _totalBurned = 0;                            
     
   
    address public owner;
    mapping(address => uint256) balances;
    mapping(address => mapping (address => uint256)) allowed;
  
    function ESCARCE() 
    {
        owner = msg.sender;
        balances[owner] = _totalSupply;
    }
  
     function totalSupply() constant returns (uint256 l_totalSupply) 
     {
        l_totalSupply = _totalSupply;
     }

     function totalBurned() constant returns (uint256 l_totalBurned)
     {
        l_totalBurned = _totalBurned;
     }
  
     
     function balanceOf(address _owner) constant returns (uint256 balance) 
     {
        return balances[_owner];
     }
  
     
     function transfer(address _to, uint256 _amount) returns (bool success) 
     {
        if (_to == 0x0) throw;      

        if (balances[msg.sender] >= _amount && _amount > 0 && balances[_to] + _amount > balances[_to]) 
        {
            balances[msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
         } 
         else 
         {
            return false;
         }
     }
  
     function transferFrom(address _from, address _to, uint256 _amount) returns (bool success) 
     {
        if (_to == 0x0) throw;      

        if (balances[_from] >= _amount && allowed[_from][msg.sender] >= _amount && _amount > 0 && balances[_to] + _amount > balances[_to]) 
        {
            balances[_from] -= _amount;
            allowed[_from][msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(_from, _to, _amount);
            return true;
         } 
         else 
         {
            return false;
         }
     }
  
    
     
     
     function approve(address _spender, uint256 _amount) returns (bool success) 
     {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
     }
  
     
     function allowance(address _owner, address _spender) constant returns (uint256 remaining) 
     {
        return allowed[_owner][_spender];
     }

    function aidrop(address[] addresses,uint256 _amount) //onlyOwner 
    {   
       for (uint i = 0; i < addresses.length; i++) 
        {
             balances[msg.sender] -= _amount;
             balances[addresses[i]] += _amount;
             Transfer(msg.sender, addresses[i], _amount);
         }
     }
    
    
    function burn(uint256 _value) returns (bool success) 
    {
        if (balances[msg.sender] < _value) throw;            
        balances[msg.sender] -= _value;                      
        
        _totalSupply -= _value;          
        _totalBurned += _value;                             
        
        Burn(msg.sender, _value);
        return true;
    }

    function burnFrom(address _from, uint256 _value) returns (bool success) 
    {
        if (balances[_from] < _value) throw;                
        if (_value > allowed[_from][msg.sender]) throw;     
        balances[_from] -= _value;                          
        
        _totalSupply -= _value;                           
        _totalBurned += _value;
     
        Burn(_from, _value);
        return true;
    }
 }

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"l_totalSupply","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"aidrop","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"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":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalBurned","outputs":[{"name":"l_totalBurned","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"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":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405264746a5288006000556000600155341561001a57fe5b5b60028054600160a060020a03191633600160a060020a03908116919091179182905560008054929091168152600360205260409020555b5b6109f8806100626000396000f300606060405236156100cd5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100cf578063095ea7b31461015f57806318160ddd1461019257806323b872dd146101b4578063313ce567146101ed57806342966c6814610213578063557d04791461023a57806370a082311461029157806379cc6790146102bf5780638da5cb5b146102f257806395d89b411461031e578063a9059cbb146103ae578063d89135cd146103e1578063dd62ed3e14610403575bfe5b34156100d757fe5b6100df610437565b604080516020808252835181830152835191928392908301918501908083838215610125575b80518252602083111561012557601f199092019160209182019101610105565b505050905090810190601f1680156101515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561016757fe5b61017e600160a060020a036004351660243561046e565b604080519115158252519081900360200190f35b341561019a57fe5b6101a26104d9565b60408051918252519081900360200190f35b34156101bc57fe5b61017e600160a060020a03600435811690602435166044356104e0565b604080519115158252519081900360200190f35b34156101f557fe5b6101fd610612565b6040805160ff9092168252519081900360200190f35b341561021b57fe5b61017e600435610617565b604080519115158252519081900360200190f35b341561024257fe5b61028f60048080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965050933593506106aa92505050565b005b341561029957fe5b6101a2600160a060020a0360043516610782565b60408051918252519081900360200190f35b34156102c757fe5b61017e600160a060020a03600435166024356107a1565b604080519115158252519081900360200190f35b34156102fa57fe5b610302610869565b60408051600160a060020a039092168252519081900360200190f35b341561032657fe5b6100df610878565b604080516020808252835181830152835191928392908301918501908083838215610125575b80518252602083111561012557601f199092019160209182019101610105565b505050905090810190601f1680156101515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103b657fe5b61017e600160a060020a03600435166024356108af565b604080519115158252519081900360200190f35b34156103e957fe5b6101a2610998565b60408051918252519081900360200190f35b341561040b57fe5b6101a2600160a060020a036004358116906024351661099f565b60408051918252519081900360200190f35b60408051808201909152600881527f452d736361726365000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260046020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6000545b90565b6000600160a060020a03831615156104f85760006000fd5b600160a060020a0384166000908152600360205260409020548290108015906105485750600160a060020a0380851660009081526004602090815260408083203390941683529290522054829010155b80156105545750600082115b80156105795750600160a060020a038316600090815260036020526040902054828101115b1561060657600160a060020a03808516600081815260036020818152604080842080548990039055600482528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600161060a565b5060005b5b9392505050565b600881565b600160a060020a0333166000908152600360205260408120548290101561063e5760006000fd5b600160a060020a03331660008181526003602090815260408083208054879003905582548690039092556001805486019055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b919050565b60005b825181101561077c57600160a060020a033316600090815260036020819052604082208054859003905584518492908690859081106106e857fe5b6020908102909101810151600160a060020a0316825281019190915260400160002080549091019055825183908290811061071f57fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b6001016106ad565b5b505050565b600160a060020a0381166000908152600360205260409020545b919050565b600160a060020a038216600090815260036020526040812054829010156107c85760006000fd5b600160a060020a03808416600090815260046020908152604080832033909416835292905220548211156107fc5760006000fd5b600160a060020a03831660008181526003602090815260408083208054879003905582548690039092556001805486019055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b92915050565b600254600160a060020a031681565b60408051808201909152600781527f4553434152434500000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156108c75760006000fd5b600160a060020a0333166000908152600360205260409020548290108015906108f05750600082115b80156109155750600160a060020a038316600090815260036020526040902054828101115b1561098957600160a060020a03338116600081815260036020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016104d3565b5060006104d3565b5b92915050565b6001545b90565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b929150505600a165627a7a72305820d9e44ab1f45514132e0b7216172c2d1fc0395495c2893e874d15bbbf4842a4ea0029

Deployed Bytecode

0x606060405236156100cd5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100cf578063095ea7b31461015f57806318160ddd1461019257806323b872dd146101b4578063313ce567146101ed57806342966c6814610213578063557d04791461023a57806370a082311461029157806379cc6790146102bf5780638da5cb5b146102f257806395d89b411461031e578063a9059cbb146103ae578063d89135cd146103e1578063dd62ed3e14610403575bfe5b34156100d757fe5b6100df610437565b604080516020808252835181830152835191928392908301918501908083838215610125575b80518252602083111561012557601f199092019160209182019101610105565b505050905090810190601f1680156101515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561016757fe5b61017e600160a060020a036004351660243561046e565b604080519115158252519081900360200190f35b341561019a57fe5b6101a26104d9565b60408051918252519081900360200190f35b34156101bc57fe5b61017e600160a060020a03600435811690602435166044356104e0565b604080519115158252519081900360200190f35b34156101f557fe5b6101fd610612565b6040805160ff9092168252519081900360200190f35b341561021b57fe5b61017e600435610617565b604080519115158252519081900360200190f35b341561024257fe5b61028f60048080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965050933593506106aa92505050565b005b341561029957fe5b6101a2600160a060020a0360043516610782565b60408051918252519081900360200190f35b34156102c757fe5b61017e600160a060020a03600435166024356107a1565b604080519115158252519081900360200190f35b34156102fa57fe5b610302610869565b60408051600160a060020a039092168252519081900360200190f35b341561032657fe5b6100df610878565b604080516020808252835181830152835191928392908301918501908083838215610125575b80518252602083111561012557601f199092019160209182019101610105565b505050905090810190601f1680156101515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103b657fe5b61017e600160a060020a03600435166024356108af565b604080519115158252519081900360200190f35b34156103e957fe5b6101a2610998565b60408051918252519081900360200190f35b341561040b57fe5b6101a2600160a060020a036004358116906024351661099f565b60408051918252519081900360200190f35b60408051808201909152600881527f452d736361726365000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260046020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6000545b90565b6000600160a060020a03831615156104f85760006000fd5b600160a060020a0384166000908152600360205260409020548290108015906105485750600160a060020a0380851660009081526004602090815260408083203390941683529290522054829010155b80156105545750600082115b80156105795750600160a060020a038316600090815260036020526040902054828101115b1561060657600160a060020a03808516600081815260036020818152604080842080548990039055600482528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a350600161060a565b5060005b5b9392505050565b600881565b600160a060020a0333166000908152600360205260408120548290101561063e5760006000fd5b600160a060020a03331660008181526003602090815260408083208054879003905582548690039092556001805486019055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b919050565b60005b825181101561077c57600160a060020a033316600090815260036020819052604082208054859003905584518492908690859081106106e857fe5b6020908102909101810151600160a060020a0316825281019190915260400160002080549091019055825183908290811061071f57fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b6001016106ad565b5b505050565b600160a060020a0381166000908152600360205260409020545b919050565b600160a060020a038216600090815260036020526040812054829010156107c85760006000fd5b600160a060020a03808416600090815260046020908152604080832033909416835292905220548211156107fc5760006000fd5b600160a060020a03831660008181526003602090815260408083208054879003905582548690039092556001805486019055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a25060015b92915050565b600254600160a060020a031681565b60408051808201909152600781527f4553434152434500000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156108c75760006000fd5b600160a060020a0333166000908152600360205260409020548290108015906108f05750600082115b80156109155750600160a060020a038316600090815260036020526040902054828101115b1561098957600160a060020a03338116600081815260036020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016104d3565b5060006104d3565b5b92915050565b6001545b90565b600160a060020a038083166000908152600460209081526040808320938516835292905220545b929150505600a165627a7a72305820d9e44ab1f45514132e0b7216172c2d1fc0395495c2893e874d15bbbf4842a4ea0029

Deployed Bytecode Sourcemap

34:3814:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:213:0;;;;;;;;-1:-1:-1;;;;;2307:213:0;;;;;;;;;;;;;;;;;;;;;;;;;800:119;;;;;;;;;;;;;;;;;;;;;;;;;;1696:580;;;;;;;;-1:-1:-1;;;;;1696:580:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3027:375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2695:314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2695:314:0;;-1:-1:-1;;2695:314:0;;;-1:-1:-1;2695:314:0;;-1:-1:-1;;;2695:314:0;;;1064:120;;;;;;;;-1:-1:-1;;;;;1064:120:0;;;;;;;;;;;;;;;;;;;;;3410:434;;;;;;;;-1:-1:-1;;;;;3410:434:0;;;;;;;;;;;;;;;;;;;;;;;;;549:20;;;;;;;;;;;;;;-1:-1:-1;;;;;549:20:0;;;;;;;;;;;;;;296:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202:483:0;;;;;;;;-1:-1:-1;;;;;1202:483:0;;;;;;;;;;;;;;;;;;;;;;;;;928:118;;;;;;;;;;;;;;;;;;;;;;;;;;2538:149;;;;;;;;-1:-1:-1;;;;;2538:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;344:40;;;;;;;;;;;;;;;;;;;:::o;2307:213::-;-1:-1:-1;;;;;2408:10:0;2400:19;;2368:12;2400:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:39;;;2450;;;;;;;2368:12;;2400:29;:19;2450:39;;;;;;;;;;;-1:-1:-1;2507:4:0;2307:213;;;;;:::o;800:119::-;841:21;898:12;800:119;;:::o;1696:580::-;1772:12;-1:-1:-1;;;;;1808:10:0;;;1804:21;;;1820:5;;;1804:21;-1:-1:-1;;;;;1848:15:0;;;;;;:8;:15;;;;;;:26;;;;;;:67;;-1:-1:-1;;;;;;1878:14:0;;;;;;;:7;:14;;;;;;;;1893:10;1878:26;;;;;;;;;;:37;;;;1848:67;:82;;;;;1929:1;1919:7;:11;1848:82;:125;;;;-1:-1:-1;;;;;;1960:13:0;;;;;;:8;:13;;;;;;1934:23;;;:39;1848:125;1844:424;;;-1:-1:-1;;;;;2000:15:0;;;;;;;:8;:15;;;;;;;;:26;;;;;;;2041:7;:14;;;;;2056:10;2041:26;;;;;;;;;:37;;;;;;;2093:13;;;;;;;;;;;;;:24;;;;;;2132:29;;;;;;;2093:13;;2132:29;;;;;;;;;-1:-1:-1;2183:4:0;2176:11;;1844:424;-1:-1:-1;2250:5:0;1844:424;1696:580;;;;;;:::o;391:34::-;424:1;391:34;:::o;3027:375::-;-1:-1:-1;;;;;3110:10:0;3101:20;3066:12;3101:20;;;:8;:20;;;;;;:29;;;3097:40;;;3132:5;;;3097:40;-1:-1:-1;;;;;3169:10:0;3160:20;;;;;:8;:20;;;;;;;;:30;;;;;;;3233:22;;;;;;;;-1:-1:-1;3276:22:0;;;;;;3348:24;;;;;;;;;;;;;;;;;-1:-1:-1;3390:4:0;3027:375;;;;:::o;2695:314::-;2784:6;2779:222;2800:9;:16;2796:1;:20;2779:222;;;-1:-1:-1;;;;;2858:10:0;2849:20;;;;;:8;:20;;;;;;;:31;;;;;;;2905:12;;2873:7;;2849:20;2905:9;;2915:1;;2905:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2896:22:0;;;;;;;;;;;-1:-1:-1;2896:22:0;:33;;;;;;;2966:12;;:9;;2976:1;;2966:12;;;;;;;;;;;;;;-1:-1:-1;;;;;2945:43:0;2954:10;-1:-1:-1;;;;;2945:43:0;;2980:7;2945:43;;;;;;;;;;;;;;;;;;2779:222;2818:3;;2779:222;;;2695:314;;;;:::o;1064:120::-;-1:-1:-1;;;;;1159:16:0;;1117:15;1159:16;;;:8;:16;;;;;;1064:120;;;;:::o;3410:434::-;-1:-1:-1;;;;;3503:15:0;;3468:12;3503:15;;;:8;:15;;;;;;:24;;;3499:35;;;3529:5;;;3499:35;-1:-1:-1;;;;;3574:14:0;;;;;;;:7;:14;;;;;;;;3589:10;3574:26;;;;;;;;;;3565:35;;3561:46;;;3602:5;;;3561:46;-1:-1:-1;;;;;3623:15:0;;;;;;:8;:15;;;;;;;;:25;;;;;;;3695:22;;;;;;;;-1:-1:-1;3755:22:0;;;;;;3795:19;;;;;;;;;;;;;;;;;-1:-1:-1;3832:4:0;3410:434;;;;;:::o;549:20::-;;;-1:-1:-1;;;;;549:20:0;;:::o;296:41::-;;;;;;;;;;;;;;;;;;;:::o;1202:483::-;1259:12;-1:-1:-1;;;;;1295:10:0;;;1291:21;;;1307:5;;;1291:21;-1:-1:-1;;;;;1344:10:0;1335:20;;;;;:8;:20;;;;;;:31;;;;;;:46;;;1380:1;1370:7;:11;1335:46;:89;;;;-1:-1:-1;;;;;;1411:13:0;;;;;;:8;:13;;;;;;1385:23;;;:39;1335:89;1331:346;;;-1:-1:-1;;;;;1460:10:0;1451:20;;;;;;:8;:20;;;;;;;;:31;;;;;;;1497:13;;;;;;;;;;:24;;;;;;1536:34;;;;;;;1497:13;;1536:34;;;;;;;;;;;-1:-1:-1;1592:4:0;1585:11;;1331:346;-1:-1:-1;1659:5:0;1652:12;;1331:346;1202:483;;;;;:::o;928:118::-;1025:12;;928:118;;:::o;2538:149::-;-1:-1:-1;;;;;2653:15:0;;;2609:17;2653:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;2538:149;;;;;:::o

Swarm Source

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