ETH Price: $1,822.75 (-14.98%)
 

Overview

Max Total Supply

10,000,000,000 MMON

Holders

242

Transfers

-
4 ( 33.33%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
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 presaleReserve = 5_000_000_000 * (10 ** _decimals);
  uint256 public constant stakingReserve = 2_000_000_000 * (10 ** _decimals);
  uint256 public constant projectDevReserve = 750_000_000 * (10 ** _decimals);
  uint256 public constant liquidityReserve = 750_000_000 * (10 ** _decimals);
  uint256 public constant marketingReserve = 1_000_000_000 * (10 ** _decimals);
  uint256 public constant chainInventoryReserve = 500_000_000 * (10 ** _decimals);
  
  

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'Multiverse Monkey';
    _symbol = 'MMON';
    _mint(0x1886bd03cB0cD0D4Fa52aC0Cdb401727551c3e5b, presaleReserve);
    _mint(0xd39aaA6097e32147331806C595B31fE3B9061f23, stakingReserve);
    _mint(0xAc24e9b16479370caf2ddc6A82807Db6eb74ed96, projectDevReserve);
    _mint(0x52364AD691eC3E3aF8c9c8c6B995924a8C397A28, liquidityReserve);
    _mint(0xd27724c7191CD8a8FAD713480498952BefF5844e, marketingReserve);
    _mint(0x5b39db7B1962b0a47421783c62fCc85Fe60984b8, chainInventoryReserve);
  }

  /**
   * @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":[{"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":"chainInventoryReserve","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":[{"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":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectDevReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","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"}]

60806040523480156200001157600080fd5b506200001d33620001cd565b604080518082019091526011808252704d756c74697665727365204d6f6e6b657960781b6020909201918252620000579160049162000305565b506040805180820190915260048082526326a6a7a760e11b6020909201918252620000859160059162000305565b50620000c4731886bd03cb0cd0d4fa52ac0cdb401727551c3e5b620000ad6012600a620004c0565b620000be9064012a05f200620004d8565b6200021d565b620000fb73d39aaa6097e32147331806c595b31fe3b9061f23620000eb6012600a620004c0565b620000be906377359400620004d8565b6200013273ac24e9b16479370caf2ddc6a82807db6eb74ed96620001226012600a620004c0565b620000be90632cb41780620004d8565b620001597352364ad691ec3e3af8c9c8c6b995924a8c397a28620001226012600a620004c0565b6200019073d27724c7191cd8a8fad713480498952beff5844e620001806012600a620004c0565b620000be90633b9aca00620004d8565b620001c7735b39db7b1962b0a47421783c62fcc85fe60984b8620001b76012600a620004c0565b620000be90631dcd6500620004d8565b62000552565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200028c9190620004fa565b90915550506001600160a01b03821660009081526001602052604081208054839290620002bb908490620004fa565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620003139062000515565b90600052602060002090601f01602090048101928262000337576000855562000382565b82601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000402578160001904821115620003e657620003e6620003ab565b80851615620003f457918102915b93841c9390800290620003c6565b509250929050565b6000826200041b57506001620004ba565b816200042a57506000620004ba565b81600181146200044357600281146200044e576200046e565b6001915050620004ba565b60ff841115620004625762000462620003ab565b50506001821b620004ba565b5060208310610133831016604e8410600b841016171562000493575081810a620004ba565b6200049f8383620003c1565b8060001904821115620004b657620004b6620003ab565b0290505b92915050565b6000620004d160ff8416836200040a565b9392505050565b6000816000190483118215151615620004f557620004f5620003ab565b500290565b60008219821115620005105762000510620003ab565b500190565b600181811c908216806200052a57607f821691505b602082108114156200054c57634e487b7160e01b600052602260045260246000fd5b50919050565b610e7280620005626000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063456c3d08116100b8578063a457c2d71161007c578063a457c2d714610251578063a9059cbb14610264578063b61d43b114610277578063b753bfe9146101f5578063dd62ed3e1461027f578063f2fde38b146102b857600080fd5b8063456c3d08146101f557806370a08231146101fd578063715018a6146102265780638da5cb5b1461022e57806395d89b411461024957600080fd5b8063313ce567116100ff578063313ce567146101ae57806333f9e9c7146101bd57806339509351146101c55780633e85713d146101d857806342966c68146101e057600080fd5b806306fdde031461013c578063095ea7b31461015a5780630c900e901461017d57806318160ddd1461019357806323b872dd1461019b575b600080fd5b6101446102cb565b6040516101519190610b65565b60405180910390f35b61016d610168366004610bd6565b61035d565b6040519015158152602001610151565b610185610374565b604051908152602001610151565b600354610185565b61016d6101a9366004610c00565b610392565b60405160128152602001610151565b610185610441565b61016d6101d3366004610bd6565b61045b565b610185610497565b6101f36101ee366004610c3c565b6104b1565b005b6101856104be565b61018561020b366004610c55565b6001600160a01b031660009081526001602052604090205490565b6101f36104d8565b6000546040516001600160a01b039091168152602001610151565b6101446104ec565b61016d61025f366004610bd6565b6104fb565b61016d610272366004610bd6565b610594565b6101856105a1565b61018561028d366004610c77565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f36102c6366004610c55565b6105bb565b6060600480546102da90610caa565b80601f016020809104026020016040519081016040528092919081815260200182805461030690610caa565b80156103535780601f1061032857610100808354040283529160200191610353565b820191906000526020600020905b81548152906001019060200180831161033657829003601f168201915b5050505050905090565b600061036a338484610631565b5060015b92915050565b6103806012600a610ddf565b61038f9064012a05f200610dee565b81565b600061039f848484610756565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104368533858403610631565b506001949350505050565b61044d6012600a610ddf565b61038f90631dcd6500610dee565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161036a918590610492908690610e0d565b610631565b6104a36012600a610ddf565b61038f90633b9aca00610dee565b6104bb3382610975565b50565b6104ca6012600a610ddf565b61038f90632cb41780610dee565b6104e0610abb565b6104ea6000610b15565b565b6060600580546102da90610caa565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561057d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610420565b61058a3385858403610631565b5060019392505050565b600061036a338484610756565b6105ad6012600a610ddf565b61038f906377359400610dee565b6105c3610abb565b6001600160a01b0381166106285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610420565b6104bb81610b15565b6001600160a01b0383166106935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610420565b6001600160a01b0382166106f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610420565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116107a65760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610420565b6001600160a01b03831661080a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610420565b6001600160a01b03821661086c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610420565b6001600160a01b038316600090815260016020526040902054818110156108e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610420565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061091b908490610e0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096791815260200190565b60405180910390a350505050565b6001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610420565b6001600160a01b03821660009081526001602052604090205481811015610a495760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610420565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a78908490610e25565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610749565b6000546001600160a01b031633146104ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610420565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b9257858101830151858201604001528201610b76565b81811115610ba4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bd157600080fd5b919050565b60008060408385031215610be957600080fd5b610bf283610bba565b946020939093013593505050565b600080600060608486031215610c1557600080fd5b610c1e84610bba565b9250610c2c60208501610bba565b9150604084013590509250925092565b600060208284031215610c4e57600080fd5b5035919050565b600060208284031215610c6757600080fd5b610c7082610bba565b9392505050565b60008060408385031215610c8a57600080fd5b610c9383610bba565b9150610ca160208401610bba565b90509250929050565b600181811c90821680610cbe57607f821691505b60208210811415610cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610d36578160001904821115610d1c57610d1c610ce5565b80851615610d2957918102915b93841c9390800290610d00565b509250929050565b600082610d4d5750600161036e565b81610d5a5750600061036e565b8160018114610d705760028114610d7a57610d96565b600191505061036e565b60ff841115610d8b57610d8b610ce5565b50506001821b61036e565b5060208310610133831016604e8410600b8410161715610db9575081810a61036e565b610dc38383610cfb565b8060001904821115610dd757610dd7610ce5565b029392505050565b6000610c7060ff841683610d3e565b6000816000190483118215151615610e0857610e08610ce5565b500290565b60008219821115610e2057610e20610ce5565b500190565b600082821015610e3757610e37610ce5565b50039056fea26469706673582212209c9108292a45831cc9302f3d6bf10d0beb33d5ceaed18d6dd69d223aff1e852d64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063456c3d08116100b8578063a457c2d71161007c578063a457c2d714610251578063a9059cbb14610264578063b61d43b114610277578063b753bfe9146101f5578063dd62ed3e1461027f578063f2fde38b146102b857600080fd5b8063456c3d08146101f557806370a08231146101fd578063715018a6146102265780638da5cb5b1461022e57806395d89b411461024957600080fd5b8063313ce567116100ff578063313ce567146101ae57806333f9e9c7146101bd57806339509351146101c55780633e85713d146101d857806342966c68146101e057600080fd5b806306fdde031461013c578063095ea7b31461015a5780630c900e901461017d57806318160ddd1461019357806323b872dd1461019b575b600080fd5b6101446102cb565b6040516101519190610b65565b60405180910390f35b61016d610168366004610bd6565b61035d565b6040519015158152602001610151565b610185610374565b604051908152602001610151565b600354610185565b61016d6101a9366004610c00565b610392565b60405160128152602001610151565b610185610441565b61016d6101d3366004610bd6565b61045b565b610185610497565b6101f36101ee366004610c3c565b6104b1565b005b6101856104be565b61018561020b366004610c55565b6001600160a01b031660009081526001602052604090205490565b6101f36104d8565b6000546040516001600160a01b039091168152602001610151565b6101446104ec565b61016d61025f366004610bd6565b6104fb565b61016d610272366004610bd6565b610594565b6101856105a1565b61018561028d366004610c77565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f36102c6366004610c55565b6105bb565b6060600480546102da90610caa565b80601f016020809104026020016040519081016040528092919081815260200182805461030690610caa565b80156103535780601f1061032857610100808354040283529160200191610353565b820191906000526020600020905b81548152906001019060200180831161033657829003601f168201915b5050505050905090565b600061036a338484610631565b5060015b92915050565b6103806012600a610ddf565b61038f9064012a05f200610dee565b81565b600061039f848484610756565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104368533858403610631565b506001949350505050565b61044d6012600a610ddf565b61038f90631dcd6500610dee565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161036a918590610492908690610e0d565b610631565b6104a36012600a610ddf565b61038f90633b9aca00610dee565b6104bb3382610975565b50565b6104ca6012600a610ddf565b61038f90632cb41780610dee565b6104e0610abb565b6104ea6000610b15565b565b6060600580546102da90610caa565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561057d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610420565b61058a3385858403610631565b5060019392505050565b600061036a338484610756565b6105ad6012600a610ddf565b61038f906377359400610dee565b6105c3610abb565b6001600160a01b0381166106285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610420565b6104bb81610b15565b6001600160a01b0383166106935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610420565b6001600160a01b0382166106f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610420565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116107a65760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610420565b6001600160a01b03831661080a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610420565b6001600160a01b03821661086c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610420565b6001600160a01b038316600090815260016020526040902054818110156108e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610420565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061091b908490610e0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096791815260200190565b60405180910390a350505050565b6001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610420565b6001600160a01b03821660009081526001602052604090205481811015610a495760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610420565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a78908490610e25565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610749565b6000546001600160a01b031633146104ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610420565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b9257858101830151858201604001528201610b76565b81811115610ba4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610bd157600080fd5b919050565b60008060408385031215610be957600080fd5b610bf283610bba565b946020939093013593505050565b600080600060608486031215610c1557600080fd5b610c1e84610bba565b9250610c2c60208501610bba565b9150604084013590509250925092565b600060208284031215610c4e57600080fd5b5035919050565b600060208284031215610c6757600080fd5b610c7082610bba565b9392505050565b60008060408385031215610c8a57600080fd5b610c9383610bba565b9150610ca160208401610bba565b90509250929050565b600181811c90821680610cbe57607f821691505b60208210811415610cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610d36578160001904821115610d1c57610d1c610ce5565b80851615610d2957918102915b93841c9390800290610d00565b509250929050565b600082610d4d5750600161036e565b81610d5a5750600061036e565b8160018114610d705760028114610d7a57610d96565b600191505061036e565b60ff841115610d8b57610d8b610ce5565b50506001821b61036e565b5060208310610133831016604e8410600b8410161715610db9575081810a61036e565b610dc38383610cfb565b8060001904821115610dd757610dd7610ce5565b029392505050565b6000610c7060ff841683610d3e565b6000816000190483118215151615610e0857610e08610ce5565b500290565b60008219821115610e2057610e20610ce5565b500190565b600082821015610e3757610e37610ce5565b50039056fea26469706673582212209c9108292a45831cc9302f3d6bf10d0beb33d5ceaed18d6dd69d223aff1e852d64736f6c63430008090033

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.