ERC-20
Overview
Max Total Supply
8,888,888,888,888 ⚽️-🏆
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
17,720,635,422.121910929540265799 ⚽️-🏆Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-17 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN 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 payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; _mint(msg.sender, 8888888888888 * 10**18); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000f3438038062000f3483398101604081905262000034916200030b565b815162000049906003906020850190620001ba565b5080516200005f906004906020840190620001ba565b506005805460ff1916601217905562000086336c70318c8e57bb47a06615e000006200008e565b505062000461565b6001600160a01b038216620000c05760405162461bcd60e51b8152600401620000b790620003a9565b60405180910390fd5b620000ce600083836200017a565b620000ea816002546200017f60201b620004181790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200011d918390620004186200017f821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200016e908590620003e0565b60405180910390a35050565b505050565b6000806200018e8385620003e9565b905083811015620001b35760405162461bcd60e51b8152600401620000b79062000372565b9392505050565b828054620001c8906200040e565b90600052602060002090601f016020900481019282620001ec576000855562000237565b82601f106200020757805160ff191683800117855562000237565b8280016001018555821562000237579182015b82811115620002375782518255916020019190600101906200021a565b506200024592915062000249565b5090565b5b808211156200024557600081556001016200024a565b600082601f83011262000271578081fd5b81516001600160401b03808211156200028e576200028e6200044b565b6040516020601f8401601f1916820181018381118382101715620002b657620002b66200044b565b6040528382528584018101871015620002cd578485fd5b8492505b83831015620002f05785830181015182840182015291820191620002d1565b838311156200030157848185840101525b5095945050505050565b600080604083850312156200031e578182fd5b82516001600160401b038082111562000335578384fd5b620003438683870162000260565b9350602085015191508082111562000359578283fd5b50620003688582860162000260565b9150509250929050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200040957634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200042357607f821691505b602082108114156200044557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ac380620004716000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100c9565b8063395093511461014957806370a082311461015c57806395d89b411461016f576100c9565b806318160ddd116100b257806318160ddd1461010c57806323b872dd14610121578063313ce56714610134576100c9565b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101b0565b6040516100e39190610735565b60405180910390f35b6100ff6100fa366004610701565b610242565b6040516100e3919061072a565b61011461025f565b6040516100e39190610951565b6100ff61012f3660046106c6565b610265565b61013c6102ec565b6040516100e3919061095a565b6100ff610157366004610701565b6102f5565b61011461016a36600461067a565b610343565b6100d6610362565b6100ff610185366004610701565b610371565b6100ff610198366004610701565b6103d9565b6101146101ab366004610694565b6103ed565b6060600380546101bf90610997565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610997565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061025661024f610457565b848461045b565b50600192915050565b60025490565b600061027284848461050f565b6102e28461027e610457565b6102dd85604051806060016040528060288152602001610a41602891396001600160a01b038a166000908152600160205260408120906102bc610457565b6001600160a01b031681526020810191909152604001600020549190610624565b61045b565b5060019392505050565b60055460ff1690565b6000610256610302610457565b846102dd8560016000610313610457565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610418565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600480546101bf90610997565b600061025661037e610457565b846102dd85604051806060016040528060258152602001610a6960259139600160006103a8610457565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610624565b60006102566103e6610457565b848461050f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806104258385610968565b9050838110156104505760405162461bcd60e51b815260040161044790610860565b60405180910390fd5b9392505050565b3390565b6001600160a01b0383166104815760405162461bcd60e51b8152600401610447906108f4565b6001600160a01b0382166104a75760405162461bcd60e51b815260040161044790610803565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610502908590610951565b60405180910390a3505050565b6001600160a01b0383166105355760405162461bcd60e51b815260040161044790610897565b6001600160a01b03821661055b5760405162461bcd60e51b8152600401610447906107a6565b61056683838361065e565b6105a381604051806060016040528060268152602001610a1b602691396001600160a01b0386166000908152602081905260409020549190610624565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546105d29082610418565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610502908590610951565b600081848411156106485760405162461bcd60e51b81526004016104479190610735565b5060006106558486610980565b95945050505050565b505050565b80356001600160a01b038116811461035d57600080fd5b60006020828403121561068b578081fd5b61045082610663565b600080604083850312156106a6578081fd5b6106af83610663565b91506106bd60208401610663565b90509250929050565b6000806000606084860312156106da578081fd5b6106e384610663565b92506106f160208501610663565b9150604084013590509250925092565b60008060408385031215610713578182fd5b61071c83610663565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b8181101561076157858101830151858201604001528201610745565b818111156107725783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097b5761097b6109eb565b500190565b600082821015610992576109926109eb565b500390565b6002810460018216806109ab57607f821691505b602082108114156109e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ea001c1a8d82b6e41e6124ef61aa98798c966cb06585dc7b06a0c344884e8b964736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000be29abdefb88f2df09f8f860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e29abdefb88f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100c9565b8063395093511461014957806370a082311461015c57806395d89b411461016f576100c9565b806318160ddd116100b257806318160ddd1461010c57806323b872dd14610121578063313ce56714610134576100c9565b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101b0565b6040516100e39190610735565b60405180910390f35b6100ff6100fa366004610701565b610242565b6040516100e3919061072a565b61011461025f565b6040516100e39190610951565b6100ff61012f3660046106c6565b610265565b61013c6102ec565b6040516100e3919061095a565b6100ff610157366004610701565b6102f5565b61011461016a36600461067a565b610343565b6100d6610362565b6100ff610185366004610701565b610371565b6100ff610198366004610701565b6103d9565b6101146101ab366004610694565b6103ed565b6060600380546101bf90610997565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610997565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061025661024f610457565b848461045b565b50600192915050565b60025490565b600061027284848461050f565b6102e28461027e610457565b6102dd85604051806060016040528060288152602001610a41602891396001600160a01b038a166000908152600160205260408120906102bc610457565b6001600160a01b031681526020810191909152604001600020549190610624565b61045b565b5060019392505050565b60055460ff1690565b6000610256610302610457565b846102dd8560016000610313610457565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610418565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600480546101bf90610997565b600061025661037e610457565b846102dd85604051806060016040528060258152602001610a6960259139600160006103a8610457565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610624565b60006102566103e6610457565b848461050f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806104258385610968565b9050838110156104505760405162461bcd60e51b815260040161044790610860565b60405180910390fd5b9392505050565b3390565b6001600160a01b0383166104815760405162461bcd60e51b8152600401610447906108f4565b6001600160a01b0382166104a75760405162461bcd60e51b815260040161044790610803565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610502908590610951565b60405180910390a3505050565b6001600160a01b0383166105355760405162461bcd60e51b815260040161044790610897565b6001600160a01b03821661055b5760405162461bcd60e51b8152600401610447906107a6565b61056683838361065e565b6105a381604051806060016040528060268152602001610a1b602691396001600160a01b0386166000908152602081905260409020549190610624565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546105d29082610418565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610502908590610951565b600081848411156106485760405162461bcd60e51b81526004016104479190610735565b5060006106558486610980565b95945050505050565b505050565b80356001600160a01b038116811461035d57600080fd5b60006020828403121561068b578081fd5b61045082610663565b600080604083850312156106a6578081fd5b6106af83610663565b91506106bd60208401610663565b90509250929050565b6000806000606084860312156106da578081fd5b6106e384610663565b92506106f160208501610663565b9150604084013590509250925092565b60008060408385031215610713578182fd5b61071c83610663565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b8181101561076157858101830151858201604001528201610745565b818111156107725783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097b5761097b6109eb565b500190565b600082821015610992576109926109eb565b500390565b6002810460018216806109ab57607f821691505b602082108114156109e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ea001c1a8d82b6e41e6124ef61aa98798c966cb06585dc7b06a0c344884e8b964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000be29abdefb88f2df09f8f860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e29abdefb88f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): ⚽️-🏆
Arg [1] : symbol_ (string): ⚽️
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : e29abdefb88f2df09f8f86000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : e29abdefb88f0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12656:9744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13579:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15685:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;14654:100::-;;;:::i;:::-;;;;;;;:::i;16336:321::-;;;;;;:::i;:::-;;:::i;14506:83::-;;;:::i;:::-;;;;;;;:::i;17066:218::-;;;;;;:::i;:::-;;:::i;14817:119::-;;;;;;:::i;:::-;;:::i;13781:87::-;;;:::i;17787:269::-;;;;;;:::i;:::-;;:::i;15149:175::-;;;;;;:::i;:::-;;:::i;15387:151::-;;;;;;:::i;:::-;;:::i;13579:83::-;13616:13;13649:5;13642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13579:83;:::o;15685:169::-;15768:4;15785:39;15794:12;:10;:12::i;:::-;15808:7;15817:6;15785:8;:39::i;:::-;-1:-1:-1;15842:4:0;15685:169;;;;:::o;14654:100::-;14734:12;;14654:100;:::o;16336:321::-;16442:4;16459:36;16469:6;16477:9;16488:6;16459:9;:36::i;:::-;16506:121;16515:6;16523:12;:10;:12::i;:::-;16537:89;16575:6;16537:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16537:19:0;;;;;;:11;:19;;;;;;16557:12;:10;:12::i;:::-;-1:-1:-1;;;;;16537:33:0;;;;;;;;;;;;-1:-1:-1;16537:33:0;;;:89;:37;:89::i;:::-;16506:8;:121::i;:::-;-1:-1:-1;16645:4:0;16336:321;;;;;:::o;14506:83::-;14572:9;;;;14506:83;:::o;17066:218::-;17154:4;17171:83;17180:12;:10;:12::i;:::-;17194:7;17203:50;17242:10;17203:11;:25;17215:12;:10;:12::i;:::-;-1:-1:-1;;;;;17203:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17203:25:0;;;:34;;;;;;;;;;;:38;:50::i;14817:119::-;-1:-1:-1;;;;;14910:18:0;;14883:7;14910:18;;;;;;;;;;;14817:119;;;;:::o;13781:87::-;13820:13;13853:7;13846:14;;;;;:::i;17787:269::-;17880:4;17897:129;17906:12;:10;:12::i;:::-;17920:7;17929:96;17968:15;17929:96;;;;;;;;;;;;;;;;;:11;:25;17941:12;:10;:12::i;:::-;-1:-1:-1;;;;;17929:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17929:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15149:175::-;15235:4;15252:42;15262:12;:10;:12::i;:::-;15276:9;15287:6;15252:9;:42::i;15387:151::-;-1:-1:-1;;;;;15503:18:0;;;15476:7;15503:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15387:151::o;6947:181::-;7005:7;;7037:5;7041:1;7037;:5;:::i;:::-;7025:17;;7066:1;7061;:6;;7053:46;;;;-1:-1:-1;;;7053:46:0;;;;;;;:::i;:::-;;;;;;;;;7119:1;6947:181;-1:-1:-1;;;6947:181:0:o;657:115::-;753:10;657:115;:::o;20934:346::-;-1:-1:-1;;;;;21036:19:0;;21028:68;;;;-1:-1:-1;;;21028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21115:21:0;;21107:68;;;;-1:-1:-1;;;21107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21188:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21240:32;;;;;21218:6;;21240:32;:::i;:::-;;;;;;;;20934:346;;;:::o;18546:539::-;-1:-1:-1;;;;;18652:20:0;;18644:70;;;;-1:-1:-1;;;18644:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18733:23:0;;18725:71;;;;-1:-1:-1;;;18725:71:0;;;;;;;:::i;:::-;18809:47;18830:6;18838:9;18849:6;18809:20;:47::i;:::-;18889:71;18911:6;18889:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18889:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18869:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18994:20;;;;;;;:32;;19019:6;18994:24;:32::i;:::-;-1:-1:-1;;;;;18971:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19042:35;;;;;;;;;;19070:6;;19042:35;:::i;7850:192::-;7936:7;7972:12;7964:6;;;;7956:29;;;;-1:-1:-1;;;7956:29:0;;;;;;;;:::i;:::-;-1:-1:-1;7996:9:0;8008:5;8012:1;8008;:5;:::i;:::-;7996:17;7850:192;-1:-1:-1;;;;;7850:192:0:o;22305:92::-;;;;:::o;14:198:1:-;84:20;;-1:-1:-1;;;;;133:54:1;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:187::-;1482:14;;1475:22;1457:41;;1445:2;1430:18;;1412:92::o;1509:662::-;;1650:2;1679;1668:9;1661:21;1711:6;1705:13;1754:6;1749:2;1738:9;1734:18;1727:34;1779:4;1792:140;1806:6;1803:1;1800:13;1792:140;;;1901:14;;;1897:23;;1891:30;1867:17;;;1886:2;1863:26;1856:66;1821:10;;1792:140;;;1950:6;1947:1;1944:13;1941:2;;;2020:4;2015:2;2006:6;1995:9;1991:22;1987:31;1980:45;1941:2;-1:-1:-1;2087:2:1;2075:15;2092:66;2071:88;2056:104;;;;2162:2;2052:113;;1630:541;-1:-1:-1;;;1630:541:1:o;2176:399::-;2378:2;2360:21;;;2417:2;2397:18;;;2390:30;2456:34;2451:2;2436:18;;2429:62;2527:5;2522:2;2507:18;;2500:33;2565:3;2550:19;;2350:225::o;2580:398::-;2782:2;2764:21;;;2821:2;2801:18;;;2794:30;2860:34;2855:2;2840:18;;2833:62;2931:4;2926:2;2911:18;;2904:32;2968:3;2953:19;;2754:224::o;2983:351::-;3185:2;3167:21;;;3224:2;3204:18;;;3197:30;3263:29;3258:2;3243:18;;3236:57;3325:2;3310:18;;3157:177::o;3339:401::-;3541:2;3523:21;;;3580:2;3560:18;;;3553:30;3619:34;3614:2;3599:18;;3592:62;3690:7;3685:2;3670:18;;3663:35;3730:3;3715:19;;3513:227::o;3745:400::-;3947:2;3929:21;;;3986:2;3966:18;;;3959:30;4025:34;4020:2;4005:18;;3998:62;4096:6;4091:2;4076:18;;4069:34;4135:3;4120:19;;3919:226::o;4150:177::-;4296:25;;;4284:2;4269:18;;4251:76::o;4332:184::-;4504:4;4492:17;;;;4474:36;;4462:2;4447:18;;4429:87::o;4521:128::-;;4592:1;4588:6;4585:1;4582:13;4579:2;;;4598:18;;:::i;:::-;-1:-1:-1;4634:9:1;;4569:80::o;4654:125::-;;4722:1;4719;4716:8;4713:2;;;4727:18;;:::i;:::-;-1:-1:-1;4764:9:1;;4703:76::o;4784:437::-;4869:1;4859:12;;4916:1;4906:12;;;4927:2;;4981:4;4973:6;4969:17;4959:27;;4927:2;5034;5026:6;5023:14;5003:18;5000:38;4997:2;;;5071:77;5068:1;5061:88;5172:4;5169:1;5162:15;5200:4;5197:1;5190:15;4997:2;;4839:382;;;:::o;5226:184::-;5278:77;5275:1;5268:88;5375:4;5372:1;5365:15;5399:4;5396:1;5389:15
Swarm Source
ipfs://7ea001c1a8d82b6e41e6124ef61aa98798c966cb06585dc7b06a0c344884e8b9
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.