ETH Price: $3,343.00 (+0.51%)

Token

GON (GON)
 

Overview

Max Total Supply

72,000,000,000,000 GON

Holders

439

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
yume3.eth
Balance
357,142,857 GON

Value
$0.00
0x3d3b69457ce7e7998f19e85e018b5a296aed781e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GONTOKEN

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : GONTOKEN.sol
// SPDX-License-Identifier: MIT                                                                             

pragma solidity ^0.8.0;

import './Security.sol';

contract GONTOKEN is Security {

    string private _name;
    string private _symbol;
    uint256 private _decimals;

    uint256 private _totalSupply;

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

    constructor() {
        _name = "GON";
        _symbol = "GON";
        _decimals = 8;

        _mint(_msgSender(), 72000000000000  * 10 ** 8);
    }

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

    /**
    * @dev Returns the decimals of the token.
    */
    function decimals() public view returns (uint256) {
        return _decimals;
    }

    /**
    * @dev Returns the total supply of the token.
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Returns the amount of tokens owned by `account`.
    */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
    * @dev Returns the allowances.
    */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }
    
    /**
     * @dev Burns the amount of tokens owned by caller.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
    /**
    * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
    */
    function approve(address spender, uint256 amount) public whenNotPaused returns (bool) {
        address owner = _msgSender();
        require(!isBlackListed[owner], "GON: locked account");
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev Increases the allowance of `spender` by `amount`.
     */
    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        address owner = _msgSender();
        require(!isBlackListed[owner], "GON: locked account");
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance of `spender` by `amount`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);

        require(!isBlackListed[owner], "GON: locked account");
        require(currentAllowance >= subtractedValue, "GON: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
    * @dev Moves `amount` tokens from the caller's account to `to`.
    */
    function transfer(address to, uint256 amount) public whenNotPaused returns (bool) {
        address owner = _msgSender();
        require(!isBlackListed[owner], "GON: locked account");
        _transfer(owner, to, amount);
        return true;
    }

    /**
    * @dev Moves `amount` tokens from `from` to `to` using the
    * allowance mechanism. `amount` is then deducted from the caller's
    * allowance.
    */
    function transferFrom(address from, address to, uint256 amount) public whenNotPaused returns (bool) {
        address spender = _msgSender();
        require(!isBlackListed[from], "GON: locked account");
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /*////////////////////////////////////////////////
                    INTERNAL FUNCTIONS
      ////////////////////////////////////////////////*/

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "GON: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "GON: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "GON: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "GON: approve from the zero address");
        require(spender != address(0), "GON: approve to the zero address");

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

    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "GON: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0), "GON: transfer from the zero address");
        require(to != address(0), "GON: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "GON: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal {}
    function _afterTokenTransfer(address from, address to, uint256 amount) internal {}

    /*////////////////////////////////////////////////
                    EVENTS
      ////////////////////////////////////////////////*/

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

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 5 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 5 : Security.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

contract Security is Ownable, Pausable {
    
    mapping(address => bool) isBlackListed;

    /**
     * @dev Pauses the contract.
     */
    function pause() public onlyOwner {
        _pause();
    }

    /**
     * @dev Unpause the contract.
     */
    function unpause() public onlyOwner {
        _unpause();
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200002662000020620000b5565b620000b9565b6000805460ff60a01b191690556040805180820190915260038082526223a7a760e91b60209092019182526200005f91600291620001d0565b506040805180820190915260038082526223a7a760e91b60209092019182526200008a9181620001d0565b506008600455620000af6200009e620000b5565b69018650127cc3dc80000062000109565b62000318565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200013b5760405162461bcd60e51b8152600401620001329062000276565b60405180910390fd5b6200014960008383620001cb565b80600560008282546200015d9190620002b6565b90915550506001600160a01b038216600081815260066020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001b1908590620002ad565b60405180910390a3620001c760008383620001cb565b5050565b505050565b828054620001de90620002db565b90600052602060002090601f0160209004810192826200020257600085556200024d565b82601f106200021d57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024d57825182559160200191906001019062000230565b506200025b9291506200025f565b5090565b5b808211156200025b576000815560010162000260565b6020808252601d908201527f474f4e3a206d696e7420746f20746865207a65726f2061646472657373000000604082015260600190565b90815260200190565b60008219821115620002d657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002f057607f821691505b602082108114156200031257634e487b7160e01b600052602260045260246000fd5b50919050565b610fbb80620003286000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610217578063a457c2d71461021f578063a9059cbb14610232578063dd62ed3e14610245578063f2fde38b1461025857610121565b806370a08231146101cc578063715018a6146101df57806379cc6790146101e75780638456cb59146101fa5780638da5cb5b1461020257610121565b8063313ce567116100f4578063313ce5671461018c57806339509351146101945780633f4ba83a146101a757806342966c68146101b15780635c975abb146101c457610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e61026b565b60405161013b9190610ba5565b60405180910390f35b610157610152366004610b45565b6102fd565b60405161013b9190610b9a565b61016c61036b565b60405161013b9190610f1d565b610157610187366004610b0a565b610371565b61016c6103e2565b6101576101a2366004610b45565b6103e8565b6101af610457565b005b6101af6101bf366004610b6e565b610469565b61015761047d565b61016c6101da366004610ab7565b61048d565b6101af6104ac565b6101af6101f5366004610b45565b6104be565b6101af6104de565b61020a6104ee565b60405161013b9190610b86565b61012e6104fd565b61015761022d366004610b45565b61050c565b610157610240366004610b45565b610597565b61016c610253366004610ad8565b6105f2565b6101af610266366004610ab7565b61061d565b60606002805461027a90610f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610f4a565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b6000610307610654565b6000610311610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156103565760405162461bcd60e51b815260040161034d90610ead565b60405180910390fd5b61036181858561067d565b5060019392505050565b60055490565b600061037b610654565b6000610385610679565b6001600160a01b03861660009081526001602052604090205490915060ff16156103c15760405162461bcd60e51b815260040161034d90610ead565b6103cc858285610731565b6103d785858561077b565b506001949350505050565b60045490565b60006103f2610654565b60006103fc610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156104385760405162461bcd60e51b815260040161034d90610ead565b61036181858561044885896105f2565b6104529190610f26565b61067d565b61045f61087c565b6104676108bb565b565b61047a610474610679565b82610910565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600660205260409020545b919050565b6104b461087c565b61046760006109e8565b6104d0826104ca610679565b83610731565b6104da8282610910565b5050565b6104e661087c565b610467610a38565b6000546001600160a01b031690565b60606003805461027a90610f4a565b6000610516610654565b6000610520610679565b9050600061052e82866105f2565b6001600160a01b03831660009081526001602052604090205490915060ff161561056a5760405162461bcd60e51b815260040161034d90610ead565b8381101561058a5760405162461bcd60e51b815260040161034d90610eda565b6103d7828686840361067d565b60006105a1610654565b60006105ab610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156105e75760405162461bcd60e51b815260040161034d90610ead565b61036181858561077b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b61062561087c565b6001600160a01b03811661064b5760405162461bcd60e51b815260040161034d90610c5b565b61047a816109e8565b61065c61047d565b156104675760405162461bcd60e51b815260040161034d90610d51565b3390565b6001600160a01b0383166106a35760405162461bcd60e51b815260040161034d90610d7b565b6001600160a01b0382166106c95760405162461bcd60e51b815260040161034d90610c26565b6001600160a01b0380841660008181526007602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610724908590610f1d565b60405180910390a3505050565b600061073d84846105f2565b9050600019811461077557818110156107685760405162461bcd60e51b815260040161034d90610ca1565b610775848484840361067d565b50505050565b6001600160a01b0383166107a15760405162461bcd60e51b815260040161034d90610df2565b6001600160a01b0382166107c75760405162461bcd60e51b815260040161034d90610e6c565b6107d28383836109e3565b6001600160a01b0383166000908152600660205260409020548181101561080b5760405162461bcd60e51b815260040161034d90610cd8565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610869908690610f1d565b60405180910390a36107758484846109e3565b610884610679565b6001600160a01b03166108956104ee565b6001600160a01b0316146104675760405162461bcd60e51b815260040161034d90610dbd565b6108c3610a7c565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108f9610679565b6040516109069190610b86565b60405180910390a1565b6001600160a01b0382166109365760405162461bcd60e51b815260040161034d90610e35565b610942826000836109e3565b6001600160a01b0382166000908152600660205260409020548181101561097b5760405162461bcd60e51b815260040161034d90610d1c565b6001600160a01b0383166000818152600660205260408082208585039055600580548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d3908690610f1d565b60405180910390a36109e3836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a40610654565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108f9610679565b610a8461047d565b6104675760405162461bcd60e51b815260040161034d90610bf8565b80356001600160a01b03811681146104a757600080fd5b600060208284031215610ac8578081fd5b610ad182610aa0565b9392505050565b60008060408385031215610aea578081fd5b610af383610aa0565b9150610b0160208401610aa0565b90509250929050565b600080600060608486031215610b1e578081fd5b610b2784610aa0565b9250610b3560208501610aa0565b9150604084013590509250925092565b60008060408385031215610b57578182fd5b610b6083610aa0565b946020939093013593505050565b600060208284031215610b7f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bd157858101830151858201604001528201610bb5565b81811115610be25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252818101527f474f4e3a20617070726f766520746f20746865207a65726f2061646472657373604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f474f4e3a20696e73756666696369656e7420616c6c6f77616e63650000000000604082015260600190565b60208082526024908201527f474f4e3a207472616e7366657220616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252818101527f474f4e3a206275726e20616d6f756e7420657863656564732062616c616e6365604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526022908201527f474f4e3a20617070726f76652066726f6d20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f474f4e3a207472616e736665722066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601f908201527f474f4e3a206275726e2066726f6d20746865207a65726f206164647265737300604082015260600190565b60208082526021908201527f474f4e3a207472616e7366657220746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526013908201527211d3d38e881b1bd8dad959081858d8dbdd5b9d606a1b604082015260600190565b60208082526023908201527f474f4e3a2064656372656173656420616c6c6f77616e63652062656c6f77207a60408201526265726f60e81b606082015260800190565b90815260200190565b60008219821115610f4557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610f5e57607f821691505b60208210811415610f7f57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212205e902a6b4aeab20a4722a23057311f4ccd31a6ee6882fe1ba6dc9d7de10a7ed864736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610217578063a457c2d71461021f578063a9059cbb14610232578063dd62ed3e14610245578063f2fde38b1461025857610121565b806370a08231146101cc578063715018a6146101df57806379cc6790146101e75780638456cb59146101fa5780638da5cb5b1461020257610121565b8063313ce567116100f4578063313ce5671461018c57806339509351146101945780633f4ba83a146101a757806342966c68146101b15780635c975abb146101c457610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e61026b565b60405161013b9190610ba5565b60405180910390f35b610157610152366004610b45565b6102fd565b60405161013b9190610b9a565b61016c61036b565b60405161013b9190610f1d565b610157610187366004610b0a565b610371565b61016c6103e2565b6101576101a2366004610b45565b6103e8565b6101af610457565b005b6101af6101bf366004610b6e565b610469565b61015761047d565b61016c6101da366004610ab7565b61048d565b6101af6104ac565b6101af6101f5366004610b45565b6104be565b6101af6104de565b61020a6104ee565b60405161013b9190610b86565b61012e6104fd565b61015761022d366004610b45565b61050c565b610157610240366004610b45565b610597565b61016c610253366004610ad8565b6105f2565b6101af610266366004610ab7565b61061d565b60606002805461027a90610f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610f4a565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b6000610307610654565b6000610311610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156103565760405162461bcd60e51b815260040161034d90610ead565b60405180910390fd5b61036181858561067d565b5060019392505050565b60055490565b600061037b610654565b6000610385610679565b6001600160a01b03861660009081526001602052604090205490915060ff16156103c15760405162461bcd60e51b815260040161034d90610ead565b6103cc858285610731565b6103d785858561077b565b506001949350505050565b60045490565b60006103f2610654565b60006103fc610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156104385760405162461bcd60e51b815260040161034d90610ead565b61036181858561044885896105f2565b6104529190610f26565b61067d565b61045f61087c565b6104676108bb565b565b61047a610474610679565b82610910565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600660205260409020545b919050565b6104b461087c565b61046760006109e8565b6104d0826104ca610679565b83610731565b6104da8282610910565b5050565b6104e661087c565b610467610a38565b6000546001600160a01b031690565b60606003805461027a90610f4a565b6000610516610654565b6000610520610679565b9050600061052e82866105f2565b6001600160a01b03831660009081526001602052604090205490915060ff161561056a5760405162461bcd60e51b815260040161034d90610ead565b8381101561058a5760405162461bcd60e51b815260040161034d90610eda565b6103d7828686840361067d565b60006105a1610654565b60006105ab610679565b6001600160a01b03811660009081526001602052604090205490915060ff16156105e75760405162461bcd60e51b815260040161034d90610ead565b61036181858561077b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b61062561087c565b6001600160a01b03811661064b5760405162461bcd60e51b815260040161034d90610c5b565b61047a816109e8565b61065c61047d565b156104675760405162461bcd60e51b815260040161034d90610d51565b3390565b6001600160a01b0383166106a35760405162461bcd60e51b815260040161034d90610d7b565b6001600160a01b0382166106c95760405162461bcd60e51b815260040161034d90610c26565b6001600160a01b0380841660008181526007602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610724908590610f1d565b60405180910390a3505050565b600061073d84846105f2565b9050600019811461077557818110156107685760405162461bcd60e51b815260040161034d90610ca1565b610775848484840361067d565b50505050565b6001600160a01b0383166107a15760405162461bcd60e51b815260040161034d90610df2565b6001600160a01b0382166107c75760405162461bcd60e51b815260040161034d90610e6c565b6107d28383836109e3565b6001600160a01b0383166000908152600660205260409020548181101561080b5760405162461bcd60e51b815260040161034d90610cd8565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610869908690610f1d565b60405180910390a36107758484846109e3565b610884610679565b6001600160a01b03166108956104ee565b6001600160a01b0316146104675760405162461bcd60e51b815260040161034d90610dbd565b6108c3610a7c565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108f9610679565b6040516109069190610b86565b60405180910390a1565b6001600160a01b0382166109365760405162461bcd60e51b815260040161034d90610e35565b610942826000836109e3565b6001600160a01b0382166000908152600660205260409020548181101561097b5760405162461bcd60e51b815260040161034d90610d1c565b6001600160a01b0383166000818152600660205260408082208585039055600580548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d3908690610f1d565b60405180910390a36109e3836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a40610654565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108f9610679565b610a8461047d565b6104675760405162461bcd60e51b815260040161034d90610bf8565b80356001600160a01b03811681146104a757600080fd5b600060208284031215610ac8578081fd5b610ad182610aa0565b9392505050565b60008060408385031215610aea578081fd5b610af383610aa0565b9150610b0160208401610aa0565b90509250929050565b600080600060608486031215610b1e578081fd5b610b2784610aa0565b9250610b3560208501610aa0565b9150604084013590509250925092565b60008060408385031215610b57578182fd5b610b6083610aa0565b946020939093013593505050565b600060208284031215610b7f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bd157858101830151858201604001528201610bb5565b81811115610be25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252818101527f474f4e3a20617070726f766520746f20746865207a65726f2061646472657373604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f474f4e3a20696e73756666696369656e7420616c6c6f77616e63650000000000604082015260600190565b60208082526024908201527f474f4e3a207472616e7366657220616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252818101527f474f4e3a206275726e20616d6f756e7420657863656564732062616c616e6365604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526022908201527f474f4e3a20617070726f76652066726f6d20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f474f4e3a207472616e736665722066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601f908201527f474f4e3a206275726e2066726f6d20746865207a65726f206164647265737300604082015260600190565b60208082526021908201527f474f4e3a207472616e7366657220746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526013908201527211d3d38e881b1bd8dad959081858d8dbdd5b9d606a1b604082015260600190565b60208082526023908201527f474f4e3a2064656372656173656420616c6c6f77616e63652062656c6f77207a60408201526265726f60e81b606082015260800190565b90815260200190565b60008219821115610f4557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610f5e57607f821691505b60208210811415610f7f57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212205e902a6b4aeab20a4722a23057311f4ccd31a6ee6882fe1ba6dc9d7de10a7ed864736f6c63430008000033

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.