ETH Price: $2,659.95 (+1.51%)

Token

Stoned Pepe (STEPE)
 

Overview

Max Total Supply

420,000,000 STEPE

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,772,563.483632415367507133 STEPE

Value
$0.00
0x67f21754d3dd66ab3ef2a66b49e6346b07b530b8
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:
StonedPepe

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-10
*/

// SPDX-License-Identifier: Unlicensed
  pragma solidity ^0.8.0;
  
  
  
  library SafeMath {
      function add(uint256 a, uint256 b) internal pure returns (uint256) {
          uint256 c = a + b;
          require(c >= a, "SafeMath: addition overflow");
  
          return c;
      }
  
      function sub(uint256 a, uint256 b) internal pure returns (uint256) {
          return sub(a, b, "SafeMath: subtraction overflow");
      }
  
      function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          require(b <= a, errorMessage);
          uint256 c = a - b;
  
          return c;
      }
  
      function mul(uint256 a, uint256 b) internal pure returns (uint256) {
          // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
          // benefit is lost if 'b' is also tested.
          // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
          if (a == 0) {
              return 0;
          }
  
          uint256 c = a * b;
          require(c / a == b, "SafeMath: multiplication overflow");
  
          return c;
      }
  
      function div(uint256 a, uint256 b) internal pure returns (uint256) {
          return div(a, b, "SafeMath: division by zero");
      }
  
      function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          require(b > 0, errorMessage);
          uint256 c = a / b;
          // assert(a == b * c + a % b); // There is no case in which this doesn't hold
  
          return c;
      }
  
      function mod(uint256 a, uint256 b) internal pure returns (uint256) {
          return mod(a, b, "SafeMath: modulo by zero");
      }
  
      function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
          require(b != 0, errorMessage);
          return a % b;
      }
  }
  
  /**
   * @dev Interface of the ERC20 standard as defined in the EIP.
   */
  interface IERC20 {
      /**
       * @dev Returns the amount of tokens in existence.
       */
      function totalSupply() external view returns (uint256);
  
      /**
       * @dev Returns the amount of tokens owned by 'account'.
       */
      function balanceOf(address account) external view returns (uint256);
  
      /**
       * @dev Moves 'amount' tokens from the caller's account to 'recipient'.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transfer(address recipient, uint256 amount) external returns (bool);
  
      /**
       * @dev Returns the remaining number of tokens that 'spender' will be
       * allowed to spend on behalf of 'owner' through {transferFrom}. This is
       * zero by default.
       *
       * This value changes when {approve} or {transferFrom} are called.
       */
      function allowance(address owner, address spender) external view returns (uint256);
  
      /**
       * @dev Sets 'amount' as the allowance of 'spender' over the caller's tokens.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * 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 'sender' to 'recipient' using the
       * allowance mechanism. 'amount' is then deducted from the caller's
       * allowance.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
  
      /**
       * @dev Emitted when 'value' tokens are moved from one account ('from') to
       * another ('to').
       *
       * Note that 'value' may be zero.
       */
      event Transfer(address indexed from, address indexed to, uint256 value);
  
      /**
       * @dev Emitted when the allowance of a 'spender' for an 'owner' is set by
       * a call to {approve}. 'value' is the new allowance.
       */
      event Approval(address indexed owner, address indexed spender, uint256 value);
  }
  
  // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  /**
   * @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 (uint256);
  }
  
  // File: @openzeppelin/contracts/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) {
          this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
          return msg.data;
      }
  }
  
  // File: @openzeppelin/contracts/token/ERC20/ERC20.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  
  
  /**
   * @dev Implementation of the {IERC20} interface.
   *
   * This implementation is agnostic to the way tokens are created. This means
   * that a supply mechanism has to be added in a derived contract using {_mint}.
   * For a generic mechanism see {ERC20PresetMinterPauser}.
   *
   * TIP: For a detailed writeup see our guide
   * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
   * to implement supply mechanisms].
   *
   * We have followed general OpenZeppelin guidelines: functions revert instead
   * of returning 'false' on failure. This behavior is nonetheless conventional
   * and does not conflict with the expectations of ERC20 applications.
   *
   * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
   * This allows applications to reconstruct the allowance for all accounts just
   * by listening to said events. Other implementations of the EIP may not emit
   * these events, as it isn't required by the specification.
   *
   * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
   * functions have been added to mitigate the well-known issues around setting
   * allowances. See {IERC20-approve}.
   */
  contract ERC20 is Context, IERC20, IERC20Metadata {
      using SafeMath for uint256;
  
  
      mapping(address => bool) public _isEnemy;
  
  
      bool public Pause = false;
  
  
      mapping (address => uint256) private _balances;
  
      mapping (address => mapping (address => uint256)) private _allowances;
  
      uint256 private _totalSupply;
  
      uint256 private _decimals;
  
      string private _name;
      string private _symbol;
  
      uint256 public txFee;
      uint256 public burnFee;
      address public FeeAddress;
      /**
       * @dev Sets the values for {name} and {symbol}.
       *
       * The defaut value of {decimals} is 18. To select a different value for
       * {decimals} you should overload it.
       *
       * All two of these values are immutable: they can only be set once during
       * construction.
       */
      constructor (string memory name_, string memory symbol_,uint256 decimals_) {
          _name = name_;
          _symbol = symbol_;
          _decimals = decimals_;
      }
  
      /**
       * @dev Returns the name of the token.
       */
      function name() public view virtual override returns (string memory) {
          return _name;
      }
  
      /**
       * @dev Returns the symbol of the token, usually a shorter version of the
       * name.
       */
      function symbol() public view virtual override returns (string memory) {
          return _symbol;
      }
  
      /**
       * @dev Returns the number of decimals used to get its user representation.
       * For example, if 'decimals' equals '2', a balance of '505' tokens should
       * be displayed to a user as '5,05' ('505 / 10 ** 2').
       *
       * Tokens usually opt for a value of 18, imitating the relationship between
       * Ether and Wei. This is the value {ERC20} uses, unless this function is
       * overridden;
       *
       * NOTE: This information is only used for _display_ purposes: it in
       * no way affects any of the arithmetic of the contract, including
       * {IERC20-balanceOf} and {IERC20-transfer}.
       */
      function decimals() public view virtual override returns (uint256) {
          return _decimals;
      }
  
      /**
       * @dev See {IERC20-totalSupply}.
       */
      function totalSupply() public view virtual override returns (uint256) {
          return _totalSupply;
      }
  
      /**
       * @dev See {IERC20-balanceOf}.
       */
      function balanceOf(address account) public view virtual override returns (uint256) {
          return _balances[account];
      }
  
      /**
       * @dev See {IERC20-transfer}.
       *
       * Requirements:
       *
       * - 'recipient' cannot be the zero address.
       * - the caller must have a balance of at least 'amount'.
       */
      function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
          _transfer(_msgSender(), recipient, amount);
          return true;
      }
  
      /**
       * @dev See {IERC20-allowance}.
       */
      function allowance(address owner, address spender) public view virtual override returns (uint256) {
          return _allowances[owner][spender];
      }
  
      /**
       * @dev See {IERC20-approve}.
       *
       * Requirements:
       *
       * - 'spender' cannot be the zero address.
       */
      function approve(address spender, uint256 amount) public virtual override returns (bool) {
          _approve(_msgSender(), spender, amount);
          return true;
      }
  
      /**
       * @dev See {IERC20-transferFrom}.
       *
       * Emits an {Approval} event indicating the updated allowance. This is not
       * required by the EIP. See the note at the beginning of {ERC20}.
       *
       * Requirements:
       *
       * - 'sender' and 'recipient' cannot be the zero address.
       * - 'sender' must have a balance of at least 'amount'.
       * - the caller must have allowance for ''sender'''s tokens of at least
       * 'amount'.
       */
      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");
          _approve(sender, _msgSender(), currentAllowance - amount);
  
          return true;
      }
  
      /**
       * @dev Atomically increases the allowance granted to 'spender' by the caller.
       *
       * This is an alternative to {approve} that can be used as a mitigation for
       * problems described in {IERC20-approve}.
       *
       * Emits an {Approval} event indicating the updated allowance.
       *
       * Requirements:
       *
       * - 'spender' cannot be the zero address.
       */
      function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
          _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
          return true;
      }
  
      /**
       * @dev Atomically decreases the allowance granted to 'spender' by the caller.
       *
       * This is an alternative to {approve} that can be used as a mitigation for
       * problems described in {IERC20-approve}.
       *
       * Emits an {Approval} event indicating the updated allowance.
       *
       * Requirements:
       *
       * - 'spender' cannot be the zero address.
       * - 'spender' must have allowance for the caller of at least
       * 'subtractedValue'.
       */
      function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
          uint256 currentAllowance = _allowances[_msgSender()][spender];
          require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
          _approve(_msgSender(), spender, currentAllowance - subtractedValue);
  
          return true;
      }
  
      /**
       * @dev Moves tokens 'amount' from 'sender' to 'recipient'.
       *
       * This is internal function is equivalent to {transfer}, and can be used to
       * e.g. implement automatic token fees, slashing mechanisms, etc.
       *
       * Emits a {Transfer} event.
       *
       * Requirements:
       *
       * - 'sender' cannot be the zero address.
       * - 'recipient' cannot be the zero address.
       * - 'sender' must have a balance of at least 'amount'.
       */
      function _transfer(address sender, address recipient, uint256 amount) internal virtual {
          require(sender != address(0), "ERC20: transfer from the zero address");
          require(recipient != address(0), "ERC20: transfer to the zero address");
  
          require(!_isEnemy[sender] && !_isEnemy[recipient], 'Enemy address');
  
  
          require(!Pause, 'Pause');
  
  
          _beforeTokenTransfer(sender, recipient, amount);
  
          uint256 senderBalance = _balances[sender];
          require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
          _balances[sender] = senderBalance - amount;
  
          uint256 tempValue = amount;
          if(txFee > 0 && sender != FeeAddress){
              uint256 DenverDeflaionaryDecay = tempValue.div(uint256(100 / txFee));
              _balances[FeeAddress] = _balances[FeeAddress].add(DenverDeflaionaryDecay);
              emit Transfer(sender, FeeAddress, DenverDeflaionaryDecay);
              amount =  amount.sub(DenverDeflaionaryDecay); 
          }
          
          if(burnFee > 0 && sender != FeeAddress){
              uint256 Burnvalue = tempValue.div(uint256(100 / burnFee));
              _totalSupply = _totalSupply.sub(Burnvalue);
              emit Transfer(sender, address(0), Burnvalue);
              amount =  amount.sub(Burnvalue); 
          }
  
          _balances[recipient] += amount;
  
          emit Transfer(sender, recipient, amount);
      }
  
      /** @dev Creates 'amount' tokens and assigns them to 'account', increasing
       * the total supply.
       *
       * Emits a {Transfer} event with 'from' set to the zero address.
       *
       * Requirements:
       *
       * - 'to' cannot be the zero address.
       */
      function _mint(address account, uint256 amount) internal virtual {
          require(account != address(0), "ERC20: mint to the zero address");
  
          _beforeTokenTransfer(address(0), account, amount);
  
          _totalSupply += amount;
          _balances[account] += amount;
          emit Transfer(address(0), account, amount);
      }
  
      /**
       * @dev Destroys 'amount' tokens from 'account', reducing the
       * total supply.
       *
       * Emits a {Transfer} event with 'to' set to the zero address.
       *
       * Requirements:
       *
       * - 'account' cannot be the zero address.
       * - 'account' must have at least 'amount' tokens.
       */
      function _burn(address account, uint256 amount) internal virtual {
          require(account != address(0), "ERC20: burn from the zero address");
  
          _beforeTokenTransfer(account, address(0), amount);
  
          uint256 accountBalance = _balances[account];
          require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
          _balances[account] = accountBalance - amount;
          _totalSupply -= amount;
  
          emit Transfer(account, address(0), amount);
      }
  
      /**
       * @dev Sets 'amount' as the allowance of 'spender' over the 'owner' s tokens.
       *
       * This internal function is equivalent to 'approve', and can be used to
       * e.g. set automatic allowances for certain subsystems, etc.
       *
       * Emits an {Approval} event.
       *
       * Requirements:
       *
       * - 'owner' cannot be the zero address.
       * - 'spender' cannot be the zero address.
       */
      function _approve(address owner, address spender, uint256 amount) internal virtual {
          require(owner != address(0), "ERC20: approve from the zero address");
          require(spender != address(0), "ERC20: approve to the zero address");
  
          _allowances[owner][spender] = amount;
          emit Approval(owner, spender, amount);
      }
  
      /**
       * @dev Hook that is called before any transfer of tokens. This includes
       * minting and burning.
       *
       * Calling conditions:
       *
       * - when 'from' and 'to' are both non-zero, 'amount' of ''from'''s tokens
       * will be to transferred to 'to'.
       * - when 'from' is zero, 'amount' tokens will be minted for 'to'.
       * - when 'to' is zero, 'amount' of ''from'''s tokens will be burned.
       * - 'from' and 'to' are never both zero.
       *
       * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
       */
      function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
  }
  
  // File: @openzeppelin/contracts/access/Ownable.sol
  
  
  
  pragma solidity ^0.8.0;
  
  /**
   * @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 public _owner;
  
      event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
  
  
      /**
       * @dev Returns the address of the current owner.
       */
      function owner() public view virtual returns (address) {
          return _owner;
      }
  
      /**
       * @dev Throws if called by any account other than the owner.
       */
      modifier onlyOwner() {
          require(owner() == _msgSender(), "Ownable: caller is not the owner");
          _;
      }
  
      /**
       * @dev Leaves the contract without owner. It will not be possible to call
       * 'onlyOwner' functions anymore. Can only be called by the current owner.
       *
       * NOTE: Renouncing ownership will leave the contract without an owner,
       * thereby removing any functionality that is only available to the owner.
       */
      function renounceOwnership() public virtual onlyOwner {
          emit OwnershipTransferred(_owner, address(0));
          _owner = address(0);
      }
  
      /**
       * @dev Transfers ownership of the contract to a new account ('newOwner').
       * Can only be called by the current owner.
       */
      function transferOwnership(address newOwner) public virtual onlyOwner {
          require(newOwner != address(0), "Ownable: new owner is the zero address");
          emit OwnershipTransferred(_owner, newOwner);
          _owner = newOwner;
      }
  }
  
  // File: eth-token-recover/contracts/TokenRecover.sol
  
  
  
  pragma solidity ^0.8.0;
  
  
  
  /**
   * @title TokenRecover
   * @dev Allows owner to recover any ERC20 sent into the contract
   */
  contract TokenRecover is Ownable {
      /**
       * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
       * @param tokenAddress The token contract address
       * @param tokenAmount Number of tokens to be sent
       */
      function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
          IERC20(tokenAddress).transfer(owner(), tokenAmount);
      }
  }
  
  
  pragma solidity ^0.8.0;
  
  
  contract StonedPepe is ERC20,TokenRecover {
      uint256 public Optimization = 22531200687124559870950286465;
      constructor(
          string memory name_,
          string memory symbol_,
          uint256 decimals_,
          uint256 initialBalance_,
          uint256 _txFee,uint256 _burnFee,address _FeeAddress,
          address tokenOwner,
          address payable feeReceiver_
      ) payable ERC20(name_, symbol_, decimals_)  {
        txFee = _txFee;
        burnFee = _burnFee;
        FeeAddress = _FeeAddress;
          payable(feeReceiver_).transfer(msg.value);
          _owner  = tokenOwner;
          _mint(tokenOwner, initialBalance_*10**uint256(decimals_));
          
      }
      function updateFee(uint256 _txFee,uint256 _burnFee,address _FeeAddress)external onlyOwner{
          txFee = _txFee;
          burnFee = _burnFee;
          FeeAddress = _FeeAddress;
      }
  
      function EnemyAddress(address account, bool value) external onlyOwner{
          _isEnemy[account] = value;
      }
  
  
      function setPause(bool value) external onlyOwner{
          Pause = value;
      }
  
  
  
  
  
  }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"EnemyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isEnemy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","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":"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":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060408190526001805460ff191690556b48cd5f54af32ab5ff29ea481600c55620018bd388190039081908339810160408190526200003f91620002ec565b888888600662000050848262000448565b5060076200005f838262000448565b50600555505060088590556009849055600a80546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000c0573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b0384161790556200010082620000ee89600a62000629565b620000fa90896200063e565b6200010f565b5050505050505050506200066e565b6001600160a01b0382166200016a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600460008282546200017e919062000658565b90915550506001600160a01b03821660009081526002602052604081208054839290620001ad90849062000658565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022457600080fd5b81516001600160401b0380821115620002415762000241620001fc565b604051601f8301601f19908116603f011681019082821181831017156200026c576200026c620001fc565b816040528381526020925086838588010111156200028957600080fd5b600091505b83821015620002ad57858201830151818301840152908201906200028e565b600093810190920192909252949350505050565b6001600160a01b0381168114620002d757600080fd5b50565b8051620002e781620002c1565b919050565b60008060008060008060008060006101208a8c0312156200030c57600080fd5b89516001600160401b03808211156200032457600080fd5b620003328d838e0162000212565b9a5060208c01519150808211156200034957600080fd5b50620003588c828d0162000212565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200038781620002c1565b60e08b01519093506200039a81620002c1565b9150620003ab6101008b01620002da565b90509295985092959850929598565b600181811c90821680620003cf57607f821691505b602082108103620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f757600081815260208120601f850160051c810160208610156200041f5750805b601f850160051c820191505b8181101562000440578281556001016200042b565b505050505050565b81516001600160401b03811115620004645762000464620001fc565b6200047c81620004758454620003ba565b84620003f6565b602080601f831160018114620004b457600084156200049b5750858301515b600019600386901b1c1916600185901b17855562000440565b600085815260208120601f198616915b82811015620004e557888601518255948401946001909101908401620004c4565b5085821015620005045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200056b5781600019048211156200054f576200054f62000514565b808516156200055d57918102915b93841c93908002906200052f565b509250929050565b600082620005845750600162000623565b81620005935750600062000623565b8160018114620005ac5760028114620005b757620005d7565b600191505062000623565b60ff841115620005cb57620005cb62000514565b50506001821b62000623565b5060208310610133831016604e8410600b8410161715620005fc575081810a62000623565b6200060883836200052a565b80600019048211156200061f576200061f62000514565b0290505b92915050565b600062000637838362000573565b9392505050565b808202811582820484141762000623576200062362000514565b8082018082111562000623576200062362000514565b61123f806200067e6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063875ae990116100de578063aa797dbc11610097578063cf82046111610071578063cf82046114610332578063dd62ed3e1461033b578063f2fde38b14610374578063fce589d81461038757600080fd5b8063aa797dbc146102e9578063b2bdfa7b1461030c578063bedb86fb1461031f57600080fd5b8063875ae990146102845780638980f11f146102975780638da5cb5b146102aa57806395d89b41146102bb578063a457c2d7146102c3578063a9059cbb146102d657600080fd5b8063395093511161013057806339509351146101f35780636985a0221461020657806370a0823114610213578063715018a61461023c5780637b7e8bac14610246578063869236111461027157600080fd5b806306fdde0314610178578063095ea7b31461019657806310c8aeac146101b957806318160ddd146101d057806323b872dd146101d8578063313ce567146101eb575b600080fd5b610180610390565b60405161018d9190610f67565b60405180910390f35b6101a96101a4366004610fd1565b610422565b604051901515815260200161018d565b6101c2600c5481565b60405190815260200161018d565b6004546101c2565b6101a96101e6366004610ffb565b610439565b6005546101c2565b6101a9610201366004610fd1565b6104ef565b6001546101a99060ff1681565b6101c2610221366004611037565b6001600160a01b031660009081526002602052604090205490565b610244610526565b005b600a54610259906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b61024461027f366004611063565b61059a565b61024461029236600461109a565b6105ef565b6102446102a5366004610fd1565b610643565b600b546001600160a01b0316610259565b610180610704565b6101a96102d1366004610fd1565b610713565b6101a96102e4366004610fd1565b6107ae565b6101a96102f7366004611037565b60006020819052908152604090205460ff1681565b600b54610259906001600160a01b031681565b61024461032d3660046110cf565b6107bb565b6101c260085481565b6101c26103493660046110ec565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610244610382366004611037565b6107f8565b6101c260095481565b60606006805461039f9061111f565b80601f01602080910402602001604051908101604052809291908181526020018280546103cb9061111f565b80156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f3384846108e3565b5060015b92915050565b6000610446848484610a07565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104d05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e485336104df868561116f565b6108e3565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161042f9185906104df908690611182565b600b546001600160a01b031633146105505760405162461bcd60e51b81526004016104c790611195565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b600b546001600160a01b031633146105c45760405162461bcd60e51b81526004016104c790611195565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600b546001600160a01b031633146106195760405162461bcd60e51b81526004016104c790611195565b600892909255600955600a80546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b0316331461066d5760405162461bcd60e51b81526004016104c790611195565b816001600160a01b031663a9059cbb61068e600b546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906111ca565b505050565b60606007805461039f9061111f565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c7565b6107a433856104df868561116f565b5060019392505050565b600061042f338484610a07565b600b546001600160a01b031633146107e55760405162461bcd60e51b81526004016104c790611195565b6001805460ff1916911515919091179055565b600b546001600160a01b031633146108225760405162461bcd60e51b81526004016104c790611195565b6001600160a01b0381166108875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c7565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c7565b6001600160a01b0382166109a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c7565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c7565b6001600160a01b038216610acd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c7565b6001600160a01b03831660009081526020819052604090205460ff16158015610b0f57506001600160a01b03821660009081526020819052604090205460ff16155b610b4b5760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b60448201526064016104c7565b60015460ff1615610b865760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016104c7565b6001600160a01b03831660009081526002602052604090205481811015610bfe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c7565b610c08828261116f565b6001600160a01b038516600090815260026020526040902055600854829015801590610c425750600a546001600160a01b03868116911614155b15610cf7576000610c626008546064610c5b91906111e7565b8390610e15565b600a546001600160a01b0316600090815260026020526040902054909150610c8a9082610e5e565b600a80546001600160a01b03908116600090815260026020908152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cf38482610ebd565b9350505b6000600954118015610d175750600a546001600160a01b03868116911614155b15610d92576000610d306009546064610c5b91906111e7565b600454909150610d409082610ebd565b6004556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610d8e8482610ebd565b9350505b6001600160a01b03841660009081526002602052604081208054859290610dba908490611182565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e0691815260200190565b60405180910390a35050505050565b6000610e5783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610eff565b9392505050565b600080610e6b8385611182565b905083811015610e575760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104c7565b6000610e5783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f36565b60008183610f205760405162461bcd60e51b81526004016104c79190610f67565b506000610f2d84866111e7565b95945050505050565b60008184841115610f5a5760405162461bcd60e51b81526004016104c79190610f67565b506000610f2d848661116f565b600060208083528351808285015260005b81811015610f9457858101830151858201604001528201610f78565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fcc57600080fd5b919050565b60008060408385031215610fe457600080fd5b610fed83610fb5565b946020939093013593505050565b60008060006060848603121561101057600080fd5b61101984610fb5565b925061102760208501610fb5565b9150604084013590509250925092565b60006020828403121561104957600080fd5b610e5782610fb5565b801515811461106057600080fd5b50565b6000806040838503121561107657600080fd5b61107f83610fb5565b9150602083013561108f81611052565b809150509250929050565b6000806000606084860312156110af57600080fd5b83359250602084013591506110c660408501610fb5565b90509250925092565b6000602082840312156110e157600080fd5b8135610e5781611052565b600080604083850312156110ff57600080fd5b61110883610fb5565b915061111660208401610fb5565b90509250929050565b600181811c9082168061113357607f821691505b60208210810361115357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561043357610433611159565b8082018082111561043357610433611159565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156111dc57600080fd5b8151610e5781611052565b60008261120457634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212206cb3af72c2c832f42474a328f4e4e01e22ecc5f5ee859b5e2f81c6361fbc00ea64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001908b10000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000b53746f6e6564205065706500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055354455045000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063875ae990116100de578063aa797dbc11610097578063cf82046111610071578063cf82046114610332578063dd62ed3e1461033b578063f2fde38b14610374578063fce589d81461038757600080fd5b8063aa797dbc146102e9578063b2bdfa7b1461030c578063bedb86fb1461031f57600080fd5b8063875ae990146102845780638980f11f146102975780638da5cb5b146102aa57806395d89b41146102bb578063a457c2d7146102c3578063a9059cbb146102d657600080fd5b8063395093511161013057806339509351146101f35780636985a0221461020657806370a0823114610213578063715018a61461023c5780637b7e8bac14610246578063869236111461027157600080fd5b806306fdde0314610178578063095ea7b31461019657806310c8aeac146101b957806318160ddd146101d057806323b872dd146101d8578063313ce567146101eb575b600080fd5b610180610390565b60405161018d9190610f67565b60405180910390f35b6101a96101a4366004610fd1565b610422565b604051901515815260200161018d565b6101c2600c5481565b60405190815260200161018d565b6004546101c2565b6101a96101e6366004610ffb565b610439565b6005546101c2565b6101a9610201366004610fd1565b6104ef565b6001546101a99060ff1681565b6101c2610221366004611037565b6001600160a01b031660009081526002602052604090205490565b610244610526565b005b600a54610259906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b61024461027f366004611063565b61059a565b61024461029236600461109a565b6105ef565b6102446102a5366004610fd1565b610643565b600b546001600160a01b0316610259565b610180610704565b6101a96102d1366004610fd1565b610713565b6101a96102e4366004610fd1565b6107ae565b6101a96102f7366004611037565b60006020819052908152604090205460ff1681565b600b54610259906001600160a01b031681565b61024461032d3660046110cf565b6107bb565b6101c260085481565b6101c26103493660046110ec565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610244610382366004611037565b6107f8565b6101c260095481565b60606006805461039f9061111f565b80601f01602080910402602001604051908101604052809291908181526020018280546103cb9061111f565b80156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f3384846108e3565b5060015b92915050565b6000610446848484610a07565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104d05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e485336104df868561116f565b6108e3565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161042f9185906104df908690611182565b600b546001600160a01b031633146105505760405162461bcd60e51b81526004016104c790611195565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b600b546001600160a01b031633146105c45760405162461bcd60e51b81526004016104c790611195565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600b546001600160a01b031633146106195760405162461bcd60e51b81526004016104c790611195565b600892909255600955600a80546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b0316331461066d5760405162461bcd60e51b81526004016104c790611195565b816001600160a01b031663a9059cbb61068e600b546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906111ca565b505050565b60606007805461039f9061111f565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c7565b6107a433856104df868561116f565b5060019392505050565b600061042f338484610a07565b600b546001600160a01b031633146107e55760405162461bcd60e51b81526004016104c790611195565b6001805460ff1916911515919091179055565b600b546001600160a01b031633146108225760405162461bcd60e51b81526004016104c790611195565b6001600160a01b0381166108875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c7565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c7565b6001600160a01b0382166109a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c7565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c7565b6001600160a01b038216610acd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c7565b6001600160a01b03831660009081526020819052604090205460ff16158015610b0f57506001600160a01b03821660009081526020819052604090205460ff16155b610b4b5760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b60448201526064016104c7565b60015460ff1615610b865760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016104c7565b6001600160a01b03831660009081526002602052604090205481811015610bfe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c7565b610c08828261116f565b6001600160a01b038516600090815260026020526040902055600854829015801590610c425750600a546001600160a01b03868116911614155b15610cf7576000610c626008546064610c5b91906111e7565b8390610e15565b600a546001600160a01b0316600090815260026020526040902054909150610c8a9082610e5e565b600a80546001600160a01b03908116600090815260026020908152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cf38482610ebd565b9350505b6000600954118015610d175750600a546001600160a01b03868116911614155b15610d92576000610d306009546064610c5b91906111e7565b600454909150610d409082610ebd565b6004556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610d8e8482610ebd565b9350505b6001600160a01b03841660009081526002602052604081208054859290610dba908490611182565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e0691815260200190565b60405180910390a35050505050565b6000610e5783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610eff565b9392505050565b600080610e6b8385611182565b905083811015610e575760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104c7565b6000610e5783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f36565b60008183610f205760405162461bcd60e51b81526004016104c79190610f67565b506000610f2d84866111e7565b95945050505050565b60008184841115610f5a5760405162461bcd60e51b81526004016104c79190610f67565b506000610f2d848661116f565b600060208083528351808285015260005b81811015610f9457858101830151858201604001528201610f78565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fcc57600080fd5b919050565b60008060408385031215610fe457600080fd5b610fed83610fb5565b946020939093013593505050565b60008060006060848603121561101057600080fd5b61101984610fb5565b925061102760208501610fb5565b9150604084013590509250925092565b60006020828403121561104957600080fd5b610e5782610fb5565b801515811461106057600080fd5b50565b6000806040838503121561107657600080fd5b61107f83610fb5565b9150602083013561108f81611052565b809150509250929050565b6000806000606084860312156110af57600080fd5b83359250602084013591506110c660408501610fb5565b90509250925092565b6000602082840312156110e157600080fd5b8135610e5781611052565b600080604083850312156110ff57600080fd5b61110883610fb5565b915061111660208401610fb5565b90509250929050565b600181811c9082168061113357607f821691505b60208210810361115357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561043357610433611159565b8082018082111561043357610433611159565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156111dc57600080fd5b8151610e5781611052565b60008261120457634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212206cb3af72c2c832f42474a328f4e4e01e22ecc5f5ee859b5e2f81c6361fbc00ea64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000001908b10000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000b53746f6e6564205065706500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055354455045000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Stoned Pepe
Arg [1] : symbol_ (string): STEPE
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 420000000
Arg [4] : _txFee (uint256): 8
Arg [5] : _burnFee (uint256): 0
Arg [6] : _FeeAddress (address): 0xa6871DBcFa2cB4559a87095dD0D2d86E4c65edcE
Arg [7] : tokenOwner (address): 0xa6871DBcFa2cB4559a87095dD0D2d86E4c65edcE
Arg [8] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000001908b100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce
Arg [7] : 000000000000000000000000a6871dbcfa2cb4559a87095dd0d2d86e4c65edce
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [10] : 53746f6e65642050657065000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 5354455045000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22115:1174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9079:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:175;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11395:175:0;1004:187:1;22166:59:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;22166:59:0;1196:177:1;10272:112:0;10362:12;;10272:112;;12082:438;;;;;;:::i;:::-;;:::i;10091:106::-;10178:9;;10091:106;;12957:221;;;;;;:::i;:::-;;:::i;8075:25::-;;;;;;;;;10457:131;;;;;;:::i;:::-;-1:-1:-1;;;;;10560:18:0;10531:7;10560:18;;;:9;:18;;;;;;;10457:131;20802:154;;;:::i;:::-;;8461:25;;;;;-1:-1:-1;;;;;8461:25:0;;;;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;8461:25:0;1902:203:1;23047:117:0;;;;;;:::i;:::-;;:::i;22841:194::-;;;;;;:::i;:::-;;:::i;21899:164::-;;;;;;:::i;:::-;;:::i;20113:91::-;20188:6;;-1:-1:-1;;;;;20188:6:0;20113:91;;9314:108;;;:::i;13713:389::-;;;;;;:::i;:::-;;:::i;10821:181::-;;;;;;:::i;:::-;;:::i;8018:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19900:21;;;;;-1:-1:-1;;;;;19900:21:0;;;23180:84;;;;;;:::i;:::-;;:::i;8401:20::-;;;;;;11075:155;;;;;;:::i;:::-;-1:-1:-1;;;;;11193:18:0;;;11164:7;11193:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11075:155;21123:252;;;;;;:::i;:::-;;:::i;8430:22::-;;;;;;9079:104;9133:13;9168:5;9161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9079:104;:::o;11395:175::-;11478:4;11497:39;6282:10;11520:7;11529:6;11497:8;:39::i;:::-;-1:-1:-1;11556:4:0;11395:175;;;;;:::o;12082:438::-;12188:4;12207:36;12217:6;12225:9;12236:6;12207:9;:36::i;:::-;-1:-1:-1;;;;;12287:19:0;;12260:24;12287:19;;;:11;:19;;;;;;;;6282:10;12287:33;;;;;;;;12341:26;;;;12333:79;;;;-1:-1:-1;;;12333:79:0;;3978:2:1;12333:79:0;;;3960:21:1;4017:2;3997:18;;;3990:30;4056:34;4036:18;;;4029:62;-1:-1:-1;;;4107:18:1;;;4100:38;4155:19;;12333:79:0;;;;;;;;;12425:57;12434:6;6282:10;12456:25;12475:6;12456:16;:25;:::i;:::-;12425:8;:57::i;:::-;-1:-1:-1;12506:4:0;;12082:438;-1:-1:-1;;;;12082:438:0:o;12957:221::-;6282:10;13045:4;13096:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13096:34:0;;;;;;;;;;13045:4;;13064:80;;13087:7;;13096:47;;13133:10;;13096:47;:::i;20802:154::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;20895:6:::1;::::0;20874:40:::1;::::0;20911:1:::1;::::0;-1:-1:-1;;;;;20895:6:0::1;::::0;20874:40:::1;::::0;20911:1;;20874:40:::1;20927:6;:19:::0;;-1:-1:-1;;;;;;20927:19:0::1;::::0;;20802:154::o;23047:117::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23129:17:0;;;::::1;:8;:17:::0;;;::::1;::::0;;;;;;:25;;-1:-1:-1;;23129:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23047:117::o;22841:194::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;22943:5:::1;:14:::0;;;;22970:7:::1;:18:::0;23001:10:::1;:24:::0;;-1:-1:-1;;;;;;23001:24:0::1;-1:-1:-1::0;;;;;23001:24:0;;::::1;::::0;;;::::1;::::0;;22841:194::o;21899:164::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;22009:12:::1;-1:-1:-1::0;;;;;22002:29:0::1;;22032:7;20188:6:::0;;-1:-1:-1;;;;;20188:6:0;;20113:91;22032:7:::1;22002:51;::::0;-1:-1:-1;;;;;;22002:51:0::1;::::0;;;;;;-1:-1:-1;;;;;5133:32:1;;;22002:51:0::1;::::0;::::1;5115::1::0;5182:18;;;5175:34;;;5088:18;;22002:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21899:164:::0;;:::o;9314:108::-;9370:13;9405:7;9398:14;;;;;:::i;13713:389::-;6282:10;13806:4;13852:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13852:34:0;;;;;;;;;;13907:35;;;;13899:85;;;;-1:-1:-1;;;13899:85:0;;5672:2:1;13899:85:0;;;5654:21:1;5711:2;5691:18;;;5684:30;5750:34;5730:18;;;5723:62;-1:-1:-1;;;5801:18:1;;;5794:35;5846:19;;13899:85:0;5470:401:1;13899:85:0;13997:67;6282:10;14020:7;14029:34;14048:15;14029:16;:34;:::i;13997:67::-;-1:-1:-1;14088:4:0;;13713:389;-1:-1:-1;;;13713:389:0:o;10821:181::-;10907:4;10926:42;6282:10;10950:9;10961:6;10926:9;:42::i;23180:84::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;23241:5:::1;:13:::0;;-1:-1:-1;;23241:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23180:84::o;21123:252::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21214:22:0;::::1;21206:73;;;::::0;-1:-1:-1;;;21206:73:0;;6078:2:1;21206:73:0::1;::::0;::::1;6060:21:1::0;6117:2;6097:18;;;6090:30;6156:34;6136:18;;;6129:62;-1:-1:-1;;;6207:18:1;;;6200:36;6253:19;;21206:73:0::1;5876:402:1::0;21206:73:0::1;21318:6;::::0;21297:38:::1;::::0;-1:-1:-1;;;;;21297:38:0;;::::1;::::0;21318:6:::1;::::0;21297:38:::1;::::0;21318:6:::1;::::0;21297:38:::1;21348:6;:17:::0;;-1:-1:-1;;;;;;21348:17:0::1;-1:-1:-1::0;;;;;21348:17:0;;;::::1;::::0;;;::::1;::::0;;21123:252::o;18127:358::-;-1:-1:-1;;;;;18231:19:0;;18223:68;;;;-1:-1:-1;;;18223:68:0;;6485:2:1;18223:68:0;;;6467:21:1;6524:2;6504:18;;;6497:30;6563:34;6543:18;;;6536:62;-1:-1:-1;;;6614:18:1;;;6607:34;6658:19;;18223:68:0;6283:400:1;18223:68:0;-1:-1:-1;;;;;18312:21:0;;18304:68;;;;-1:-1:-1;;;18304:68:0;;6890:2:1;18304:68:0;;;6872:21:1;6929:2;6909:18;;;6902:30;6968:34;6948:18;;;6941:62;-1:-1:-1;;;7019:18:1;;;7012:32;7061:19;;18304:68:0;6688:398:1;18304:68:0;-1:-1:-1;;;;;18389:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18443:32;;1342:25:1;;;18443:32:0;;1315:18:1;18443:32:0;;;;;;;18127:358;;;:::o;14624:1502::-;-1:-1:-1;;;;;14732:20:0;;14724:70;;;;-1:-1:-1;;;14724:70:0;;7293:2:1;14724:70:0;;;7275:21:1;7332:2;7312:18;;;7305:30;7371:34;7351:18;;;7344:62;-1:-1:-1;;;7422:18:1;;;7415:35;7467:19;;14724:70:0;7091:401:1;14724:70:0;-1:-1:-1;;;;;14815:23:0;;14807:71;;;;-1:-1:-1;;;14807:71:0;;7699:2:1;14807:71:0;;;7681:21:1;7738:2;7718:18;;;7711:30;7777:34;7757:18;;;7750:62;-1:-1:-1;;;7828:18:1;;;7821:33;7871:19;;14807:71:0;7497:399:1;14807:71:0;-1:-1:-1;;;;;14904:16:0;;:8;:16;;;;;;;;;;;;;14903:17;:41;;;;-1:-1:-1;;;;;;14925:19:0;;:8;:19;;;;;;;;;;;;;14924:20;14903:41;14895:67;;;;-1:-1:-1;;;14895:67:0;;8103:2:1;14895:67:0;;;8085:21:1;8142:2;8122:18;;;8115:30;-1:-1:-1;;;8161:18:1;;;8154:43;8214:18;;14895:67:0;7901:337:1;14895:67:0;14992:5;;;;14991:6;14983:24;;;;-1:-1:-1;;;14983:24:0;;8445:2:1;14983:24:0;;;8427:21:1;8484:1;8464:18;;;8457:29;-1:-1:-1;;;8502:18:1;;;8495:35;8547:18;;14983:24:0;8243:328:1;14983:24:0;-1:-1:-1;;;;;15116:17:0;;15092:21;15116:17;;;:9;:17;;;;;;15154:23;;;;15146:74;;;;-1:-1:-1;;;15146:74:0;;8778:2:1;15146:74:0;;;8760:21:1;8817:2;8797:18;;;8790:30;8856:34;8836:18;;;8829:62;-1:-1:-1;;;8907:18:1;;;8900:36;8953:19;;15146:74:0;8576:402:1;15146:74:0;15253:22;15269:6;15253:13;:22;:::i;:::-;-1:-1:-1;;;;;15233:17:0;;;;;;:9;:17;;;;;:42;15334:5;;15312:6;;15334:9;;;;:33;;-1:-1:-1;15357:10:0;;-1:-1:-1;;;;;15347:20:0;;;15357:10;;15347:20;;15334:33;15331:362;;;15385:30;15418:35;15446:5;;15440:3;:11;;;;:::i;:::-;15418:9;;:13;:35::i;:::-;15504:10;;-1:-1:-1;;;;;15504:10:0;15494:21;;;;:9;:21;;;;;;15385:68;;-1:-1:-1;15494:49:0;;15385:68;15494:25;:49::i;:::-;15480:10;;;-1:-1:-1;;;;;15480:10:0;;;15470:21;;;;:9;:21;;;;;;;;;:73;;;;15582:10;;15565:52;;1342:25:1;;;15582:10:0;;;;15565:52;;;;;;1315:18:1;15565:52:0;;;;;;;15644:34;:6;15655:22;15644:10;:34::i;:::-;15634:44;;15368:325;15331:362;15730:1;15720:7;;:11;:35;;;;-1:-1:-1;15745:10:0;;-1:-1:-1;;;;;15735:20:0;;;15745:10;;15735:20;;15720:35;15717:296;;;15773:17;15793:37;15821:7;;15815:3;:13;;;;:::i;15793:37::-;15862:12;;15773:57;;-1:-1:-1;15862:27:0;;15773:57;15862:16;:27::i;:::-;15847:12;:42;15911:39;;1342:25:1;;;15936:1:0;;-1:-1:-1;;;;;15911:39:0;;;;;1330:2:1;1315:18;15911:39:0;;;;;;;15977:21;:6;15988:9;15977:10;:21::i;:::-;15967:31;;15756:257;15717:296;-1:-1:-1;;;;;16029:20:0;;;;;;:9;:20;;;;;:30;;16053:6;;16029:20;:30;;16053:6;;16029:30;:::i;:::-;;;;;;;;16098:9;-1:-1:-1;;;;;16081:35:0;16090:6;-1:-1:-1;;;;;16081:35:0;;16109:6;16081:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16081:35:0;;;;;;;;14711:1415;;14624:1502;;;:::o;1183:136::-;1241:7;1270:39;1274:1;1277;1270:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;1263:46;1183:136;-1:-1:-1;;;1183:136:0:o;107:191::-;165:7;;199:5;203:1;199;:5;:::i;:::-;187:17;;230:1;225;:6;;217:46;;;;-1:-1:-1;;;217:46:0;;9407:2:1;217:46:0;;;9389:21:1;9446:2;9426:18;;;9419:30;9485:29;9465:18;;;9458:57;9532:18;;217:46:0;9205:351:1;310:140:0;368:7;397:43;401:1;404;397:43;;;;;;;;;;;;;;;;;:3;:43::i;1331:290::-;1417:7;1454:12;1447:5;1439:28;;;;-1:-1:-1;;;1439:28:0;;;;;;;;:::i;:::-;-1:-1:-1;1480:9:0;1492:5;1496:1;1492;:5;:::i;:::-;1480:17;1331:290;-1:-1:-1;;;;;1331:290:0:o;462:202::-;548:7;586:12;578:6;;;;570:29;;;;-1:-1:-1;;;570:29:0;;;;;;;;:::i;:::-;-1:-1:-1;612:9:0;624:5;628:1;624;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;2110:118::-;2196:5;2189:13;2182:21;2175:5;2172:32;2162:60;;2218:1;2215;2208:12;2162:60;2110:118;:::o;2233:315::-;2298:6;2306;2359:2;2347:9;2338:7;2334:23;2330:32;2327:52;;;2375:1;2372;2365:12;2327:52;2398:29;2417:9;2398:29;:::i;:::-;2388:39;;2477:2;2466:9;2462:18;2449:32;2490:28;2512:5;2490:28;:::i;:::-;2537:5;2527:15;;;2233:315;;;;;:::o;2553:322::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2751:9;2738:23;2728:33;;2808:2;2797:9;2793:18;2780:32;2770:42;;2831:38;2865:2;2854:9;2850:18;2831:38;:::i;:::-;2821:48;;2553:322;;;;;:::o;2880:241::-;2936:6;2989:2;2977:9;2968:7;2964:23;2960:32;2957:52;;;3005:1;3002;2995:12;2957:52;3044:9;3031:23;3063:28;3085:5;3063:28;:::i;3126:260::-;3194:6;3202;3255:2;3243:9;3234:7;3230:23;3226:32;3223:52;;;3271:1;3268;3261:12;3223:52;3294:29;3313:9;3294:29;:::i;:::-;3284:39;;3342:38;3376:2;3365:9;3361:18;3342:38;:::i;:::-;3332:48;;3126:260;;;;;:::o;3391:380::-;3470:1;3466:12;;;;3513;;;3534:61;;3588:4;3580:6;3576:17;3566:27;;3534:61;3641:2;3633:6;3630:14;3610:18;3607:38;3604:161;;3687:10;3682:3;3678:20;3675:1;3668:31;3722:4;3719:1;3712:15;3750:4;3747:1;3740:15;3604:161;;3391:380;;;:::o;4185:127::-;4246:10;4241:3;4237:20;4234:1;4227:31;4277:4;4274:1;4267:15;4301:4;4298:1;4291:15;4317:128;4384:9;;;4405:11;;;4402:37;;;4419:18;;:::i;4450:125::-;4515:9;;;4536:10;;;4533:36;;;4549:18;;:::i;4580:356::-;4782:2;4764:21;;;4801:18;;;4794:30;4860:34;4855:2;4840:18;;4833:62;4927:2;4912:18;;4580:356::o;5220:245::-;5287:6;5340:2;5328:9;5319:7;5315:23;5311:32;5308:52;;;5356:1;5353;5346:12;5308:52;5388:9;5382:16;5407:28;5429:5;5407:28;:::i;8983:217::-;9023:1;9049;9039:132;;9093:10;9088:3;9084:20;9081:1;9074:31;9128:4;9125:1;9118:15;9156:4;9153:1;9146:15;9039:132;-1:-1:-1;9185:9:1;;8983:217::o

Swarm Source

ipfs://6cb3af72c2c832f42474a328f4e4e01e22ecc5f5ee859b5e2f81c6361fbc00ea
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.