ERC-20
Overview
Max Total Supply
40,400,000,000 $Vader
Holders
41
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
217,370,810.376183873483000018 $VaderValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VaderToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ // 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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } 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); } 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); } 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 {} } contract VaderToken is ERC20, Ownable { constructor() ERC20("Vader", "$Vader") { _mint(msg.sender, 40400000000 * 10 ** decimals()); transferOwnership(msg.sender); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260058152642b30b232b960d91b602080830191825283518085019094526006845265122b30b232b960d11b9084015281519192916200005d916003916200028e565b508051620000739060049060208401906200028e565b505050620000906200008a620000d460201b60201c565b620000d8565b620000c3336200009f6200012a565b620000ac90600a62000457565b620000bd906409680714006200054f565b6200012f565b620000ce33620001f1565b620005c4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601290565b6001600160a01b038216620001615760405162461bcd60e51b81526004016200015890620003af565b60405180910390fd5b6200016f6000838362000232565b8060026000828254620001839190620003ef565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001d7908590620003e6565b60405180910390a3620001ed6000838362000232565b5050565b620001fb62000237565b6001600160a01b038116620002245760405162461bcd60e51b8152600401620001589062000334565b6200022f81620000d8565b50565b505050565b62000241620000d4565b6001600160a01b0316620002546200027f565b6001600160a01b0316146200027d5760405162461bcd60e51b815260040162000158906200037a565b565b6005546001600160a01b031690565b8280546200029c9062000571565b90600052602060002090601f016020900481019282620002c057600085556200030b565b82601f10620002db57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030b578251825591602001919060010190620002ee565b50620003199291506200031d565b5090565b5b808211156200031957600081556001016200031e565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004055762000405620005ae565b500190565b80825b60018086116200041e57506200044e565b818704821115620004335762000433620005ae565b808616156200044157918102915b9490941c9380026200040d565b94509492505050565b60006200046b60001960ff85168462000472565b9392505050565b60008262000483575060016200046b565b8162000492575060006200046b565b8160018114620004ab5760028114620004b657620004ea565b60019150506200046b565b60ff841115620004ca57620004ca620005ae565b6001841b915084821115620004e357620004e3620005ae565b506200046b565b5060208310610133831016604e8410600b841016171562000522575081810a838111156200051c576200051c620005ae565b6200046b565b6200053184848460016200040a565b808604821115620005465762000546620005ae565b02949350505050565b60008160001904831182151516156200056c576200056c620005ae565b500290565b6002810460018216806200058657607f821691505b60208210811415620005a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610b0b80620005d46000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906107c1565b60405180910390f35b61012061011b366004610779565b610295565b60405161010491906107b6565b6101356102b7565b6040516101049190610a5f565b61012061015036600461073e565b6102bd565b61015d6102eb565b6040516101049190610a68565b610120610178366004610779565b6102f0565b61013561018b3660046106eb565b61031c565b61019861033b565b005b6101a261034f565b60405161010491906107a2565b6100f761035e565b6101206101c5366004610779565b61036d565b6101206101d8366004610779565b6103be565b6101356101eb36600461070c565b6103d6565b6101986101fe3660046106eb565b610401565b60606003805461021290610a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610a9a565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a061043b565b90506102ad81858561043f565b5060019392505050565b60025490565b6000806102c861043b565b90506102d58582856104f3565b6102e085858561053d565b506001949350505050565b601290565b6000806102fb61043b565b90506102ad81858561030d85896103d6565b6103179190610a76565b61043f565b6001600160a01b0381166000908152602081905260409020545b919050565b61034361063e565b61034d600061067d565b565b6005546001600160a01b031690565b60606004805461021290610a9a565b60008061037861043b565b9050600061038682866103d6565b9050838110156103b15760405162461bcd60e51b81526004016103a890610a1a565b60405180910390fd5b6102e0828686840361043f565b6000806103c961043b565b90506102ad81858561053d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040961063e565b6001600160a01b03811661042f5760405162461bcd60e51b81526004016103a890610857565b6104388161067d565b50565b3390565b6001600160a01b0383166104655760405162461bcd60e51b81526004016103a8906109d6565b6001600160a01b03821661048b5760405162461bcd60e51b81526004016103a89061089d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104e6908590610a5f565b60405180910390a3505050565b60006104ff84846103d6565b90506000198114610537578181101561052a5760405162461bcd60e51b81526004016103a8906108df565b610537848484840361043f565b50505050565b6001600160a01b0383166105635760405162461bcd60e51b81526004016103a890610991565b6001600160a01b0382166105895760405162461bcd60e51b81526004016103a890610814565b6105948383836106cf565b6001600160a01b038316600090815260208190526040902054818110156105cd5760405162461bcd60e51b81526004016103a890610916565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062b908690610a5f565b60405180910390a36105378484846106cf565b61064661043b565b6001600160a01b031661065761034f565b6001600160a01b03161461034d5760405162461bcd60e51b81526004016103a89061095c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b038116811461033657600080fd5b6000602082840312156106fc578081fd5b610705826106d4565b9392505050565b6000806040838503121561071e578081fd5b610727836106d4565b9150610735602084016106d4565b90509250929050565b600080600060608486031215610752578081fd5b61075b846106d4565b9250610769602085016106d4565b9150604084013590509250925092565b6000806040838503121561078b578182fd5b610794836106d4565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156107ed578581018301518582016040015282016107d1565b818111156107fe5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610a9557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610aae57607f821691505b60208210811415610acf57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d70ec11e19ab2693bff6b63d97cf1b5461f58f850957ddc33d5e1ce684e981a464736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906107c1565b60405180910390f35b61012061011b366004610779565b610295565b60405161010491906107b6565b6101356102b7565b6040516101049190610a5f565b61012061015036600461073e565b6102bd565b61015d6102eb565b6040516101049190610a68565b610120610178366004610779565b6102f0565b61013561018b3660046106eb565b61031c565b61019861033b565b005b6101a261034f565b60405161010491906107a2565b6100f761035e565b6101206101c5366004610779565b61036d565b6101206101d8366004610779565b6103be565b6101356101eb36600461070c565b6103d6565b6101986101fe3660046106eb565b610401565b60606003805461021290610a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610a9a565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a061043b565b90506102ad81858561043f565b5060019392505050565b60025490565b6000806102c861043b565b90506102d58582856104f3565b6102e085858561053d565b506001949350505050565b601290565b6000806102fb61043b565b90506102ad81858561030d85896103d6565b6103179190610a76565b61043f565b6001600160a01b0381166000908152602081905260409020545b919050565b61034361063e565b61034d600061067d565b565b6005546001600160a01b031690565b60606004805461021290610a9a565b60008061037861043b565b9050600061038682866103d6565b9050838110156103b15760405162461bcd60e51b81526004016103a890610a1a565b60405180910390fd5b6102e0828686840361043f565b6000806103c961043b565b90506102ad81858561053d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040961063e565b6001600160a01b03811661042f5760405162461bcd60e51b81526004016103a890610857565b6104388161067d565b50565b3390565b6001600160a01b0383166104655760405162461bcd60e51b81526004016103a8906109d6565b6001600160a01b03821661048b5760405162461bcd60e51b81526004016103a89061089d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104e6908590610a5f565b60405180910390a3505050565b60006104ff84846103d6565b90506000198114610537578181101561052a5760405162461bcd60e51b81526004016103a8906108df565b610537848484840361043f565b50505050565b6001600160a01b0383166105635760405162461bcd60e51b81526004016103a890610991565b6001600160a01b0382166105895760405162461bcd60e51b81526004016103a890610814565b6105948383836106cf565b6001600160a01b038316600090815260208190526040902054818110156105cd5760405162461bcd60e51b81526004016103a890610916565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062b908690610a5f565b60405180910390a36105378484846106cf565b61064661043b565b6001600160a01b031661065761034f565b6001600160a01b03161461034d5760405162461bcd60e51b81526004016103a89061095c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b038116811461033657600080fd5b6000602082840312156106fc578081fd5b610705826106d4565b9392505050565b6000806040838503121561071e578081fd5b610727836106d4565b9150610735602084016106d4565b90509250929050565b600080600060608486031215610752578081fd5b61075b846106d4565b9250610769602085016106d4565b9150604084013590509250925092565b6000806040838503121561078b578182fd5b610794836106d4565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156107ed578581018301518582016040015282016107d1565b818111156107fe5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610a9557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610aae57607f821691505b60208210811415610acf57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d70ec11e19ab2693bff6b63d97cf1b5461f58f850957ddc33d5e1ce684e981a464736f6c63430008000033
Deployed Bytecode Sourcemap
19711:195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8525:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10876:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9645:108::-;;;:::i;:::-;;;;;;;:::i;11657:295::-;;;;;;:::i;:::-;;:::i;9487:93::-;;;:::i;:::-;;;;;;;:::i;12361:238::-;;;;;;:::i;:::-;;:::i;9816:127::-;;;;;;:::i;:::-;;:::i;2541:103::-;;;:::i;:::-;;1893:87;;;:::i;:::-;;;;;;;:::i;8744:104::-;;;:::i;13102:436::-;;;;;;:::i;:::-;;:::i;10149:193::-;;;;;;:::i;:::-;;:::i;10405:151::-;;;;;;:::i;:::-;;:::i;2799:201::-;;;;;;:::i;:::-;;:::i;8525:100::-;8579:13;8612:5;8605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8525:100;:::o;10876:201::-;10959:4;10976:13;10992:12;:10;:12::i;:::-;10976:28;;11015:32;11024:5;11031:7;11040:6;11015:8;:32::i;:::-;-1:-1:-1;11065:4:0;;10876:201;-1:-1:-1;;;10876:201:0:o;9645:108::-;9733:12;;9645:108;:::o;11657:295::-;11788:4;11805:15;11823:12;:10;:12::i;:::-;11805:30;;11846:38;11862:4;11868:7;11877:6;11846:15;:38::i;:::-;11895:27;11905:4;11911:2;11915:6;11895:9;:27::i;:::-;-1:-1:-1;11940:4:0;;11657:295;-1:-1:-1;;;;11657:295:0:o;9487:93::-;9570:2;9487:93;:::o;12361:238::-;12449:4;12466:13;12482:12;:10;:12::i;:::-;12466:28;;12505:64;12514:5;12521:7;12558:10;12530:25;12540:5;12547:7;12530:9;:25::i;:::-;:38;;;;:::i;:::-;12505:8;:64::i;9816:127::-;-1:-1:-1;;;;;9917:18:0;;9890:7;9917:18;;;;;;;;;;;9816:127;;;;:::o;2541:103::-;1779:13;:11;:13::i;:::-;2606:30:::1;2633:1;2606:18;:30::i;:::-;2541:103::o:0;1893:87::-;1966:6;;-1:-1:-1;;;;;1966:6:0;1893:87;:::o;8744:104::-;8800:13;8833:7;8826:14;;;;;:::i;13102:436::-;13195:4;13212:13;13228:12;:10;:12::i;:::-;13212:28;;13251:24;13278:25;13288:5;13295:7;13278:9;:25::i;:::-;13251:52;;13342:15;13322:16;:35;;13314:85;;;;-1:-1:-1;;;13314:85:0;;;;;;;:::i;:::-;;;;;;;;;13435:60;13444:5;13451:7;13479:15;13460:16;:34;13435:8;:60::i;10149:193::-;10228:4;10245:13;10261:12;:10;:12::i;:::-;10245:28;;10284;10294:5;10301:2;10305:6;10284:9;:28::i;10405:151::-;-1:-1:-1;;;;;10521:18:0;;;10494:7;10521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10405:151::o;2799:201::-;1779:13;:11;:13::i;:::-;-1:-1:-1;;;;;2888:22:0;::::1;2880:73;;;;-1:-1:-1::0;;;2880:73:0::1;;;;;;;:::i;:::-;2964:28;2983:8;2964:18;:28::i;:::-;2799:201:::0;:::o;602:98::-;682:10;602:98;:::o;17129:380::-;-1:-1:-1;;;;;17265:19:0;;17257:68;;;;-1:-1:-1;;;17257:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17344:21:0;;17336:68;;;;-1:-1:-1;;;17336:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17417:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17469:32;;;;;17447:6;;17469:32;:::i;:::-;;;;;;;;17129:380;;;:::o;17800:453::-;17935:24;17962:25;17972:5;17979:7;17962:9;:25::i;:::-;17935:52;;-1:-1:-1;;18002:16:0;:37;17998:248;;18084:6;18064:16;:26;;18056:68;;;;-1:-1:-1;;;18056:68:0;;;;;;;:::i;:::-;18168:51;18177:5;18184:7;18212:6;18193:16;:25;18168:8;:51::i;:::-;17800:453;;;;:::o;14008:840::-;-1:-1:-1;;;;;14139:18:0;;14131:68;;;;-1:-1:-1;;;14131:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14218:16:0;;14210:64;;;;-1:-1:-1;;;14210:64:0;;;;;;;:::i;:::-;14287:38;14308:4;14314:2;14318:6;14287:20;:38::i;:::-;-1:-1:-1;;;;;14360:15:0;;14338:19;14360:15;;;;;;;;;;;14394:21;;;;14386:72;;;;-1:-1:-1;;;14386:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14494:15:0;;;:9;:15;;;;;;;;;;;14512:20;;;14494:38;;14712:13;;;;;;;;;;:23;;;;;;14764:26;;;;;;14526:6;;14764:26;:::i;:::-;;;;;;;;14803:37;14823:4;14829:2;14833:6;14803:19;:37::i;2058:132::-;2133:12;:10;:12::i;:::-;-1:-1:-1;;;;;2122:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2122:23:0;;2114:68;;;;-1:-1:-1;;;2114:68:0;;;;;;;:::i;3160:191::-;3253:6;;;-1:-1:-1;;;;;3270:17:0;;;-1:-1:-1;;;;;;3270:17:0;;;;;;;3303:40;;3253:6;;;3270:17;3253:6;;3303:40;;3234:16;;3303:40;3160:191;;:::o;18853:125::-;;;;:::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:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:353::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:31;3791:2;3776:18;;3769:59;3860:2;3845:18;;3690:179::o;3874:402::-;4076:2;4058:21;;;4115:2;4095:18;;;4088:30;4154:34;4149:2;4134:18;;4127:62;-1:-1:-1;;;4220:2:1;4205:18;;4198:36;4266:3;4251:19;;4048:228::o;4281:356::-;4483:2;4465:21;;;4502:18;;;4495:30;4561:34;4556:2;4541:18;;4534:62;4628:2;4613:18;;4455:182::o;4642:401::-;4844:2;4826:21;;;4883:2;4863:18;;;4856:30;4922:34;4917:2;4902:18;;4895:62;-1:-1:-1;;;4988:2:1;4973:18;;4966:35;5033:3;5018:19;;4816:227::o;5048:400::-;5250:2;5232:21;;;5289:2;5269:18;;;5262:30;5328:34;5323:2;5308:18;;5301:62;-1:-1:-1;;;5394:2:1;5379:18;;5372:34;5438:3;5423:19;;5222:226::o;5453:401::-;5655:2;5637:21;;;5694:2;5674:18;;;5667:30;5733:34;5728:2;5713:18;;5706:62;-1:-1:-1;;;5799:2:1;5784:18;;5777:35;5844:3;5829:19;;5627:227::o;5859:177::-;6005:25;;;5993:2;5978:18;;5960:76::o;6041:184::-;6213:4;6201:17;;;;6183:36;;6171:2;6156:18;;6138:87::o;6230:229::-;;6301:1;6297:6;6294:1;6291:13;6288:2;;;-1:-1:-1;;;6327:33:1;;6383:4;6380:1;6373:15;6413:4;6334:3;6401:17;6288:2;-1:-1:-1;6444:9:1;;6278:181::o;6464:380::-;6549:1;6539:12;;6596:1;6586:12;;;6607:2;;6661:4;6653:6;6649:17;6639:27;;6607:2;6714;6706:6;6703:14;6683:18;6680:38;6677:2;;;6760:10;6755:3;6751:20;6748:1;6741:31;6795:4;6792:1;6785:15;6823:4;6820:1;6813:15;6677:2;;6519:325;;;:::o
Swarm Source
ipfs://d70ec11e19ab2693bff6b63d97cf1b5461f58f850957ddc33d5e1ce684e981a4
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.