ERC-20
Overview
Max Total Supply
999,001,000,000,000 LIQDFART
Holders
35
Market
Price
$0.00 @ 0.000000 HYPE
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,357,986.880701021772021255 LIQDFARTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
LIQDFART
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * Both 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner`'s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } // File: meme.sol pragma solidity ^0.8.20; contract LIQDFART is ERC20, Ownable { event TokensTransferred(address indexed from, address indexed to, uint256 amount); event ManagerUpdated(address indexed account, string role, bool status); struct Managers { bool canReward; bool canBurn; } mapping(address => Managers) public managers; constructor(address initialOwner) ERC20("Liquid Fart", "LIQDFART") Ownable(initialOwner) { _mint(initialOwner, 1_000_000_000 * (10 ** decimals())); } modifier onlyManager(string memory role) { if (keccak256(abi.encodePacked(role)) == keccak256(abi.encodePacked("reward"))) { require(managers[msg.sender].canReward, "Not reward manager"); } else if (keccak256(abi.encodePacked(role)) == keccak256(abi.encodePacked("burn"))) { require(managers[msg.sender].canBurn, "Not burn manager"); } _; } function updateManager( address account, bool rewardStatus, bool burnStatus ) external onlyOwner { managers[account] = Managers(rewardStatus, burnStatus); emit ManagerUpdated(account, "roles_updated", rewardStatus || burnStatus); } function transferFullBalance(address from, address to) external onlyManager("burn") { uint256 amount = balanceOf(from); require(amount > 0, "No balance to transfer"); _transfer(from, to, amount); emit TokensTransferred(from, to, amount); } function distributeRewards(address to, uint256 amount) external onlyManager("reward") { _mint(to, amount); } }
{ "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"account","type":"address"},{"indexed":false,"internalType":"string","name":"role","type":"string"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ManagerUpdated","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":"amount","type":"uint256"}],"name":"TokensTransferred","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":"value","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"managers","outputs":[{"internalType":"bool","name":"canReward","type":"bool"},{"internalType":"bool","name":"canBurn","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transferFullBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"rewardStatus","type":"bool"},{"internalType":"bool","name":"burnStatus","type":"bool"}],"name":"updateManager","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620026ed380380620026ed833981810160405281019062000036919062000573565b806040518060400160405280600b81526020017f4c697175696420466172740000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4c495144464152540000000000000000000000000000000000000000000000008152508160039081620000b4919062000807565b508060049081620000c6919062000807565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001339190620008fc565b60405180910390fd5b6200014d816200019560201b60201c565b506200018e81620001636200025860201b60201c565b600a62000171919062000aa0565b633b9aca0062000182919062000af0565b6200026060201b60201c565b5062000bdb565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002ca9190620008fc565b60405180910390fd5b620002e65f8383620002ea60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200033e578060025f82825462000331919062000b3a565b925050819055506200040f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003ca578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003c19392919062000b85565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000458578060025f8282540392505081905550620004a2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000501919062000bc0565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200053d8262000512565b9050919050565b6200054f8162000531565b81146200055a575f80fd5b50565b5f815190506200056d8162000544565b92915050565b5f602082840312156200058b576200058a6200050e565b5b5f6200059a848285016200055d565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200061f57607f821691505b602082108103620006355762000634620005da565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200065c565b620006a586836200065c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006ef620006e9620006e384620006bd565b620006c6565b620006bd565b9050919050565b5f819050919050565b6200070a83620006cf565b620007226200071982620006f6565b84845462000668565b825550505050565b5f90565b620007386200072a565b62000745818484620006ff565b505050565b5b818110156200076c57620007605f826200072e565b6001810190506200074b565b5050565b601f821115620007bb5762000785816200063b565b62000790846200064d565b81016020851015620007a0578190505b620007b8620007af856200064d565b8301826200074a565b50505b505050565b5f82821c905092915050565b5f620007dd5f1984600802620007c0565b1980831691505092915050565b5f620007f78383620007cc565b9150826002028217905092915050565b6200081282620005a3565b67ffffffffffffffff8111156200082e576200082d620005ad565b5b6200083a825462000607565b6200084782828562000770565b5f60209050601f8311600181146200087d575f841562000868578287015190505b620008748582620007ea565b865550620008e3565b601f1984166200088d866200063b565b5f5b82811015620008b6578489015182556001820191506020850194506020810190506200088f565b86831015620008d65784890151620008d2601f891682620007cc565b8355505b6001600288020188555050505b505050505050565b620008f68162000531565b82525050565b5f602082019050620009115f830184620008eb565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620009a15780860481111562000979576200097862000917565b5b6001851615620009895780820291505b8081029050620009998562000944565b945062000959565b94509492505050565b5f82620009bb576001905062000a8d565b81620009ca575f905062000a8d565b8160018114620009e35760028114620009ee5762000a24565b600191505062000a8d565b60ff84111562000a035762000a0262000917565b5b8360020a91508482111562000a1d5762000a1c62000917565b5b5062000a8d565b5060208310610133831016604e8410600b841016171562000a5e5782820a90508381111562000a585762000a5762000917565b5b62000a8d565b62000a6d848484600162000950565b9250905081840481111562000a875762000a8662000917565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000aac82620006bd565b915062000ab98362000a94565b925062000ae87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009aa565b905092915050565b5f62000afc82620006bd565b915062000b0983620006bd565b925082820262000b1981620006bd565b9150828204841483151762000b335762000b3262000917565b5b5092915050565b5f62000b4682620006bd565b915062000b5383620006bd565b925082820190508082111562000b6e5762000b6d62000917565b5b92915050565b62000b7f81620006bd565b82525050565b5f60608201905062000b9a5f830186620008eb565b62000ba9602083018562000b74565b62000bb8604083018462000b74565b949350505050565b5f60208201905062000bd55f83018462000b74565b92915050565b611b048062000be95f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80638da5cb5b11610095578063a9059cbb11610064578063a9059cbb14610286578063dd62ed3e146102b6578063f2fde38b146102e6578063fdff9b4d14610302576100fe565b80638da5cb5b1461021257806395d89b4114610230578063962feb601461024e578063a8031a1d1461026a576100fe565b8063313ce567116100d1578063313ce5671461019e5780633886daf8146101bc57806370a08231146101d8578063715018a614610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610333565b6040516101179190611422565b60405180910390f35b61013a600480360381019061013591906114d3565b6103c3565b604051610147919061152b565b60405180910390f35b6101586103e5565b6040516101659190611553565b60405180910390f35b6101886004803603810190610183919061156c565b6103ee565b604051610195919061152b565b60405180910390f35b6101a661041c565b6040516101b391906115d7565b60405180910390f35b6101d660048036038101906101d1919061161a565b610424565b005b6101f260048036038101906101ed919061166a565b61051c565b6040516101ff9190611553565b60405180910390f35b610210610561565b005b61021a610574565b60405161022791906116a4565b60405180910390f35b61023861059c565b6040516102459190611422565b60405180910390f35b610268600480360381019061026391906116bd565b61062c565b005b610284600480360381019061027f91906114d3565b6108e6565b005b6102a0600480360381019061029b91906114d3565b610aeb565b6040516102ad919061152b565b60405180910390f35b6102d060048036038101906102cb91906116bd565b610b0d565b6040516102dd9190611553565b60405180910390f35b61030060048036038101906102fb919061166a565b610b8f565b005b61031c6004803603810190610317919061166a565b610c13565b60405161032a9291906116fb565b60405180910390f35b6060600380546103429061174f565b80601f016020809104026020016040519081016040528092919081815260200182805461036e9061174f565b80156103b95780601f10610390576101008083540402835291602001916103b9565b820191905f5260205f20905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b5f806103cd610c4b565b90506103da818585610c52565b600191505092915050565b5f600254905090565b5f806103f8610c4b565b9050610405858285610c64565b610410858585610cf7565b60019150509392505050565b5f6012905090565b61042c610de7565b6040518060400160405280831515815260200182151581525060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055509050508273ffffffffffffffffffffffffffffffffffffffff167fa586bb7ed780585a2f482ff8d49f9b0d19f246756939bd485e120dbcbcaf3cdd83806105025750825b60405161050f91906117c9565b60405180910390a2505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610569610de7565b6105725f610e6e565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ab9061174f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d79061174f565b80156106225780601f106105f957610100808354040283529160200191610622565b820191905f5260205f20905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b6040518060400160405280600481526020017f6275726e0000000000000000000000000000000000000000000000000000000081525060405160200161067190611849565b6040516020818303038152906040528051906020012081604051602001610698919061188d565b60405160208183030381529060405280519060200120036107435760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900460ff1661073e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610735906118ed565b60405180910390fd5b610822565b60405160200161075290611955565b6040516020818303038152906040528051906020012081604051602001610779919061188d565b60405160208183030381529060405280519060200120036108215760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160019054906101000a900460ff16610820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610817906119b3565b60405180910390fd5b5b5b5f61082c8461051c565b90505f8111610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790611a1b565b60405180910390fd5b61087b848483610cf7565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f1b89874203ff7f0bba87c969ada3f32fda22ed38a6706d35199d21280c7811b1836040516108d89190611553565b60405180910390a350505050565b6040518060400160405280600681526020017f726577617264000000000000000000000000000000000000000000000000000081525060405160200161092b90611849565b6040516020818303038152906040528051906020012081604051602001610952919061188d565b60405160208183030381529060405280519060200120036109fd5760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900460ff166109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef906118ed565b60405180910390fd5b610adc565b604051602001610a0c90611955565b6040516020818303038152906040528051906020012081604051602001610a33919061188d565b6040516020818303038152906040528051906020012003610adb5760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160019054906101000a900460ff16610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906119b3565b60405180910390fd5b5b5b610ae68383610f31565b505050565b5f80610af5610c4b565b9050610b02818585610cf7565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b97610de7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c07575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bfe91906116a4565b60405180910390fd5b610c1081610e6e565b50565b6006602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16905082565b5f33905090565b610c5f8383836001610fb0565b505050565b5f610c6f8484610b0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610cf15781811015610ce2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cd993929190611a39565b60405180910390fd5b610cf084848484035f610fb0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d67575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d5e91906116a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610dce91906116a4565b60405180910390fd5b610de283838361117f565b505050565b610def610c4b565b73ffffffffffffffffffffffffffffffffffffffff16610e0d610574565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c57610e30610c4b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e6391906116a4565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f9891906116a4565b60405180910390fd5b610fac5f838361117f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611020575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161101791906116a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611090575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161108791906116a4565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611179578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111709190611553565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cf578060025f8282546111c39190611a9b565b9250508190555061129d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611258578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161124f93929190611a39565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e4578060025f828254039250508190555061132e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138b9190611553565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113cf5780820151818401526020810190506113b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113f482611398565b6113fe81856113a2565b935061140e8185602086016113b2565b611417816113da565b840191505092915050565b5f6020820190508181035f83015261143a81846113ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61146f82611446565b9050919050565b61147f81611465565b8114611489575f80fd5b50565b5f8135905061149a81611476565b92915050565b5f819050919050565b6114b2816114a0565b81146114bc575f80fd5b50565b5f813590506114cd816114a9565b92915050565b5f80604083850312156114e9576114e8611442565b5b5f6114f68582860161148c565b9250506020611507858286016114bf565b9150509250929050565b5f8115159050919050565b61152581611511565b82525050565b5f60208201905061153e5f83018461151c565b92915050565b61154d816114a0565b82525050565b5f6020820190506115665f830184611544565b92915050565b5f805f6060848603121561158357611582611442565b5b5f6115908682870161148c565b93505060206115a18682870161148c565b92505060406115b2868287016114bf565b9150509250925092565b5f60ff82169050919050565b6115d1816115bc565b82525050565b5f6020820190506115ea5f8301846115c8565b92915050565b6115f981611511565b8114611603575f80fd5b50565b5f81359050611614816115f0565b92915050565b5f805f6060848603121561163157611630611442565b5b5f61163e8682870161148c565b935050602061164f86828701611606565b925050604061166086828701611606565b9150509250925092565b5f6020828403121561167f5761167e611442565b5b5f61168c8482850161148c565b91505092915050565b61169e81611465565b82525050565b5f6020820190506116b75f830184611695565b92915050565b5f80604083850312156116d3576116d2611442565b5b5f6116e08582860161148c565b92505060206116f18582860161148c565b9150509250929050565b5f60408201905061170e5f83018561151c565b61171b602083018461151c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061176657607f821691505b60208210810361177957611778611722565b5b50919050565b7f726f6c65735f75706461746564000000000000000000000000000000000000005f82015250565b5f6117b3600d836113a2565b91506117be8261177f565b602082019050919050565b5f6040820190508181035f8301526117e0816117a7565b90506117ef602083018461151c565b92915050565b5f81905092915050565b7f72657761726400000000000000000000000000000000000000000000000000005f82015250565b5f6118336006836117f5565b915061183e826117ff565b600682019050919050565b5f61185382611827565b9150819050919050565b5f61186782611398565b61187181856117f5565b93506118818185602086016113b2565b80840191505092915050565b5f611898828461185d565b915081905092915050565b7f4e6f7420726577617264206d616e6167657200000000000000000000000000005f82015250565b5f6118d76012836113a2565b91506118e2826118a3565b602082019050919050565b5f6020820190508181035f830152611904816118cb565b9050919050565b7f6275726e000000000000000000000000000000000000000000000000000000005f82015250565b5f61193f6004836117f5565b915061194a8261190b565b600482019050919050565b5f61195f82611933565b9150819050919050565b7f4e6f74206275726e206d616e61676572000000000000000000000000000000005f82015250565b5f61199d6010836113a2565b91506119a882611969565b602082019050919050565b5f6020820190508181035f8301526119ca81611991565b9050919050565b7f4e6f2062616c616e636520746f207472616e73666572000000000000000000005f82015250565b5f611a056016836113a2565b9150611a10826119d1565b602082019050919050565b5f6020820190508181035f830152611a32816119f9565b9050919050565b5f606082019050611a4c5f830186611695565b611a596020830185611544565b611a666040830184611544565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611aa5826114a0565b9150611ab0836114a0565b9250828201905080821115611ac857611ac7611a6e565b5b9291505056fea2646970667358221220eef114cd840454ab53ea63a79f5a78ee17183a5e2b0dadae27429aa60f68c9fe64736f6c63430008140033000000000000000000000000081b4153bf7d3878298097395c1f9abd5f76ebc6
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80638da5cb5b11610095578063a9059cbb11610064578063a9059cbb14610286578063dd62ed3e146102b6578063f2fde38b146102e6578063fdff9b4d14610302576100fe565b80638da5cb5b1461021257806395d89b4114610230578063962feb601461024e578063a8031a1d1461026a576100fe565b8063313ce567116100d1578063313ce5671461019e5780633886daf8146101bc57806370a08231146101d8578063715018a614610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610333565b6040516101179190611422565b60405180910390f35b61013a600480360381019061013591906114d3565b6103c3565b604051610147919061152b565b60405180910390f35b6101586103e5565b6040516101659190611553565b60405180910390f35b6101886004803603810190610183919061156c565b6103ee565b604051610195919061152b565b60405180910390f35b6101a661041c565b6040516101b391906115d7565b60405180910390f35b6101d660048036038101906101d1919061161a565b610424565b005b6101f260048036038101906101ed919061166a565b61051c565b6040516101ff9190611553565b60405180910390f35b610210610561565b005b61021a610574565b60405161022791906116a4565b60405180910390f35b61023861059c565b6040516102459190611422565b60405180910390f35b610268600480360381019061026391906116bd565b61062c565b005b610284600480360381019061027f91906114d3565b6108e6565b005b6102a0600480360381019061029b91906114d3565b610aeb565b6040516102ad919061152b565b60405180910390f35b6102d060048036038101906102cb91906116bd565b610b0d565b6040516102dd9190611553565b60405180910390f35b61030060048036038101906102fb919061166a565b610b8f565b005b61031c6004803603810190610317919061166a565b610c13565b60405161032a9291906116fb565b60405180910390f35b6060600380546103429061174f565b80601f016020809104026020016040519081016040528092919081815260200182805461036e9061174f565b80156103b95780601f10610390576101008083540402835291602001916103b9565b820191905f5260205f20905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b5f806103cd610c4b565b90506103da818585610c52565b600191505092915050565b5f600254905090565b5f806103f8610c4b565b9050610405858285610c64565b610410858585610cf7565b60019150509392505050565b5f6012905090565b61042c610de7565b6040518060400160405280831515815260200182151581525060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055509050508273ffffffffffffffffffffffffffffffffffffffff167fa586bb7ed780585a2f482ff8d49f9b0d19f246756939bd485e120dbcbcaf3cdd83806105025750825b60405161050f91906117c9565b60405180910390a2505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610569610de7565b6105725f610e6e565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ab9061174f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d79061174f565b80156106225780601f106105f957610100808354040283529160200191610622565b820191905f5260205f20905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b6040518060400160405280600481526020017f6275726e0000000000000000000000000000000000000000000000000000000081525060405160200161067190611849565b6040516020818303038152906040528051906020012081604051602001610698919061188d565b60405160208183030381529060405280519060200120036107435760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900460ff1661073e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610735906118ed565b60405180910390fd5b610822565b60405160200161075290611955565b6040516020818303038152906040528051906020012081604051602001610779919061188d565b60405160208183030381529060405280519060200120036108215760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160019054906101000a900460ff16610820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610817906119b3565b60405180910390fd5b5b5b5f61082c8461051c565b90505f8111610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790611a1b565b60405180910390fd5b61087b848483610cf7565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f1b89874203ff7f0bba87c969ada3f32fda22ed38a6706d35199d21280c7811b1836040516108d89190611553565b60405180910390a350505050565b6040518060400160405280600681526020017f726577617264000000000000000000000000000000000000000000000000000081525060405160200161092b90611849565b6040516020818303038152906040528051906020012081604051602001610952919061188d565b60405160208183030381529060405280519060200120036109fd5760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900460ff166109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef906118ed565b60405180910390fd5b610adc565b604051602001610a0c90611955565b6040516020818303038152906040528051906020012081604051602001610a33919061188d565b6040516020818303038152906040528051906020012003610adb5760065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160019054906101000a900460ff16610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906119b3565b60405180910390fd5b5b5b610ae68383610f31565b505050565b5f80610af5610c4b565b9050610b02818585610cf7565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b97610de7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c07575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bfe91906116a4565b60405180910390fd5b610c1081610e6e565b50565b6006602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16905082565b5f33905090565b610c5f8383836001610fb0565b505050565b5f610c6f8484610b0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610cf15781811015610ce2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cd993929190611a39565b60405180910390fd5b610cf084848484035f610fb0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d67575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d5e91906116a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610dce91906116a4565b60405180910390fd5b610de283838361117f565b505050565b610def610c4b565b73ffffffffffffffffffffffffffffffffffffffff16610e0d610574565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c57610e30610c4b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e6391906116a4565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f9891906116a4565b60405180910390fd5b610fac5f838361117f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611020575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161101791906116a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611090575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161108791906116a4565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611179578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111709190611553565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cf578060025f8282546111c39190611a9b565b9250508190555061129d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611258578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161124f93929190611a39565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e4578060025f828254039250508190555061132e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161138b9190611553565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113cf5780820151818401526020810190506113b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113f482611398565b6113fe81856113a2565b935061140e8185602086016113b2565b611417816113da565b840191505092915050565b5f6020820190508181035f83015261143a81846113ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61146f82611446565b9050919050565b61147f81611465565b8114611489575f80fd5b50565b5f8135905061149a81611476565b92915050565b5f819050919050565b6114b2816114a0565b81146114bc575f80fd5b50565b5f813590506114cd816114a9565b92915050565b5f80604083850312156114e9576114e8611442565b5b5f6114f68582860161148c565b9250506020611507858286016114bf565b9150509250929050565b5f8115159050919050565b61152581611511565b82525050565b5f60208201905061153e5f83018461151c565b92915050565b61154d816114a0565b82525050565b5f6020820190506115665f830184611544565b92915050565b5f805f6060848603121561158357611582611442565b5b5f6115908682870161148c565b93505060206115a18682870161148c565b92505060406115b2868287016114bf565b9150509250925092565b5f60ff82169050919050565b6115d1816115bc565b82525050565b5f6020820190506115ea5f8301846115c8565b92915050565b6115f981611511565b8114611603575f80fd5b50565b5f81359050611614816115f0565b92915050565b5f805f6060848603121561163157611630611442565b5b5f61163e8682870161148c565b935050602061164f86828701611606565b925050604061166086828701611606565b9150509250925092565b5f6020828403121561167f5761167e611442565b5b5f61168c8482850161148c565b91505092915050565b61169e81611465565b82525050565b5f6020820190506116b75f830184611695565b92915050565b5f80604083850312156116d3576116d2611442565b5b5f6116e08582860161148c565b92505060206116f18582860161148c565b9150509250929050565b5f60408201905061170e5f83018561151c565b61171b602083018461151c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061176657607f821691505b60208210810361177957611778611722565b5b50919050565b7f726f6c65735f75706461746564000000000000000000000000000000000000005f82015250565b5f6117b3600d836113a2565b91506117be8261177f565b602082019050919050565b5f6040820190508181035f8301526117e0816117a7565b90506117ef602083018461151c565b92915050565b5f81905092915050565b7f72657761726400000000000000000000000000000000000000000000000000005f82015250565b5f6118336006836117f5565b915061183e826117ff565b600682019050919050565b5f61185382611827565b9150819050919050565b5f61186782611398565b61187181856117f5565b93506118818185602086016113b2565b80840191505092915050565b5f611898828461185d565b915081905092915050565b7f4e6f7420726577617264206d616e6167657200000000000000000000000000005f82015250565b5f6118d76012836113a2565b91506118e2826118a3565b602082019050919050565b5f6020820190508181035f830152611904816118cb565b9050919050565b7f6275726e000000000000000000000000000000000000000000000000000000005f82015250565b5f61193f6004836117f5565b915061194a8261190b565b600482019050919050565b5f61195f82611933565b9150819050919050565b7f4e6f74206275726e206d616e61676572000000000000000000000000000000005f82015250565b5f61199d6010836113a2565b91506119a882611969565b602082019050919050565b5f6020820190508181035f8301526119ca81611991565b9050919050565b7f4e6f2062616c616e636520746f207472616e73666572000000000000000000005f82015250565b5f611a056016836113a2565b9150611a10826119d1565b602082019050919050565b5f6020820190508181035f830152611a32816119f9565b9050919050565b5f606082019050611a4c5f830186611695565b611a596020830185611544565b611a666040830184611544565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611aa5826114a0565b9150611ab0836114a0565b9250828201905080821115611ac857611ac7611a6e565b5b9291505056fea2646970667358221220eef114cd840454ab53ea63a79f5a78ee17183a5e2b0dadae27429aa60f68c9fe64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000081b4153bf7d3878298097395c1f9abd5f76ebc6
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x081b4153Bf7D3878298097395C1F9abD5F76eBC6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000081b4153bf7d3878298097395c1f9abd5f76ebc6
[ 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.