ETH Price: $3,116.74 (+0.25%)
Gas: 3 Gwei

Token

dAppstore Token (DAPPX)
 

Overview

Max Total Supply

1,500,000,000 DAPPX

Holders

769 (0.00%)

Total Transfers

-

Market

Price

$0.01 @ 0.000004 ETH (+1.10%)

Onchain Market Cap

$17,939,687.66

Circulating Supply Market Cap

$6,539,145.11

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Appstore is a marketplace platform that provides the most convenient functions for experiencing the blockchain. It connects blockchain apps and games with the public, while providing a user-friendly dApp play environment.

Market

Volume (24H):$595,843.50
Market Capitalization:$6,539,145.11
Circulating Supply:546,760,783.00 DAPPX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
dAppStoreToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-19
*/

/**
 *Submitted for verification at Etherscan.io on 2021-01-05
*/

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 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;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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 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);
}

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * *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, Ownable{
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    /**
     * @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 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 Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, amount);
    }
}


/**
 * @dev dAppStore Token implementation.
 */
contract dAppStoreToken is  ERC20Burnable {
    using SafeMath for uint256;

    string public constant name = "dAppstore Token";
    string public constant symbol = "DAPPX";
    uint8 public constant decimals = 18;

    uint256 internal constant INITIAL_SUPPLY = 1.5 * (10**9) * (10 ** uint256(decimals)); // 1.5 billions tokens

    /**
    * @dev Constructor that gives msg.sender all of existing tokens.
    */
    constructor() public {
        _totalSupply = INITIAL_SUPPLY;
        _balances[msg.sender] = INITIAL_SUPPLY;
        emit Transfer(address(0), msg.sender, INITIAL_SUPPLY);
    }
}

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":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","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"}]

608060405234801561001057600080fd5b50600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36b04d8c55aefb8c05b5c0000006003819055336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610c16806100c46000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102dd578063a9059cbb14610309578063dd62ed3e14610335578063f2fde38b1461036357610100565b8063715018a6146102a15780638da5cb5b146102a95780638f32d59b146102cd57806395d89b41146102d557610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806342966c681461025c57806370a082311461027b57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610389565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103b4565b604080519115158252519081900360200190f35b6101ca6103ca565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356103d0565b61021a610427565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b03813516906020013561042c565b6102796004803603602081101561027257600080fd5b5035610468565b005b6101ca6004803603602081101561029157600080fd5b50356001600160a01b03166104ce565b6102796104e9565b6102b161058c565b604080516001600160a01b039092168252519081900360200190f35b6101ae61059b565b61010d6105ac565b6101ae600480360360408110156102f357600080fd5b506001600160a01b0381351690602001356105cd565b6101ae6004803603604081101561031f57600080fd5b506001600160a01b038135169060200135610609565b6101ca6004803603604081101561034b57600080fd5b506001600160a01b0381358116916020013516610616565b6102796004803603602081101561037957600080fd5b50356001600160a01b0316610641565b6040518060400160405280600f81526020016e3220b83839ba37b932902a37b5b2b760891b81525081565b60006103c13384846106a3565b50600192915050565b60035490565b60006103dd84848461078f565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461041d918691610418908663ffffffff6108d316565b6106a3565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c1918590610418908663ffffffff61093016565b61047061059b565b6104c1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104cb3382610991565b50565b6001600160a01b031660009081526001602052604090205490565b6104f161059b565b610542576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600581526020016408882a0a0b60db1b81525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c1918590610418908663ffffffff6108d316565b60006103c133848461078f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61064961059b565b61069a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104cb81610a6c565b6001600160a01b0383166106e85760405162461bcd60e51b8152600401808060200182810382526024815260200180610bbe6024913960400191505060405180910390fd5b6001600160a01b03821661072d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610b566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107d45760405162461bcd60e51b8152600401808060200182810382526025815260200180610b996025913960400191505060405180910390fd5b6001600160a01b0382166108195760405162461bcd60e51b8152600401808060200182810382526023815260200180610b0d6023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054610842908263ffffffff6108d316565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610877908263ffffffff61093016565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561092a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561098a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109d65760405162461bcd60e51b8152600401808060200182810382526021815260200180610b786021913960400191505060405180910390fd5b6003546109e9908263ffffffff6108d316565b6003556001600160a01b038216600090815260016020526040902054610a15908263ffffffff6108d316565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116610ab15760405162461bcd60e51b8152600401808060200182810382526026815260200180610b306026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f9029ea2f715359fb0ecb924cbd23f801472799cf636ed7701235e6150f0194f64736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102dd578063a9059cbb14610309578063dd62ed3e14610335578063f2fde38b1461036357610100565b8063715018a6146102a15780638da5cb5b146102a95780638f32d59b146102cd57806395d89b41146102d557610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806342966c681461025c57806370a082311461027b57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610389565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103b4565b604080519115158252519081900360200190f35b6101ca6103ca565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356103d0565b61021a610427565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b03813516906020013561042c565b6102796004803603602081101561027257600080fd5b5035610468565b005b6101ca6004803603602081101561029157600080fd5b50356001600160a01b03166104ce565b6102796104e9565b6102b161058c565b604080516001600160a01b039092168252519081900360200190f35b6101ae61059b565b61010d6105ac565b6101ae600480360360408110156102f357600080fd5b506001600160a01b0381351690602001356105cd565b6101ae6004803603604081101561031f57600080fd5b506001600160a01b038135169060200135610609565b6101ca6004803603604081101561034b57600080fd5b506001600160a01b0381358116916020013516610616565b6102796004803603602081101561037957600080fd5b50356001600160a01b0316610641565b6040518060400160405280600f81526020016e3220b83839ba37b932902a37b5b2b760891b81525081565b60006103c13384846106a3565b50600192915050565b60035490565b60006103dd84848461078f565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461041d918691610418908663ffffffff6108d316565b6106a3565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c1918590610418908663ffffffff61093016565b61047061059b565b6104c1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104cb3382610991565b50565b6001600160a01b031660009081526001602052604090205490565b6104f161059b565b610542576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600581526020016408882a0a0b60db1b81525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103c1918590610418908663ffffffff6108d316565b60006103c133848461078f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61064961059b565b61069a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104cb81610a6c565b6001600160a01b0383166106e85760405162461bcd60e51b8152600401808060200182810382526024815260200180610bbe6024913960400191505060405180910390fd5b6001600160a01b03821661072d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610b566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107d45760405162461bcd60e51b8152600401808060200182810382526025815260200180610b996025913960400191505060405180910390fd5b6001600160a01b0382166108195760405162461bcd60e51b8152600401808060200182810382526023815260200180610b0d6023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054610842908263ffffffff6108d316565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610877908263ffffffff61093016565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561092a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561098a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109d65760405162461bcd60e51b8152600401808060200182810382526021815260200180610b786021913960400191505060405180910390fd5b6003546109e9908263ffffffff6108d316565b6003556001600160a01b038216600090815260016020526040902054610a15908263ffffffff6108d316565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116610ab15760405162461bcd60e51b8152600401808060200182810382526026815260200180610b306026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f9029ea2f715359fb0ecb924cbd23f801472799cf636ed7701235e6150f0194f64736f6c63430005100032

Deployed Bytecode Sourcemap

16176:616:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16176:616:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16260:47;;;:::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;16260:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11111:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11111:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10134:91;;;:::i;:::-;;;;;;;;;;;;;;;;11730:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11730:256:0;;;;;;;;;;;;;;;;;:::i;16360:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12395:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12395:206:0;;;;;;;;:::i;16025:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16025:91:0;;:::i;:::-;;10288:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10288:110:0;-1:-1:-1;;;;;10288:110:0;;:::i;5336:140::-;;;:::i;4525:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4525:79:0;;;;;;;;;;;;;;4891:92;;;:::i;16314:39::-;;;:::i;13104:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13104:216:0;;;;;;;;:::i;10611:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10611:156:0;;;;;;;;:::i;10830:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10830:134:0;;;;;;;;;;:::i;5631:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5631:109:0;-1:-1:-1;;;;;5631:109:0;;:::i;16260:47::-;;;;;;;;;;;;;;-1:-1:-1;;;16260:47:0;;;;:::o;11111:148::-;11176:4;11193:36;11202:10;11214:7;11223:5;11193:8;:36::i;:::-;-1:-1:-1;11247:4:0;11111:148;;;;:::o;10134:91::-;10205:12;;10134:91;:::o;11730:256::-;11819:4;11836:36;11846:6;11854:9;11865:6;11836:9;:36::i;:::-;-1:-1:-1;;;;;11912:19:0;;;;;;:11;:19;;;;;;;;11900:10;11912:31;;;;;;;;;11883:73;;11892:6;;11912:43;;11948:6;11912:43;:35;:43;:::i;:::-;11883:8;:73::i;:::-;-1:-1:-1;11974:4:0;11730:256;;;;;:::o;16360:35::-;16393:2;16360:35;:::o;12395:206::-;12501:10;12475:4;12522:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12522:32:0;;;;;;;;;;12475:4;;12492:79;;12513:7;;12522:48;;12559:10;12522:48;:36;:48;:::i;16025:91::-;4737:9;:7;:9::i;:::-;4729:54;;;;;-1:-1:-1;;;4729:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16083:25;16089:10;16101:6;16083:5;:25::i;:::-;16025:91;:::o;10288:110::-;-1:-1:-1;;;;;10372:18:0;10345:7;10372:18;;;:9;:18;;;;;;;10288:110::o;5336:140::-;4737:9;:7;:9::i;:::-;4729:54;;;;;-1:-1:-1;;;4729:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5435:1;5419:6;;5398:40;;-1:-1:-1;;;;;5419:6:0;;;;5398:40;;5435:1;;5398:40;5466:1;5449:19;;-1:-1:-1;;;;;;5449:19:0;;;5336:140::o;4525:79::-;4563:7;4590:6;-1:-1:-1;;;;;4590:6:0;4525:79;:::o;4891:92::-;4931:4;4969:6;-1:-1:-1;;;;;4969:6:0;4955:10;:20;;4891:92::o;16314:39::-;;;;;;;;;;;;;;-1:-1:-1;;;16314:39:0;;;;:::o;13104:216::-;13215:10;13189:4;13236:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13236:32:0;;;;;;;;;;13189:4;;13206:84;;13227:7;;13236:53;;13273:15;13236:53;:36;:53;:::i;10611:156::-;10680:4;10697:40;10707:10;10719:9;10730:6;10697:9;:40::i;10830:134::-;-1:-1:-1;;;;;10929:18:0;;;10902:7;10929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10830:134::o;5631:109::-;4737:9;:7;:9::i;:::-;4729:54;;;;;-1:-1:-1;;;4729:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5704:28;5723:8;5704:18;:28::i;15317:335::-;-1:-1:-1;;;;;15410:19:0;;15402:68;;;;-1:-1:-1;;;15402:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15489:21:0;;15481:68;;;;-1:-1:-1;;;15481:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15562:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15613:31;;;;;;;;;;;;;;;;;15317:335;;;:::o;13810:429::-;-1:-1:-1;;;;;13908:20:0;;13900:70;;;;-1:-1:-1;;;13900:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13989:23:0;;13981:71;;;;-1:-1:-1;;;13981:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14085:17:0;;;;;;:9;:17;;;;;;:29;;14107:6;14085:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14065:17:0;;;;;;;:9;:17;;;;;;:49;;;;14148:20;;;;;;;:32;;14173:6;14148:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14125:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14196:35;;;;;;;14125:20;;14196:35;;;;;;;;;;;;;13810:429;;;:::o;1386:184::-;1444:7;1477:1;1472;:6;;1464:49;;;;;-1:-1:-1;;;1464:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1536:5:0;;;1386:184::o;930:181::-;988:7;1020:5;;;1044:6;;;;1036:46;;;;;-1:-1:-1;;;1036:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102:1;930:181;-1:-1:-1;;;930:181:0:o;14571:306::-;-1:-1:-1;;;;;14646:21:0;;14638:67;;;;-1:-1:-1;;;14638:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14733:12;;:23;;14750:5;14733:23;:16;:23;:::i;:::-;14718:12;:38;-1:-1:-1;;;;;14788:18:0;;;;;;:9;:18;;;;;;:29;;14811:5;14788:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;14767:18:0;;;;;;:9;:18;;;;;;;;:50;;;;14833:36;;;;;;;14767:18;;14833:36;;;;;;;;;;;14571:306;;:::o;5846:229::-;-1:-1:-1;;;;;5920:22:0;;5912:73;;;;-1:-1:-1;;;5912:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6022:6;;;6001:38;;-1:-1:-1;;;;;6001:38:0;;;;6022:6;;;6001:38;;;6050:6;:17;;-1:-1:-1;;;;;;6050:17:0;-1:-1:-1;;;;;6050:17:0;;;;;;;;;;5846:229::o

Swarm Source

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