ETH Price: $3,052.45 (+2.42%)
Gas: 1 Gwei

Token

ProofOfPleb (PLEB)
 

Overview

Max Total Supply

99,999 PLEB

Holders

183

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
ProofOfPleb

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-26
*/

// SPDX-License-Identifier: MIT

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.
Copyright (c) 2020 Rebased
Copyright (c) 2020 ProofOfPleb

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

pragma solidity 0.5.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address private _owner;

  event OwnershipRenounced(address indexed previousOwner);
  
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    _owner = msg.sender;
  }

  /**
   * @return the address of the owner.
   */
  function owner() public view returns(address) {
    return _owner;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(isOwner());
    _;
  }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(_owner);
    _owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

/**
 * @title ProofOfPleb ERC20 token
 * @dev ProofOfPleb is based on the uFragments protocol first debuted by Ampleforth.
 *      uFragments is a normal ERC20 token, but its supply can be adjusted by splitting and
 *      combining tokens proportionally across all wallets.
 *
 *      uFragment balances are internally represented with a hidden denomination, 'gons'.
 *      We support splitting the currency in expansion and combining the currency on contraction by
 *      changing the exchange rate between the hidden 'gons' and the public 'fragments'.
 */
contract ProofOfPleb is ERC20Detailed, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);

    // Used for authentication
    address public controller;

    modifier onlyController() {
        require(msg.sender == controller);
        _;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private constant DECIMALS = 9;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY =  99999000000000;

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0);  // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping (address => mapping (address => uint256)) private _allowedFragments;

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        external
        onlyController
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    constructor()
        ERC20Detailed("ProofOfPleb", "PLEB", uint8(DECIMALS))
        public
    {
        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[msg.sender] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
        
        emit Transfer(address(0x0), msg.sender, _totalSupply);
    }

    /**
     * @notice Sets a new controller
     */
    function setController(address _controller)
        external
        onlyOwner
        returns (uint256)
    {
        controller = _controller;
    }


    /**
     * @return The total number of fragments.
     */
    function totalSupply()
        external
        view
        returns (uint256)
    {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who)
        external
        view
        returns (uint256)
    {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        external
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from, address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"int256","name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600b81526a283937b7b327b3283632b160a91b602080830191825283518085019094526004845263282622a160e11b90840152815191929160099162000065916000919062000159565b5081516200007b90600190602085019062000159565b506002805460ff191660ff9290921691909117610100600160a81b03191661010033021790555050655af2d4df76006004819055600019336000908152600660205260409020919006199055600454620000f290655af2d4df760060001906600019036200013560201b62000bd31790919060201c565b600555600454604080519182525133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3620001fe565b60008082116200014457600080fd5b60008284816200015057fe5b04949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b620001fb91905b80821115620001da5760008155600101620001e5565b90565b610ccc806200020e6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063dd62ed3e14610377578063f2fde38b146103a5578063f77c4791146103cb57610116565b80638da5cb5b146102c55780638f32d59b146102e957806392eefe9b146102f157806395d89b411461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806370a0823114610272578063715018a6146102985780637a43e23f146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101e06104d0565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104d6565b610230610635565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561063e565b6101e06004803603602081101561028857600080fd5b50356001600160a01b03166106d7565b6102a0610705565b005b6101e0600480360360408110156102b857600080fd5b5080359060200135610765565b6102cd61087f565b604080516001600160a01b039092168252519081900360200190f35b6101c4610893565b6101e06004803603602081101561030757600080fd5b50356001600160a01b03166108a9565b6101236108e0565b6101c46004803603604081101561033557600080fd5b506001600160a01b038135169060200135610940565b6101c46004803603604081101561036157600080fd5b506001600160a01b038135169060200135610a2f565b6101e06004803603604081101561038d57600080fd5b506001600160a01b0381358116916020013516610b27565b6102a0600480360360208110156103bb57600080fd5b50356001600160a01b0316610b52565b6102cd610b6f565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60045490565b6000826001600160a01b0381166104ec57600080fd5b6001600160a01b03811630141561050257600080fd5b6001600160a01b0385166000908152600760209081526040808320338452909152902054610536908463ffffffff610b7e16565b6001600160a01b038616600090815260076020908152604080832033845290915281209190915560055461057190859063ffffffff610b9316565b6001600160a01b03871660009081526006602052604090205490915061059d908263ffffffff610b7e16565b6001600160a01b0380881660009081526006602052604080822093909355908716815220546105d2908263ffffffff610bc116565b6001600160a01b0380871660008181526006602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b60025460ff1690565b3360009081526007602090815260408083206001600160a01b0386168452909152812054610672908363ffffffff610bc116565b3360008181526007602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6005546001600160a01b03821660009081526006602052604081205490916104ca919063ffffffff610bd316565b61070d610893565b61071657600080fd5b6002546040516101009091046001600160a01b0316907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260028054610100600160a81b0319169055565b6003546000906001600160a01b0316331461077f57600080fd5b816107c557600454604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506004546104ca565b60008212156107f1576107e96107da83610bf5565b6004549063ffffffff610b7e16565b600455610808565b600454610804908363ffffffff610bc116565b6004555b6004546001600160801b031015610825576001600160801b036004555b60045461083a906558d0dfb541ff1990610bd3565b600555600454604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a25060045492915050565b60025461010090046001600160a01b031690565b60025461010090046001600160a01b0316331490565b60006108b3610893565b6108bc57600080fd5b600380546001600160a01b0319166001600160a01b03939093169290921790915590565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b3360009081526007602090815260408083206001600160a01b0386168452909152812054808310610994573360009081526007602090815260408083206001600160a01b03881684529091528120556109c9565b6109a4818463ffffffff610b7e16565b3360009081526007602090815260408083206001600160a01b03891684529091529020555b3360008181526007602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116610a4557600080fd5b6001600160a01b038116301415610a5b57600080fd5b6000610a7260055485610b9390919063ffffffff16565b33600090815260066020526040902054909150610a95908263ffffffff610b7e16565b33600090815260066020526040808220929092556001600160a01b03871681522054610ac7908263ffffffff610bc116565b6001600160a01b0386166000818152600660209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610b5a610893565b610b6357600080fd5b610b6c81610c1d565b50565b6003546001600160a01b031681565b600082821115610b8d57600080fd5b50900390565b600082610ba2575060006104ca565b82820282848281610baf57fe5b0414610bba57600080fd5b9392505050565b600082820183811015610bba57600080fd5b6000808211610be157600080fd5b6000828481610bec57fe5b04949350505050565b6000600160ff1b821415610c0857600080fd5b60008212610c1657816104ca565b5060000390565b6001600160a01b038116610c3057600080fd5b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b031990921691909117905556fea265627a7a7231582099557b6d1ffbf14c542a31ae9f54a10fbf495bd7d810990032977df888fa232e64736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063dd62ed3e14610377578063f2fde38b146103a5578063f77c4791146103cb57610116565b80638da5cb5b146102c55780638f32d59b146102e957806392eefe9b146102f157806395d89b411461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806370a0823114610272578063715018a6146102985780637a43e23f146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101e06104d0565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104d6565b610230610635565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561063e565b6101e06004803603602081101561028857600080fd5b50356001600160a01b03166106d7565b6102a0610705565b005b6101e0600480360360408110156102b857600080fd5b5080359060200135610765565b6102cd61087f565b604080516001600160a01b039092168252519081900360200190f35b6101c4610893565b6101e06004803603602081101561030757600080fd5b50356001600160a01b03166108a9565b6101236108e0565b6101c46004803603604081101561033557600080fd5b506001600160a01b038135169060200135610940565b6101c46004803603604081101561036157600080fd5b506001600160a01b038135169060200135610a2f565b6101e06004803603604081101561038d57600080fd5b506001600160a01b0381358116916020013516610b27565b6102a0600480360360208110156103bb57600080fd5b50356001600160a01b0316610b52565b6102cd610b6f565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60045490565b6000826001600160a01b0381166104ec57600080fd5b6001600160a01b03811630141561050257600080fd5b6001600160a01b0385166000908152600760209081526040808320338452909152902054610536908463ffffffff610b7e16565b6001600160a01b038616600090815260076020908152604080832033845290915281209190915560055461057190859063ffffffff610b9316565b6001600160a01b03871660009081526006602052604090205490915061059d908263ffffffff610b7e16565b6001600160a01b0380881660009081526006602052604080822093909355908716815220546105d2908263ffffffff610bc116565b6001600160a01b0380871660008181526006602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b60025460ff1690565b3360009081526007602090815260408083206001600160a01b0386168452909152812054610672908363ffffffff610bc116565b3360008181526007602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6005546001600160a01b03821660009081526006602052604081205490916104ca919063ffffffff610bd316565b61070d610893565b61071657600080fd5b6002546040516101009091046001600160a01b0316907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a260028054610100600160a81b0319169055565b6003546000906001600160a01b0316331461077f57600080fd5b816107c557600454604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a2506004546104ca565b60008212156107f1576107e96107da83610bf5565b6004549063ffffffff610b7e16565b600455610808565b600454610804908363ffffffff610bc116565b6004555b6004546001600160801b031015610825576001600160801b036004555b60045461083a906558d0dfb541ff1990610bd3565b600555600454604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a25060045492915050565b60025461010090046001600160a01b031690565b60025461010090046001600160a01b0316331490565b60006108b3610893565b6108bc57600080fd5b600380546001600160a01b0319166001600160a01b03939093169290921790915590565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b3360009081526007602090815260408083206001600160a01b0386168452909152812054808310610994573360009081526007602090815260408083206001600160a01b03881684529091528120556109c9565b6109a4818463ffffffff610b7e16565b3360009081526007602090815260408083206001600160a01b03891684529091529020555b3360008181526007602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116610a4557600080fd5b6001600160a01b038116301415610a5b57600080fd5b6000610a7260055485610b9390919063ffffffff16565b33600090815260066020526040902054909150610a95908263ffffffff610b7e16565b33600090815260066020526040808220929092556001600160a01b03871681522054610ac7908263ffffffff610bc116565b6001600160a01b0386166000818152600660209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610b5a610893565b610b6357600080fd5b610b6c81610c1d565b50565b6003546001600160a01b031681565b600082821115610b8d57600080fd5b50900390565b600082610ba2575060006104ca565b82820282848281610baf57fe5b0414610bba57600080fd5b9392505050565b600082820183811015610bba57600080fd5b6000808211610be157600080fd5b6000828481610bec57fe5b04949350505050565b6000600160ff1b821415610c0857600080fd5b60008212610c1657816104ca565b5060000390565b6001600160a01b038116610c3057600080fd5b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b031990921691909117905556fea265627a7a7231582099557b6d1ffbf14c542a31ae9f54a10fbf495bd7d810990032977df888fa232e64736f6c63430005110032

Deployed Bytecode Sourcemap

9744:7665:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9744:7665:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4302:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15677:235;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15677:235:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12778:125;;;:::i;:::-;;;;;;;;;;;;;;;;14546:489;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14546:489:0;;;;;;;;;;;;;;;;;:::i;5154:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16285:345;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16285:345:0;;;;;;;;:::i;13024:161::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13024:161:0;-1:-1:-1;;;;;13024:161:0;;:::i;8467:116::-;;;:::i;:::-;;11440:699;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11440:699:0;;;;;;;:::i;7808:72::-;;;:::i;:::-;;;;-1:-1:-1;;;;;7808:72:0;;;;;;;;;;;;;;8110:85;;;:::i;12547:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12547:156:0;-1:-1:-1;;;;;12547:156:0;;:::i;4504:87::-;;;:::i;16892:514::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16892:514:0;;;;;;;;:::i;13411:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13411:390:0;;;;;;;;:::i;14108:176::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14108:176:0;;;;;;;;;;:::i;8750:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8750:103:0;-1:-1:-1;;;;;8750:103:0;;:::i;9968:25::-;;;:::i;4302:83::-;4372:5;4365:12;;;;;;;;-1:-1:-1;;4365:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4339:13;;4365:12;;4372:5;;4365:12;;4372:5;4365:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302:83;:::o;15677:235::-;15802:10;15762:4;15784:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;15784:38:0;;;;;;;;;;;:46;;;15846:36;;;;;;;15762:4;;15784:38;;15802:10;;15846:36;;;;;;;;-1:-1:-1;15900:4:0;15677:235;;;;;:::o;12778:125::-;12883:12;;12778:125;:::o;14546:489::-;14673:4;14651:2;-1:-1:-1;;;;;10155:18:0;;10147:27;;;;;;-1:-1:-1;;;;;10193:19:0;;10207:4;10193:19;;10185:28;;;;;;-1:-1:-1;;;;;14733:23:0;;;;;;:17;:23;;;;;;;;14757:10;14733:35;;;;;;;;:46;;14773:5;14733:46;:39;:46;:::i;:::-;-1:-1:-1;;;;;14695:23:0;;;;;;:17;:23;;;;;;;;14719:10;14695:35;;;;;;;:84;;;;14821:16;;14811:27;;:5;;:27;:9;:27;:::i;:::-;-1:-1:-1;;;;;14870:18:0;;;;;;:12;:18;;;;;;14792:46;;-1:-1:-1;14870:32:0;;14792:46;14870:32;:22;:32;:::i;:::-;-1:-1:-1;;;;;14849:18:0;;;;;;;:12;:18;;;;;;:53;;;;14932:16;;;;;;;:30;;14953:8;14932:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;14913:16:0;;;;;;;:12;:16;;;;;;;;;:49;;;;14978:25;;;;;;;14913:16;;14978:25;;;;;;;;;;;;;-1:-1:-1;15023:4:0;;14546:489;-1:-1:-1;;;;;14546:489:0:o;5154:83::-;5220:9;;;;5154:83;:::o;16285:345::-;16479:10;16385:4;16461:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;16461:38:0;;;;;;;;;;:54;;16504:10;16461:54;:42;:54;:::i;:::-;16425:10;16407:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;16407:38:0;;;;;;;;;;;;:108;;;16531:69;;;;;;16407:38;;16531:69;;;;;;;;;;;-1:-1:-1;16618:4:0;16285:345;;;;:::o;13024:161::-;13160:16;;-1:-1:-1;;;;;13138:17:0;;13106:7;13138:17;;;:12;:17;;;;;;13106:7;;13138:39;;:17;:39;:21;:39;:::i;8467:116::-;8001:9;:7;:9::i;:::-;7993:18;;;;;;8544:6;;8525:26;;8544:6;;;;-1:-1:-1;;;;;8544:6:0;;8525:26;;;;;8558:6;:19;;-1:-1:-1;;;;;;8558:19:0;;;8467:116::o;11440:699::-;10061:10;;11551:7;;-1:-1:-1;;;;;10061:10:0;10047;:24;10039:33;;;;;;11580:16;11576:118;;11635:12;;11618:30;;;;;;;11628:5;;11618:30;;;;;;;;;;-1:-1:-1;11670:12:0;;11663:19;;11576:118;11724:1;11710:11;:15;11706:193;;;11757:44;11782:17;:11;:15;:17::i;:::-;11757:12;;;:44;:16;:44;:::i;:::-;11742:12;:59;11706:193;;;11849:12;;:38;;11874:11;11849:38;:16;:38;:::i;:::-;11834:12;:53;11706:193;11915:12;;-1:-1:-1;;;;;;11911:83:0;;;-1:-1:-1;;;;;11957:12:0;:25;11911:83;12040:12;;12025:28;;-1:-1:-1;;10631:54:0;12025:14;:28::i;:::-;12006:16;:47;12088:12;;12071:30;;;;;;;12081:5;;12071:30;;;;;;;;;;-1:-1:-1;12119:12:0;;11440:699;;;;:::o;7808:72::-;7868:6;;;;;-1:-1:-1;;;;;7868:6:0;;7808:72::o;8110:85::-;8183:6;;;;;-1:-1:-1;;;;;8183:6:0;8169:10;:20;;8110:85::o;12547:156::-;12646:7;8001:9;:7;:9::i;:::-;7993:18;;;;;;12671:10;:24;;-1:-1:-1;;;;;;12671:24:0;-1:-1:-1;;;;;12671:24:0;;;;;;;;;;;;12547:156::o;4504:87::-;4576:7;4569:14;;;;;;;;-1:-1:-1;;4569:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4543:13;;4569:14;;4576:7;;4569:14;;4576:7;4569:14;;;;;;;;;;;;;;;;;;;;;;;;16892:514;17056:10;16997:4;17038:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;17038:38:0;;;;;;;;;;17091:27;;;17087:205;;17153:10;17176:1;17135:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;17135:38:0;;;;;;;;;:42;17087:205;;;17251:29;:8;17264:15;17251:29;:12;:29;:::i;:::-;17228:10;17210:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;17210:38:0;;;;;;;;;:70;17087:205;17316:10;17337:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;17307:69:0;;17337:38;;;;;;;;;;;17307:69;;;;;;;;;17316:10;17307:69;;;;;;;;;;;-1:-1:-1;17394:4:0;;16892:514;-1:-1:-1;;;16892:514:0:o;13411:390::-;13520:4;13498:2;-1:-1:-1;;;;;10155:18:0;;10147:27;;;;;;-1:-1:-1;;;;;10193:19:0;;10207:4;10193:19;;10185:28;;;;;;13542:16;13561:27;13571:16;;13561:5;:9;;:27;;;;:::i;:::-;13639:10;13626:24;;;;:12;:24;;;;;;13542:46;;-1:-1:-1;13626:38:0;;13542:46;13626:38;:28;:38;:::i;:::-;13612:10;13599:24;;;;:12;:24;;;;;;:65;;;;-1:-1:-1;;;;;13694:16:0;;;;;;:30;;13715:8;13694:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;13675:16:0;;;;;;:12;:16;;;;;;;;;:49;;;;13740:31;;;;;;;13675:16;;13749:10;;13740:31;;;;;;;;;;-1:-1:-1;13789:4:0;;13411:390;-1:-1:-1;;;;13411:390:0:o;14108:176::-;-1:-1:-1;;;;;14242:25:0;;;14210:7;14242:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;14108:176::o;8750:103::-;8001:9;:7;:9::i;:::-;7993:18;;;;;;8819:28;8838:8;8819:18;:28::i;:::-;8750:103;:::o;9968:25::-;;;-1:-1:-1;;;;;9968:25:0;;:::o;2349:136::-;2407:7;2436:1;2431;:6;;2423:15;;;;;;-1:-1:-1;2457:5:0;;;2349:136::o;1447:393::-;1505:7;1733:6;1729:37;;-1:-1:-1;1757:1:0;1750:8;;1729:37;1786:5;;;1790:1;1786;:5;:1;1806:5;;;;;:10;1798:19;;;;;;1833:1;1447:393;-1:-1:-1;;;1447:393:0:o;2553:136::-;2611:7;2639:5;;;2659:6;;;;2651:15;;;;;1955:276;2013:7;2041:1;2037;:5;2029:14;;;;;;2108:9;2124:1;2120;:5;;;;;;;1955:276;-1:-1:-1;;;;1955:276:0:o;6988:161::-;7061:6;-1:-1:-1;;;7093:15:0;;;7085:24;;;;;;7131:1;7127;:5;:14;;7140:1;7127:14;;;-1:-1:-1;7135:2:0;;;6988:161::o;8993:173::-;-1:-1:-1;;;;;9063:22:0;;9055:31;;;;;;9119:6;;9098:38;;-1:-1:-1;;;;;9098:38:0;;;;9119:6;;;;;9098:38;;;;;9143:6;:17;;-1:-1:-1;;;;;9143:17:0;;;;;-1:-1:-1;;;;;;9143:17:0;;;;;;;;;8993:173::o

Swarm Source

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