ERC-20
Overview
Max Total Supply
1,400,000 EVILELON
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
980.005526402247394343 EVILELONValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EvilElon
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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 defaut 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" ); _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" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract EvilElon is ERC20 { uint256 public constant minSupply = 1000000 ether; constructor() ERC20("Evil Elon", "EVILELON") { _mint(msg.sender, 1500000 ether); } function burn(uint256 _amount) public { _burn(_msgSender(), _amount); require(totalSupply() >= minSupply); } }
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":"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":"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":"minSupply","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600981526822bb34b61022b637b760b91b60208083019182528351808501909452600884526722ab24a622a627a760c11b908401528151919291620000639160039162000187565b5080516200007990600490602084019062000187565b50505062000099336a013da329b63364718000006200009f60201b60201c565b6200028f565b6001600160a01b038216620000fa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200010e91906200022d565b90915550506001600160a01b038216600090815260208190526040812080548392906200013d9084906200022d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001959062000252565b90600052602060002090601f016020900481019282620001b9576000855562000204565b82601f10620001d457805160ff191683800117855562000204565b8280016001018555821562000204579182015b8281111562000204578251825591602001919060010190620001e7565b506200021292915062000216565b5090565b5b8082111562000212576000815560010162000217565b600082198211156200024d57634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b610dec806200029f6000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101c8578063a457c2d7146101d0578063a9059cbb146101e3578063dd62ed3e146101f657600080fd5b806342966c681461016c57806370a08231146101815780638fe6cae3146101b757600080fd5b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063395093511461015957600080fd5b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61023c565b6040516100f99190610c93565b60405180910390f35b610115610110366004610c52565b6102ce565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610c17565b6102e4565b604051601281526020016100f9565b610115610167366004610c52565b6103d6565b61017f61017a366004610c7b565b61041a565b005b61012961018f366004610bc4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61012969d3c21bcecceda100000081565b6100ec610446565b6101156101de366004610c52565b610455565b6101156101f1366004610c52565b61052f565b610129610204366004610be5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461024b90610d33565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610d33565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102db33848461053c565b50600192915050565b60006102f18484846106f0565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156103b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103cb85336103c68685610d1c565b61053c565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102db9185906103c6908690610d04565b61042433826109ad565b69d3c21bcecceda100000061043860025490565b101561044357600080fd5b50565b60606004805461024b90610d33565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103ae565b61052533856103c68685610d1c565b5060019392505050565b60006102db3384846106f0565b73ffffffffffffffffffffffffffffffffffffffff83166105de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8216610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8216610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103ae565b6108f68282610d1c565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610939908490610d04565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161099f91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b610b108282610d1c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290610b4b908490610d1c565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106e3565b803573ffffffffffffffffffffffffffffffffffffffff81168114610bbf57600080fd5b919050565b600060208284031215610bd5578081fd5b610bde82610b9b565b9392505050565b60008060408385031215610bf7578081fd5b610c0083610b9b565b9150610c0e60208401610b9b565b90509250929050565b600080600060608486031215610c2b578081fd5b610c3484610b9b565b9250610c4260208501610b9b565b9150604084013590509250925092565b60008060408385031215610c64578182fd5b610c6d83610b9b565b946020939093013593505050565b600060208284031215610c8c578081fd5b5035919050565b6000602080835283518082850152825b81811015610cbf57858101830151858201604001528201610ca3565b81811115610cd05783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610d1757610d17610d87565b500190565b600082821015610d2e57610d2e610d87565b500390565b600181811c90821680610d4757607f821691505b60208210811415610d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220d150e2e626ec6c608394f9ceb1dee727e6b4dfb2b4e087db2c044decf51090d864736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101c8578063a457c2d7146101d0578063a9059cbb146101e3578063dd62ed3e146101f657600080fd5b806342966c681461016c57806370a08231146101815780638fe6cae3146101b757600080fd5b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063395093511461015957600080fd5b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61023c565b6040516100f99190610c93565b60405180910390f35b610115610110366004610c52565b6102ce565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610c17565b6102e4565b604051601281526020016100f9565b610115610167366004610c52565b6103d6565b61017f61017a366004610c7b565b61041a565b005b61012961018f366004610bc4565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61012969d3c21bcecceda100000081565b6100ec610446565b6101156101de366004610c52565b610455565b6101156101f1366004610c52565b61052f565b610129610204366004610be5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461024b90610d33565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610d33565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102db33848461053c565b50600192915050565b60006102f18484846106f0565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156103b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103cb85336103c68685610d1c565b61053c565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102db9185906103c6908690610d04565b61042433826109ad565b69d3c21bcecceda100000061043860025490565b101561044357600080fd5b50565b60606004805461024b90610d33565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103ae565b61052533856103c68685610d1c565b5060019392505050565b60006102db3384846106f0565b73ffffffffffffffffffffffffffffffffffffffff83166105de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8216610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8216610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103ae565b6108f68282610d1c565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610939908490610d04565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161099f91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103ae565b610b108282610d1c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290610b4b908490610d1c565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106e3565b803573ffffffffffffffffffffffffffffffffffffffff81168114610bbf57600080fd5b919050565b600060208284031215610bd5578081fd5b610bde82610b9b565b9392505050565b60008060408385031215610bf7578081fd5b610c0083610b9b565b9150610c0e60208401610b9b565b90509250929050565b600080600060608486031215610c2b578081fd5b610c3484610b9b565b9250610c4260208501610b9b565b9150604084013590509250925092565b60008060408385031215610c64578182fd5b610c6d83610b9b565b946020939093013593505050565b600060208284031215610c8c578081fd5b5035919050565b6000602080835283518082850152825b81811015610cbf57858101830151858201604001528201610ca3565b81811115610cd05783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610d1757610d17610d87565b500190565b600082821015610d2e57610d2e610d87565b500390565b600181811c90821680610d4757607f821691505b60208210811415610d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220d150e2e626ec6c608394f9ceb1dee727e6b4dfb2b4e087db2c044decf51090d864736f6c63430008040033
Deployed Bytecode Sourcemap
15600:330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6287:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8595:210;;;;;;:::i;:::-;;:::i;:::-;;;1663:14:1;;1656:22;1638:41;;1626:2;1611:18;8595:210:0;1593:92:1;7407:108:0;7495:12;;7407:108;;;6148:25:1;;;6136:2;6121:18;7407:108:0;6103:76:1;9287:493:0;;;;;;:::i;:::-;;:::i;7249:93::-;;;7332:2;6326:36:1;;6314:2;6299:18;7249:93:0;6281:87:1;10189:297:0;;;;;;:::i;:::-;;:::i;15796:131::-;;;;;;:::i;:::-;;:::i;:::-;;7578:177;;;;;;:::i;:::-;7729:18;;7697:7;7729:18;;;;;;;;;;;;7578:177;15634:49;;15670:13;15634:49;;6506:104;;;:::i;10989:446::-;;;;;;:::i;:::-;;:::i;7968:216::-;;;;;;:::i;:::-;;:::i;8247:201::-;;;;;;:::i;:::-;8413:18;;;;8381:7;8413:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8247:201;6287:100;6341:13;6374:5;6367:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6287:100;:::o;8595:210::-;8714:4;8736:39;4053:10;8759:7;8768:6;8736:8;:39::i;:::-;-1:-1:-1;8793:4:0;8595:210;;;;:::o;9287:493::-;9427:4;9444:36;9454:6;9462:9;9473:6;9444:9;:36::i;:::-;9520:19;;;9493:24;9520:19;;;:11;:19;;;;;;;;4053:10;9520:33;;;;;;;;9586:26;;;;9564:116;;;;;;;4176:2:1;9564:116:0;;;4158:21:1;4215:2;4195:18;;;4188:30;4254:34;4234:18;;;4227:62;4325:10;4305:18;;;4298:38;4353:19;;9564:116:0;;;;;;;;;9691:57;9700:6;4053:10;9722:25;9741:6;9722:16;:25;:::i;:::-;9691:8;:57::i;:::-;-1:-1:-1;9768:4:0;;9287:493;-1:-1:-1;;;;9287:493:0:o;10189:297::-;4053:10;10304:4;10398:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10304:4;;10326:130;;10376:7;;10398:47;;10435:10;;10398:47;:::i;15796:131::-;15845:28;4053:10;15865:7;15845:5;:28::i;:::-;15670:13;15892;7495:12;;;7407:108;15892:13;:26;;15884:35;;;;;;15796:131;:::o;6506:104::-;6562:13;6595:7;6588:14;;;;;:::i;10989:446::-;4053:10;11109:4;11158:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11225:35;;;;11203:122;;;;;;;5798:2:1;11203:122:0;;;5780:21:1;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;5947:7;5927:18;;;5920:35;5972:19;;11203:122:0;5770:227:1;11203:122:0;11336:67;4053:10;11359:7;11368:34;11387:15;11368:16;:34;:::i;11336:67::-;-1:-1:-1;11423:4:0;;10989:446;-1:-1:-1;;;10989:446:0:o;7968:216::-;8090:4;8112:42;4053:10;8136:9;8147:6;8112:9;:42::i;14485:380::-;14621:19;;;14613:68;;;;;;;5393:2:1;14613:68:0;;;5375:21:1;5432:2;5412:18;;;5405:30;5471:34;5451:18;;;5444:62;5542:6;5522:18;;;5515:34;5566:19;;14613:68:0;5365:226:1;14613:68:0;14700:21;;;14692:68;;;;;;;3366:2:1;14692:68:0;;;3348:21:1;3405:2;3385:18;;;3378:30;3444:34;3424:18;;;3417:62;3515:4;3495:18;;;3488:32;3537:19;;14692:68:0;3338:224:1;14692:68:0;14773:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14825:32;;6148:25:1;;;14825:32:0;;6121:18:1;14825:32:0;;;;;;;;14485:380;;;:::o;11925:675::-;12065:20;;;12057:70;;;;;;;4987:2:1;12057:70:0;;;4969:21:1;5026:2;5006:18;;;4999:30;5065:34;5045:18;;;5038:62;5136:7;5116:18;;;5109:35;5161:19;;12057:70:0;4959:227:1;12057:70:0;12146:23;;;12138:71;;;;;;;2559:2:1;12138:71:0;;;2541:21:1;2598:2;2578:18;;;2571:30;2637:34;2617:18;;;2610:62;2708:5;2688:18;;;2681:33;2731:19;;12138:71:0;2531:225:1;12138:71:0;12306:17;;;12282:21;12306:17;;;;;;;;;;;12356:23;;;;12334:111;;;;;;;3769:2:1;12334:111:0;;;3751:21:1;3808:2;3788:18;;;3781:30;3847:34;3827:18;;;3820:62;3918:8;3898:18;;;3891:36;3944:19;;12334:111:0;3741:228:1;12334:111:0;12476:22;12492:6;12476:13;:22;:::i;:::-;12456:17;;;;:9;:17;;;;;;;;;;;:42;;;;12509:20;;;;;;;;:30;;12533:6;;12456:9;12509:30;;12533:6;;12509:30;:::i;:::-;;;;;;;;12574:9;12557:35;;12566:6;12557:35;;;12585:6;12557:35;;;;6148:25:1;;6136:2;6121:18;;6103:76;12557:35:0;;;;;;;;11925:675;;;;:::o;13553:494::-;13637:21;;;13629:67;;;;;;;4585:2:1;13629:67:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;4734:3;4714:18;;;4707:31;4755:19;;13629:67:0;4557:223:1;13629:67:0;13796:18;;;13771:22;13796:18;;;;;;;;;;;13833:24;;;;13825:71;;;;;;;2963:2:1;13825:71:0;;;2945:21:1;3002:2;2982:18;;;2975:30;3041:34;3021:18;;;3014:62;3112:4;3092:18;;;3085:32;3134:19;;13825:71:0;2935:224:1;13825:71:0;13928:23;13945:6;13928:14;:23;:::i;:::-;13907:18;;;:9;:18;;;;;;;;;;:44;;;;13962:12;:22;;13978:6;;13907:9;13962:22;;13978:6;;13962:22;:::i;:::-;;;;-1:-1:-1;;14002:37:0;;6148:25:1;;;14028:1:0;;14002:37;;;;;;6136:2:1;6121:18;14002:37:0;6103:76:1;14:196;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;:::-;366:39;285:126;-1:-1:-1;;;285:126:1:o;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1303:190::-;1362:6;1415:2;1403:9;1394:7;1390:23;1386:32;1383:2;;;1436:6;1428;1421:22;1383:2;-1:-1:-1;1464:23:1;;1373:120;-1:-1:-1;1373:120:1:o;1690:662::-;1802:4;1831:2;1860;1849:9;1842:21;1892:6;1886:13;1935:6;1930:2;1919:9;1915:18;1908:34;1960:4;1973:140;1987:6;1984:1;1981:13;1973:140;;;2082:14;;;2078:23;;2072:30;2048:17;;;2067:2;2044:26;2037:66;2002:10;;1973:140;;;2131:6;2128:1;2125:13;2122:2;;;2201:4;2196:2;2187:6;2176:9;2172:22;2168:31;2161:45;2122:2;-1:-1:-1;2268:2:1;2256:15;2273:66;2252:88;2237:104;;;;2343:2;2233:113;;1811:541;-1:-1:-1;;;1811:541:1:o;6373:128::-;6413:3;6444:1;6440:6;6437:1;6434:13;6431:2;;;6450:18;;:::i;:::-;-1:-1:-1;6486:9:1;;6421:80::o;6506:125::-;6546:4;6574:1;6571;6568:8;6565:2;;;6579:18;;:::i;:::-;-1:-1:-1;6616:9:1;;6555:76::o;6636:437::-;6715:1;6711:12;;;;6758;;;6779:2;;6833:4;6825:6;6821:17;6811:27;;6779:2;6886;6878:6;6875:14;6855:18;6852:38;6849:2;;;6923:77;6920:1;6913:88;7024:4;7021:1;7014:15;7052:4;7049:1;7042:15;6849:2;;6691:382;;;:::o;7078:184::-;7130:77;7127:1;7120:88;7227:4;7224:1;7217:15;7251:4;7248:1;7241:15
Swarm Source
ipfs://d150e2e626ec6c608394f9ceb1dee727e6b4dfb2b4e087db2c044decf51090d8
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.