ETH Price: $3,391.75 (-1.60%)
Gas: 1 Gwei

Token

BossWorld (BOSS)
 

Overview

Max Total Supply

20,377,943,339,829.640945854363845612 BOSS

Holders

76 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.039449257002836803 BOSS

Value
$0.00
0xe69df133fb7cb2efebd9f63b9d48262bc542fa5a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Boss World decentralized hub for Web3.0 & the Metaverse. Engage, collaborate, earn rewards. Staking farms & immersive hub. Revolutionizing digital community interactions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BossWorld

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-06-27
*/

// 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 => 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");
  
  
  
          _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 BossWorld is ERC20,TokenRecover {
      uint256 public Optimization = 203120024335248395886883185268;
      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 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":[],"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":"_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"}]

60806040526c029050f236faaf9a1294332274600a556040516200180c3803806200180c8339810160408190526200003791620002e4565b888888600462000048848262000440565b50600562000057838262000440565b50600355505060068590556007849055600880546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000b8573d6000803e3d6000fd5b50600980546001600160a01b0319166001600160a01b038416179055620000f882620000e689600a62000621565b620000f2908962000636565b62000107565b50505050505050505062000666565b6001600160a01b038216620001625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000176919062000650565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a590849062000650565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021c57600080fd5b81516001600160401b0380821115620002395762000239620001f4565b604051601f8301601f19908116603f01168101908282118183101715620002645762000264620001f4565b816040528381526020925086838588010111156200028157600080fd5b600091505b83821015620002a5578582018301518183018401529082019062000286565b600093810190920192909252949350505050565b6001600160a01b0381168114620002cf57600080fd5b50565b8051620002df81620002b9565b919050565b60008060008060008060008060006101208a8c0312156200030457600080fd5b89516001600160401b03808211156200031c57600080fd5b6200032a8d838e016200020a565b9a5060208c01519150808211156200034157600080fd5b50620003508c828d016200020a565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200037f81620002b9565b60e08b01519093506200039281620002b9565b9150620003a36101008b01620002d2565b90509295985092959850929598565b600181811c90821680620003c757607f821691505b602082108103620003e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ef57600081815260208120601f850160051c81016020861015620004175750805b601f850160051c820191505b81811015620004385782815560010162000423565b505050505050565b81516001600160401b038111156200045c576200045c620001f4565b62000474816200046d8454620003b2565b84620003ee565b602080601f831160018114620004ac5760008415620004935750858301515b600019600386901b1c1916600185901b17855562000438565b600085815260208120601f198616915b82811015620004dd57888601518255948401946001909101908401620004bc565b5085821015620004fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005635781600019048211156200054757620005476200050c565b808516156200055557918102915b93841c939080029062000527565b509250929050565b6000826200057c575060016200061b565b816200058b575060006200061b565b8160018114620005a45760028114620005af57620005cf565b60019150506200061b565b60ff841115620005c357620005c36200050c565b50506001821b6200061b565b5060208310610133831016604e8410600b8410161715620005f4575081810a6200061b565b62000600838362000522565b80600019048211156200061757620006176200050c565b0290505b92915050565b60006200062f83836200056b565b9392505050565b80820281158282048414176200061b576200061b6200050c565b808201808211156200061b576200061b6200050c565b61119680620006766000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063875ae990116100b8578063a9059cbb1161007c578063a9059cbb14610298578063b2bdfa7b146102ab578063cf820461146102be578063dd62ed3e146102c7578063f2fde38b14610300578063fce589d81461031357600080fd5b8063875ae990146102465780638980f11f146102595780638da5cb5b1461026c57806395d89b411461027d578063a457c2d71461028557600080fd5b8063313ce5671161010a578063313ce567146101ba57806339509351146101c257806342966c68146101d557806370a08231146101ea578063715018a6146102135780637b7e8bac1461021b57600080fd5b806306fdde0314610147578063095ea7b31461016557806310c8aeac1461018857806318160ddd1461019f57806323b872dd146101a7575b600080fd5b61014f61031c565b60405161015c9190610ee5565b60405180910390f35b610178610173366004610f4f565b6103ae565b604051901515815260200161015c565b610191600a5481565b60405190815260200161015c565b600254610191565b6101786101b5366004610f79565b6103c5565b600354610191565b6101786101d0366004610f4f565b61047b565b6101e86101e3366004610fb5565b6104b2565b005b6101916101f8366004610fce565b6001600160a01b031660009081526020819052604090205490565b6101e86104e9565b60085461022e906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101e8610254366004610fe9565b61055d565b6101e8610267366004610f4f565b6105b1565b6009546001600160a01b031661022e565b61014f610672565b610178610293366004610f4f565b610681565b6101786102a6366004610f4f565b61071c565b60095461022e906001600160a01b031681565b61019160065481565b6101916102d536600461101e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e861030e366004610fce565b610729565b61019160075481565b60606004805461032b90611051565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611051565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103bb338484610814565b5060015b92915050565b60006103d2848484610939565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561045c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610470853361046b86856110a1565b610814565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bb91859061046b9086906110b4565b6009546001600160a01b031633146104dc5760405162461bcd60e51b8152600401610453906110c7565b6104e63382610c56565b50565b6009546001600160a01b031633146105135760405162461bcd60e51b8152600401610453906110c7565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031633146105875760405162461bcd60e51b8152600401610453906110c7565b600692909255600755600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031633146105db5760405162461bcd60e51b8152600401610453906110c7565b816001600160a01b031663a9059cbb6105fc6009546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610649573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066d91906110fc565b505050565b60606005805461032b90611051565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610453565b610712338561046b86856110a1565b5060019392505050565b60006103bb338484610939565b6009546001600160a01b031633146107535760405162461bcd60e51b8152600401610453906110c7565b6001600160a01b0381166107b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610453565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108765760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610453565b6001600160a01b0382166108d75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610453565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661099d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610453565b6001600160a01b0382166109ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610453565b6001600160a01b03831660009081526020819052604090205481811015610a775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610453565b610a8182826110a1565b6001600160a01b038516600090815260208190526040902055600654829015801590610abb57506008546001600160a01b03868116911614155b15610b5c576000610adb6006546064610ad4919061111e565b8390610d93565b6008546001600160a01b0316600090815260208190526040902054909150610b039082610ddc565b600880546001600160a01b039081166000908152602081815260409182902094909455915491518481529181169290891691600080516020611141833981519152910160405180910390a3610b588482610e3b565b9350505b6000600754118015610b7c57506008546001600160a01b03868116911614155b15610be5576000610b956007546064610ad4919061111e565b600254909150610ba59082610e3b565b6002556040518181526000906001600160a01b038816906000805160206111418339815191529060200160405180910390a3610be18482610e3b565b9350505b6001600160a01b03841660009081526020819052604081208054859290610c0d9084906110b4565b92505081905550836001600160a01b0316856001600160a01b031660008051602061114183398151915285604051610c4791815260200190565b60405180910390a35050505050565b6001600160a01b038216610cb65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610453565b6001600160a01b03821660009081526020819052604090205481811015610d2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610453565b610d3482826110a1565b6001600160a01b03841660009081526020819052604081209190915560028054849290610d629084906110a1565b90915550506040518281526000906001600160a01b038516906000805160206111418339815191529060200161092c565b6000610dd583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e7d565b9392505050565b600080610de983856110b4565b905083811015610dd55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610453565b6000610dd583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eb4565b60008183610e9e5760405162461bcd60e51b81526004016104539190610ee5565b506000610eab848661111e565b95945050505050565b60008184841115610ed85760405162461bcd60e51b81526004016104539190610ee5565b506000610eab84866110a1565b600060208083528351808285015260005b81811015610f1257858101830151858201604001528201610ef6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f4a57600080fd5b919050565b60008060408385031215610f6257600080fd5b610f6b83610f33565b946020939093013593505050565b600080600060608486031215610f8e57600080fd5b610f9784610f33565b9250610fa560208501610f33565b9150604084013590509250925092565b600060208284031215610fc757600080fd5b5035919050565b600060208284031215610fe057600080fd5b610dd582610f33565b600080600060608486031215610ffe57600080fd5b833592506020840135915061101560408501610f33565b90509250925092565b6000806040838503121561103157600080fd5b61103a83610f33565b915061104860208401610f33565b90509250929050565b600181811c9082168061106557607f821691505b60208210810361108557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103bf576103bf61108b565b808201808211156103bf576103bf61108b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561110e57600080fd5b81518015158114610dd557600080fd5b60008261113b57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212207cf6324becbff344ac94b07983b2a6dfaa1b65cbf9859d9bab3386fa2746e84664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000001319718a5000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000008ca709fe8f3d2ca8a65f05c3c7156f6f9a74d16700000000000000000000000024f33d5cbbb2f4839f5d88ca68ab8bc318a52b6800000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000009426f7373576f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f535300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063875ae990116100b8578063a9059cbb1161007c578063a9059cbb14610298578063b2bdfa7b146102ab578063cf820461146102be578063dd62ed3e146102c7578063f2fde38b14610300578063fce589d81461031357600080fd5b8063875ae990146102465780638980f11f146102595780638da5cb5b1461026c57806395d89b411461027d578063a457c2d71461028557600080fd5b8063313ce5671161010a578063313ce567146101ba57806339509351146101c257806342966c68146101d557806370a08231146101ea578063715018a6146102135780637b7e8bac1461021b57600080fd5b806306fdde0314610147578063095ea7b31461016557806310c8aeac1461018857806318160ddd1461019f57806323b872dd146101a7575b600080fd5b61014f61031c565b60405161015c9190610ee5565b60405180910390f35b610178610173366004610f4f565b6103ae565b604051901515815260200161015c565b610191600a5481565b60405190815260200161015c565b600254610191565b6101786101b5366004610f79565b6103c5565b600354610191565b6101786101d0366004610f4f565b61047b565b6101e86101e3366004610fb5565b6104b2565b005b6101916101f8366004610fce565b6001600160a01b031660009081526020819052604090205490565b6101e86104e9565b60085461022e906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101e8610254366004610fe9565b61055d565b6101e8610267366004610f4f565b6105b1565b6009546001600160a01b031661022e565b61014f610672565b610178610293366004610f4f565b610681565b6101786102a6366004610f4f565b61071c565b60095461022e906001600160a01b031681565b61019160065481565b6101916102d536600461101e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e861030e366004610fce565b610729565b61019160075481565b60606004805461032b90611051565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611051565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103bb338484610814565b5060015b92915050565b60006103d2848484610939565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561045c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610470853361046b86856110a1565b610814565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bb91859061046b9086906110b4565b6009546001600160a01b031633146104dc5760405162461bcd60e51b8152600401610453906110c7565b6104e63382610c56565b50565b6009546001600160a01b031633146105135760405162461bcd60e51b8152600401610453906110c7565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031633146105875760405162461bcd60e51b8152600401610453906110c7565b600692909255600755600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031633146105db5760405162461bcd60e51b8152600401610453906110c7565b816001600160a01b031663a9059cbb6105fc6009546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610649573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066d91906110fc565b505050565b60606005805461032b90611051565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610453565b610712338561046b86856110a1565b5060019392505050565b60006103bb338484610939565b6009546001600160a01b031633146107535760405162461bcd60e51b8152600401610453906110c7565b6001600160a01b0381166107b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610453565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108765760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610453565b6001600160a01b0382166108d75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610453565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661099d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610453565b6001600160a01b0382166109ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610453565b6001600160a01b03831660009081526020819052604090205481811015610a775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610453565b610a8182826110a1565b6001600160a01b038516600090815260208190526040902055600654829015801590610abb57506008546001600160a01b03868116911614155b15610b5c576000610adb6006546064610ad4919061111e565b8390610d93565b6008546001600160a01b0316600090815260208190526040902054909150610b039082610ddc565b600880546001600160a01b039081166000908152602081815260409182902094909455915491518481529181169290891691600080516020611141833981519152910160405180910390a3610b588482610e3b565b9350505b6000600754118015610b7c57506008546001600160a01b03868116911614155b15610be5576000610b956007546064610ad4919061111e565b600254909150610ba59082610e3b565b6002556040518181526000906001600160a01b038816906000805160206111418339815191529060200160405180910390a3610be18482610e3b565b9350505b6001600160a01b03841660009081526020819052604081208054859290610c0d9084906110b4565b92505081905550836001600160a01b0316856001600160a01b031660008051602061114183398151915285604051610c4791815260200190565b60405180910390a35050505050565b6001600160a01b038216610cb65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610453565b6001600160a01b03821660009081526020819052604090205481811015610d2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610453565b610d3482826110a1565b6001600160a01b03841660009081526020819052604081209190915560028054849290610d629084906110a1565b90915550506040518281526000906001600160a01b038516906000805160206111418339815191529060200161092c565b6000610dd583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e7d565b9392505050565b600080610de983856110b4565b905083811015610dd55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610453565b6000610dd583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eb4565b60008183610e9e5760405162461bcd60e51b81526004016104539190610ee5565b506000610eab848661111e565b95945050505050565b60008184841115610ed85760405162461bcd60e51b81526004016104539190610ee5565b506000610eab84866110a1565b600060208083528351808285015260005b81811015610f1257858101830151858201604001528201610ef6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f4a57600080fd5b919050565b60008060408385031215610f6257600080fd5b610f6b83610f33565b946020939093013593505050565b600080600060608486031215610f8e57600080fd5b610f9784610f33565b9250610fa560208501610f33565b9150604084013590509250925092565b600060208284031215610fc757600080fd5b5035919050565b600060208284031215610fe057600080fd5b610dd582610f33565b600080600060608486031215610ffe57600080fd5b833592506020840135915061101560408501610f33565b90509250925092565b6000806040838503121561103157600080fd5b61103a83610f33565b915061104860208401610f33565b90509250929050565b600181811c9082168061106557607f821691505b60208210810361108557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103bf576103bf61108b565b808201808211156103bf576103bf61108b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561110e57600080fd5b81518015158114610dd557600080fd5b60008261113b57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212207cf6324becbff344ac94b07983b2a6dfaa1b65cbf9859d9bab3386fa2746e84664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000001319718a5000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000008ca709fe8f3d2ca8a65f05c3c7156f6f9a74d16700000000000000000000000024f33d5cbbb2f4839f5d88ca68ab8bc318a52b6800000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000009426f7373576f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f535300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BossWorld
Arg [1] : symbol_ (string): BOSS
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 21000000000000
Arg [4] : _txFee (uint256): 2
Arg [5] : _burnFee (uint256): 1
Arg [6] : _FeeAddress (address): 0x8Ca709fe8F3d2Ca8a65f05C3c7156F6f9a74d167
Arg [7] : tokenOwner (address): 0x24f33D5cbBB2f4839f5D88ca68aB8Bc318a52B68
Arg [8] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000001319718a5000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000008ca709fe8f3d2ca8a65f05c3c7156f6f9a74d167
Arg [7] : 00000000000000000000000024f33d5cbbb2f4839f5d88ca68ab8bc318a52b68
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 426f7373576f726c640000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 424f535300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21899:1066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8988:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11304:175;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11304:175:0;1004:187:1;21949:60:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;21949:60:0;1196:177:1;10181:112:0;10271:12;;10181:112;;11991:438;;;;;;:::i;:::-;;:::i;10000:106::-;10087:9;;10000:106;;12866:221;;;;;;:::i;:::-;;:::i;22843:105::-;;;;;;:::i;:::-;;:::i;:::-;;10366:131;;;;;;:::i;:::-;-1:-1:-1;;;;;10469:18:0;10440:7;10469:18;;;;;;;;;;;;10366:131;20586:154;;;:::i;8370:25::-;;;;;-1:-1:-1;;;;;8370:25:0;;;;;;-1:-1:-1;;;;;2251:32:1;;;2233:51;;2221:2;2206:18;8370:25:0;2087:203:1;22625:194:0;;;;;;:::i;:::-;;:::i;21683:164::-;;;;;;:::i;:::-;;:::i;19897:91::-;19972:6;;-1:-1:-1;;;;;19972:6:0;19897:91;;9223:108;;;:::i;13622:389::-;;;;;;:::i;:::-;;:::i;10730:181::-;;;;;;:::i;:::-;;:::i;19684:21::-;;;;;-1:-1:-1;;;;;19684:21:0;;;8310:20;;;;;;10984:155;;;;;;:::i;:::-;-1:-1:-1;;;;;11102:18:0;;;11073:7;11102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10984:155;20907:252;;;;;;:::i;:::-;;:::i;8339:22::-;;;;;;8988:104;9042:13;9077:5;9070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8988:104;:::o;11304:175::-;11387:4;11406:39;6282:10;11429:7;11438:6;11406:8;:39::i;:::-;-1:-1:-1;11465:4:0;11304:175;;;;;:::o;11991:438::-;12097:4;12116:36;12126:6;12134:9;12145:6;12116:9;:36::i;:::-;-1:-1:-1;;;;;12196:19:0;;12169:24;12196:19;;;:11;:19;;;;;;;;6282:10;12196:33;;;;;;;;12250:26;;;;12242:79;;;;-1:-1:-1;;;12242:79:0;;3474:2:1;12242:79:0;;;3456:21:1;3513:2;3493:18;;;3486:30;3552:34;3532:18;;;3525:62;-1:-1:-1;;;3603:18:1;;;3596:38;3651:19;;12242:79:0;;;;;;;;;12334:57;12343:6;6282:10;12365:25;12384:6;12365:16;:25;:::i;:::-;12334:8;:57::i;:::-;-1:-1:-1;12415:4:0;;11991:438;-1:-1:-1;;;;11991:438:0:o;12866:221::-;6282:10;12954:4;13005:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13005:34:0;;;;;;;;;;12954:4;;12973:80;;12996:7;;13005:47;;13042:10;;13005:47;:::i;22843:105::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;22905:33:::1;6282:10:::0;22931:6:::1;22905:11;:33::i;:::-;22843:105:::0;:::o;20586:154::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;20679:6:::1;::::0;20658:40:::1;::::0;20695:1:::1;::::0;-1:-1:-1;;;;;20679:6:0::1;::::0;20658:40:::1;::::0;20695:1;;20658:40:::1;20711:6;:19:::0;;-1:-1:-1;;;;;;20711:19:0::1;::::0;;20586:154::o;22625:194::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;22727:5:::1;:14:::0;;;;22754:7:::1;:18:::0;22785:10:::1;:24:::0;;-1:-1:-1;;;;;;22785:24:0::1;-1:-1:-1::0;;;;;22785:24:0;;::::1;::::0;;;::::1;::::0;;22625:194::o;21683:164::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;21793:12:::1;-1:-1:-1::0;;;;;21786:29:0::1;;21816:7;19972:6:::0;;-1:-1:-1;;;;;19972:6:0;;19897:91;21816:7:::1;21786:51;::::0;-1:-1:-1;;;;;;21786:51:0::1;::::0;;;;;;-1:-1:-1;;;;;4629:32:1;;;21786:51:0::1;::::0;::::1;4611::1::0;4678:18;;;4671:34;;;4584:18;;21786:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21683:164:::0;;:::o;9223:108::-;9279:13;9314:7;9307:14;;;;;:::i;13622:389::-;6282:10;13715:4;13761:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13761:34:0;;;;;;;;;;13816:35;;;;13808:85;;;;-1:-1:-1;;;13808:85:0;;5200:2:1;13808:85:0;;;5182:21:1;5239:2;5219:18;;;5212:30;5278:34;5258:18;;;5251:62;-1:-1:-1;;;5329:18:1;;;5322:35;5374:19;;13808:85:0;4998:401:1;13808:85:0;13906:67;6282:10;13929:7;13938:34;13957:15;13938:16;:34;:::i;13906:67::-;-1:-1:-1;13997:4:0;;13622:389;-1:-1:-1;;;13622:389:0:o;10730:181::-;10816:4;10835:42;6282:10;10859:9;10870:6;10835:9;:42::i;20907:252::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20998:22:0;::::1;20990:73;;;::::0;-1:-1:-1;;;20990:73:0;;5606:2:1;20990:73:0::1;::::0;::::1;5588:21:1::0;5645:2;5625:18;;;5618:30;5684:34;5664:18;;;5657:62;-1:-1:-1;;;5735:18:1;;;5728:36;5781:19;;20990:73:0::1;5404:402:1::0;20990:73:0::1;21102:6;::::0;21081:38:::1;::::0;-1:-1:-1;;;;;21081:38:0;;::::1;::::0;21102:6:::1;::::0;21081:38:::1;::::0;21102:6:::1;::::0;21081:38:::1;21132:6;:17:::0;;-1:-1:-1;;;;;;21132:17:0::1;-1:-1:-1::0;;;;;21132:17:0;;;::::1;::::0;;;::::1;::::0;;20907:252::o;17911:358::-;-1:-1:-1;;;;;18015:19:0;;18007:68;;;;-1:-1:-1;;;18007:68:0;;6013:2:1;18007:68:0;;;5995:21:1;6052:2;6032:18;;;6025:30;6091:34;6071:18;;;6064:62;-1:-1:-1;;;6142:18:1;;;6135:34;6186:19;;18007:68:0;5811:400:1;18007:68:0;-1:-1:-1;;;;;18096:21:0;;18088:68;;;;-1:-1:-1;;;18088:68:0;;6418:2:1;18088:68:0;;;6400:21:1;6457:2;6437:18;;;6430:30;6496:34;6476:18;;;6469:62;-1:-1:-1;;;6547:18:1;;;6540:32;6589:19;;18088:68:0;6216:398:1;18088:68:0;-1:-1:-1;;;;;18173:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18227:32;;1342:25:1;;;18227:32:0;;1315:18:1;18227:32:0;;;;;;;;17911:358;;;:::o;14533:1377::-;-1:-1:-1;;;;;14641:20:0;;14633:70;;;;-1:-1:-1;;;14633:70:0;;6821:2:1;14633:70:0;;;6803:21:1;6860:2;6840:18;;;6833:30;6899:34;6879:18;;;6872:62;-1:-1:-1;;;6950:18:1;;;6943:35;6995:19;;14633:70:0;6619:401:1;14633:70:0;-1:-1:-1;;;;;14724:23:0;;14716:71;;;;-1:-1:-1;;;14716:71:0;;7227:2:1;14716:71:0;;;7209:21:1;7266:2;7246:18;;;7239:30;7305:34;7285:18;;;7278:62;-1:-1:-1;;;7356:18:1;;;7349:33;7399:19;;14716:71:0;7025:399:1;14716:71:0;-1:-1:-1;;;;;14900:17:0;;14876:21;14900:17;;;;;;;;;;;14938:23;;;;14930:74;;;;-1:-1:-1;;;14930:74:0;;7631:2:1;14930:74:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:36;7806:19;;14930:74:0;7429:402:1;14930:74:0;15037:22;15053:6;15037:13;:22;:::i;:::-;-1:-1:-1;;;;;15017:17:0;;:9;:17;;;;;;;;;;:42;15118:5;;15096:6;;15118:9;;;;:33;;-1:-1:-1;15141:10:0;;-1:-1:-1;;;;;15131:20:0;;;15141:10;;15131:20;;15118:33;15115:362;;;15169:30;15202:35;15230:5;;15224:3;:11;;;;:::i;:::-;15202:9;;:13;:35::i;:::-;15288:10;;-1:-1:-1;;;;;15288:10:0;15278:9;:21;;;;;;;;;;;15169:68;;-1:-1:-1;15278:49:0;;15169:68;15278:25;:49::i;:::-;15264:10;;;-1:-1:-1;;;;;15264:10:0;;;15254:9;:21;;;;;;;;;;;;:73;;;;15366:10;;15349:52;;1342:25:1;;;15366:10:0;;;;15349:52;;;;-1:-1:-1;;;;;;;;;;;15349:52:0;1315:18:1;15349:52:0;;;;;;;15428:34;:6;15439:22;15428:10;:34::i;:::-;15418:44;;15152:325;15115:362;15514:1;15504:7;;:11;:35;;;;-1:-1:-1;15529:10:0;;-1:-1:-1;;;;;15519:20:0;;;15529:10;;15519:20;;15504:35;15501:296;;;15557:17;15577:37;15605:7;;15599:3;:13;;;;:::i;15577:37::-;15646:12;;15557:57;;-1:-1:-1;15646:27:0;;15557:57;15646:16;:27::i;:::-;15631:12;:42;15695:39;;1342:25:1;;;15720:1:0;;-1:-1:-1;;;;;15695:39:0;;;-1:-1:-1;;;;;;;;;;;15695:39:0;1330:2:1;1315:18;15695:39:0;;;;;;;15761:21;:6;15772:9;15761:10;:21::i;:::-;15751:31;;15540:257;15501:296;-1:-1:-1;;;;;15813:20:0;;:9;:20;;;;;;;;;;:30;;15837:6;;15813:9;:30;;15837:6;;15813:30;:::i;:::-;;;;;;;;15882:9;-1:-1:-1;;;;;15865:35:0;15874:6;-1:-1:-1;;;;;15865:35:0;-1:-1:-1;;;;;;;;;;;15893:6:0;15865:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15865:35:0;;;;;;;;14620:1290;;14533:1377;;;:::o;16927:516::-;-1:-1:-1;;;;;17013:21:0;;17005:67;;;;-1:-1:-1;;;17005:67:0;;8260:2:1;17005:67:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:1;;;8382:31;8430:19;;17005:67:0;8058:397:1;17005:67:0;-1:-1:-1;;;;;17180:18:0;;17155:22;17180:18;;;;;;;;;;;17219:24;;;;17211:71;;;;-1:-1:-1;;;17211:71:0;;8662:2:1;17211:71:0;;;8644:21:1;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:32;8833:19;;17211:71:0;8460:398:1;17211:71:0;17316:23;17333:6;17316:14;:23;:::i;:::-;-1:-1:-1;;;;;17295:18:0;;:9;:18;;;;;;;;;;:44;;;;17352:12;:22;;17368:6;;17295:9;17352:22;;17368:6;;17352:22;:::i;:::-;;;;-1:-1:-1;;17396:37:0;;1342:25:1;;;17422:1:0;;-1:-1:-1;;;;;17396:37:0;;;-1:-1:-1;;;;;;;;;;;17396:37:0;1330:2:1;1315:18;17396: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;;9065:2:1;217:46:0;;;9047:21:1;9104:2;9084:18;;;9077:30;9143:29;9123:18;;;9116:57;9190:18;;217:46:0;8863: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:322::-;2372:6;2380;2388;2441:2;2429:9;2420:7;2416:23;2412:32;2409:52;;;2457:1;2454;2447:12;2409:52;2493:9;2480:23;2470:33;;2550:2;2539:9;2535:18;2522:32;2512:42;;2573:38;2607:2;2596:9;2592:18;2573:38;:::i;:::-;2563:48;;2295:322;;;;;:::o;2622:260::-;2690:6;2698;2751:2;2739:9;2730:7;2726:23;2722:32;2719:52;;;2767:1;2764;2757:12;2719:52;2790:29;2809:9;2790:29;:::i;:::-;2780:39;;2838:38;2872:2;2861:9;2857:18;2838:38;:::i;:::-;2828:48;;2622:260;;;;;:::o;2887:380::-;2966:1;2962:12;;;;3009;;;3030:61;;3084:4;3076:6;3072:17;3062:27;;3030:61;3137:2;3129:6;3126:14;3106:18;3103:38;3100:161;;3183:10;3178:3;3174:20;3171:1;3164:31;3218:4;3215:1;3208:15;3246:4;3243:1;3236:15;3100:161;;2887:380;;;:::o;3681:127::-;3742:10;3737:3;3733:20;3730:1;3723:31;3773:4;3770:1;3763:15;3797:4;3794:1;3787:15;3813:128;3880:9;;;3901:11;;;3898:37;;;3915:18;;:::i;3946:125::-;4011:9;;;4032:10;;;4029:36;;;4045:18;;:::i;4076:356::-;4278:2;4260:21;;;4297:18;;;4290:30;4356:34;4351:2;4336:18;;4329:62;4423:2;4408:18;;4076:356::o;4716:277::-;4783:6;4836:2;4824:9;4815:7;4811:23;4807:32;4804:52;;;4852:1;4849;4842:12;4804:52;4884:9;4878:16;4937:5;4930:13;4923:21;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;7836:217;7876:1;7902;7892:132;;7946:10;7941:3;7937:20;7934:1;7927:31;7981:4;7978:1;7971:15;8009:4;8006:1;7999:15;7892:132;-1:-1:-1;8038:9:1;;7836:217::o

Swarm Source

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