Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,000,000,000 MEMES
Holders
1
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoMemes
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-08 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} } // File: Tokens/CryptoMemes.sol pragma solidity ^0.8.0; contract CryptoMemes is ERC20 { address public owner = 0xcb58D7d155af94410bD9DA1fBb8f397bBa10C13B ; constructor(uint256 initialSupply) ERC20("Crypto Memes", "MEMES") { _mint(owner, initialSupply); } function decimals() public pure override returns (uint8) { return 18; } function burn(uint amount) public { _burn(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"initialSupply","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600580546001600160a01b03191673cb58d7d155af94410bd9da1fbb8f397bba10c13b1790553480156200003757600080fd5b5060405162000dcc38038062000dcc8339810160408190526200005a91620001aa565b6040518060400160405280600c81526020016b43727970746f204d656d657360a01b815250604051806040016040528060058152602001644d454d455360d81b8152508160039081620000ae919062000268565b506004620000bd828262000268565b5050600554620000d891506001600160a01b031682620000df565b506200035c565b6001600160a01b0382166200013a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014e919062000334565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600060208284031215620001bd57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ef57607f821691505b6020821081036200021057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a557600081815260208120601f850160051c810160208610156200023f5750805b601f850160051c820191505b8181101562000260578281556001016200024b565b505050505050565b81516001600160401b03811115620002845762000284620001c4565b6200029c81620002958454620001da565b8462000216565b602080601f831160018114620002d45760008415620002bb5750858301515b600019600386901b1c1916600185901b17855562000260565b600085815260208120601f198616915b828110156200030557888601518255948401946001909101908401620002e4565b5085821015620003245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200035657634e487b7160e01b600052601160045260246000fd5b92915050565b610a60806200036c6000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101d5578063a457c2d7146101dd578063a9059cbb146101f0578063dd62ed3e1461020357600080fd5b806342966c681461016c57806370a08231146101815780638da5cb5b146101aa57600080fd5b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063395093511461015957600080fd5b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61023c565b6040516100f99190610891565b60405180910390f35b6101156101103660046108fb565b6102ce565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610925565b6102e8565b604051601281526020016100f9565b6101156101673660046108fb565b61030c565b61017f61017a366004610961565b61034b565b005b61012961018f36600461097a565b6001600160a01b031660009081526020819052604090205490565b6005546101bd906001600160a01b031681565b6040516001600160a01b0390911681526020016100f9565b6100ec610358565b6101156101eb3660046108fb565b610367565b6101156101fe3660046108fb565b6103fe565b61012961021136600461099c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461024b906109cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610277906109cf565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b6000336102dc81858561040c565b60019150505b92915050565b6000336102f6858285610531565b6103018585856105c3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102dc9082908690610346908790610a09565b61040c565b6103553382610767565b50565b60606004805461024b906109cf565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610301828686840361040c565b6000336102dc8185856105c3565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e8565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105bd57818110156105b05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103e8565b6105bd848484840361040c565b50505050565b6001600160a01b0383166106275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e8565b6001600160a01b0382166106895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e8565b6001600160a01b038316600090815260208190526040902054818110156107015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105bd565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e8565b6001600160a01b0382166000908152602081905260409020548181101561083b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e8565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610524565b600060208083528351808285015260005b818110156108be578581018301518582016040015282016108a2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108f657600080fd5b919050565b6000806040838503121561090e57600080fd5b610917836108df565b946020939093013593505050565b60008060006060848603121561093a57600080fd5b610943846108df565b9250610951602085016108df565b9150604084013590509250925092565b60006020828403121561097357600080fd5b5035919050565b60006020828403121561098c57600080fd5b610995826108df565b9392505050565b600080604083850312156109af57600080fd5b6109b8836108df565b91506109c6602084016108df565b90509250929050565b600181811c908216806109e357607f821691505b602082108103610a0357634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102e257634e487b7160e01b600052601160045260246000fdfea2646970667358221220c840b910c72521f972d18b52ed4b561c4cde59f85b703795f0475d01845913c064736f6c63430008120033000000000000000000000000000000000000000006765c793fa10079d0000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101d5578063a457c2d7146101dd578063a9059cbb146101f0578063dd62ed3e1461020357600080fd5b806342966c681461016c57806370a08231146101815780638da5cb5b146101aa57600080fd5b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063395093511461015957600080fd5b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61023c565b6040516100f99190610891565b60405180910390f35b6101156101103660046108fb565b6102ce565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610925565b6102e8565b604051601281526020016100f9565b6101156101673660046108fb565b61030c565b61017f61017a366004610961565b61034b565b005b61012961018f36600461097a565b6001600160a01b031660009081526020819052604090205490565b6005546101bd906001600160a01b031681565b6040516001600160a01b0390911681526020016100f9565b6100ec610358565b6101156101eb3660046108fb565b610367565b6101156101fe3660046108fb565b6103fe565b61012961021136600461099c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461024b906109cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610277906109cf565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b6000336102dc81858561040c565b60019150505b92915050565b6000336102f6858285610531565b6103018585856105c3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102dc9082908690610346908790610a09565b61040c565b6103553382610767565b50565b60606004805461024b906109cf565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610301828686840361040c565b6000336102dc8185856105c3565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e8565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105bd57818110156105b05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103e8565b6105bd848484840361040c565b50505050565b6001600160a01b0383166106275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e8565b6001600160a01b0382166106895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e8565b6001600160a01b038316600090815260208190526040902054818110156107015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105bd565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e8565b6001600160a01b0382166000908152602081905260409020548181101561083b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e8565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610524565b600060208083528351808285015260005b818110156108be578581018301518582016040015282016108a2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108f657600080fd5b919050565b6000806040838503121561090e57600080fd5b610917836108df565b946020939093013593505050565b60008060006060848603121561093a57600080fd5b610943846108df565b9250610951602085016108df565b9150604084013590509250925092565b60006020828403121561097357600080fd5b5035919050565b60006020828403121561098c57600080fd5b610995826108df565b9392505050565b600080604083850312156109af57600080fd5b6109b8836108df565b91506109c6602084016108df565b90509250929050565b600181811c908216806109e357607f821691505b602082108103610a0357634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102e257634e487b7160e01b600052601160045260246000fdfea2646970667358221220c840b910c72521f972d18b52ed4b561c4cde59f85b703795f0475d01845913c064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000006765c793fa10079d0000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 2000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000006765c793fa10079d0000000
Deployed Bytecode Sourcemap
17905:400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;9002:201:0;1027:187:1;7771:108:0;7859:12;;7771:108;;;1365:25:1;;;1353:2;1338:18;7771:108:0;1219:177:1;9783:295:0;;;;;;:::i;:::-;;:::i;18133:85::-;;;18208:2;1876:36:1;;1864:2;1849:18;18133:85:0;1734:184:1;10487:238:0;;;;;;:::i;:::-;;:::i;18224:78::-;;;;;;:::i;:::-;;:::i;:::-;;7942:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8043:18:0;8016:7;8043:18;;;;;;;;;;;;7942:127;17942:65;;;;;-1:-1:-1;;;;;17942:65:0;;;;;;-1:-1:-1;;;;;2463:55:1;;;2445:74;;2433:2;2418:18;17942:65:0;2299:226:1;6870:104:0;;;:::i;11228:436::-;;;;;;:::i;:::-;;:::i;8275:193::-;;;;;;:::i;:::-;;:::i;8531:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8647:18:0;;;8620:7;8647:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8531:151;6651:100;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;759:10;9141:32;759:10;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;;:::o;9783:295::-;9914:4;759:10;9972:38;9988:4;759:10;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;-1:-1:-1;10066:4:0;;9783:295;-1:-1:-1;;;;9783:295:0:o;10487:238::-;759:10;10575:4;8647:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;8647:27:0;;;;;;;;;;10575:4;;759:10;10631:64;;759:10;;8647:27;;10656:38;;10684:10;;10656:38;:::i;:::-;10631:8;:64::i;18224:78::-;18269:25;18275:10;18287:6;18269:5;:25::i;:::-;18224:78;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;11228:436::-;759:10;11321:4;8647:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;8647:27:0;;;;;;;;;;11321:4;;759:10;11468:15;11448:16;:35;;11440:85;;;;-1:-1:-1;;;11440:85:0;;3609:2:1;11440:85:0;;;3591:21:1;3648:2;3628:18;;;3621:30;3687:34;3667:18;;;3660:62;-1:-1:-1;;;3738:18:1;;;3731:35;3783:19;;11440:85:0;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;8275:193::-;8354:4;759:10;8410:28;759:10;8427:2;8431:6;8410:9;:28::i;15255:380::-;-1:-1:-1;;;;;15391:19:0;;15383:68;;;;-1:-1:-1;;;15383:68:0;;4015:2:1;15383:68:0;;;3997:21:1;4054:2;4034:18;;;4027:30;4093:34;4073:18;;;4066:62;-1:-1:-1;;;4144:18:1;;;4137:34;4188:19;;15383:68:0;3813:400:1;15383:68:0;-1:-1:-1;;;;;15470:21:0;;15462:68;;;;-1:-1:-1;;;15462:68:0;;4420:2:1;15462:68:0;;;4402:21:1;4459:2;4439:18;;;4432:30;4498:34;4478:18;;;4471:62;-1:-1:-1;;;4549:18:1;;;4542:32;4591:19;;15462:68:0;4218:398:1;15462:68:0;-1:-1:-1;;;;;15543:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15595:32;;1365:25:1;;;15595:32:0;;1338:18:1;15595:32:0;;;;;;;;15255:380;;;:::o;15926:453::-;-1:-1:-1;;;;;8647:18:0;;;16061:24;8647:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16128:37:0;;16124:248;;16210:6;16190:16;:26;;16182:68;;;;-1:-1:-1;;;16182:68:0;;4823:2:1;16182:68:0;;;4805:21:1;4862:2;4842:18;;;4835:30;4901:31;4881:18;;;4874:59;4950:18;;16182:68:0;4621:353:1;16182:68:0;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16050:329;15926:453;;;:::o;12134:840::-;-1:-1:-1;;;;;12265:18:0;;12257:68;;;;-1:-1:-1;;;12257:68:0;;5181:2:1;12257:68:0;;;5163:21:1;5220:2;5200:18;;;5193:30;5259:34;5239:18;;;5232:62;-1:-1:-1;;;5310:18:1;;;5303:35;5355:19;;12257:68:0;4979:401:1;12257:68:0;-1:-1:-1;;;;;12344:16:0;;12336:64;;;;-1:-1:-1;;;12336:64:0;;5587:2:1;12336:64:0;;;5569:21:1;5626:2;5606:18;;;5599:30;5665:34;5645:18;;;5638:62;-1:-1:-1;;;5716:18:1;;;5709:33;5759:19;;12336:64:0;5385:399:1;12336:64:0;-1:-1:-1;;;;;12486:15:0;;12464:19;12486:15;;;;;;;;;;;12520:21;;;;12512:72;;;;-1:-1:-1;;;12512:72:0;;5991:2:1;12512:72:0;;;5973:21:1;6030:2;6010:18;;;6003:30;6069:34;6049:18;;;6042:62;-1:-1:-1;;;6120:18:1;;;6113:36;6166:19;;12512:72:0;5789:402:1;12512:72:0;-1:-1:-1;;;;;12620:15:0;;;:9;:15;;;;;;;;;;;12638:20;;;12620:38;;12838:13;;;;;;;;;;:23;;;;;;12890:26;;1365:25:1;;;12838:13:0;;12890:26;;1338:18:1;12890:26:0;;;;;;;12929:37;14142:675;;-1:-1:-1;;;;;14226:21:0;;14218:67;;;;-1:-1:-1;;;14218:67:0;;6398:2:1;14218:67:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:31;6568:19;;14218:67:0;6196:397:1;14218:67:0;-1:-1:-1;;;;;14385:18:0;;14360:22;14385:18;;;;;;;;;;;14422:24;;;;14414:71;;;;-1:-1:-1;;;14414:71:0;;6800:2:1;14414:71:0;;;6782:21:1;6839:2;6819:18;;;6812:30;6878:34;6858:18;;;6851:62;-1:-1:-1;;;6929:18:1;;;6922:32;6971:19;;14414:71:0;6598:398:1;14414:71:0;-1:-1:-1;;;;;14521:18:0;;:9;:18;;;;;;;;;;;14542:23;;;14521:44;;14660:12;:22;;;;;;;14711:37;1365:25:1;;;14521:9:0;;:18;14711:37;;1338:18:1;14711:37:0;1219:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1401:328::-;1478:6;1486;1494;1547:2;1535:9;1526:7;1522:23;1518:32;1515:52;;;1563:1;1560;1553:12;1515:52;1586:29;1605:9;1586:29;:::i;:::-;1576:39;;1634:38;1668:2;1657:9;1653:18;1634:38;:::i;:::-;1624:48;;1719:2;1708:9;1704:18;1691:32;1681:42;;1401:328;;;;;:::o;1923:180::-;1982:6;2035:2;2023:9;2014:7;2010:23;2006:32;2003:52;;;2051:1;2048;2041:12;2003:52;-1:-1:-1;2074:23:1;;1923:180;-1:-1:-1;1923:180:1:o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2530:260::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2746:38;2780:2;2769:9;2765:18;2746:38;:::i;:::-;2736:48;;2530:260;;;;;:::o;2795:380::-;2874:1;2870:12;;;;2917;;;2938:61;;2992:4;2984:6;2980:17;2970:27;;2938:61;3045:2;3037:6;3034:14;3014:18;3011:38;3008:161;;3091:10;3086:3;3082:20;3079:1;3072:31;3126:4;3123:1;3116:15;3154:4;3151:1;3144:15;3008:161;;2795:380;;;:::o;3180:222::-;3245:9;;;3266:10;;;3263:133;;;3318:10;3313:3;3309:20;3306:1;3299:31;3353:4;3350:1;3343:15;3381:4;3378:1;3371:15
Swarm Source
ipfs://c840b910c72521f972d18b52ed4b561c4cde59f85b703795f0475d01845913c0
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.