ERC-20
Overview
Max Total Supply
100,000,000 PINGU
Holders
79
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Pingu
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "./ERC20.sol"; import "./Ownable.sol"; contract Pingu is ERC20, Ownable { mapping(address => bool) private whitelistToAddresses; mapping(address => bool) private whitelistFromAddresses; bool public isTransferRestricted = true; constructor() ERC20("Pingu", "PINGU") { _mint(msg.sender, 100000000 * (10 ** uint256(decimals()))); } function activateTransfer() external onlyOwner { require(isTransferRestricted, "Transfer restriction is permanent"); isTransferRestricted = false; } function updateWhiltelistToAddress(address _address, bool _status) public onlyOwner { whitelistToAddresses[_address] = _status; } function updateWhiltelistFromAddress(address _address, bool _status) public onlyOwner { whitelistFromAddresses[_address] = _status; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (isTransferRestricted) { if (from != address(0) && to != address(0)) { if (!whitelistFromAddresses[from]) { require(whitelistToAddresses[to], "Address not allowed for transfer"); } } } } function burn(uint256 amount) public { require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn"); _burn(msg.sender, amount); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "./Context.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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.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 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 ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (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 _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be 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 {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "./IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; /** * @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); }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"name":"activateTransfer","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"isTransferRestricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateWhiltelistFromAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateWhiltelistToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234620003fb576200001462000400565b6020906450696e677560d81b828201526200002e62000400565b6450494e475560d81b818401528151906001600160401b03808311620002fb5760038054936001958686811c96168015620003f0575b88871014620003da578190601f9687811162000384575b5088908783116001146200031d5760009262000311575b505060001982841b1c191690861b1781555b8251918211620002fb5760049283548681811c91168015620002f0575b88821014620002db579081868594931162000283575b50879086841160011462000218576000936200020c575b505082861b92600019911b1c19161781555b60058054336001600160a01b0319821681179092556040519491906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360ff1960085416176008553315620001cf57836200016960025462000424565b6002553360005260008152604060002062000185815462000424565b905560007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef604051926a52b7d2dcc80cd2e400000084523393a3604051610ebf9081620004548239f35b9260649362461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b015191503880620000ee565b9190879450601f1984169286600052896000209360005b8b8282106200026c575050851162000251575b50505050811b01815562000100565b01519060f884600019921b161c191690553880808062000242565b8385015187558b989096019593840193016200022f565b9091925084600052876000208680860160051c8201928a8710620002d1575b91899187969594930160051c01915b828110620002c1575050620000d7565b60008155869550899101620002b1565b92508192620002a2565b602285634e487b7160e01b6000525260246000fd5b90607f1690620000c1565b634e487b7160e01b600052604160045260246000fd5b01519050388062000092565b90889350601f19831691856000528a6000209260005b8c8282106200036d575050841162000354575b505050811b018155620000a4565b015160001983861b60f8161c1916905538808062000346565b8385015186558c9790950194938401930162000333565b90915083600052886000208780850160051c8201928b8610620003d0575b918a91869594930160051c01915b828110620003c05750506200007b565b600081558594508a9101620003b0565b92508192620003a2565b634e487b7160e01b600052602260045260246000fd5b95607f169562000064565b600080fd5b60408051919082016001600160401b03811183821017620002fb5760405260058252565b906a52b7d2dcc80cd2e400000082018092116200043d57565b634e487b7160e01b600052601160045260246000fdfe6040608081526004908136101561001557600080fd5b600091823560e01c8062af737214610a1357806306fdde0314610938578063095ea7b31461090e57806318160ddd146108ef57806323b872dd14610832578063313ce5671461081657806339509351146107c657806342966c68146105bf578063636a720e1461059b57806370a0823114610564578063715018a6146105045780638da5cb5b146104db57806395d89b41146103bb578063a457c2d714610314578063a9059cbb146102e3578063ac7c736014610257578063ce9723d514610209578063dd62ed3e146101bc5763f2fde38b146100f157600080fd5b346101b85760203660031901126101b85761010a610a5e565b6005546001600160a01b03808216939192610126338614610e3e565b169384156101665750506001600160a01b03191682176005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b505034610205578060031936011261020557806020926101da610a5e565b6101e2610a79565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b505034610205576102549061021d36610a8f565b6005549092916001600160a01b03916102399083163314610e3e565b168452600760205283209060ff801983541691151516179055565b80f35b50346101b857826003193601126101b85761027d60018060a01b03600554163314610e3e565b6008549160ff83161561029657505060ff191660085580f35b906020608492519162461bcd60e51b8352820152602160248201527f5472616e73666572207265737472696374696f6e206973207065726d616e656e6044820152601d60fa1b6064820152fd5b50503461020557806003193601126102055760209061030d610303610a5e565b6024359033610b2a565b5160018152f35b5082346103b857826003193601126103b85761032e610a5e565b918360243592338152600160205281812060018060a01b03861682526020522054908282106103675760208561030d8585038733610d3c565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b50919034610205578160031936011261020557805190828454600181811c908083169283156104d1575b60209384841081146104be578388529081156104a2575060011461044d575b505050829003601f01601f191682019267ffffffffffffffff84118385101761043a5750829182610436925282610abe565b0390f35b634e487b7160e01b815260418552602490fd5b8787529192508591837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061048e5750505050830101388080610404565b805488860183015293019284908201610478565b60ff1916878501525050151560051b8401019050388080610404565b634e487b7160e01b895260228a52602489fd5b91607f16916103e5565b50503461020557816003193601126102055760055490516001600160a01b039091168152602090f35b83346103b857806003193601126103b85760055481906001600160a01b03811690610530338314610e3e565b6001600160a01b0319166005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102055760203660031901126102055760209181906001600160a01b0361058c610a5e565b16815280845220549051908152f35b50503461020557816003193601126102055760209060ff6008541690519015158152f35b50919034610205576020806003193601126101b8578335913384528382528281852054106107835733158015906107365760ff600854166106b9575b503384528382528084205483811061066b57839033865285845203818520556002548381039081116106585760025551918252829133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a380f35b634e487b7160e01b855260118652602485fd5b815162461bcd60e51b8152808701849052602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b8061072f575b6106ca575b386105fb565b3384526007825260ff81852054166106c4578380526006825260ff81852054166106c457816064928692519262461bcd60e51b845283015260248201527f41646472657373206e6f7420616c6c6f77656420666f72207472616e736665726044820152fd5b50836106bf565b815162461bcd60e51b8152808701849052602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b5162461bcd60e51b815280850191909152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000006044820152606490fd5b50503461020557806003193601126102055761030d60209261080f6107e9610a5e565b338352600186528483206001600160a01b03821684528652918490205460243590610b07565b9033610d3c565b5050346102055781600319360112610205576020905160128152f35b5082346103b85760603660031901126103b85761084d610a5e565b9183610857610a79565b92610866604435809587610b2a565b6001600160a01b038516815260016020908152828220338352905220549082821061089b5760208561030d8585033388610d3c565b608490602086519162461bcd60e51b8352820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152fd5b5050346102055781600319360112610205576020906002549051908152f35b50503461020557806003193601126102055760209061030d61092e610a5e565b6024359033610d3c565b5091903461020557816003193601126102055780519082600354600181811c90808316928315610a09575b60209384841081146104be578388529081156104a257506001146109b357505050829003601f01601f191682019267ffffffffffffffff84118385101761043a5750829182610436925282610abe565b600387529192508591837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8385106109f55750505050830101388080610404565b8054888601830152930192849082016109df565b91607f1691610963565b5050346102055761025490610a2736610a8f565b6005549092916001600160a01b0391610a439083163314610e3e565b168452600660205283209060ff801983541691151516179055565b600435906001600160a01b0382168203610a7457565b600080fd5b602435906001600160a01b0382168203610a7457565b6040906003190112610a74576004356001600160a01b0381168103610a7457906024358015158103610a745790565b6020808252825181830181905290939260005b828110610af357505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610ad1565b91908201809211610b1457565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b039081168015801594919391929190610ce95716928315610c985760ff60085416610c0f575b50600082815280602052604081205491808310610bbb57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220610bb0828254610b07565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b80610c90575b610c20575b38610b57565b81600052600760205260ff60406000205416610c1a5782600052600660205260ff60406000205416610c1a57606460405162461bcd60e51b815260206004820152602060248201527f41646472657373206e6f7420616c6c6f77656420666f72207472616e736665726044820152fd5b506001610c15565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b03908116918215610ded5716918215610d9d5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b15610e4557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fdfea2646970667358221220e735af5ebfff8eb8d242ccad8e5c141865dec96604f8a0ef5bcc1e8c4346e0b864736f6c63430008110033
Deployed Bytecode
0x6040608081526004908136101561001557600080fd5b600091823560e01c8062af737214610a1357806306fdde0314610938578063095ea7b31461090e57806318160ddd146108ef57806323b872dd14610832578063313ce5671461081657806339509351146107c657806342966c68146105bf578063636a720e1461059b57806370a0823114610564578063715018a6146105045780638da5cb5b146104db57806395d89b41146103bb578063a457c2d714610314578063a9059cbb146102e3578063ac7c736014610257578063ce9723d514610209578063dd62ed3e146101bc5763f2fde38b146100f157600080fd5b346101b85760203660031901126101b85761010a610a5e565b6005546001600160a01b03808216939192610126338614610e3e565b169384156101665750506001600160a01b03191682176005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b505034610205578060031936011261020557806020926101da610a5e565b6101e2610a79565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b505034610205576102549061021d36610a8f565b6005549092916001600160a01b03916102399083163314610e3e565b168452600760205283209060ff801983541691151516179055565b80f35b50346101b857826003193601126101b85761027d60018060a01b03600554163314610e3e565b6008549160ff83161561029657505060ff191660085580f35b906020608492519162461bcd60e51b8352820152602160248201527f5472616e73666572207265737472696374696f6e206973207065726d616e656e6044820152601d60fa1b6064820152fd5b50503461020557806003193601126102055760209061030d610303610a5e565b6024359033610b2a565b5160018152f35b5082346103b857826003193601126103b85761032e610a5e565b918360243592338152600160205281812060018060a01b03861682526020522054908282106103675760208561030d8585038733610d3c565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b50919034610205578160031936011261020557805190828454600181811c908083169283156104d1575b60209384841081146104be578388529081156104a2575060011461044d575b505050829003601f01601f191682019267ffffffffffffffff84118385101761043a5750829182610436925282610abe565b0390f35b634e487b7160e01b815260418552602490fd5b8787529192508591837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061048e5750505050830101388080610404565b805488860183015293019284908201610478565b60ff1916878501525050151560051b8401019050388080610404565b634e487b7160e01b895260228a52602489fd5b91607f16916103e5565b50503461020557816003193601126102055760055490516001600160a01b039091168152602090f35b83346103b857806003193601126103b85760055481906001600160a01b03811690610530338314610e3e565b6001600160a01b0319166005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102055760203660031901126102055760209181906001600160a01b0361058c610a5e565b16815280845220549051908152f35b50503461020557816003193601126102055760209060ff6008541690519015158152f35b50919034610205576020806003193601126101b8578335913384528382528281852054106107835733158015906107365760ff600854166106b9575b503384528382528084205483811061066b57839033865285845203818520556002548381039081116106585760025551918252829133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a380f35b634e487b7160e01b855260118652602485fd5b815162461bcd60e51b8152808701849052602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b8061072f575b6106ca575b386105fb565b3384526007825260ff81852054166106c4578380526006825260ff81852054166106c457816064928692519262461bcd60e51b845283015260248201527f41646472657373206e6f7420616c6c6f77656420666f72207472616e736665726044820152fd5b50836106bf565b815162461bcd60e51b8152808701849052602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b5162461bcd60e51b815280850191909152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000006044820152606490fd5b50503461020557806003193601126102055761030d60209261080f6107e9610a5e565b338352600186528483206001600160a01b03821684528652918490205460243590610b07565b9033610d3c565b5050346102055781600319360112610205576020905160128152f35b5082346103b85760603660031901126103b85761084d610a5e565b9183610857610a79565b92610866604435809587610b2a565b6001600160a01b038516815260016020908152828220338352905220549082821061089b5760208561030d8585033388610d3c565b608490602086519162461bcd60e51b8352820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152fd5b5050346102055781600319360112610205576020906002549051908152f35b50503461020557806003193601126102055760209061030d61092e610a5e565b6024359033610d3c565b5091903461020557816003193601126102055780519082600354600181811c90808316928315610a09575b60209384841081146104be578388529081156104a257506001146109b357505050829003601f01601f191682019267ffffffffffffffff84118385101761043a5750829182610436925282610abe565b600387529192508591837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8385106109f55750505050830101388080610404565b8054888601830152930192849082016109df565b91607f1691610963565b5050346102055761025490610a2736610a8f565b6005549092916001600160a01b0391610a439083163314610e3e565b168452600660205283209060ff801983541691151516179055565b600435906001600160a01b0382168203610a7457565b600080fd5b602435906001600160a01b0382168203610a7457565b6040906003190112610a74576004356001600160a01b0381168103610a7457906024358015158103610a745790565b6020808252825181830181905290939260005b828110610af357505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610ad1565b91908201809211610b1457565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b039081168015801594919391929190610ce95716928315610c985760ff60085416610c0f575b50600082815280602052604081205491808310610bbb57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220610bb0828254610b07565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b80610c90575b610c20575b38610b57565b81600052600760205260ff60406000205416610c1a5782600052600660205260ff60406000205416610c1a57606460405162461bcd60e51b815260206004820152602060248201527f41646472657373206e6f7420616c6c6f77656420666f72207472616e736665726044820152fd5b506001610c15565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b03908116918215610ded5716918215610d9d5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b15610e4557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fdfea2646970667358221220e735af5ebfff8eb8d242ccad8e5c141865dec96604f8a0ef5bcc1e8c4346e0b864736f6c63430008110033
Deployed Bytecode Sourcemap
104:1402:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;104:1402:5;;;;;;:::i;:::-;1038:6:4;104:1402:5;-1:-1:-1;;;;;104:1402:5;;;;;;1170:68:4;666:10:0;1178:23:4;;1170:68;:::i;:::-;104:1402:5;1927:22:4;;;104:1402:5;;-1:-1:-1;;;;;;;;104:1402:5;;;1038:6:4;104:1402:5;2156:40:4;;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:42;104:1402;;;;:::i;:::-;1038:6:4;104:1402:5;;;;-1:-1:-1;;;;;104:1402:5;1170:68:4;;104:1402:5;;666:10:0;1178:23:4;1170:68;:::i;:::-;104:1402:5;;;845:22;104:1402;;;;;;;;;;;;;;;;;;;845:42;104:1402;;;;;;;;;;;;;;;1170:68:4;104:1402:5;;;;;1038:6:4;104:1402:5;;666:10:0;1178:23:4;1170:68;:::i;:::-;493:20:5;104:1402;;;;;;;;-1:-1:-1;;;;104:1402:5;493:20;104:1402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;3780:6:1;104:1402:5;;:::i;:::-;;;666:10:0;;3780:6:1;:::i;:::-;104:1402:5;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;666:10:0;;104:1402:5;;;;;;;;;;;;;;;;;;;;;6553:35:1;;;;104:1402:5;;;;6696:34:1;104:1402:5;;;;666:10:0;6696:34:1;:::i;104:1402:5:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;-1:-1:-1;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;-1:-1:-1;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;104:1402:5;;;;;-1:-1:-1;;104:1402:5;;;;;;;;-1:-1:-1;104:1402:5;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038:6:4;104:1402:5;;;-1:-1:-1;;;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;1038:6:4;104:1402:5;;;-1:-1:-1;;;;;104:1402:5;;;1170:68:4;666:10:0;1178:23:4;;1170:68;:::i;:::-;-1:-1:-1;;;;;;104:1402:5;1038:6:4;104:1402:5;2156:40:4;;;;104:1402:5;;;;;;;;;;-1:-1:-1;;104:1402:5;;;;;;;;-1:-1:-1;;;;;104:1402:5;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263:39;104:1402;;;;;;;;;;;;;;;;;;;;;;;;;;;;1411:10;;104:1402;;;;;;;;;;1401:31;104:1402;;1411:10;9025:21:1;;;104:1402:5;;;;1067:20;104:1402;;1063:271;;104:1402;1411:10;;104:1402;;;;;;;;;9216:24:1;;;104:1402:5;;1411:10;;;104:1402;;;;;;;;;;9377:22:1;104:1402:5;;;;;;;;;9377:22:1;104:1402:5;;;;;;;1411:10;;9415:37:1;;;104:1402:5;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;1063:271;1107:38;;;1063:271;1103:221;;1063:271;;;;1103:221;1411:10;104:1402;;1170:22;104:1402;;;;;;;;1103:221;1165:145;104:1402;;;1230:20;104:1402;;;;;;;;1103:221;104:1402;;;;;;;;;;;;;;;;;;;;;;;;;;1107:38;;;;;104:1402;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5802:47:1;104:1402:5;;5802:47:1;104:1402:5;;:::i;:::-;666:10:0;104:1402:5;;;;;;;;-1:-1:-1;;;;;104:1402:5;;;;;;;;;;;;;;5802:47:1;:::i;:::-;666:10:0;;5802:47:1;:::i;104:1402:5:-;;;;;;;;;;;;;;;;;3082:2:1;104:1402:5;;;;;;;;;;;-1:-1:-1;;104:1402:5;;;;;;:::i;:::-;;;;;:::i;:::-;;4974:6:1;104:1402:5;;4974:6:1;;;;:::i;:::-;-1:-1:-1;;;;;104:1402:5;;;;;;;;;;;;666:10:0;104:1402:5;;;;;;;5070:26:1;;;104:1402:5;;;;5206:25:1;104:1402:5;;;666:10:0;104:1402:5;5206:25:1;:::i;104:1402:5:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;;;;;3238:12:1;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;4291:6:1;104:1402:5;;:::i;:::-;;;666:10:0;;4291:6:1;:::i;104:1402:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;-1:-1:-1;;104:1402:5;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696:40;104:1402;;;;:::i;:::-;1038:6:4;104:1402:5;;;;-1:-1:-1;;;;;104:1402:5;1170:68:4;;104:1402:5;;666:10:0;1178:23:4;1170:68;:::i;:::-;104:1402:5;;;696:20;104:1402;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;104:1402:5;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;104:1402:5;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;;;;;104:1402:5;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;-1:-1:-1;104:1402:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;7244:713:1;-1:-1:-1;;;;;104:1402:5;;;7379:20:1;;;;;104:1402:5;;7244:713:1;;104:1402:5;7244:713:1;104:1402:5;;;7459:23:1;;;104:1402:5;;;1067:20;104:1402;;1063:271;;7244:713:1;7397:1;;104:1402:5;;;;;;;;;;7650:23:1;;;;104:1402:5;;;;;7858:35:1;104:1402:5;;;;;;;;;;;;;;;;;7812:30:1;104:1402:5;;;7812:30:1;:::i;:::-;104:1402:5;;;;;;;7858:35:1;7244:713::o;104:1402:5:-;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;1063:271;1107:38;;;1063:271;1103:221;;1063:271;;;;1103:221;104:1402;7397:1:1;104:1402:5;1170:22;104:1402;;;;7397:1:1;104:1402:5;;;1103:221;1165:145;104:1402;7397:1:1;104:1402:5;1230:20;104:1402;;;;7397:1:1;104:1402:5;;;1103:221;104:1402;;;;;;;;;;;;;;;;;;;;;;;;;1107:38;;7459:23:1;1107:38:5;;104:1402;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;9941:370:1;-1:-1:-1;;;;;104:1402:5;;;;10072:19:1;;104:1402:5;;;10150:21:1;;;104:1402:5;;;10272:32:1;104:1402:5;;10089:1:1;104:1402:5;;;;;10089:1:1;104:1402:5;;10089:1:1;104:1402:5;;;;;10089:1:1;104:1402:5;;;;;;;10272:32:1;9941:370::o;104:1402:5:-;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;;;;;;;-1:-1:-1;;;104:1402:5;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e735af5ebfff8eb8d242ccad8e5c141865dec96604f8a0ef5bcc1e8c4346e0b8
[ 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.