Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000,000 CALIB
Holders
50
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.483897891168034796 CALIBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CALIB
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-15 */ // contracts/CALIB.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 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; } } /** * @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() { _transferOwnership(_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 { _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 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); } /** * @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); } /** * @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}. * * 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; * */ 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 {} } contract CALIB is Ownable, ERC20 { bool public limited; uint256 public maxWallet; address public uniswapV2Pair; constructor(uint256 _totalSupply) ERC20("Liberator", "CALIB") { _mint(msg.sender, _totalSupply); } function setWalletRule(bool _limited, address _uniswapV2Pair, uint256 _maxWallet) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxWallet = _maxWallet; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading not open yet"); return; } if (limited && from == uniswapV2Pair) { require(balanceOf(to) + amount <= maxWallet, "max wallet breached"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setWalletRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001301380380620013018339810160408190526200003491620003bc565b604051806040016040528060098152602001682634b132b930ba37b960b91b8152506040518060400160405280600581526020016421a0a624a160d91b8152506200008e62000088620000d560201b60201c565b620000d9565b8151620000a390600490602085019062000316565b508051620000b990600590602084019062000316565b505050620000ce33826200012960201b60201c565b50620004e5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015b5760405162461bcd60e51b8152600401620001529062000443565b60405180910390fd5b62000169600083836200020b565b80600360008282546200017d919062000483565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ac90849062000483565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f19085906200047a565b60405180910390a36200020760008383620002e7565b5050565b6008546001600160a01b0316620002855762000226620002ec565b6001600160a01b0316836001600160a01b031614806200026057506200024b620002ec565b6001600160a01b0316826001600160a01b0316145b6200027f5760405162461bcd60e51b81526004016200015290620003d5565b620002e7565b60065460ff168015620002a557506008546001600160a01b038481169116145b15620002e75760075481620002ba84620002fb565b620002c6919062000483565b1115620002e75760405162461bcd60e51b815260040162000152906200040c565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b8280546200032490620004a8565b90600052602060002090601f01602090048101928262000348576000855562000393565b82601f106200036357805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039357825182559160200191906001019062000376565b50620003a1929150620003a5565b5090565b5b80821115620003a15760008155600101620003a6565b600060208284031215620003ce578081fd5b5051919050565b60208082526014908201527f74726164696e67206e6f74206f70656e20796574000000000000000000000000604082015260600190565b60208082526013908201527f6d61782077616c6c657420627265616368656400000000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004a357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004bd57607f821691505b60208210811415620004df57634e487b7160e01b600052602260045260246000fd5b50919050565b610e0c80620004f56000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f578063f8b45b051461025257610116565b8063860a32ec146101db5780638d99ff21146101e35780638da5cb5b146101f657806395d89b41146101fe57610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806349bd5a5e146101a957806370a08231146101be578063715018a6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b61012361025a565b6040516101309190610a56565b60405180910390f35b61014c6101473660046109eb565b6102ec565b6040516101309190610a4b565b610161610309565b6040516101309190610d60565b61014c61017c3660046109b0565b61030f565b6101896103a8565b6040516101309190610d69565b61014c6101a43660046109eb565b6103ad565b6101b1610401565b6040516101309190610a37565b6101616101cc36600461095d565b610410565b6101d961042f565b005b61014c61047a565b6101d96101f1366004610a14565b610483565b6101b16104f9565b610123610508565b61014c6102143660046109eb565b610517565b61014c6102273660046109eb565b610590565b61016161023a36600461097e565b6105a4565b6101d961024d36600461095d565b6105cf565b610161610640565b60606004805461026990610d9b565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610d9b565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b5050505050905090565b60006103006102f9610646565b848461064a565b50600192915050565b60035490565b600061031c8484846106fe565b6001600160a01b03841660009081526002602052604081208161033d610646565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103895760405162461bcd60e51b815260040161038090610be8565b60405180910390fd5b61039d85610395610646565b85840361064a565b506001949350505050565b601290565b60006103006103ba610646565b8484600260006103c8610646565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103fc9190610d77565b61064a565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610437610646565b6001600160a01b03166104486104f9565b6001600160a01b03161461046e5760405162461bcd60e51b815260040161038090610c30565b6104786000610828565b565b60065460ff1681565b61048b610646565b6001600160a01b031661049c6104f9565b6001600160a01b0316146104c25760405162461bcd60e51b815260040161038090610c30565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b6000546001600160a01b031690565b60606005805461026990610d9b565b60008060026000610526610646565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105725760405162461bcd60e51b815260040161038090610d1b565b61058661057d610646565b8585840361064a565b5060019392505050565b600061030061059d610646565b84846106fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105d7610646565b6001600160a01b03166105e86104f9565b6001600160a01b03161461060e5760405162461bcd60e51b815260040161038090610c30565b6001600160a01b0381166106345760405162461bcd60e51b815260040161038090610b1a565b61063d81610828565b50565b60075481565b3390565b6001600160a01b0383166106705760405162461bcd60e51b815260040161038090610caa565b6001600160a01b0382166106965760405162461bcd60e51b815260040161038090610b60565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106f1908590610d60565b60405180910390a3505050565b6001600160a01b0383166107245760405162461bcd60e51b815260040161038090610c65565b6001600160a01b03821661074a5760405162461bcd60e51b815260040161038090610aa9565b610755838383610878565b6001600160a01b0383166000908152600160205260409020548181101561078e5760405162461bcd60e51b815260040161038090610ba2565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107c5908490610d77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161080f9190610d60565b60405180910390a3610822848484610941565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b03166108e8576108906104f9565b6001600160a01b0316836001600160a01b031614806108c757506108b26104f9565b6001600160a01b0316826001600160a01b0316145b6108e35760405162461bcd60e51b815260040161038090610aec565b610941565b60065460ff16801561090757506008546001600160a01b038481169116145b15610941576007548161091984610410565b6109239190610d77565b11156109415760405162461bcd60e51b815260040161038090610cee565b505050565b80356001600160a01b038116811461042a57600080fd5b60006020828403121561096e578081fd5b61097782610946565b9392505050565b60008060408385031215610990578081fd5b61099983610946565b91506109a760208401610946565b90509250929050565b6000806000606084860312156109c4578081fd5b6109cd84610946565b92506109db60208501610946565b9150604084013590509250925092565b600080604083850312156109fd578182fd5b610a0683610946565b946020939093013593505050565b600080600060608486031215610a28578283fd5b833580151581146109cd578384fd5b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610a8257858101830151858201604001528201610a66565b81811115610a935783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601490820152731d1c98591a5b99c81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601390820152721b585e081dd85b1b195d08189c995858da1959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610daf57607f821691505b60208210811415610dd057634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220533dd735cfecdf5a6ebaaadf304cecf4fa01d07b4c8221fe5892001cd786a57664736f6c63430008000033000000000000000000000000000000000000007e37be2022c0914b2680000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f578063f8b45b051461025257610116565b8063860a32ec146101db5780638d99ff21146101e35780638da5cb5b146101f657806395d89b41146101fe57610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806349bd5a5e146101a957806370a08231146101be578063715018a6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b61012361025a565b6040516101309190610a56565b60405180910390f35b61014c6101473660046109eb565b6102ec565b6040516101309190610a4b565b610161610309565b6040516101309190610d60565b61014c61017c3660046109b0565b61030f565b6101896103a8565b6040516101309190610d69565b61014c6101a43660046109eb565b6103ad565b6101b1610401565b6040516101309190610a37565b6101616101cc36600461095d565b610410565b6101d961042f565b005b61014c61047a565b6101d96101f1366004610a14565b610483565b6101b16104f9565b610123610508565b61014c6102143660046109eb565b610517565b61014c6102273660046109eb565b610590565b61016161023a36600461097e565b6105a4565b6101d961024d36600461095d565b6105cf565b610161610640565b60606004805461026990610d9b565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610d9b565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b5050505050905090565b60006103006102f9610646565b848461064a565b50600192915050565b60035490565b600061031c8484846106fe565b6001600160a01b03841660009081526002602052604081208161033d610646565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103895760405162461bcd60e51b815260040161038090610be8565b60405180910390fd5b61039d85610395610646565b85840361064a565b506001949350505050565b601290565b60006103006103ba610646565b8484600260006103c8610646565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103fc9190610d77565b61064a565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610437610646565b6001600160a01b03166104486104f9565b6001600160a01b03161461046e5760405162461bcd60e51b815260040161038090610c30565b6104786000610828565b565b60065460ff1681565b61048b610646565b6001600160a01b031661049c6104f9565b6001600160a01b0316146104c25760405162461bcd60e51b815260040161038090610c30565b6006805460ff191693151593909317909255600880546001600160a01b0319166001600160a01b0392909216919091179055600755565b6000546001600160a01b031690565b60606005805461026990610d9b565b60008060026000610526610646565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105725760405162461bcd60e51b815260040161038090610d1b565b61058661057d610646565b8585840361064a565b5060019392505050565b600061030061059d610646565b84846106fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105d7610646565b6001600160a01b03166105e86104f9565b6001600160a01b03161461060e5760405162461bcd60e51b815260040161038090610c30565b6001600160a01b0381166106345760405162461bcd60e51b815260040161038090610b1a565b61063d81610828565b50565b60075481565b3390565b6001600160a01b0383166106705760405162461bcd60e51b815260040161038090610caa565b6001600160a01b0382166106965760405162461bcd60e51b815260040161038090610b60565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106f1908590610d60565b60405180910390a3505050565b6001600160a01b0383166107245760405162461bcd60e51b815260040161038090610c65565b6001600160a01b03821661074a5760405162461bcd60e51b815260040161038090610aa9565b610755838383610878565b6001600160a01b0383166000908152600160205260409020548181101561078e5760405162461bcd60e51b815260040161038090610ba2565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107c5908490610d77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161080f9190610d60565b60405180910390a3610822848484610941565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b03166108e8576108906104f9565b6001600160a01b0316836001600160a01b031614806108c757506108b26104f9565b6001600160a01b0316826001600160a01b0316145b6108e35760405162461bcd60e51b815260040161038090610aec565b610941565b60065460ff16801561090757506008546001600160a01b038481169116145b15610941576007548161091984610410565b6109239190610d77565b11156109415760405162461bcd60e51b815260040161038090610cee565b505050565b80356001600160a01b038116811461042a57600080fd5b60006020828403121561096e578081fd5b61097782610946565b9392505050565b60008060408385031215610990578081fd5b61099983610946565b91506109a760208401610946565b90509250929050565b6000806000606084860312156109c4578081fd5b6109cd84610946565b92506109db60208501610946565b9150604084013590509250925092565b600080604083850312156109fd578182fd5b610a0683610946565b946020939093013593505050565b600080600060608486031215610a28578283fd5b833580151581146109cd578384fd5b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610a8257858101830151858201604001528201610a66565b81811115610a935783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601490820152731d1c98591a5b99c81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601390820152721b585e081dd85b1b195d08189c995858da1959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d9657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610daf57607f821691505b60208210811415610dd057634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220533dd735cfecdf5a6ebaaadf304cecf4fa01d07b4c8221fe5892001cd786a57664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000007e37be2022c0914b2680000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 10000000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000007e37be2022c0914b2680000000
Deployed Bytecode Sourcemap
18088:921:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8323:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10294:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9247:108::-;;;:::i;:::-;;;;;;;:::i;10945:492::-;;;;;;:::i;:::-;;:::i;9089:93::-;;;:::i;:::-;;;;;;;:::i;11846:215::-;;;;;;:::i;:::-;;:::i;18185:28::-;;;:::i;:::-;;;;;;;:::i;9418:127::-;;;;;;:::i;:::-;;:::i;2410:103::-;;;:::i;:::-;;18128:19;;;:::i;18342:212::-;;;;;;:::i;:::-;;:::i;1759:87::-;;;:::i;8542:104::-;;;:::i;12564:413::-;;;;;;:::i;:::-;;:::i;9758:175::-;;;;;;:::i;:::-;;:::i;9996:151::-;;;;;;:::i;:::-;;:::i;2668:201::-;;;;;;:::i;:::-;;:::i;18154:24::-;;;:::i;8323:100::-;8377:13;8410:5;8403:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8323:100;:::o;10294:169::-;10377:4;10394:39;10403:12;:10;:12::i;:::-;10417:7;10426:6;10394:8;:39::i;:::-;-1:-1:-1;10451:4:0;10294:169;;;;:::o;9247:108::-;9335:12;;9247:108;:::o;10945:492::-;11085:4;11102:36;11112:6;11120:9;11131:6;11102:9;:36::i;:::-;-1:-1:-1;;;;;11178:19:0;;11151:24;11178:19;;;:11;:19;;;;;11151:24;11198:12;:10;:12::i;:::-;-1:-1:-1;;;;;11178:33:0;-1:-1:-1;;;;;11178:33:0;;;;;;;;;;;;;11151:60;;11250:6;11230:16;:26;;11222:79;;;;-1:-1:-1;;;11222:79:0;;;;;;;:::i;:::-;;;;;;;;;11337:57;11346:6;11354:12;:10;:12::i;:::-;11387:6;11368:16;:25;11337:8;:57::i;:::-;-1:-1:-1;11425:4:0;;10945:492;-1:-1:-1;;;;10945:492:0:o;9089:93::-;9172:2;9089:93;:::o;11846:215::-;11934:4;11951:80;11960:12;:10;:12::i;:::-;11974:7;12020:10;11983:11;:25;11995:12;:10;:12::i;:::-;-1:-1:-1;;;;;11983:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11983:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;11951:8;:80::i;18185:28::-;;;-1:-1:-1;;;;;18185:28:0;;:::o;9418:127::-;-1:-1:-1;;;;;9519:18:0;;9492:7;9519:18;;;:9;:18;;;;;;9418:127;;;;:::o;2410:103::-;1990:12;:10;:12::i;:::-;-1:-1:-1;;;;;1979:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1979:23:0;;1971:68;;;;-1:-1:-1;;;1971:68:0;;;;;;;:::i;:::-;2475:30:::1;2502:1;2475:18;:30::i;:::-;2410:103::o:0;18128:19::-;;;;;;:::o;18342:212::-;1990:12;:10;:12::i;:::-;-1:-1:-1;;;;;1979:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1979:23:0;;1971:68;;;;-1:-1:-1;;;1971:68:0;;;;;;;:::i;:::-;18454:7:::1;:18:::0;;-1:-1:-1;;18454:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;18483:13:::1;:30:::0;;-1:-1:-1;;;;;;18483:30:0::1;-1:-1:-1::0;;;;;18483:30:0;;;::::1;::::0;;;::::1;::::0;;18524:9:::1;:22:::0;18342:212::o;1759:87::-;1805:7;1832:6;-1:-1:-1;;;;;1832:6:0;1759:87;:::o;8542:104::-;8598:13;8631:7;8624:14;;;;;:::i;12564:413::-;12657:4;12674:24;12701:11;:25;12713:12;:10;:12::i;:::-;-1:-1:-1;;;;;12701:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12701:25:0;;;:34;;;;;;;;;;;-1:-1:-1;12754:35:0;;;;12746:85;;;;-1:-1:-1;;;12746:85:0;;;;;;;:::i;:::-;12867:67;12876:12;:10;:12::i;:::-;12890:7;12918:15;12899:16;:34;12867:8;:67::i;:::-;-1:-1:-1;12965:4:0;;12564:413;-1:-1:-1;;;12564:413:0:o;9758:175::-;9844:4;9861:42;9871:12;:10;:12::i;:::-;9885:9;9896:6;9861:9;:42::i;9996:151::-;-1:-1:-1;;;;;10112:18:0;;;10085:7;10112:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9996:151::o;2668:201::-;1990:12;:10;:12::i;:::-;-1:-1:-1;;;;;1979:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1979:23:0;;1971:68;;;;-1:-1:-1;;;1971:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2757:22:0;::::1;2749:73;;;;-1:-1:-1::0;;;2749:73:0::1;;;;;;;:::i;:::-;2833:28;2852:8;2833:18;:28::i;:::-;2668:201:::0;:::o;18154:24::-;;;;:::o;626:98::-;706:10;626:98;:::o;16248:380::-;-1:-1:-1;;;;;16384:19:0;;16376:68;;;;-1:-1:-1;;;16376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16463:21:0;;16455:68;;;;-1:-1:-1;;;16455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16536:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;16588:32;;;;;16566:6;;16588:32;:::i;:::-;;;;;;;;16248:380;;;:::o;13467:733::-;-1:-1:-1;;;;;13607:20:0;;13599:70;;;;-1:-1:-1;;;13599:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13688:23:0;;13680:71;;;;-1:-1:-1;;;13680:71:0;;;;;;;:::i;:::-;13764:47;13785:6;13793:9;13804:6;13764:20;:47::i;:::-;-1:-1:-1;;;;;13848:17:0;;13824:21;13848:17;;;:9;:17;;;;;;13884:23;;;;13876:74;;;;-1:-1:-1;;;13876:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13986:17:0;;;;;;;:9;:17;;;;;;14006:22;;;13986:42;;14050:20;;;;;;;;:30;;14022:6;;13986:17;14050:30;;14022:6;;14050:30;:::i;:::-;;;;;;;;14115:9;-1:-1:-1;;;;;14098:35:0;14107:6;-1:-1:-1;;;;;14098:35:0;;14126:6;14098:35;;;;;;:::i;:::-;;;;;;;;14146:46;14166:6;14174:9;14185:6;14146:19;:46::i;:::-;13467:733;;;;:::o;3029:191::-;3103:16;3122:6;;-1:-1:-1;;;;;3139:17:0;;;-1:-1:-1;;;;;;3139:17:0;;;;;;3172:40;;3122:6;;;;;;;3172:40;;3103:16;3172:40;3029:191;;:::o;18562:442::-;18711:13;;-1:-1:-1;;;;;18711:13:0;18707:146;;18771:7;:5;:7::i;:::-;-1:-1:-1;;;;;18763:15:0;:4;-1:-1:-1;;;;;18763:15:0;;:32;;;;18788:7;:5;:7::i;:::-;-1:-1:-1;;;;;18782:13:0;:2;-1:-1:-1;;;;;18782:13:0;;18763:32;18755:65;;;;-1:-1:-1;;;18755:65:0;;;;;;;:::i;:::-;18835:7;;18707:146;18869:7;;;;:32;;;;-1:-1:-1;18888:13:0;;-1:-1:-1;;;;;18880:21:0;;;18888:13;;18880:21;18869:32;18865:132;;;18952:9;;18942:6;18926:13;18936:2;18926:9;:13::i;:::-;:22;;;;:::i;:::-;:35;;18918:67;;;;-1:-1:-1;;;18918:67:0;;;;;;;:::i;:::-;18562:442;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:437::-;;;;1437:2;1425:9;1416:7;1412:23;1408:32;1405:2;;;1458:6;1450;1443:22;1405:2;1502:9;1489:23;1555:5;1548:13;1541:21;1534:5;1531:32;1521:2;;1582:6;1574;1567:22;1736:203;-1:-1:-1;;;;;1900:32:1;;;;1882:51;;1870:2;1855:18;;1837:102::o;1944:187::-;2109:14;;2102:22;2084:41;;2072:2;2057:18;;2039:92::o;2136:603::-;;2277:2;2306;2295:9;2288:21;2338:6;2332:13;2381:6;2376:2;2365:9;2361:18;2354:34;2406:4;2419:140;2433:6;2430:1;2427:13;2419:140;;;2528:14;;;2524:23;;2518:30;2494:17;;;2513:2;2490:26;2483:66;2448:10;;2419:140;;;2577:6;2574:1;2571:13;2568:2;;;2647:4;2642:2;2633:6;2622:9;2618:22;2614:31;2607:45;2568:2;-1:-1:-1;2723:2:1;2702:15;-1:-1:-1;;2698:29:1;2683:45;;;;2730:2;2679:54;;2257:482;-1:-1:-1;;;2257:482:1:o;2744:399::-;2946:2;2928:21;;;2985:2;2965:18;;;2958:30;3024:34;3019:2;3004:18;;2997:62;-1:-1:-1;;;3090:2:1;3075:18;;3068:33;3133:3;3118:19;;2918:225::o;3148:344::-;3350:2;3332:21;;;3389:2;3369:18;;;3362:30;-1:-1:-1;;;3423:2:1;3408:18;;3401:50;3483:2;3468:18;;3322:170::o;3497:402::-;3699:2;3681:21;;;3738:2;3718:18;;;3711:30;3777:34;3772:2;3757:18;;3750:62;-1:-1:-1;;;3843:2:1;3828:18;;3821:36;3889:3;3874:19;;3671:228::o;3904:398::-;4106:2;4088:21;;;4145:2;4125:18;;;4118:30;4184:34;4179:2;4164:18;;4157:62;-1:-1:-1;;;4250:2:1;4235:18;;4228:32;4292:3;4277:19;;4078:224::o;4307:402::-;4509:2;4491:21;;;4548:2;4528:18;;;4521:30;4587:34;4582:2;4567:18;;4560:62;-1:-1:-1;;;4653:2:1;4638:18;;4631:36;4699:3;4684:19;;4481:228::o;4714:404::-;4916:2;4898:21;;;4955:2;4935:18;;;4928:30;4994:34;4989:2;4974:18;;4967:62;-1:-1:-1;;;5060:2:1;5045:18;;5038:38;5108:3;5093:19;;4888:230::o;5123:356::-;5325:2;5307:21;;;5344:18;;;5337:30;5403:34;5398:2;5383:18;;5376:62;5470:2;5455:18;;5297:182::o;5484:401::-;5686:2;5668:21;;;5725:2;5705:18;;;5698:30;5764:34;5759:2;5744:18;;5737:62;-1:-1:-1;;;5830:2:1;5815:18;;5808:35;5875:3;5860:19;;5658:227::o;5890:400::-;6092:2;6074:21;;;6131:2;6111:18;;;6104:30;6170:34;6165:2;6150:18;;6143:62;-1:-1:-1;;;6236:2:1;6221:18;;6214:34;6280:3;6265:19;;6064:226::o;6295:343::-;6497:2;6479:21;;;6536:2;6516:18;;;6509:30;-1:-1:-1;;;6570:2:1;6555:18;;6548:49;6629:2;6614:18;;6469:169::o;6643:401::-;6845:2;6827:21;;;6884:2;6864:18;;;6857:30;6923:34;6918:2;6903:18;;6896:62;-1:-1:-1;;;6989:2:1;6974:18;;6967:35;7034:3;7019:19;;6817:227::o;7049:177::-;7195:25;;;7183:2;7168:18;;7150:76::o;7231:184::-;7403:4;7391:17;;;;7373:36;;7361:2;7346:18;;7328:87::o;7420:229::-;;7491:1;7487:6;7484:1;7481:13;7478:2;;;-1:-1:-1;;;7517:33:1;;7573:4;7570:1;7563:15;7603:4;7524:3;7591:17;7478:2;-1:-1:-1;7634:9:1;;7468:181::o;7654:380::-;7739:1;7729:12;;7786:1;7776:12;;;7797:2;;7851:4;7843:6;7839:17;7829:27;;7797:2;7904;7896:6;7893:14;7873:18;7870:38;7867:2;;;7950:10;7945:3;7941:20;7938:1;7931:31;7985:4;7982:1;7975:15;8013:4;8010:1;8003:15;7867:2;;7709:325;;;:::o
Swarm Source
ipfs://533dd735cfecdf5a6ebaaadf304cecf4fa01d07b4c8221fe5892001cd786a576
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.