ETH Price: $1,963.64 (-0.60%)
 

Overview

Max Total Supply

249,999,994 SNORT

Holders

8,385

Transfers

-
216 ( -4.85%)

Market

Price

$0.01 @ 0.000004 ETH (+0.08%)

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 SNORT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @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 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 `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, 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.
   *
   * IMPORTANT: 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

  /**
   * @dev Returns the symbol of the token.
   */
  function symbol() external view returns (string memory);

  /**
   * @dev Returns the decimals places of the token.
   */
  function decimals() external view returns (uint8);
}

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

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

contract Token is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;
  uint256 public constant productDevelopmentReseve = 125_000_000 * (10 ** _decimals);
  uint256 public constant marketingReserve = 100_000_000 * (10 ** _decimals);
  uint256 public constant airdropReserve = 50_000_000 * (10 ** _decimals);
  uint256 public constant stakingRewardsReserve = 25_000_000 * (10 ** _decimals);
  uint256 public constant exchangeLiquidityReserve = 100_000_000 * (10 ** _decimals);
  uint256 public constant communityRewardsReserve = 50_000_000 * (10 ** _decimals);
  uint256 public constant treasuryReserve = 50_000_000 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'Snorter';
    _symbol = 'SNORT';
    _mint(0x2d7C63d24Cd142D6e8Aa211D334fC7fd420c1315, productDevelopmentReseve);
    _mint(0xAaE189b11D208D572807691bC90D18D9A50b80AC, marketingReserve);
    _mint(0x42a8a90Ab7600801bc88e9Ae739d23358bC822D4, airdropReserve);
    _mint(0x9FED62571eBc61318f2810c389fd3871F2bfE2Af, stakingRewardsReserve);
    _mint(0xCc9b1b7971496d64652970a9E5423430Fc1e65Ef, exchangeLiquidityReserve);
    _mint(0x95E96eD0cFFc9b6CC79c10f5e6200D5E8630bB67, communityRewardsReserve);
    _mint(0xeE975B502748488bEC096b1cA192714e51F88De8, treasuryReserve);
  }

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

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

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

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

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - amount);
    }

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

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

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
      _balances[account] = accountBalance - amount;
    }
    _totalSupply -= amount;

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

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
}

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

Contract Security Audit

Contract ABI

API
[{"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":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"},{"inputs":[],"name":"airdropReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[],"name":"communityRewardsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeLiquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"productDevelopmentReseve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingRewardsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506200001d33620001d8565b6040805180820190915260078082526629b737b93a32b960c91b60209092019182526200004d9160049162000310565b506040805180820190915260058082526414d393d49560da1b60209092019182526200007a918162000310565b50620000b8732d7c63d24cd142d6e8aa211d334fc7fd420c1315620000a26012600a620004cb565b620000b2906307735940620004e3565b62000228565b620000ef73aae189b11d208d572807691bc90d18d9a50b80ac620000df6012600a620004cb565b620000b2906305f5e100620004e3565b620001267342a8a90ab7600801bc88e9ae739d23358bc822d4620001166012600a620004cb565b620000b2906302faf080620004e3565b6200015d739fed62571ebc61318f2810c389fd3871f2bfe2af6200014d6012600a620004cb565b620000b29063017d7840620004e3565b6200018473cc9b1b7971496d64652970a9e5423430fc1e65ef620000df6012600a620004cb565b620001ab7395e96ed0cffc9b6cc79c10f5e6200d5e8630bb67620001166012600a620004cb565b620001d273ee975b502748488bec096b1ca192714e51f88de8620001166012600a620004cb565b6200055d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000297919062000505565b90915550506001600160a01b03821660009081526001602052604081208054839290620002c690849062000505565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200031e9062000520565b90600052602060002090601f0160209004810192826200034257600085556200038d565b82601f106200035d57805160ff19168380011785556200038d565b828001600101855582156200038d579182015b828111156200038d57825182559160200191906001019062000370565b506200039b9291506200039f565b5090565b5b808211156200039b5760008155600101620003a0565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200040d578160001904821115620003f157620003f1620003b6565b80851615620003ff57918102915b93841c9390800290620003d1565b509250929050565b6000826200042657506001620004c5565b816200043557506000620004c5565b81600181146200044e5760028114620004595762000479565b6001915050620004c5565b60ff8411156200046d576200046d620003b6565b50506001821b620004c5565b5060208310610133831016604e8410600b84101617156200049e575081810a620004c5565b620004aa8383620003cc565b8060001904821115620004c157620004c1620003b6565b0290505b92915050565b6000620004dc60ff84168362000415565b9392505050565b6000816000190483118215151615620005005762000500620003b6565b500290565b600082198211156200051b576200051b620003b6565b500190565b600181811c908216806200053557607f821691505b602082108114156200055757634e487b7160e01b600052602260045260246000fd5b50919050565b610e5a806200056d6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806359297dbf116100b85780638da5cb5b1161007c5780638da5cb5b1461023957806395d89b4114610254578063a457c2d71461025c578063a9059cbb1461026f578063dd62ed3e14610282578063f2fde38b146102bb57600080fd5b806359297dbf1461020057806370a0823114610208578063715018a61461023157806373fba0e8146102005780637e50c6441461020057600080fd5b80632c04fee91161010a5780632c04fee9146101b9578063313ce567146101c157806339509351146101d05780633e85713d146101e357806342966c68146101eb578063550e8867146101e357600080fd5b806306fdde0314610147578063095ea7b3146101655780630ea349271461018857806318160ddd1461019e57806323b872dd146101a6575b600080fd5b61014f6102ce565b60405161015c9190610b4d565b60405180910390f35b610178610173366004610bbe565b610360565b604051901515815260200161015c565b610190610377565b60405190815260200161015c565b600354610190565b6101786101b4366004610be8565b610394565b610190610443565b6040516012815260200161015c565b6101786101de366004610bbe565b61045d565b610190610499565b6101fe6101f9366004610c24565b6104b3565b005b6101906104c0565b610190610216366004610c3d565b6001600160a01b031660009081526001602052604090205490565b6101fe6104da565b6000546040516001600160a01b03909116815260200161015c565b61014f6104ee565b61017861026a366004610bbe565b6104fd565b61017861027d366004610bbe565b610596565b610190610290366004610c5f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fe6102c9366004610c3d565b6105a3565b6060600480546102dd90610c92565b80601f016020809104026020016040519081016040528092919081815260200182805461030990610c92565b80156103565780601f1061032b57610100808354040283529160200191610356565b820191906000526020600020905b81548152906001019060200180831161033957829003601f168201915b5050505050905090565b600061036d338484610619565b5060015b92915050565b6103836012600a610dc7565b610391906307735940610dd6565b81565b60006103a184848461073e565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104388533858403610619565b506001949350505050565b61044f6012600a610dc7565b6103919063017d7840610dd6565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161036d918590610494908690610df5565b610619565b6104a56012600a610dc7565b610391906305f5e100610dd6565b6104bd338261095d565b50565b6104cc6012600a610dc7565b610391906302faf080610dd6565b6104e2610aa3565b6104ec6000610afd565b565b6060600580546102dd90610c92565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561057f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610422565b61058c3385858403610619565b5060019392505050565b600061036d33848461073e565b6105ab610aa3565b6001600160a01b0381166106105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b6104bd81610afd565b6001600160a01b03831661067b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b0382166106dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000811161078e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610422565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b0382166108545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b6001600160a01b038316600090815260016020526040902054818110156108cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610903908490610df5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094f91815260200190565b60405180910390a350505050565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610422565b6001600160a01b03821660009081526001602052604090205481811015610a315760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610422565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a60908490610e0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610731565b6000546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610422565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b7a57858101830151858201604001528201610b5e565b81811115610b8c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bb957600080fd5b919050565b60008060408385031215610bd157600080fd5b610bda83610ba2565b946020939093013593505050565b600080600060608486031215610bfd57600080fd5b610c0684610ba2565b9250610c1460208501610ba2565b9150604084013590509250925092565b600060208284031215610c3657600080fd5b5035919050565b600060208284031215610c4f57600080fd5b610c5882610ba2565b9392505050565b60008060408385031215610c7257600080fd5b610c7b83610ba2565b9150610c8960208401610ba2565b90509250929050565b600181811c90821680610ca657607f821691505b60208210811415610cc757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610d1e578160001904821115610d0457610d04610ccd565b80851615610d1157918102915b93841c9390800290610ce8565b509250929050565b600082610d3557506001610371565b81610d4257506000610371565b8160018114610d585760028114610d6257610d7e565b6001915050610371565b60ff841115610d7357610d73610ccd565b50506001821b610371565b5060208310610133831016604e8410600b8410161715610da1575081810a610371565b610dab8383610ce3565b8060001904821115610dbf57610dbf610ccd565b029392505050565b6000610c5860ff841683610d26565b6000816000190483118215151615610df057610df0610ccd565b500290565b60008219821115610e0857610e08610ccd565b500190565b600082821015610e1f57610e1f610ccd565b50039056fea26469706673582212204df7c4edd55942fcd0b6de3605f62068021433ddd665dcedb8a2806010fa14c364736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806359297dbf116100b85780638da5cb5b1161007c5780638da5cb5b1461023957806395d89b4114610254578063a457c2d71461025c578063a9059cbb1461026f578063dd62ed3e14610282578063f2fde38b146102bb57600080fd5b806359297dbf1461020057806370a0823114610208578063715018a61461023157806373fba0e8146102005780637e50c6441461020057600080fd5b80632c04fee91161010a5780632c04fee9146101b9578063313ce567146101c157806339509351146101d05780633e85713d146101e357806342966c68146101eb578063550e8867146101e357600080fd5b806306fdde0314610147578063095ea7b3146101655780630ea349271461018857806318160ddd1461019e57806323b872dd146101a6575b600080fd5b61014f6102ce565b60405161015c9190610b4d565b60405180910390f35b610178610173366004610bbe565b610360565b604051901515815260200161015c565b610190610377565b60405190815260200161015c565b600354610190565b6101786101b4366004610be8565b610394565b610190610443565b6040516012815260200161015c565b6101786101de366004610bbe565b61045d565b610190610499565b6101fe6101f9366004610c24565b6104b3565b005b6101906104c0565b610190610216366004610c3d565b6001600160a01b031660009081526001602052604090205490565b6101fe6104da565b6000546040516001600160a01b03909116815260200161015c565b61014f6104ee565b61017861026a366004610bbe565b6104fd565b61017861027d366004610bbe565b610596565b610190610290366004610c5f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fe6102c9366004610c3d565b6105a3565b6060600480546102dd90610c92565b80601f016020809104026020016040519081016040528092919081815260200182805461030990610c92565b80156103565780601f1061032b57610100808354040283529160200191610356565b820191906000526020600020905b81548152906001019060200180831161033957829003601f168201915b5050505050905090565b600061036d338484610619565b5060015b92915050565b6103836012600a610dc7565b610391906307735940610dd6565b81565b60006103a184848461073e565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104388533858403610619565b506001949350505050565b61044f6012600a610dc7565b6103919063017d7840610dd6565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161036d918590610494908690610df5565b610619565b6104a56012600a610dc7565b610391906305f5e100610dd6565b6104bd338261095d565b50565b6104cc6012600a610dc7565b610391906302faf080610dd6565b6104e2610aa3565b6104ec6000610afd565b565b6060600580546102dd90610c92565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561057f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610422565b61058c3385858403610619565b5060019392505050565b600061036d33848461073e565b6105ab610aa3565b6001600160a01b0381166106105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b6104bd81610afd565b6001600160a01b03831661067b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b0382166106dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000811161078e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610422565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b0382166108545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b6001600160a01b038316600090815260016020526040902054818110156108cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610903908490610df5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161094f91815260200190565b60405180910390a350505050565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610422565b6001600160a01b03821660009081526001602052604090205481811015610a315760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610422565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a60908490610e0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610731565b6000546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610422565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b7a57858101830151858201604001528201610b5e565b81811115610b8c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bb957600080fd5b919050565b60008060408385031215610bd157600080fd5b610bda83610ba2565b946020939093013593505050565b600080600060608486031215610bfd57600080fd5b610c0684610ba2565b9250610c1460208501610ba2565b9150604084013590509250925092565b600060208284031215610c3657600080fd5b5035919050565b600060208284031215610c4f57600080fd5b610c5882610ba2565b9392505050565b60008060408385031215610c7257600080fd5b610c7b83610ba2565b9150610c8960208401610ba2565b90509250929050565b600181811c90821680610ca657607f821691505b60208210811415610cc757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610d1e578160001904821115610d0457610d04610ccd565b80851615610d1157918102915b93841c9390800290610ce8565b509250929050565b600082610d3557506001610371565b81610d4257506000610371565b8160018114610d585760028114610d6257610d7e565b6001915050610371565b60ff841115610d7357610d73610ccd565b50506001821b610371565b5060208310610133831016604e8410600b8410161715610da1575081810a610371565b610dab8383610ce3565b8060001904821115610dbf57610dbf610ccd565b029392505050565b6000610c5860ff841683610d26565b6000816000190483118215151615610df057610df0610ccd565b500290565b60008219821115610e0857610e08610ccd565b500190565b600082821015610e1f57610e1f610ccd565b50039056fea26469706673582212204df7c4edd55942fcd0b6de3605f62068021433ddd665dcedb8a2806010fa14c364736f6c63430008090033

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.