ETH Price: $3,330.82 (-1.57%)
Gas: 27 Gwei

Token

ZXL (ZXL)
 

Overview

Max Total Supply

13,000,000 ZXL

Holders

500

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
230.2825 ZXL

Value
$0.00
0xc33b29a16f00e665ae61b91238bd76dd48579594
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:
ZXL

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.16;

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

contract ZXL {
    // Public variables of the token
    string public name = "ZXL";
    string public symbol = "ZXL";
    uint256 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply = 13000000000000000000000000;
	address owner;

    // 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);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function ZXL(
    ) public {
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        owner = msg.sender;
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update 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":"uint256"}],"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":"","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"}]

60c0604052600360808190527f5a584c000000000000000000000000000000000000000000000000000000000060a090815261003e91600091906100d3565b506040805180820190915260038082527f5a584c00000000000000000000000000000000000000000000000000000000006020909201918252610083916001916100d3565b5060126002556a0ac0db698068112d0000006003553480156100a457600080fd5b506003543360008181526005602052604090209190915560048054600160a060020a031916909117905561016e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011457805160ff1916838001178555610141565b82800160010185558215610141579182015b82811115610141578251825591602001919060010190610126565b5061014d929150610151565b5090565b61016b91905b8082111561014d5760008155600101610157565b90565b6108718061017d6000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806342966c68146101e657806370a08231146101fe57806379cc67901461021f57806395d89b4114610243578063a9059cbb14610258578063cae9ca511461027e578063dd62ed3e146102e7575b600080fd5b3480156100ca57600080fd5b506100d361030e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103c9565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103cf565b3480156101dd57600080fd5b5061019561043e565b3480156101f257600080fd5b5061016c600435610444565b34801561020a57600080fd5b50610195600160a060020a03600435166104bc565b34801561022b57600080fd5b5061016c600160a060020a03600435166024356104ce565b34801561024f57600080fd5b506100d361059f565b34801561026457600080fd5b5061027c600160a060020a03600435166024356105f9565b005b34801561028a57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106089650505050505050565b3480156102f357600080fd5b50610195600160a060020a0360043581169060243516610721565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b820191906000526020600020905b81548152906001019060200180831161037757829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60035481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156103ff57600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290208054839003905561043484848461073e565b5060019392505050565b60025481565b3360009081526005602052604081205482111561046057600080fd5b3360008181526005602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548211156104f357600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561052357600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b61060433838361073e565b5050565b600083610615818561039c565b15610719576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106ad578181015183820152602001610695565b50505050905090810190601f1680156106da5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156106fc57600080fd5b505af1158015610710573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b6000600160a060020a038316151561075557600080fd5b600160a060020a03841660009081526005602052604090205482111561077a57600080fd5b600160a060020a038316600090815260056020526040902054828101116107a057600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461083f57fe5b505050505600a165627a7a72305820614b73ec593d6c454841a90bb55398814c7fac6e0286cdd3434a46423c4d96b40029

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806342966c68146101e657806370a08231146101fe57806379cc67901461021f57806395d89b4114610243578063a9059cbb14610258578063cae9ca511461027e578063dd62ed3e146102e7575b600080fd5b3480156100ca57600080fd5b506100d361030e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103c9565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103cf565b3480156101dd57600080fd5b5061019561043e565b3480156101f257600080fd5b5061016c600435610444565b34801561020a57600080fd5b50610195600160a060020a03600435166104bc565b34801561022b57600080fd5b5061016c600160a060020a03600435166024356104ce565b34801561024f57600080fd5b506100d361059f565b34801561026457600080fd5b5061027c600160a060020a03600435166024356105f9565b005b34801561028a57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106089650505050505050565b3480156102f357600080fd5b50610195600160a060020a0360043581169060243516610721565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b820191906000526020600020905b81548152906001019060200180831161037757829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60035481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156103ff57600080fd5b600160a060020a038416600090815260066020908152604080832033845290915290208054839003905561043484848461073e565b5060019392505050565b60025481565b3360009081526005602052604081205482111561046057600080fd5b3360008181526005602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548211156104f357600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561052357600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b61060433838361073e565b5050565b600083610615818561039c565b15610719576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106ad578181015183820152602001610695565b50505050905090810190601f1680156106da5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156106fc57600080fd5b505af1158015610710573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b6000600160a060020a038316151561075557600080fd5b600160a060020a03841660009081526005602052604090205482111561077a57600080fd5b600160a060020a038316600090815260056020526040902054828101116107a057600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461083f57fe5b505050505600a165627a7a72305820614b73ec593d6c454841a90bb55398814c7fac6e0286cdd3434a46423c4d96b40029

Deployed Bytecode Sourcemap

158:5494:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;216:26: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;216:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3313:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3313:171:0;-1:-1:-1;;;;;3313:171:0;;;;;;;;;;;;;;;;;;;;;;;;;392:55;;8:9:-1;5:2;;;30:1;27;20:12;5:2;392:55:0;;;;;;;;;;;;;;;;;;;;2748:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2748:296:0;-1:-1:-1;;;;;2748:296:0;;;;;;;;;;;;284:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;284:28:0;;;;4405:369;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4405:369:0;;;;;521:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;521:45:0;-1:-1:-1;;;;;521:45:0;;;;;5037:606;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5037:606:0;-1:-1:-1;;;;;5037:606:0;;;;;;;249:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;249:28:0;;;;2361:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2361:107:0;-1:-1:-1;;;;;2361:107:0;;;;;;;;;3883:347;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3883:347:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3883:347:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3883:347:0;;-1:-1:-1;3883:347:0;;-1:-1:-1;;;;;;;3883:347:0;573:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;573:66:0;-1:-1:-1;;;;;573:66:0;;;;;;;;;;216:26;;;;;;;;;;;;;;;-1:-1:-1;;216:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3313:171::-;3424:10;3389:12;3414:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3414:31:0;;;;;;;;;;;;;:40;3472:4;;3313:171::o;392:55::-;;;;:::o;2748:296::-;-1:-1:-1;;;;;2873:16:0;;2830:12;2873:16;;;:9;:16;;;;;;;;2890:10;2873:28;;;;;;;;2863:38;;;2855:47;;;;;;-1:-1:-1;;;;;2936:16:0;;;;;;:9;:16;;;;;;;;2953:10;2936:28;;;;;;;:38;;;;;;;2985:29;2946:5;3002:3;2968:6;2985:9;:29::i;:::-;-1:-1:-1;3032:4:0;2748:296;;;;;:::o;284:28::-;;;;:::o;4405:369::-;4494:10;4451:12;4484:21;;;:9;:21;;;;;;:31;-1:-1:-1;4484:31:0;4476:40;;;;;;4573:10;4563:21;;;;:9;:21;;;;;;;;;:31;;;;;;;4644:11;:21;;;;;;;4720:24;;;;;;;;;;;;;;;;;-1:-1:-1;4762:4:0;4405:369;;;:::o;521:45::-;;;;;;;;;;;;;:::o;5037:606::-;-1:-1:-1;;;;;5135:16:0;;5102:12;5135:16;;;:9;:16;;;;;;:26;-1:-1:-1;5135:26:0;5127:35;;;;;;-1:-1:-1;;;;;5249:16:0;;;;;;:9;:16;;;;;;;;5266:10;5249:28;;;;;;;;5239:38;;;5231:47;;;;;;-1:-1:-1;;;;;5311:16:0;;;;;;:9;:16;;;;;;;;:26;;;;;;;5410:9;:16;;;;;5427:10;5410:28;;;;;;;;:38;;;;;;;5511:11;:21;;;;;;;5594:19;;;;;;;;;;;;;;;;;-1:-1:-1;5631:4:0;5037:606;;;;:::o;249:28::-;;;;;;;;;;;;;;;-1:-1:-1;;249:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2361:107;2426:34;2436:10;2448:3;2453:6;2426:9;:34::i;:::-;2361:107;;:::o;3883:347::-;3993:12;4058:8;4082:25;4058:8;4100:6;4082:7;:25::i;:::-;4078:145;;;4124:61;;;;;4148:10;4124:61;;;;;;;;;;;;4168:4;4124:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4124:23:0;;;;;4148:10;4160:6;;4168:4;4174:10;;4124: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;4124:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4124:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4124:61:0;;;;4207:4;4200:11;;4078:145;3883:347;;;;;;:::o;573:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;1313:837::-;1721:21;-1:-1:-1;;;;;1465:10:0;;;;1457:19;;;;;;-1:-1:-1;;;;;1538:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;1538:26:0;1530:35;;;;;;-1:-1:-1;;;;;1642:14:0;;;;;;:9;:14;;;;;;1616:23;;;:40;1608:49;;;;;;-1:-1:-1;;;;;;1764:14:0;;;;;;;:9;:14;;;;;;;;;;1745:16;;;;;;;;;;;1826:26;;;;;;1905:14;;;;:24;;;;;;;1940:28;;;;;;;1745:33;;;;;:16;1940:28;;;;;;;;;;;-1:-1:-1;;;;;2107:14:0;;;;;;;:9;:14;;;;;;;2088:16;;;;;;;;:33;:53;;2081:61;;;;1313:837;;;;:::o

Swarm Source

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