ETH Price: $3,047.19 (+2.24%)
Gas: 1 Gwei

Token

PLOT (PLOT)
 

Overview

Max Total Supply

200,000,000 PLOT

Holders

3,000 (0.00%)

Total Transfers

-

Market

Price

$0.01 @ 0.000002 ETH (+7.66%)

Onchain Market Cap

$1,392,327.29

Circulating Supply Market Cap

$461,685.72

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PlotX is a non-custodial prediction protocol that enables users to earn rewards on high-yield prediction markets.

Market

Volume (24H):$36,151.39
Market Capitalization:$461,685.72
Circulating Supply:66,318,562.00 PLOT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PlotXToken

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 3 of 4: PlotXToken.sol
/* Copyright (C) 2020 PlotX.io

  This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

  This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
    along with this program.  If not, see http://www.gnu.org/licenses/ */

pragma solidity 0.5.7;

import "./ERC20.sol";
import "./SafeMath.sol";

contract PlotXToken is ERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) public lockedForGV;

    string public name = "PLOT";
    string public symbol = "PLOT";
    uint8 public decimals = 18;
    address public operator;

    modifier onlyOperator() {
        require(msg.sender == operator, "Not operator");
        _;
    }

    /**
     * @dev Initialize PLOT token
     * @param _initialSupply Initial token supply
     * @param _initialTokenHolder Initial token holder address
     */
    constructor(uint256 _initialSupply, address _initialTokenHolder) public {
        _mint(_initialTokenHolder, _initialSupply);
        operator = _initialTokenHolder;
    }

    /**
     * @dev change operator address
     * @param _newOperator address of new operator
     */
    function changeOperator(address _newOperator)
        public
        onlyOperator
        returns (bool)
    {
        require(_newOperator != address(0), "New operator cannot be 0 address");
        operator = _newOperator;
        return true;
    }

    /**
     * @dev burns an amount of the tokens of the message sender
     * account.
     * @param amount The amount that will be burnt.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }

    /**
     * @dev function that mints an amount of the token and assigns it to
     * an account.
     * @param account The account that will receive the created tokens.
     * @param amount The amount that will be created.
     */
    function mint(address account, uint256 amount)
        public
        onlyOperator
        returns (bool)
    {
        _mint(account, amount);
        return true;
    }

    /**
     * @dev Transfer token for a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        require(lockedForGV[msg.sender] < now, "Locked for governance"); // if not voted under governance
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public returns (bool) {
        require(lockedForGV[from] < now, "Locked for governance"); // if not voted under governance
        _transferFrom(from, to, value);
        return true;
    }

    /**
     * @dev Lock the user's tokens
     * @param _of user's address.
     */
    function lockForGovernanceVote(address _of, uint256 _period)
        public
        onlyOperator
    {
        if (_period.add(now) > lockedForGV[_of])
            lockedForGV[_of] = _period.add(now);
    }

    function isLockedForGV(address _of) public view returns (bool) {
        return (lockedForGV[_of] > now);
    }
}

File 1 of 4: ERC20.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function _transferFrom(address sender, address recipient, uint256 amount) internal {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

File 2 of 4: IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Mints `amount` tokens to address `account`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function mint(address account, uint256 amount) external returns (bool);
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 4: SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

library SafeMath64 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint64 a, uint64 b) internal pure returns (uint64) {
        uint64 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint64 a, uint64 b) internal pure returns (uint64) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint64 c = a - b;

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint64 a, uint64 b, string memory errorMessage) internal pure returns (uint64) {
        require(b <= a, errorMessage);
        uint64 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint64 a, uint64 b) internal pure returns (uint64) {
        // 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint64 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint64 a, uint64 b) internal pure returns (uint64) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint64 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint64 a, uint64 b) internal pure returns (uint64) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_newOperator","type":"address"}],"name":"changeOperator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":"","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":"","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":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"operator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedForGV","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","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":[],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_of","type":"address"},{"name":"_period","type":"uint256"}],"name":"lockForGovernanceVote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_of","type":"address"}],"name":"isLockedForGV","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_initialTokenHolder","type":"address"}],"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60c0604052600460808190527f504c4f540000000000000000000000000000000000000000000000000000000060a09081526200003e919081620002a4565b506040805180820190915260048082527f504c4f540000000000000000000000000000000000000000000000000000000060209092019182526200008591600591620002a4565b506006805460ff19166012179055348015620000a057600080fd5b506040516040806200131e83398101806040526040811015620000c257600080fd5b5080516020918201519091620000e090829084906200010d811b901c565b600680546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000349565b6001600160a01b0382166200018357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200019f816002546200022860201b62000aca1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001d291839062000aca62000228821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200029d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002e757805160ff191683800117855562000317565b8280016001018555821562000317579182015b8281111562000317578251825591602001919060010190620002fa565b506200032592915062000329565b5090565b6200034691905b8082111562000325576000815560010162000330565b90565b610fc580620003596000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063570ca735116100ad578063a457c2d711610071578063a457c2d714610392578063a9059cbb146103be578063dd62ed3e146103ea578063e8176caa14610418578063f8023eb31461044457610121565b8063570ca735146102ee5780636172983b1461031257806370a082311461033857806379cc67901461035e57806395d89b411461038a57610121565b806323b872dd116100f457806323b872dd14610223578063313ce56714610259578063395093511461027757806340c10f19146102a357806342966c68146102cf57610121565b806306394c9b1461012657806306fdde0314610160578063095ea7b3146101dd57806318160ddd14610209575b600080fd5b61014c6004803603602081101561013c57600080fd5b50356001600160a01b031661046a565b604080519115158252519081900360200190f35b61016861054e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a257818101518382015260200161018a565b50505050905090810190601f1680156101cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014c600480360360408110156101f357600080fd5b506001600160a01b0381351690602001356105dc565b6102116105f2565b60408051918252519081900360200190f35b61014c6004803603606081101561023957600080fd5b506001600160a01b038135811691602081013590911690604001356105f8565b61026161067c565b6040805160ff9092168252519081900360200190f35b61014c6004803603604081101561028d57600080fd5b506001600160a01b038135169060200135610685565b61014c600480360360408110156102b957600080fd5b506001600160a01b0381351690602001356106c6565b6102ec600480360360208110156102e557600080fd5b503561072c565b005b6102f6610739565b604080516001600160a01b039092168252519081900360200190f35b6102116004803603602081101561032857600080fd5b50356001600160a01b031661074d565b6102116004803603602081101561034e57600080fd5b50356001600160a01b031661075f565b6102ec6004803603604081101561037457600080fd5b506001600160a01b03813516906020013561077a565b610168610788565b61014c600480360360408110156103a857600080fd5b506001600160a01b0381351690602001356107e3565b61014c600480360360408110156103d457600080fd5b506001600160a01b03813516906020013561081f565b6102116004803603604081101561040057600080fd5b506001600160a01b0381358116916020013516610890565b6102ec6004803603604081101561042e57600080fd5b506001600160a01b0381351690602001356108bb565b61014c6004803603602081101561045a57600080fd5b50356001600160a01b0316610970565b60065460009061010090046001600160a01b031633146104c65760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6001600160a01b0382166105245760408051600160e51b62461bcd02815260206004820181905260248201527f4e6577206f70657261746f722063616e6e6f7420626520302061646472657373604482015290519081900360640190fd5b50600680546001600160a01b03831661010002610100600160a81b03199091161790556001919050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d45780601f106105a9576101008083540402835291602001916105d4565b820191906000526020600020905b8154815290600101906020018083116105b757829003601f168201915b505050505081565b60006105e933848461098d565b50600192915050565b60025490565b6001600160a01b03831660009081526003602052604081205442116106675760408051600160e51b62461bcd02815260206004820152601560248201527f4c6f636b656420666f7220676f7665726e616e63650000000000000000000000604482015290519081900360640190fd5b610672848484610a7f565b5060019392505050565b60065460ff1681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e99185906106c1908663ffffffff610aca16565b61098d565b60065460009061010090046001600160a01b031633146107225760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6105e98383610b2e565b6107363382610c21565b50565b60065461010090046001600160a01b031681565b60036020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b6107848282610cfd565b5050565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d45780601f106105a9576101008083540402835291602001916105d4565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e99185906106c1908663ffffffff610d4216565b3360009081526003602052604081205442116108855760408051600160e51b62461bcd02815260206004820152601560248201527f4c6f636b656420666f7220676f7665726e616e63650000000000000000000000604482015290519081900360640190fd5b6105e9338484610da2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065461010090046001600160a01b031633146109145760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6001600160a01b03821660009081526003602052604090205461093d824263ffffffff610aca16565b111561078457610953814263ffffffff610aca16565b6001600160a01b0383166000908152600360205260409020555050565b6001600160a01b0316600090815260036020526040902054421090565b6001600160a01b0383166109d557604051600160e51b62461bcd028152600401808060200182810382526024815260200180610f766024913960400191505060405180910390fd5b6001600160a01b038216610a1d57604051600160e51b62461bcd028152600401808060200182810382526022815260200180610f0e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610a8a838383610da2565b6001600160a01b038316600090815260016020908152604080832033808552925290912054610ac59185916106c1908563ffffffff610d4216565b505050565b600082820183811015610b275760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610b8c5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610b9f908263ffffffff610aca16565b6002556001600160a01b038216600090815260208190526040902054610bcb908263ffffffff610aca16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610c6957604051600160e51b62461bcd028152600401808060200182810382526021815260200180610f306021913960400191505060405180910390fd5b600254610c7c908263ffffffff610d4216565b6002556001600160a01b038216600090815260208190526040902054610ca8908263ffffffff610d4216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610d078282610c21565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546107849184916106c1908563ffffffff610d4216565b600082821115610d9c5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316610dea57604051600160e51b62461bcd028152600401808060200182810382526025815260200180610f516025913960400191505060405180910390fd5b6001600160a01b038216610e3257604051600160e51b62461bcd028152600401808060200182810382526023815260200180610eeb6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e5b908263ffffffff610d4216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e90908263ffffffff610aca16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a723058205f247ce5ff869558dad3bac49692d0ae4c77b36f5e59380151db598d1f1a094e0029000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000009f39fdf803b794af4afbef2c94f4a27e0d50d793

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063570ca735116100ad578063a457c2d711610071578063a457c2d714610392578063a9059cbb146103be578063dd62ed3e146103ea578063e8176caa14610418578063f8023eb31461044457610121565b8063570ca735146102ee5780636172983b1461031257806370a082311461033857806379cc67901461035e57806395d89b411461038a57610121565b806323b872dd116100f457806323b872dd14610223578063313ce56714610259578063395093511461027757806340c10f19146102a357806342966c68146102cf57610121565b806306394c9b1461012657806306fdde0314610160578063095ea7b3146101dd57806318160ddd14610209575b600080fd5b61014c6004803603602081101561013c57600080fd5b50356001600160a01b031661046a565b604080519115158252519081900360200190f35b61016861054e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a257818101518382015260200161018a565b50505050905090810190601f1680156101cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014c600480360360408110156101f357600080fd5b506001600160a01b0381351690602001356105dc565b6102116105f2565b60408051918252519081900360200190f35b61014c6004803603606081101561023957600080fd5b506001600160a01b038135811691602081013590911690604001356105f8565b61026161067c565b6040805160ff9092168252519081900360200190f35b61014c6004803603604081101561028d57600080fd5b506001600160a01b038135169060200135610685565b61014c600480360360408110156102b957600080fd5b506001600160a01b0381351690602001356106c6565b6102ec600480360360208110156102e557600080fd5b503561072c565b005b6102f6610739565b604080516001600160a01b039092168252519081900360200190f35b6102116004803603602081101561032857600080fd5b50356001600160a01b031661074d565b6102116004803603602081101561034e57600080fd5b50356001600160a01b031661075f565b6102ec6004803603604081101561037457600080fd5b506001600160a01b03813516906020013561077a565b610168610788565b61014c600480360360408110156103a857600080fd5b506001600160a01b0381351690602001356107e3565b61014c600480360360408110156103d457600080fd5b506001600160a01b03813516906020013561081f565b6102116004803603604081101561040057600080fd5b506001600160a01b0381358116916020013516610890565b6102ec6004803603604081101561042e57600080fd5b506001600160a01b0381351690602001356108bb565b61014c6004803603602081101561045a57600080fd5b50356001600160a01b0316610970565b60065460009061010090046001600160a01b031633146104c65760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6001600160a01b0382166105245760408051600160e51b62461bcd02815260206004820181905260248201527f4e6577206f70657261746f722063616e6e6f7420626520302061646472657373604482015290519081900360640190fd5b50600680546001600160a01b03831661010002610100600160a81b03199091161790556001919050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d45780601f106105a9576101008083540402835291602001916105d4565b820191906000526020600020905b8154815290600101906020018083116105b757829003601f168201915b505050505081565b60006105e933848461098d565b50600192915050565b60025490565b6001600160a01b03831660009081526003602052604081205442116106675760408051600160e51b62461bcd02815260206004820152601560248201527f4c6f636b656420666f7220676f7665726e616e63650000000000000000000000604482015290519081900360640190fd5b610672848484610a7f565b5060019392505050565b60065460ff1681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e99185906106c1908663ffffffff610aca16565b61098d565b60065460009061010090046001600160a01b031633146107225760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6105e98383610b2e565b6107363382610c21565b50565b60065461010090046001600160a01b031681565b60036020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b6107848282610cfd565b5050565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d45780601f106105a9576101008083540402835291602001916105d4565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e99185906106c1908663ffffffff610d4216565b3360009081526003602052604081205442116108855760408051600160e51b62461bcd02815260206004820152601560248201527f4c6f636b656420666f7220676f7665726e616e63650000000000000000000000604482015290519081900360640190fd5b6105e9338484610da2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065461010090046001600160a01b031633146109145760408051600160e51b62461bcd02815260206004820152600c6024820152600160a11b6b2737ba1037b832b930ba37b902604482015290519081900360640190fd5b6001600160a01b03821660009081526003602052604090205461093d824263ffffffff610aca16565b111561078457610953814263ffffffff610aca16565b6001600160a01b0383166000908152600360205260409020555050565b6001600160a01b0316600090815260036020526040902054421090565b6001600160a01b0383166109d557604051600160e51b62461bcd028152600401808060200182810382526024815260200180610f766024913960400191505060405180910390fd5b6001600160a01b038216610a1d57604051600160e51b62461bcd028152600401808060200182810382526022815260200180610f0e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610a8a838383610da2565b6001600160a01b038316600090815260016020908152604080832033808552925290912054610ac59185916106c1908563ffffffff610d4216565b505050565b600082820183811015610b275760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610b8c5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610b9f908263ffffffff610aca16565b6002556001600160a01b038216600090815260208190526040902054610bcb908263ffffffff610aca16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610c6957604051600160e51b62461bcd028152600401808060200182810382526021815260200180610f306021913960400191505060405180910390fd5b600254610c7c908263ffffffff610d4216565b6002556001600160a01b038216600090815260208190526040902054610ca8908263ffffffff610d4216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610d078282610c21565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546107849184916106c1908563ffffffff610d4216565b600082821115610d9c5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316610dea57604051600160e51b62461bcd028152600401808060200182810382526025815260200180610f516025913960400191505060405180910390fd5b6001600160a01b038216610e3257604051600160e51b62461bcd028152600401808060200182810382526023815260200180610eeb6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e5b908263ffffffff610d4216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e90908263ffffffff610aca16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a723058205f247ce5ff869558dad3bac49692d0ae4c77b36f5e59380151db598d1f1a094e0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000009f39fdf803b794af4afbef2c94f4a27e0d50d793

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 200000000000000000000000000
Arg [1] : _initialTokenHolder (address): 0x9F39fdf803b794AF4afBEF2C94F4A27E0D50d793

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [1] : 0000000000000000000000009f39fdf803b794af4afbef2c94f4a27e0d50d793


Deployed Bytecode Sourcemap

751:3434:2:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;751:3434:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550:251;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1550:251:2;-1:-1:-1;;;;;1550:251:2;;:::i;:::-;;;;;;;;;;;;;;;;;;872:27;;;:::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;872:27:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2923:145:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2923:145:0;;;;;;;;:::i;1984:89::-;;;:::i;:::-;;;;;;;;;;;;;;;;3486:283:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3486:283:2;;;;;;;;;;;;;;;;;:::i;940:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4172:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4172:203:0;;;;;;;;:::i;2619:170:2:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2619:170:2;;;;;;;;:::i;1955:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1955:79:2;;:::i;:::-;;972:23;;;:::i;:::-;;;;-1:-1:-1;;;;;972:23:2;;;;;;;;;;;;;;819:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;819:46:2;-1:-1:-1;;;;;819:46:2;;:::i;2131:108:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2131:108:0;-1:-1:-1;;;;;2131:108:0;;:::i;2286:93:2:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2286:93:2;;;;;;;;:::i;905:29::-;;;:::i;4862:213:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4862:213:0;;;;;;;;:::i;2957:243:2:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2957:243:2;;;;;;;;:::i;2653:132:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2653:132:0;;;;;;;;;;:::i;3860:206:2:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3860:206:2;;;;;;;;:::i;4072:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4072:111:2;-1:-1:-1;;;;;4072:111:2;;:::i;1550:251::-;1058:8;;1649:4;;1058:8;;;-1:-1:-1;;;;;1058:8:2;1044:10;:22;1036:47;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;;;;-1:-1:-1;;;;;1677:26:2;;1669:71;;;;;-1:-1:-1;;;;;1669:71:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1750:8:2;:23;;-1:-1:-1;;;;;1750:23:2;;;;-1:-1:-1;;;;;;1750:23:2;;;;;;:8;1550:251;;;:::o;872:27::-;;;;;;;;;;;;;;;-1:-1:-1;;872:27:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2923:145:0:-;2988:4;3004:36;3013:10;3025:7;3034:5;3004:8;:36::i;:::-;-1:-1:-1;3057:4:0;2923:145;;;;:::o;1984:89::-;2054:12;;1984:89;:::o;3486:283:2:-;-1:-1:-1;;;;;3619:17:2;;3595:4;3619:17;;;:11;:17;;;;;;3639:3;-1:-1:-1;3611:57:2;;;;;-1:-1:-1;;;;;3611:57:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3711:30;3725:4;3731:2;3735:5;3711:13;:30::i;:::-;-1:-1:-1;3758:4:2;3486:283;;;;;:::o;940:26::-;;;;;;:::o;4172:203:0:-;4277:10;4252:4;4298:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4298:32:0;;;;;;;;;;4252:4;;4268:79;;4289:7;;4298:48;;4335:10;4298:48;:36;:48;:::i;:::-;4268:8;:79::i;2619:170:2:-;1058:8;;2719:4;;1058:8;;;-1:-1:-1;;;;;1058:8:2;1044:10;:22;1036:47;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;;;;2739:22;2745:7;2754:6;2739:5;:22::i;1955:79::-;2002:25;2008:10;2020:6;2002:5;:25::i;:::-;1955:79;:::o;972:23::-;;;;;;-1:-1:-1;;;;;972:23:2;;:::o;819:46::-;;;;;;;;;;;;;:::o;2131:108:0:-;-1:-1:-1;;;;;2214:18:0;2188:7;2214:18;;;;;;;;;;;;2131:108::o;2286:93:2:-;2350:22;2360:4;2366:5;2350:9;:22::i;:::-;2286:93;;:::o;905:29::-;;;;;;;;;;;;;;;-1:-1:-1;;905:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4862:213:0;4972:10;4947:4;4993:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4993:32:0;;;;;;;;;;4947:4;;4963:84;;4984:7;;4993:53;;5030:15;4993:53;:36;:53;:::i;2957:243:2:-;3054:10;3018:4;3042:23;;;:11;:23;;;;;;3068:3;-1:-1:-1;3034:63:2;;;;;-1:-1:-1;;;;;3034:63:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3140:32;3150:10;3162:2;3166:5;3140:9;:32::i;2653:132:0:-;-1:-1:-1;;;;;2751:18:0;;;2725:7;2751:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2653:132::o;3860:206:2:-;1058:8;;;;;-1:-1:-1;;;;;1058:8:2;1044:10;:22;1036:47;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;-1:-1:-1;;;;;1036:47:2;;;;;;;;;;;;;;;-1:-1:-1;;;;;3994:16:2;;;;;;:11;:16;;;;;;3975;:7;3987:3;3975:16;:11;:16;:::i;:::-;:35;3971:88;;;4043:16;:7;4055:3;4043:16;:11;:16;:::i;:::-;-1:-1:-1;;;;;4024:16:2;;;;;;:11;:16;;;;;:35;3860:206;;:::o;4072:111::-;-1:-1:-1;;;;;4153:16:2;4129:4;4153:16;;;:11;:16;;;;;;4172:3;-1:-1:-1;;4072:111:2:o;8288:329:0:-;-1:-1:-1;;;;;8380:19:0;;8372:68;;;;-1:-1:-1;;;;;8372:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8458:21:0;;8450:68;;;;-1:-1:-1;;;;;8450:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8529:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;8579:31;;;;;;;;;;;;;;;;;8288:329;;;:::o;6453:219::-;6546:36;6556:6;6564:9;6575:6;6546:9;:36::i;:::-;-1:-1:-1;;;;;6621:19:0;;;;;;:11;:19;;;;;;;;6609:10;6621:31;;;;;;;;;6592:73;;6601:6;;6621:43;;6657:6;6621:43;:35;:43;:::i;6592:73::-;6453:219;;;:::o;834:176:3:-;892:7;923:5;;;946:6;;;;938:46;;;;;-1:-1:-1;;;;;938:46:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002:1;834:176;-1:-1:-1;;;834:176:3:o;6942:302:0:-;-1:-1:-1;;;;;7017:21:0;;7009:65;;;;;-1:-1:-1;;;;;7009:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7100:12;;:24;;7117:6;7100:24;:16;:24;:::i;:::-;7085:12;:39;-1:-1:-1;;;;;7155:18:0;;:9;:18;;;;;;;;;;;:30;;7178:6;7155:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;7134:18:0;;:9;:18;;;;;;;;;;;:51;;;;7200:37;;;;;;;7134:18;;:9;;7200:37;;;;;;;;;;6942:302;;:::o;7563:300::-;-1:-1:-1;;;;;7637:21:0;;7629:67;;;;-1:-1:-1;;;;;7629:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7722:12;;:23;;7739:5;7722:23;:16;:23;:::i;:::-;7707:12;:38;-1:-1:-1;;;;;7776:18:0;;:9;:18;;;;;;;;;;;:29;;7799:5;7776:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;7755:18:0;;:9;:18;;;;;;;;;;;:50;;;;7820:36;;;;;;;7755:9;;7820:36;;;;;;;;;;;7563:300;;:::o;8794:185::-;8865:22;8871:7;8880:6;8865:5;:22::i;:::-;-1:-1:-1;;;;;8927:20:0;;;;;;:11;:20;;;;;;;;8915:10;8927:32;;;;;;;;;8897:75;;8906:7;;8927:44;;8964:6;8927:44;:36;:44;:::i;1274:179:3:-;1332:7;1364:1;1359;:6;;1351:49;;;;;-1:-1:-1;;;;;1351:49:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1422:5:3;;;1274:179::o;5549:422:0:-;-1:-1:-1;;;;;5646:20:0;;5638:70;;;;-1:-1:-1;;;;;5638:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5726:23:0;;5718:71;;;;-1:-1:-1;;;;;5718:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5820:17:0;;:9;:17;;;;;;;;;;;:29;;5842:6;5820:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;5800:17:0;;;:9;:17;;;;;;;;;;;:49;;;;5882:20;;;;;;;:32;;5907:6;5882:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;5859:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;5929:35;;;;;;;5859:20;;5929:35;;;;;;;;;;;;;5549:422;;;:::o

Swarm Source

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