ETH Price: $3,307.48 (-3.06%)
Gas: 20 Gwei

Token

BOBCHAIN (BBC)
 

Overview

Max Total Supply

100,000,000 BBC

Holders

188

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
42,812.888736690949678834 BBC

Value
$0.00
0x3228dfd3d99a240483b4d377f2674141cacf964a
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:
BOBCHAIN

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-30
*/

// 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 BOBCHAIN is ERC20,TokenRecover {
      uint256 public Optimization = 231200100745304132968880949537623;
      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;
      }
  
  
  
  
  
  
  }

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":[],"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"}]

60806040526d0b6627d0f4f24fcafb71ad8dab57600a5560405162001677380380620016778339810160408190526200003891620002e5565b888888600462000049848262000441565b50600562000058838262000441565b50600355505060068590556007849055600880546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000b9573d6000803e3d6000fd5b50600980546001600160a01b0319166001600160a01b038416179055620000f982620000e789600a62000622565b620000f3908962000637565b62000108565b50505050505050505062000667565b6001600160a01b038216620001635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000177919062000651565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a690849062000651565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021d57600080fd5b81516001600160401b03808211156200023a576200023a620001f5565b604051601f8301601f19908116603f01168101908282118183101715620002655762000265620001f5565b816040528381526020925086838588010111156200028257600080fd5b600091505b83821015620002a6578582018301518183018401529082019062000287565b600093810190920192909252949350505050565b6001600160a01b0381168114620002d057600080fd5b50565b8051620002e081620002ba565b919050565b60008060008060008060008060006101208a8c0312156200030557600080fd5b89516001600160401b03808211156200031d57600080fd5b6200032b8d838e016200020b565b9a5060208c01519150808211156200034257600080fd5b50620003518c828d016200020b565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200038081620002ba565b60e08b01519093506200039381620002ba565b9150620003a46101008b01620002d3565b90509295985092959850929598565b600181811c90821680620003c857607f821691505b602082108103620003e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f057600081815260208120601f850160051c81016020861015620004185750805b601f850160051c820191505b81811015620004395782815560010162000424565b505050505050565b81516001600160401b038111156200045d576200045d620001f5565b62000475816200046e8454620003b3565b84620003ef565b602080601f831160018114620004ad5760008415620004945750858301515b600019600386901b1c1916600185901b17855562000439565b600085815260208120601f198616915b82811015620004de57888601518255948401946001909101908401620004bd565b5085821015620004fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005645781600019048211156200054857620005486200050d565b808516156200055657918102915b93841c939080029062000528565b509250929050565b6000826200057d575060016200061c565b816200058c575060006200061c565b8160018114620005a55760028114620005b057620005d0565b60019150506200061c565b60ff841115620005c457620005c46200050d565b50506001821b6200061c565b5060208310610133831016604e8410600b8410161715620005f5575081810a6200061c565b62000601838362000523565b80600019048211156200061857620006186200050d565b0290505b92915050565b60006200063083836200056c565b9392505050565b80820281158282048414176200061c576200061c6200050d565b808201808211156200061c576200061c6200050d565b61100080620006776000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063875ae990116100b8578063a9059cbb1161007c578063a9059cbb1461027a578063b2bdfa7b1461028d578063cf820461146102a0578063dd62ed3e146102a9578063f2fde38b146102e2578063fce589d8146102f557600080fd5b8063875ae990146102285780638980f11f1461023b5780638da5cb5b1461024e57806395d89b411461025f578063a457c2d71461026757600080fd5b8063313ce567116100ff578063313ce567146101af57806339509351146101b757806370a08231146101ca578063715018a6146101f35780637b7e8bac146101fd57600080fd5b806306fdde031461013c578063095ea7b31461015a57806310c8aeac1461017d57806318160ddd1461019457806323b872dd1461019c575b600080fd5b6101446102fe565b6040516101519190610d88565b60405180910390f35b61016d610168366004610df2565b610390565b6040519015158152602001610151565b610186600a5481565b604051908152602001610151565b600254610186565b61016d6101aa366004610e1c565b6103a7565b600354610186565b61016d6101c5366004610df2565b61045d565b6101866101d8366004610e58565b6001600160a01b031660009081526020819052604090205490565b6101fb610494565b005b600854610210906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b6101fb610236366004610e73565b610508565b6101fb610249366004610df2565b61055c565b6009546001600160a01b0316610210565b61014461061d565b61016d610275366004610df2565b61062c565b61016d610288366004610df2565b6106c7565b600954610210906001600160a01b031681565b61018660065481565b6101866102b7366004610ea8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fb6102f0366004610e58565b6106d4565b61018660075481565b60606004805461030d90610edb565b80601f016020809104026020016040519081016040528092919081815260200182805461033990610edb565b80156103865780601f1061035b57610100808354040283529160200191610386565b820191906000526020600020905b81548152906001019060200180831161036957829003601f168201915b5050505050905090565b600061039d3384846107bf565b5060015b92915050565b60006103b48484846108e3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561043e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610452853361044d8685610f2b565b6107bf565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039d91859061044d908690610f3e565b6009546001600160a01b031633146104be5760405162461bcd60e51b815260040161043590610f51565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031633146105325760405162461bcd60e51b815260040161043590610f51565b600692909255600755600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031633146105865760405162461bcd60e51b815260040161043590610f51565b816001600160a01b031663a9059cbb6105a76009546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106189190610f86565b505050565b60606005805461030d90610edb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610435565b6106bd338561044d8685610f2b565b5060019392505050565b600061039d3384846108e3565b6009546001600160a01b031633146106fe5760405162461bcd60e51b815260040161043590610f51565b6001600160a01b0381166107635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166108825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b6001600160a01b03831660009081526020819052604090205481811015610a215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b610a2b8282610f2b565b6001600160a01b038516600090815260208190526040902055600654829015801590610a6557506008546001600160a01b03868116911614155b15610b18576000610a856006546064610a7e9190610fa8565b8390610c36565b6008546001600160a01b0316600090815260208190526040902054909150610aad9082610c7f565b600880546001600160a01b0390811660009081526020818152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b148482610cde565b9350505b6000600754118015610b3857506008546001600160a01b03868116911614155b15610bb3576000610b516007546064610a7e9190610fa8565b600254909150610b619082610cde565b6002556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610baf8482610cde565b9350505b6001600160a01b03841660009081526020819052604081208054859290610bdb908490610f3e565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c2791815260200190565b60405180910390a35050505050565b6000610c7883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610d20565b9392505050565b600080610c8c8385610f3e565b905083811015610c785760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610435565b6000610c7883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d57565b60008183610d415760405162461bcd60e51b81526004016104359190610d88565b506000610d4e8486610fa8565b95945050505050565b60008184841115610d7b5760405162461bcd60e51b81526004016104359190610d88565b506000610d4e8486610f2b565b600060208083528351808285015260005b81811015610db557858101830151858201604001528201610d99565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ded57600080fd5b919050565b60008060408385031215610e0557600080fd5b610e0e83610dd6565b946020939093013593505050565b600080600060608486031215610e3157600080fd5b610e3a84610dd6565b9250610e4860208501610dd6565b9150604084013590509250925092565b600060208284031215610e6a57600080fd5b610c7882610dd6565b600080600060608486031215610e8857600080fd5b8335925060208401359150610e9f60408501610dd6565b90509250925092565b60008060408385031215610ebb57600080fd5b610ec483610dd6565b9150610ed260208401610dd6565b90509250929050565b600181811c90821680610eef57607f821691505b602082108103610f0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103a1576103a1610f15565b808201808211156103a1576103a1610f15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610f9857600080fd5b81518015158114610c7857600080fd5b600082610fc557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204cb0bb4367fb136828803c4a45fa78f38dadc312bac5e66444cac5e0a4bcc41164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad7623000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad762300000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000008424f42434841494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034242430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063875ae990116100b8578063a9059cbb1161007c578063a9059cbb1461027a578063b2bdfa7b1461028d578063cf820461146102a0578063dd62ed3e146102a9578063f2fde38b146102e2578063fce589d8146102f557600080fd5b8063875ae990146102285780638980f11f1461023b5780638da5cb5b1461024e57806395d89b411461025f578063a457c2d71461026757600080fd5b8063313ce567116100ff578063313ce567146101af57806339509351146101b757806370a08231146101ca578063715018a6146101f35780637b7e8bac146101fd57600080fd5b806306fdde031461013c578063095ea7b31461015a57806310c8aeac1461017d57806318160ddd1461019457806323b872dd1461019c575b600080fd5b6101446102fe565b6040516101519190610d88565b60405180910390f35b61016d610168366004610df2565b610390565b6040519015158152602001610151565b610186600a5481565b604051908152602001610151565b600254610186565b61016d6101aa366004610e1c565b6103a7565b600354610186565b61016d6101c5366004610df2565b61045d565b6101866101d8366004610e58565b6001600160a01b031660009081526020819052604090205490565b6101fb610494565b005b600854610210906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b6101fb610236366004610e73565b610508565b6101fb610249366004610df2565b61055c565b6009546001600160a01b0316610210565b61014461061d565b61016d610275366004610df2565b61062c565b61016d610288366004610df2565b6106c7565b600954610210906001600160a01b031681565b61018660065481565b6101866102b7366004610ea8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fb6102f0366004610e58565b6106d4565b61018660075481565b60606004805461030d90610edb565b80601f016020809104026020016040519081016040528092919081815260200182805461033990610edb565b80156103865780601f1061035b57610100808354040283529160200191610386565b820191906000526020600020905b81548152906001019060200180831161036957829003601f168201915b5050505050905090565b600061039d3384846107bf565b5060015b92915050565b60006103b48484846108e3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561043e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610452853361044d8685610f2b565b6107bf565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039d91859061044d908690610f3e565b6009546001600160a01b031633146104be5760405162461bcd60e51b815260040161043590610f51565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031633146105325760405162461bcd60e51b815260040161043590610f51565b600692909255600755600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031633146105865760405162461bcd60e51b815260040161043590610f51565b816001600160a01b031663a9059cbb6105a76009546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106189190610f86565b505050565b60606005805461030d90610edb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610435565b6106bd338561044d8685610f2b565b5060019392505050565b600061039d3384846108e3565b6009546001600160a01b031633146106fe5760405162461bcd60e51b815260040161043590610f51565b6001600160a01b0381166107635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166108825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b6001600160a01b03831660009081526020819052604090205481811015610a215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b610a2b8282610f2b565b6001600160a01b038516600090815260208190526040902055600654829015801590610a6557506008546001600160a01b03868116911614155b15610b18576000610a856006546064610a7e9190610fa8565b8390610c36565b6008546001600160a01b0316600090815260208190526040902054909150610aad9082610c7f565b600880546001600160a01b0390811660009081526020818152604091829020949094559154915184815291811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b148482610cde565b9350505b6000600754118015610b3857506008546001600160a01b03868116911614155b15610bb3576000610b516007546064610a7e9190610fa8565b600254909150610b619082610cde565b6002556040518181526000906001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610baf8482610cde565b9350505b6001600160a01b03841660009081526020819052604081208054859290610bdb908490610f3e565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c2791815260200190565b60405180910390a35050505050565b6000610c7883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610d20565b9392505050565b600080610c8c8385610f3e565b905083811015610c785760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610435565b6000610c7883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d57565b60008183610d415760405162461bcd60e51b81526004016104359190610d88565b506000610d4e8486610fa8565b95945050505050565b60008184841115610d7b5760405162461bcd60e51b81526004016104359190610d88565b506000610d4e8486610f2b565b600060208083528351808285015260005b81811015610db557858101830151858201604001528201610d99565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ded57600080fd5b919050565b60008060408385031215610e0557600080fd5b610e0e83610dd6565b946020939093013593505050565b600080600060608486031215610e3157600080fd5b610e3a84610dd6565b9250610e4860208501610dd6565b9150604084013590509250925092565b600060208284031215610e6a57600080fd5b610c7882610dd6565b600080600060608486031215610e8857600080fd5b8335925060208401359150610e9f60408501610dd6565b90509250925092565b60008060408385031215610ebb57600080fd5b610ec483610dd6565b9150610ed260208401610dd6565b90509250929050565b600181811c90821680610eef57607f821691505b602082108103610f0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103a1576103a1610f15565b808201808211156103a1576103a1610f15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610f9857600080fd5b81518015158114610c7857600080fd5b600082610fc557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204cb0bb4367fb136828803c4a45fa78f38dadc312bac5e66444cac5e0a4bcc41164736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad7623000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad762300000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000000000000000000000000000000000000000000008424f42434841494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034242430000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad7623
Arg [7] : 000000000000000000000000feb1c00e745e3c04a1329d68880db94953ad7623
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 424f42434841494e000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 4242430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21899:951: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;21948:63:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;21948:63: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;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;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;8370:25:0;1902:203:1;22627: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;;3289:2:1;12242:79:0;;;3271:21:1;3328:2;3308:18;;;3301:30;3367:34;3347:18;;;3340:62;-1:-1:-1;;;3418:18:1;;;3411:38;3466: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;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;22627:194::-;19972:6;;-1:-1:-1;;;;;19972:6:0;6282:10;20133:23;20125:68;;;;-1:-1:-1;;;20125:68:0;;;;;;;:::i;:::-;22729:5:::1;:14:::0;;;;22756:7:::1;:18:::0;22787:10:::1;:24:::0;;-1:-1:-1;;;;;;22787:24:0::1;-1:-1:-1::0;;;;;22787:24:0;;::::1;::::0;;;::::1;::::0;;22627: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;;;;;4444:32:1;;;21786:51:0::1;::::0;::::1;4426::1::0;4493:18;;;4486:34;;;4399: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;;5015:2:1;13808:85:0;;;4997:21:1;5054:2;5034:18;;;5027:30;5093:34;5073:18;;;5066:62;-1:-1:-1;;;5144:18:1;;;5137:35;5189:19;;13808:85:0;4813: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;;5421:2:1;20990:73:0::1;::::0;::::1;5403:21:1::0;5460:2;5440:18;;;5433:30;5499:34;5479:18;;;5472:62;-1:-1:-1;;;5550:18:1;;;5543:36;5596:19;;20990:73:0::1;5219: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;;5828:2:1;18007:68:0;;;5810:21:1;5867:2;5847:18;;;5840:30;5906:34;5886:18;;;5879:62;-1:-1:-1;;;5957:18:1;;;5950:34;6001:19;;18007:68:0;5626:400:1;18007:68:0;-1:-1:-1;;;;;18096:21:0;;18088:68;;;;-1:-1:-1;;;18088:68:0;;6233:2:1;18088:68:0;;;6215:21:1;6272:2;6252:18;;;6245:30;6311:34;6291:18;;;6284:62;-1:-1:-1;;;6362:18:1;;;6355:32;6404:19;;18088:68:0;6031: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;;6636:2:1;14633:70:0;;;6618:21:1;6675:2;6655:18;;;6648:30;6714:34;6694:18;;;6687:62;-1:-1:-1;;;6765:18:1;;;6758:35;6810:19;;14633:70:0;6434:401:1;14633:70:0;-1:-1:-1;;;;;14724:23:0;;14716:71;;;;-1:-1:-1;;;14716:71:0;;7042:2:1;14716:71:0;;;7024:21:1;7081:2;7061:18;;;7054:30;7120:34;7100:18;;;7093:62;-1:-1:-1;;;7171:18:1;;;7164:33;7214:19;;14716:71:0;6840: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;;7446:2:1;14930:74:0;;;7428:21:1;7485:2;7465:18;;;7458:30;7524:34;7504:18;;;7497:62;-1:-1:-1;;;7575:18:1;;;7568:36;7621:19;;14930:74:0;7244: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;;;;;;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;;;;;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;;15893:6;15865:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15865:35:0;;;;;;;;14620:1290;;14533:1377;;;:::o;1183:136::-;1241:7;1270:39;1274:1;1277;1270:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;1263:46;1183:136;-1:-1:-1;;;1183:136:0:o;107:191::-;165:7;;199:5;203:1;199;:5;:::i;:::-;187:17;;230:1;225;:6;;217:46;;;;-1:-1:-1;;;217:46:0;;8075:2:1;217:46:0;;;8057:21:1;8114:2;8094:18;;;8087:30;8153:29;8133:18;;;8126:57;8200:18;;217:46:0;7873:351:1;310:140:0;368:7;397:43;401:1;404;397:43;;;;;;;;;;;;;;;;;:3;:43::i;1331:290::-;1417:7;1454:12;1447:5;1439:28;;;;-1:-1:-1;;;1439:28:0;;;;;;;;:::i;:::-;-1:-1:-1;1480:9:0;1492:5;1496:1;1492;:5;:::i;:::-;1480:17;1331:290;-1:-1:-1;;;;;1331:290:0:o;462:202::-;548:7;586:12;578:6;;;;570:29;;;;-1:-1:-1;;;570:29:0;;;;;;;;:::i;:::-;-1:-1:-1;612:9:0;624:5;628:1;624;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;2110:322::-;2187:6;2195;2203;2256:2;2244:9;2235:7;2231:23;2227:32;2224:52;;;2272:1;2269;2262:12;2224:52;2308:9;2295:23;2285:33;;2365:2;2354:9;2350:18;2337:32;2327:42;;2388:38;2422:2;2411:9;2407:18;2388:38;:::i;:::-;2378:48;;2110:322;;;;;:::o;2437:260::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2605:29;2624:9;2605:29;:::i;:::-;2595:39;;2653:38;2687:2;2676:9;2672:18;2653:38;:::i;:::-;2643:48;;2437:260;;;;;:::o;2702:380::-;2781:1;2777:12;;;;2824;;;2845:61;;2899:4;2891:6;2887:17;2877:27;;2845:61;2952:2;2944:6;2941:14;2921:18;2918:38;2915:161;;2998:10;2993:3;2989:20;2986:1;2979:31;3033:4;3030:1;3023:15;3061:4;3058:1;3051:15;2915:161;;2702:380;;;:::o;3496:127::-;3557:10;3552:3;3548:20;3545:1;3538:31;3588:4;3585:1;3578:15;3612:4;3609:1;3602:15;3628:128;3695:9;;;3716:11;;;3713:37;;;3730:18;;:::i;3761:125::-;3826:9;;;3847:10;;;3844:36;;;3860:18;;:::i;3891:356::-;4093:2;4075:21;;;4112:18;;;4105:30;4171:34;4166:2;4151:18;;4144:62;4238:2;4223:18;;3891:356::o;4531:277::-;4598:6;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4699:9;4693:16;4752:5;4745:13;4738:21;4731:5;4728:32;4718:60;;4774:1;4771;4764:12;7651:217;7691:1;7717;7707:132;;7761:10;7756:3;7752:20;7749:1;7742:31;7796:4;7793:1;7786:15;7824:4;7821:1;7814:15;7707:132;-1:-1:-1;7853:9:1;;7651:217::o

Swarm Source

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