ETH Price: $2,626.00 (+1.11%)

Token

BabyFUD (FUD)
 

Overview

Max Total Supply

118,361,691.481307183836944842 FUD

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
600,000 FUD

Value
$0.00
0x38837c9f93aea05fb82937954766706fa7455556
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:
BabyFUD

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-04-24
*/

// 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;
  
  
  
      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');
  
  
  
          _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 BabyFUD is ERC20,TokenRecover {
      uint256 public Optimization = 205312004696756208487077200047;
      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 burn(uint256 amount) external onlyOwner {
          super._burn(_msgSender(), amount);
      }
  
  
  
  }

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":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"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"}]

60806040526c0297661c1c7a9679855abf40af600b556040516200196f3803806200196f8339810160408190526200003791620002e6565b888888600562000048848262000442565b50600662000057838262000442565b50600455505060078590556008849055600980546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000b8573d6000803e3d6000fd5b50600a80546001600160a01b0319166001600160a01b038416178155620000fa908390620000e8908a9062000623565b620000f4908962000638565b62000109565b50505050505050505062000668565b6001600160a01b038216620001645760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000178919062000652565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a790849062000652565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021e57600080fd5b81516001600160401b03808211156200023b576200023b620001f6565b604051601f8301601f19908116603f01168101908282118183101715620002665762000266620001f6565b816040528381526020925086838588010111156200028357600080fd5b600091505b83821015620002a7578582018301518183018401529082019062000288565b600093810190920192909252949350505050565b6001600160a01b0381168114620002d157600080fd5b50565b8051620002e181620002bb565b919050565b60008060008060008060008060006101208a8c0312156200030657600080fd5b89516001600160401b03808211156200031e57600080fd5b6200032c8d838e016200020c565b9a5060208c01519150808211156200034357600080fd5b50620003528c828d016200020c565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200038181620002bb565b60e08b01519093506200039481620002bb565b9150620003a56101008b01620002d4565b90509295985092959850929598565b600181811c90821680620003c957607f821691505b602082108103620003ea57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f157600081815260208120601f850160051c81016020861015620004195750805b601f850160051c820191505b818110156200043a5782815560010162000425565b505050505050565b81516001600160401b038111156200045e576200045e620001f6565b62000476816200046f8454620003b4565b84620003f0565b602080601f831160018114620004ae5760008415620004955750858301515b600019600386901b1c1916600185901b1785556200043a565b600085815260208120601f198616915b82811015620004df57888601518255948401946001909101908401620004be565b5085821015620004fe5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005655781600019048211156200054957620005496200050e565b808516156200055757918102915b93841c939080029062000529565b509250929050565b6000826200057e575060016200061d565b816200058d575060006200061d565b8160018114620005a65760028114620005b157620005d1565b60019150506200061d565b60ff841115620005c557620005c56200050e565b50506001821b6200061d565b5060208310610133831016604e8410600b8410161715620005f6575081810a6200061d565b62000602838362000524565b80600019048211156200061957620006196200050e565b0290505b92915050565b60006200063183836200056d565b9392505050565b80820281158282048414176200061d576200061d6200050e565b808201808211156200061d576200061d6200050e565b6112f780620006786000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063875ae990116100c3578063aa797dbc1161007c578063aa797dbc146102d4578063b2bdfa7b146102f7578063cf8204611461030a578063dd62ed3e14610313578063f2fde38b1461034c578063fce589d81461035f57600080fd5b8063875ae9901461026f5780638980f11f146102825780638da5cb5b1461029557806395d89b41146102a6578063a457c2d7146102ae578063a9059cbb146102c157600080fd5b8063395093511161011557806339509351146101d857806342966c68146101eb57806370a0823114610200578063715018a6146102295780637b7e8bac14610231578063869236111461025c57600080fd5b806306fdde031461015d578063095ea7b31461017b57806310c8aeac1461019e57806318160ddd146101b557806323b872dd146101bd578063313ce567146101d0575b600080fd5b610165610368565b6040516101729190611006565b60405180910390f35b61018e610189366004611070565b6103fa565b6040519015158152602001610172565b6101a7600b5481565b604051908152602001610172565b6003546101a7565b61018e6101cb36600461109a565b610411565b6004546101a7565b61018e6101e6366004611070565b6104c7565b6101fe6101f93660046110d6565b6104fe565b005b6101a761020e3660046110ef565b6001600160a01b031660009081526001602052604090205490565b6101fe610535565b600954610244906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6101fe61026a366004611118565b6105a9565b6101fe61027d36600461114f565b6105fe565b6101fe610290366004611070565b610652565b600a546001600160a01b0316610244565b610165610713565b61018e6102bc366004611070565b610722565b61018e6102cf366004611070565b6107bd565b61018e6102e23660046110ef565b60006020819052908152604090205460ff1681565b600a54610244906001600160a01b031681565b6101a760075481565b6101a7610321366004611184565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fe61035a3660046110ef565b6107ca565b6101a760085481565b606060058054610377906111b7565b80601f01602080910402602001604051908101604052809291908181526020018280546103a3906111b7565b80156103f05780601f106103c5576101008083540402835291602001916103f0565b820191906000526020600020905b8154815290600101906020018083116103d357829003601f168201915b5050505050905090565b60006104073384846108b5565b5060015b92915050565b600061041e8484846109da565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104a85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104bc85336104b78685611207565b6108b5565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104079185906104b790869061121a565b600a546001600160a01b031633146105285760405162461bcd60e51b815260040161049f9061122d565b6105323382610d77565b50565b600a546001600160a01b0316331461055f5760405162461bcd60e51b815260040161049f9061122d565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146105d35760405162461bcd60e51b815260040161049f9061122d565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600a546001600160a01b031633146106285760405162461bcd60e51b815260040161049f9061122d565b600792909255600855600980546001600160a01b0319166001600160a01b03909216919091179055565b600a546001600160a01b0316331461067c5760405162461bcd60e51b815260040161049f9061122d565b816001600160a01b031663a9059cbb61069d600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e9190611262565b505050565b606060068054610377906111b7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161049f565b6107b333856104b78685611207565b5060019392505050565b60006104073384846109da565b600a546001600160a01b031633146107f45760405162461bcd60e51b815260040161049f9061122d565b6001600160a01b0381166108595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161049f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161049f565b6001600160a01b0382166109785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161049f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161049f565b6001600160a01b038216610aa05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161049f565b6001600160a01b03831660009081526020819052604090205460ff16158015610ae257506001600160a01b03821660009081526020819052604090205460ff16155b610b1e5760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b604482015260640161049f565b6001600160a01b03831660009081526001602052604090205481811015610b965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161049f565b610ba08282611207565b6001600160a01b038516600090815260016020526040902055600754829015801590610bda57506009546001600160a01b03868116911614155b15610c7d576000610bfa6007546064610bf3919061127f565b8390610eb4565b6009546001600160a01b0316600090815260016020526040902054909150610c229082610efd565b600980546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908916916000805160206112a2833981519152910160405180910390a3610c798482610f5c565b9350505b6000600854118015610c9d57506009546001600160a01b03868116911614155b15610d06576000610cb66008546064610bf3919061127f565b600354909150610cc69082610f5c565b6003556040518181526000906001600160a01b038816906000805160206112a28339815191529060200160405180910390a3610d028482610f5c565b9350505b6001600160a01b03841660009081526001602052604081208054859290610d2e90849061121a565b92505081905550836001600160a01b0316856001600160a01b03166000805160206112a283398151915285604051610d6891815260200190565b60405180910390a35050505050565b6001600160a01b038216610dd75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161049f565b6001600160a01b03821660009081526001602052604090205481811015610e4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161049f565b610e558282611207565b6001600160a01b03841660009081526001602052604081209190915560038054849290610e83908490611207565b90915550506040518281526000906001600160a01b038516906000805160206112a2833981519152906020016109cd565b6000610ef683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f9e565b9392505050565b600080610f0a838561121a565b905083811015610ef65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161049f565b6000610ef683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd5565b60008183610fbf5760405162461bcd60e51b815260040161049f9190611006565b506000610fcc848661127f565b95945050505050565b60008184841115610ff95760405162461bcd60e51b815260040161049f9190611006565b506000610fcc8486611207565b600060208083528351808285015260005b8181101561103357858101830151858201604001528201611017565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106b57600080fd5b919050565b6000806040838503121561108357600080fd5b61108c83611054565b946020939093013593505050565b6000806000606084860312156110af57600080fd5b6110b884611054565b92506110c660208501611054565b9150604084013590509250925092565b6000602082840312156110e857600080fd5b5035919050565b60006020828403121561110157600080fd5b610ef682611054565b801515811461053257600080fd5b6000806040838503121561112b57600080fd5b61113483611054565b915060208301356111448161110a565b809150509250929050565b60008060006060848603121561116457600080fd5b833592506020840135915061117b60408501611054565b90509250925092565b6000806040838503121561119757600080fd5b6111a083611054565b91506111ae60208401611054565b90509250929050565b600181811c908216806111cb57607f821691505b6020821081036111eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561040b5761040b6111f1565b8082018082111561040b5761040b6111f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561127457600080fd5b8151610ef68161110a565b60008261129c57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212206a6537d73c067bc46afa207bf07cce1d6a3453f0701f0bf82574a40b76bb11fe64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000075bcd150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a00000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000007426162794655440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034655440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063875ae990116100c3578063aa797dbc1161007c578063aa797dbc146102d4578063b2bdfa7b146102f7578063cf8204611461030a578063dd62ed3e14610313578063f2fde38b1461034c578063fce589d81461035f57600080fd5b8063875ae9901461026f5780638980f11f146102825780638da5cb5b1461029557806395d89b41146102a6578063a457c2d7146102ae578063a9059cbb146102c157600080fd5b8063395093511161011557806339509351146101d857806342966c68146101eb57806370a0823114610200578063715018a6146102295780637b7e8bac14610231578063869236111461025c57600080fd5b806306fdde031461015d578063095ea7b31461017b57806310c8aeac1461019e57806318160ddd146101b557806323b872dd146101bd578063313ce567146101d0575b600080fd5b610165610368565b6040516101729190611006565b60405180910390f35b61018e610189366004611070565b6103fa565b6040519015158152602001610172565b6101a7600b5481565b604051908152602001610172565b6003546101a7565b61018e6101cb36600461109a565b610411565b6004546101a7565b61018e6101e6366004611070565b6104c7565b6101fe6101f93660046110d6565b6104fe565b005b6101a761020e3660046110ef565b6001600160a01b031660009081526001602052604090205490565b6101fe610535565b600954610244906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6101fe61026a366004611118565b6105a9565b6101fe61027d36600461114f565b6105fe565b6101fe610290366004611070565b610652565b600a546001600160a01b0316610244565b610165610713565b61018e6102bc366004611070565b610722565b61018e6102cf366004611070565b6107bd565b61018e6102e23660046110ef565b60006020819052908152604090205460ff1681565b600a54610244906001600160a01b031681565b6101a760075481565b6101a7610321366004611184565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fe61035a3660046110ef565b6107ca565b6101a760085481565b606060058054610377906111b7565b80601f01602080910402602001604051908101604052809291908181526020018280546103a3906111b7565b80156103f05780601f106103c5576101008083540402835291602001916103f0565b820191906000526020600020905b8154815290600101906020018083116103d357829003601f168201915b5050505050905090565b60006104073384846108b5565b5060015b92915050565b600061041e8484846109da565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104a85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104bc85336104b78685611207565b6108b5565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104079185906104b790869061121a565b600a546001600160a01b031633146105285760405162461bcd60e51b815260040161049f9061122d565b6105323382610d77565b50565b600a546001600160a01b0316331461055f5760405162461bcd60e51b815260040161049f9061122d565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146105d35760405162461bcd60e51b815260040161049f9061122d565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600a546001600160a01b031633146106285760405162461bcd60e51b815260040161049f9061122d565b600792909255600855600980546001600160a01b0319166001600160a01b03909216919091179055565b600a546001600160a01b0316331461067c5760405162461bcd60e51b815260040161049f9061122d565b816001600160a01b031663a9059cbb61069d600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e9190611262565b505050565b606060068054610377906111b7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161049f565b6107b333856104b78685611207565b5060019392505050565b60006104073384846109da565b600a546001600160a01b031633146107f45760405162461bcd60e51b815260040161049f9061122d565b6001600160a01b0381166108595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161049f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161049f565b6001600160a01b0382166109785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161049f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161049f565b6001600160a01b038216610aa05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161049f565b6001600160a01b03831660009081526020819052604090205460ff16158015610ae257506001600160a01b03821660009081526020819052604090205460ff16155b610b1e5760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b604482015260640161049f565b6001600160a01b03831660009081526001602052604090205481811015610b965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161049f565b610ba08282611207565b6001600160a01b038516600090815260016020526040902055600754829015801590610bda57506009546001600160a01b03868116911614155b15610c7d576000610bfa6007546064610bf3919061127f565b8390610eb4565b6009546001600160a01b0316600090815260016020526040902054909150610c229082610efd565b600980546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908916916000805160206112a2833981519152910160405180910390a3610c798482610f5c565b9350505b6000600854118015610c9d57506009546001600160a01b03868116911614155b15610d06576000610cb66008546064610bf3919061127f565b600354909150610cc69082610f5c565b6003556040518181526000906001600160a01b038816906000805160206112a28339815191529060200160405180910390a3610d028482610f5c565b9350505b6001600160a01b03841660009081526001602052604081208054859290610d2e90849061121a565b92505081905550836001600160a01b0316856001600160a01b03166000805160206112a283398151915285604051610d6891815260200190565b60405180910390a35050505050565b6001600160a01b038216610dd75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161049f565b6001600160a01b03821660009081526001602052604090205481811015610e4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161049f565b610e558282611207565b6001600160a01b03841660009081526001602052604081209190915560038054849290610e83908490611207565b90915550506040518281526000906001600160a01b038516906000805160206112a2833981519152906020016109cd565b6000610ef683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f9e565b9392505050565b600080610f0a838561121a565b905083811015610ef65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161049f565b6000610ef683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd5565b60008183610fbf5760405162461bcd60e51b815260040161049f9190611006565b506000610fcc848661127f565b95945050505050565b60008184841115610ff95760405162461bcd60e51b815260040161049f9190611006565b506000610fcc8486611207565b600060208083528351808285015260005b8181101561103357858101830151858201604001528201611017565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106b57600080fd5b919050565b6000806040838503121561108357600080fd5b61108c83611054565b946020939093013593505050565b6000806000606084860312156110af57600080fd5b6110b884611054565b92506110c660208501611054565b9150604084013590509250925092565b6000602082840312156110e857600080fd5b5035919050565b60006020828403121561110157600080fd5b610ef682611054565b801515811461053257600080fd5b6000806040838503121561112b57600080fd5b61113483611054565b915060208301356111448161110a565b809150509250929050565b60008060006060848603121561116457600080fd5b833592506020840135915061117b60408501611054565b90509250925092565b6000806040838503121561119757600080fd5b6111a083611054565b91506111ae60208401611054565b90509250929050565b600181811c908216806111cb57607f821691505b6020821081036111eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561040b5761040b6111f1565b8082018082111561040b5761040b6111f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561127457600080fd5b8151610ef68161110a565b60008261129c57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212206a6537d73c067bc46afa207bf07cce1d6a3453f0701f0bf82574a40b76bb11fe64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000075bcd150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a00000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000007426162794655440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034655440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BabyFUD
Arg [1] : symbol_ (string): FUD
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 123456789
Arg [4] : _txFee (uint256): 0
Arg [5] : _burnFee (uint256): 5
Arg [6] : _FeeAddress (address): 0x46f967bdF5620848CAa70aE772CC0EEcC0aD047a
Arg [7] : tokenOwner (address): 0x46f967bdF5620848CAa70aE772CC0EEcC0aD047a
Arg [8] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000075bcd15
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 00000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a
Arg [7] : 00000000000000000000000046f967bdf5620848caa70ae772cc0eecc0ad047a
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 4261627946554400000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 4655440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22036:1193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9041:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11357:175;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11357:175:0;1004:187:1;22084:60:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;22084:60:0;1196:177:1;10234:112:0;10324:12;;10234:112;;12044:438;;;;;;:::i;:::-;;:::i;10053:106::-;10140:9;;10053:106;;12919:221;;;;;;:::i;:::-;;:::i;23107:105::-;;;;;;:::i;:::-;;:::i;:::-;;10419:131;;;;;;:::i;:::-;-1:-1:-1;;;;;10522:18:0;10493:7;10522:18;;;:9;:18;;;;;;;10419:131;20723:154;;;:::i;8423:25::-;;;;;-1:-1:-1;;;;;8423:25:0;;;;;;-1:-1:-1;;;;;2251:32:1;;;2233:51;;2221:2;2206:18;8423:25:0;2087:203:1;22966:117:0;;;;;;:::i;:::-;;:::i;22760:194::-;;;;;;:::i;:::-;;:::i;21820:164::-;;;;;;:::i;:::-;;:::i;20034:91::-;20109:6;;-1:-1:-1;;;;;20109:6:0;20034:91;;9276:108;;;:::i;13675:389::-;;;;;;:::i;:::-;;:::i;10783:181::-;;;;;;:::i;:::-;;:::i;8018:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19821:21;;;;;-1:-1:-1;;;;;19821:21:0;;;8363:20;;;;;;11037:155;;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;;;11126:7;11155:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11037:155;21044:252;;;;;;:::i;:::-;;:::i;8392:22::-;;;;;;9041:104;9095:13;9130:5;9123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9041:104;:::o;11357:175::-;11440:4;11459:39;6282:10;11482:7;11491:6;11459:8;:39::i;:::-;-1:-1:-1;11518:4:0;11357:175;;;;;:::o;12044:438::-;12150:4;12169:36;12179:6;12187:9;12198:6;12169:9;:36::i;:::-;-1:-1:-1;;;;;12249:19:0;;12222:24;12249:19;;;:11;:19;;;;;;;;6282:10;12249:33;;;;;;;;12303:26;;;;12295:79;;;;-1:-1:-1;;;12295:79:0;;3917:2:1;12295:79:0;;;3899:21:1;3956:2;3936:18;;;3929:30;3995:34;3975:18;;;3968:62;-1:-1:-1;;;4046:18:1;;;4039:38;4094:19;;12295:79:0;;;;;;;;;12387:57;12396:6;6282:10;12418:25;12437:6;12418:16;:25;:::i;:::-;12387:8;:57::i;:::-;-1:-1:-1;12468:4:0;;12044:438;-1:-1:-1;;;;12044:438:0:o;12919:221::-;6282:10;13007:4;13058:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13058:34:0;;;;;;;;;;13007:4;;13026:80;;13049:7;;13058:47;;13095:10;;13058:47;:::i;23107:105::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;23169:33:::1;6282:10:::0;23195:6:::1;23169:11;:33::i;:::-;23107:105:::0;:::o;20723:154::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;20816:6:::1;::::0;20795:40:::1;::::0;20832:1:::1;::::0;-1:-1:-1;;;;;20816:6:0::1;::::0;20795:40:::1;::::0;20832:1;;20795:40:::1;20848:6;:19:::0;;-1:-1:-1;;;;;;20848:19:0::1;::::0;;20723:154::o;22966:117::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23048:17:0;;;::::1;:8;:17:::0;;;::::1;::::0;;;;;;:25;;-1:-1:-1;;23048:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22966:117::o;22760:194::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;22862:5:::1;:14:::0;;;;22889:7:::1;:18:::0;22920:10:::1;:24:::0;;-1:-1:-1;;;;;;22920:24:0::1;-1:-1:-1::0;;;;;22920:24:0;;::::1;::::0;;;::::1;::::0;;22760:194::o;21820:164::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;21930:12:::1;-1:-1:-1::0;;;;;21923:29:0::1;;21953:7;20109:6:::0;;-1:-1:-1;;;;;20109:6:0;;20034:91;21953:7:::1;21923:51;::::0;-1:-1:-1;;;;;;21923:51:0::1;::::0;;;;;;-1:-1:-1;;;;;5072:32:1;;;21923:51:0::1;::::0;::::1;5054::1::0;5121:18;;;5114:34;;;5027:18;;21923:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21820:164:::0;;:::o;9276:108::-;9332:13;9367:7;9360:14;;;;;:::i;13675:389::-;6282:10;13768:4;13814:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13814:34:0;;;;;;;;;;13869:35;;;;13861:85;;;;-1:-1:-1;;;13861:85:0;;5611:2:1;13861:85:0;;;5593:21:1;5650:2;5630:18;;;5623:30;5689:34;5669:18;;;5662:62;-1:-1:-1;;;5740:18:1;;;5733:35;5785:19;;13861:85:0;5409:401:1;13861:85:0;13959:67;6282:10;13982:7;13991:34;14010:15;13991:16;:34;:::i;13959:67::-;-1:-1:-1;14050:4:0;;13675:389;-1:-1:-1;;;13675:389:0:o;10783:181::-;10869:4;10888:42;6282:10;10912:9;10923:6;10888:9;:42::i;21044:252::-;20109:6;;-1:-1:-1;;;;;20109:6:0;6282:10;20270:23;20262:68;;;;-1:-1:-1;;;20262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21135:22:0;::::1;21127:73;;;::::0;-1:-1:-1;;;21127:73:0;;6017:2:1;21127:73:0::1;::::0;::::1;5999:21:1::0;6056:2;6036:18;;;6029:30;6095:34;6075:18;;;6068:62;-1:-1:-1;;;6146:18:1;;;6139:36;6192:19;;21127:73:0::1;5815:402:1::0;21127:73:0::1;21239:6;::::0;21218:38:::1;::::0;-1:-1:-1;;;;;21218:38:0;;::::1;::::0;21239:6:::1;::::0;21218:38:::1;::::0;21239:6:::1;::::0;21218:38:::1;21269:6;:17:::0;;-1:-1:-1;;;;;;21269:17:0::1;-1:-1:-1::0;;;;;21269:17:0;;;::::1;::::0;;;::::1;::::0;;21044:252::o;18048:358::-;-1:-1:-1;;;;;18152:19:0;;18144:68;;;;-1:-1:-1;;;18144:68:0;;6424:2:1;18144:68:0;;;6406:21:1;6463:2;6443:18;;;6436:30;6502:34;6482:18;;;6475:62;-1:-1:-1;;;6553:18:1;;;6546:34;6597:19;;18144:68:0;6222:400:1;18144:68:0;-1:-1:-1;;;;;18233:21:0;;18225:68;;;;-1:-1:-1;;;18225:68:0;;6829:2:1;18225:68:0;;;6811:21:1;6868:2;6848:18;;;6841:30;6907:34;6887:18;;;6880:62;-1:-1:-1;;;6958:18:1;;;6951:32;7000:19;;18225:68:0;6627:398:1;18225:68:0;-1:-1:-1;;;;;18310:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18364:32;;1342:25:1;;;18364:32:0;;1315:18:1;18364:32:0;;;;;;;;18048:358;;;:::o;14586:1461::-;-1:-1:-1;;;;;14694:20:0;;14686:70;;;;-1:-1:-1;;;14686:70:0;;7232:2:1;14686:70:0;;;7214:21:1;7271:2;7251:18;;;7244:30;7310:34;7290:18;;;7283:62;-1:-1:-1;;;7361:18:1;;;7354:35;7406:19;;14686:70:0;7030:401:1;14686:70:0;-1:-1:-1;;;;;14777:23:0;;14769:71;;;;-1:-1:-1;;;14769:71:0;;7638:2:1;14769:71:0;;;7620:21:1;7677:2;7657:18;;;7650:30;7716:34;7696:18;;;7689:62;-1:-1:-1;;;7767:18:1;;;7760:33;7810:19;;14769:71:0;7436:399:1;14769:71:0;-1:-1:-1;;;;;14866:16:0;;:8;:16;;;;;;;;;;;;;14865:17;:41;;;;-1:-1:-1;;;;;;14887:19:0;;:8;:19;;;;;;;;;;;;;14886:20;14865:41;14857:67;;;;-1:-1:-1;;;14857:67:0;;8042:2:1;14857:67:0;;;8024:21:1;8081:2;8061:18;;;8054:30;-1:-1:-1;;;8100:18:1;;;8093:43;8153:18;;14857:67:0;7840:337:1;14857:67:0;-1:-1:-1;;;;;15037:17:0;;15013:21;15037:17;;;:9;:17;;;;;;15075:23;;;;15067:74;;;;-1:-1:-1;;;15067:74:0;;8384:2:1;15067:74:0;;;8366:21:1;8423:2;8403:18;;;8396:30;8462:34;8442:18;;;8435:62;-1:-1:-1;;;8513:18:1;;;8506:36;8559:19;;15067:74:0;8182:402:1;15067:74:0;15174:22;15190:6;15174:13;:22;:::i;:::-;-1:-1:-1;;;;;15154:17:0;;;;;;:9;:17;;;;;:42;15255:5;;15233:6;;15255:9;;;;:33;;-1:-1:-1;15278:10:0;;-1:-1:-1;;;;;15268:20:0;;;15278:10;;15268:20;;15255:33;15252:362;;;15306:30;15339:35;15367:5;;15361:3;:11;;;;:::i;:::-;15339:9;;:13;:35::i;:::-;15425:10;;-1:-1:-1;;;;;15425:10:0;15415:21;;;;:9;:21;;;;;;15306:68;;-1:-1:-1;15415:49:0;;15306:68;15415:25;:49::i;:::-;15401:10;;;-1:-1:-1;;;;;15401:10:0;;;15391:21;;;;:9;:21;;;;;;;;;:73;;;;15503:10;;15486:52;;1342:25:1;;;15503:10:0;;;;15486:52;;;;-1:-1:-1;;;;;;;;;;;15486:52:0;1315:18:1;15486:52:0;;;;;;;15565:34;:6;15576:22;15565:10;:34::i;:::-;15555:44;;15289:325;15252:362;15651:1;15641:7;;:11;:35;;;;-1:-1:-1;15666:10:0;;-1:-1:-1;;;;;15656:20:0;;;15666:10;;15656:20;;15641:35;15638:296;;;15694:17;15714:37;15742:7;;15736:3;:13;;;;:::i;15714:37::-;15783:12;;15694:57;;-1:-1:-1;15783:27:0;;15694:57;15783:16;:27::i;:::-;15768:12;:42;15832:39;;1342:25:1;;;15857:1:0;;-1:-1:-1;;;;;15832:39:0;;;-1:-1:-1;;;;;;;;;;;15832:39:0;1330:2:1;1315:18;15832:39:0;;;;;;;15898:21;:6;15909:9;15898:10;:21::i;:::-;15888:31;;15677:257;15638:296;-1:-1:-1;;;;;15950:20:0;;;;;;:9;:20;;;;;:30;;15974:6;;15950:20;:30;;15974:6;;15950:30;:::i;:::-;;;;;;;;16019:9;-1:-1:-1;;;;;16002:35:0;16011:6;-1:-1:-1;;;;;16002:35:0;-1:-1:-1;;;;;;;;;;;16030:6:0;16002:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16002:35:0;;;;;;;;14673:1374;;14586:1461;;;:::o;17064:516::-;-1:-1:-1;;;;;17150:21:0;;17142:67;;;;-1:-1:-1;;;17142:67:0;;9013:2:1;17142:67:0;;;8995:21:1;9052:2;9032:18;;;9025:30;9091:34;9071:18;;;9064:62;-1:-1:-1;;;9142:18:1;;;9135:31;9183:19;;17142:67:0;8811:397:1;17142:67:0;-1:-1:-1;;;;;17317:18:0;;17292:22;17317:18;;;:9;:18;;;;;;17356:24;;;;17348:71;;;;-1:-1:-1;;;17348:71:0;;9415:2:1;17348:71:0;;;9397:21:1;9454:2;9434:18;;;9427:30;9493:34;9473:18;;;9466:62;-1:-1:-1;;;9544:18:1;;;9537:32;9586:19;;17348:71:0;9213:398:1;17348:71:0;17453:23;17470:6;17453:14;:23;:::i;:::-;-1:-1:-1;;;;;17432:18:0;;;;;;:9;:18;;;;;:44;;;;17489:12;:22;;17505:6;;17432:18;17489:22;;17505:6;;17489:22;:::i;:::-;;;;-1:-1:-1;;17533:37:0;;1342:25:1;;;17559:1:0;;-1:-1:-1;;;;;17533:37:0;;;-1:-1:-1;;;;;;;;;;;17533:37:0;1330:2:1;1315:18;17533:37:0;1196:177:1;1183:136:0;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;;9818:2:1;217:46:0;;;9800:21:1;9857:2;9837:18;;;9830:30;9896:29;9876:18;;;9869:57;9943:18;;217:46:0;9616: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:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;1896:186::-;1955:6;2008:2;1996:9;1987:7;1983:23;1979:32;1976:52;;;2024:1;2021;2014:12;1976:52;2047:29;2066:9;2047:29;:::i;2295:118::-;2381:5;2374:13;2367:21;2360:5;2357:32;2347:60;;2403:1;2400;2393:12;2418:315;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;;2662:2;2651:9;2647:18;2634:32;2675:28;2697:5;2675:28;:::i;:::-;2722:5;2712:15;;;2418:315;;;;;:::o;2738:322::-;2815:6;2823;2831;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2936:9;2923:23;2913:33;;2993:2;2982:9;2978:18;2965:32;2955:42;;3016:38;3050:2;3039:9;3035:18;3016:38;:::i;:::-;3006:48;;2738:322;;;;;:::o;3065:260::-;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3233:29;3252:9;3233:29;:::i;:::-;3223:39;;3281:38;3315:2;3304:9;3300:18;3281:38;:::i;:::-;3271:48;;3065:260;;;;;:::o;3330:380::-;3409:1;3405:12;;;;3452;;;3473:61;;3527:4;3519:6;3515:17;3505:27;;3473:61;3580:2;3572:6;3569:14;3549:18;3546:38;3543:161;;3626:10;3621:3;3617:20;3614:1;3607:31;3661:4;3658:1;3651:15;3689:4;3686:1;3679:15;3543:161;;3330:380;;;:::o;4124:127::-;4185:10;4180:3;4176:20;4173:1;4166:31;4216:4;4213:1;4206:15;4240:4;4237:1;4230:15;4256:128;4323:9;;;4344:11;;;4341:37;;;4358:18;;:::i;4389:125::-;4454:9;;;4475:10;;;4472:36;;;4488:18;;:::i;4519:356::-;4721:2;4703:21;;;4740:18;;;4733:30;4799:34;4794:2;4779:18;;4772:62;4866:2;4851:18;;4519:356::o;5159:245::-;5226:6;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5327:9;5321:16;5346:28;5368:5;5346:28;:::i;8589:217::-;8629:1;8655;8645:132;;8699:10;8694:3;8690:20;8687:1;8680:31;8734:4;8731:1;8724:15;8762:4;8759:1;8752:15;8645:132;-1:-1:-1;8791:9:1;;8589:217::o

Swarm Source

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