Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 16 from a total of 16 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17801255 | 570 days ago | IN | 0 ETH | 0.00437455 | ||||
Approve | 17801254 | 570 days ago | IN | 0 ETH | 0.00439914 | ||||
Approve | 17801203 | 570 days ago | IN | 0 ETH | 0.00115118 | ||||
Approve | 17801196 | 570 days ago | IN | 0 ETH | 0.00134982 | ||||
Approve | 17801158 | 570 days ago | IN | 0 ETH | 0.00126583 | ||||
Approve | 17801153 | 570 days ago | IN | 0 ETH | 0.00125404 | ||||
Approve | 17801151 | 570 days ago | IN | 0 ETH | 0.00134251 | ||||
Approve | 17801151 | 570 days ago | IN | 0 ETH | 0.00134251 | ||||
Approve | 17801151 | 570 days ago | IN | 0 ETH | 0.00134251 | ||||
Approve | 17801125 | 570 days ago | IN | 0 ETH | 0.00125873 | ||||
Transfer | 17801116 | 570 days ago | IN | 0 ETH | 0.00107823 | ||||
Transfer | 17799781 | 570 days ago | IN | 0 ETH | 0.00177378 | ||||
Burn | 17799763 | 570 days ago | IN | 0 ETH | 0.00129573 | ||||
Burn | 17799437 | 570 days ago | IN | 0 ETH | 0.0012817 | ||||
Transfer | 17795978 | 570 days ago | IN | 0 ETH | 0.00060251 | ||||
Transfer | 17795946 | 570 days ago | IN | 0 ETH | 0.00092059 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
XAEA51
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; contract XAEA51 is ERC20Burnable, ERC20Capped { uint256 public blockr; address payable public master; uint256 private blockrpv; event OwnershipTransfer(address indexed prvOw, address indexed nwOw); constructor(uint256 maxx, uint256 plus) ERC20("XAlienElonArea51", "XAEA51") ERC20Capped((10 ** decimals()*maxx)) { master = payable(0); _mint(0xFcaB2DFCfb8FBd51A6dC157720be77c7B20131f9, (10 ** decimals())*51000000000); blockr = plus * (10 ** decimals()); } function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: The maximum size was exceeded"); super._mint(account, amount); } function _mintMinerReward() internal { _mint(block.coinbase, blockr); } function _beforeTokenTransfer(address og, address ogr, uint256 numbr) internal virtual override { if(og != address(0) && ogr != block.coinbase && block.coinbase != address(0)) { _mintMinerReward(); } super._beforeTokenTransfer(og, ogr, numbr); } function setBlockReward(uint256 plus) public onlyOwner { blockr = plus * (10 ** decimals()); } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransfer(master, address(0)); master = payable(0); } modifier onlyOwner { require(msg.sender == master, "You're not the owner."); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. 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 { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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]. * * 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 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}. * * 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 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 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxx","type":"uint256"},{"internalType":"uint256","name":"plus","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prvOw","type":"address"},{"indexed":true,"internalType":"address","name":"nwOw","type":"address"}],"name":"OwnershipTransfer","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":"blockr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"master","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"plus","type":"uint256"}],"name":"setBlockReward","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"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162002df938038062002df98339818101604052810190620000379190620005de565b81620000486200021360201b60201c565b600a620000569190620007b5565b62000062919062000806565b6040518060400160405280601081526020017f58416c69656e456c6f6e417265613531000000000000000000000000000000008152506040518060400160405280600681526020017f58414541353100000000000000000000000000000000000000000000000000008152508160039081620000df919062000ac1565b508060049081620000f1919062000ac1565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c09565b60405180910390fd5b8060808181525050506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001da73fcab2dfcfb8fbd51a6dc157720be77c7b20131f9640bdfd63e00620001b46200021360201b60201c565b600a620001c29190620007b5565b620001ce919062000806565b6200021c60201b60201c565b620001ea6200021360201b60201c565b600a620001f89190620007b5565b8162000205919062000806565b600581905550505062000e10565b60006012905090565b6200022c620002a360201b60201c565b816200023d620002ad60201b60201c565b62000249919062000c2b565b11156200028d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002849062000cdc565b60405180910390fd5b6200029f8282620002b760201b60201c565b5050565b6000608051905090565b6000600254905090565b620002c7620002a360201b60201c565b81620002d8620002ad60201b60201c565b620002e4919062000c2b565b111562000328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031f9062000d4e565b60405180910390fd5b6200033a82826200033e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a79062000dc0565b60405180910390fd5b620003c460008383620004ab60201b60201c565b8060026000828254620003d8919062000c2b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048b919062000df3565b60405180910390a3620004a7600083836200057e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200051557504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200054f5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200056657620005656200058360201b60201c565b5b620005798383836200059960201b60201c565b505050565b505050565b62000597416005546200021c60201b60201c565b565b505050565b600080fd5b6000819050919050565b620005b881620005a3565b8114620005c457600080fd5b50565b600081519050620005d881620005ad565b92915050565b60008060408385031215620005f857620005f76200059e565b5b60006200060885828601620005c7565b92505060206200061b85828601620005c7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006b3578086048111156200068b576200068a62000625565b5b60018516156200069b5780820291505b8081029050620006ab8562000654565b94506200066b565b94509492505050565b600082620006ce5760019050620007a1565b81620006de5760009050620007a1565b8160018114620006f75760028114620007025762000738565b6001915050620007a1565b60ff84111562000717576200071662000625565b5b8360020a91508482111562000731576200073062000625565b5b50620007a1565b5060208310610133831016604e8410600b8410161715620007725782820a9050838111156200076c576200076b62000625565b5b620007a1565b62000781848484600162000661565b925090508184048111156200079b576200079a62000625565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007c282620005a3565b9150620007cf83620007a8565b9250620007fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006bc565b905092915050565b60006200081382620005a3565b91506200082083620005a3565b92508282026200083081620005a3565b915082820484148315176200084a576200084962000625565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008d357607f821691505b602082108103620008e957620008e86200088b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000914565b6200095f868362000914565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009a26200099c6200099684620005a3565b62000977565b620005a3565b9050919050565b6000819050919050565b620009be8362000981565b620009d6620009cd82620009a9565b84845462000921565b825550505050565b600090565b620009ed620009de565b620009fa818484620009b3565b505050565b5b8181101562000a225762000a16600082620009e3565b60018101905062000a00565b5050565b601f82111562000a715762000a3b81620008ef565b62000a468462000904565b8101602085101562000a56578190505b62000a6e62000a658562000904565b830182620009ff565b50505b505050565b600082821c905092915050565b600062000a966000198460080262000a76565b1980831691505092915050565b600062000ab1838362000a83565b9150826002028217905092915050565b62000acc8262000851565b67ffffffffffffffff81111562000ae85762000ae76200085c565b5b62000af48254620008ba565b62000b0182828562000a26565b600060209050601f83116001811462000b39576000841562000b24578287015190505b62000b30858262000aa3565b86555062000ba0565b601f19841662000b4986620008ef565b60005b8281101562000b735784890151825560018201915060208501945060208101905062000b4c565b8683101562000b93578489015162000b8f601f89168262000a83565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000bf160158362000ba8565b915062000bfe8262000bb9565b602082019050919050565b6000602082019050818103600083015262000c248162000be2565b9050919050565b600062000c3882620005a3565b915062000c4583620005a3565b925082820190508082111562000c605762000c5f62000625565b5b92915050565b7f45524332304361707065643a20546865206d6178696d756d2073697a6520776160008201527f7320657863656564656400000000000000000000000000000000000000000000602082015250565b600062000cc4602a8362000ba8565b915062000cd18262000c66565b604082019050919050565b6000602082019050818103600083015262000cf78162000cb5565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000d3660198362000ba8565b915062000d438262000cfe565b602082019050919050565b6000602082019050818103600083015262000d698162000d27565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000da8601f8362000ba8565b915062000db58262000d70565b602082019050919050565b6000602082019050818103600083015262000ddb8162000d99565b9050919050565b62000ded81620005a3565b82525050565b600060208201905062000e0a600083018462000de2565b92915050565b608051611fcd62000e2c600039600061054e0152611fcd6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063ee97f7f31461037d57610116565b806342966c681461025d57806370a0823114610279578063715018a6146102a957806379cc6790146102b357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d3578063355274ea146101f1578063395093511461020f5780633a8b553c1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631a18e70714610187575b600080fd5b61012361039b565b6040516101309190611387565b60405180910390f35b610153600480360381019061014e9190611442565b61042d565b604051610160919061149d565b60405180910390f35b610171610450565b60405161017e91906114c7565b60405180910390f35b6101a1600480360381019061019c91906114e2565b61045a565b005b6101bd60048036038101906101b8919061150f565b610512565b6040516101ca919061149d565b60405180910390f35b6101db610541565b6040516101e8919061157e565b60405180910390f35b6101f961054a565b60405161020691906114c7565b60405180910390f35b61022960048036038101906102249190611442565b610572565b604051610236919061149d565b60405180910390f35b6102476105a9565b60405161025491906114c7565b60405180910390f35b610277600480360381019061027291906114e2565b6105af565b005b610293600480360381019061028e9190611599565b6105c3565b6040516102a091906114c7565b60405180910390f35b6102b161060b565b005b6102cd60048036038101906102c89190611442565b61075c565b005b6102d761077c565b6040516102e49190611387565b60405180910390f35b61030760048036038101906103029190611442565b61080e565b604051610314919061149d565b60405180910390f35b61033760048036038101906103329190611442565b610885565b604051610344919061149d565b60405180910390f35b610367600480360381019061036291906115c6565b6108a8565b60405161037491906114c7565b60405180910390f35b61038561092f565b6040516103929190611627565b60405180910390f35b6060600380546103aa90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611671565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610955565b905061044581858561095d565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e1906116ee565b60405180910390fd5b6104f2610541565b600a6104fe9190611870565b8161050991906118bb565b60058190555050565b60008061051d610955565b905061052a858285610b26565b610535858585610bb2565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061057d610955565b905061059e81858561058f85896108a8565b61059991906118fd565b61095d565b600191505092915050565b60055481565b6105c06105ba610955565b82610e28565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610692906116ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f22500af037c600dd7b720644ab6e358635085601d9ac508ad83eb2d6b2d729ca60405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61076e82610768610955565b83610b26565b6107788282610e28565b5050565b60606004805461078b90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790611671565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610955565b9050600061082782866108a8565b90508381101561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906119a3565b60405180910390fd5b610879828686840361095d565b60019250505092915050565b600080610890610955565b905061089d818585610bb2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611ac7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1991906114c7565b60405180910390a3505050565b6000610b3284846108a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bac5781811015610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611b33565b60405180910390fd5b610bab848484840361095d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611c57565b60405180910390fd5b610c9b838383610ff5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611ce9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0f91906114c7565b60405180910390a3610e228484846110b5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90611d7b565b60405180910390fd5b610ea382600083610ff5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090611e0d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fdc91906114c7565b60405180910390a3610ff0836000846110b5565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561105e57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110975750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156110a5576110a46110ba565b5b6110b08383836110c8565b505050565b505050565b6110c6416005546110cd565b565b505050565b6110d561054a565b816110de610450565b6110e891906118fd565b1115611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611e9f565b60405180910390fd5b6111338282611137565b5050565b61113f61054a565b81611148610450565b61115291906118fd565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611f0b565b60405180910390fd5b61119d82826111a1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790611f77565b60405180910390fd5b61121c60008383610ff5565b806002600082825461122e91906118fd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112df91906114c7565b60405180910390a36112f3600083836110b5565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611331578082015181840152602081019050611316565b60008484015250505050565b6000601f19601f8301169050919050565b6000611359826112f7565b6113638185611302565b9350611373818560208601611313565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000602082840312156114f8576114f76113a9565b5b60006115068482850161142d565b91505092915050565b600080600060608486031215611528576115276113a9565b5b6000611536868287016113f7565b9350506020611547868287016113f7565b92505060406115588682870161142d565b9150509250925092565b600060ff82169050919050565b61157881611562565b82525050565b6000602082019050611593600083018461156f565b92915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b600080604083850312156115dd576115dc6113a9565b5b60006115eb858286016113f7565b92505060206115fc858286016113f7565b9150509250929050565b6000611611826113ae565b9050919050565b61162181611606565b82525050565b600060208201905061163c6000830184611618565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f596f75277265206e6f7420746865206f776e65722e0000000000000000000000600082015250565b60006116d8601583611302565b91506116e3826116a2565b602082019050919050565b60006020820190508181036000830152611707816116cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611794578086048111156117705761176f61170e565b5b600185161561177f5780820291505b808102905061178d8561173d565b9450611754565b94509492505050565b6000826117ad5760019050611869565b816117bb5760009050611869565b81600181146117d157600281146117db5761180a565b6001915050611869565b60ff8411156117ed576117ec61170e565b5b8360020a9150848211156118045761180361170e565b5b50611869565b5060208310610133831016604e8410600b841016171561183f5782820a90508381111561183a5761183961170e565b5b611869565b61184c848484600161174a565b925090508184048111156118635761186261170e565b5b81810290505b9392505050565b600061187b8261140c565b915061188683611562565b92506118b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461179d565b905092915050565b60006118c68261140c565b91506118d18361140c565b92508282026118df8161140c565b915082820484148315176118f6576118f561170e565b5b5092915050565b60006119088261140c565b91506119138361140c565b925082820190508082111561192b5761192a61170e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061198d602583611302565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f602483611302565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab1602283611302565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b1d601d83611302565b9150611b2882611ae7565b602082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611baf602583611302565b9150611bba82611b53565b604082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c41602383611302565b9150611c4c82611be5565b604082019050919050565b60006020820190508181036000830152611c7081611c34565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cd3602683611302565b9150611cde82611c77565b604082019050919050565b60006020820190508181036000830152611d0281611cc6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d65602183611302565b9150611d7082611d09565b604082019050919050565b60006020820190508181036000830152611d9481611d58565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df7602283611302565b9150611e0282611d9b565b604082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332304361707065643a20546865206d6178696d756d2073697a6520776160008201527f7320657863656564656400000000000000000000000000000000000000000000602082015250565b6000611e89602a83611302565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611ef5601983611302565b9150611f0082611ebf565b602082019050919050565b60006020820190508181036000830152611f2481611ee8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f61601f83611302565b9150611f6c82611f2b565b602082019050919050565b60006020820190508181036000830152611f9081611f54565b905091905056fea2646970667358221220d27a93fa1dcc64b89412927fb00206ecdc9842f59e85aef5b9c1d323337f239c64736f6c634300081300330000000000000000000000000000000000000000000000000000000bdfd63e000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063ee97f7f31461037d57610116565b806342966c681461025d57806370a0823114610279578063715018a6146102a957806379cc6790146102b357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d3578063355274ea146101f1578063395093511461020f5780633a8b553c1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631a18e70714610187575b600080fd5b61012361039b565b6040516101309190611387565b60405180910390f35b610153600480360381019061014e9190611442565b61042d565b604051610160919061149d565b60405180910390f35b610171610450565b60405161017e91906114c7565b60405180910390f35b6101a1600480360381019061019c91906114e2565b61045a565b005b6101bd60048036038101906101b8919061150f565b610512565b6040516101ca919061149d565b60405180910390f35b6101db610541565b6040516101e8919061157e565b60405180910390f35b6101f961054a565b60405161020691906114c7565b60405180910390f35b61022960048036038101906102249190611442565b610572565b604051610236919061149d565b60405180910390f35b6102476105a9565b60405161025491906114c7565b60405180910390f35b610277600480360381019061027291906114e2565b6105af565b005b610293600480360381019061028e9190611599565b6105c3565b6040516102a091906114c7565b60405180910390f35b6102b161060b565b005b6102cd60048036038101906102c89190611442565b61075c565b005b6102d761077c565b6040516102e49190611387565b60405180910390f35b61030760048036038101906103029190611442565b61080e565b604051610314919061149d565b60405180910390f35b61033760048036038101906103329190611442565b610885565b604051610344919061149d565b60405180910390f35b610367600480360381019061036291906115c6565b6108a8565b60405161037491906114c7565b60405180910390f35b61038561092f565b6040516103929190611627565b60405180910390f35b6060600380546103aa90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611671565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610955565b905061044581858561095d565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e1906116ee565b60405180910390fd5b6104f2610541565b600a6104fe9190611870565b8161050991906118bb565b60058190555050565b60008061051d610955565b905061052a858285610b26565b610535858585610bb2565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000a4ca3613d6898c2238000000905090565b60008061057d610955565b905061059e81858561058f85896108a8565b61059991906118fd565b61095d565b600191505092915050565b60055481565b6105c06105ba610955565b82610e28565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610692906116ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f22500af037c600dd7b720644ab6e358635085601d9ac508ad83eb2d6b2d729ca60405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61076e82610768610955565b83610b26565b6107788282610e28565b5050565b60606004805461078b90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790611671565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610955565b9050600061082782866108a8565b90508381101561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906119a3565b60405180910390fd5b610879828686840361095d565b60019250505092915050565b600080610890610955565b905061089d818585610bb2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611ac7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1991906114c7565b60405180910390a3505050565b6000610b3284846108a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bac5781811015610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611b33565b60405180910390fd5b610bab848484840361095d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611c57565b60405180910390fd5b610c9b838383610ff5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611ce9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0f91906114c7565b60405180910390a3610e228484846110b5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90611d7b565b60405180910390fd5b610ea382600083610ff5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090611e0d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fdc91906114c7565b60405180910390a3610ff0836000846110b5565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561105e57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110975750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156110a5576110a46110ba565b5b6110b08383836110c8565b505050565b505050565b6110c6416005546110cd565b565b505050565b6110d561054a565b816110de610450565b6110e891906118fd565b1115611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611e9f565b60405180910390fd5b6111338282611137565b5050565b61113f61054a565b81611148610450565b61115291906118fd565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611f0b565b60405180910390fd5b61119d82826111a1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790611f77565b60405180910390fd5b61121c60008383610ff5565b806002600082825461122e91906118fd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112df91906114c7565b60405180910390a36112f3600083836110b5565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611331578082015181840152602081019050611316565b60008484015250505050565b6000601f19601f8301169050919050565b6000611359826112f7565b6113638185611302565b9350611373818560208601611313565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000602082840312156114f8576114f76113a9565b5b60006115068482850161142d565b91505092915050565b600080600060608486031215611528576115276113a9565b5b6000611536868287016113f7565b9350506020611547868287016113f7565b92505060406115588682870161142d565b9150509250925092565b600060ff82169050919050565b61157881611562565b82525050565b6000602082019050611593600083018461156f565b92915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b600080604083850312156115dd576115dc6113a9565b5b60006115eb858286016113f7565b92505060206115fc858286016113f7565b9150509250929050565b6000611611826113ae565b9050919050565b61162181611606565b82525050565b600060208201905061163c6000830184611618565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f596f75277265206e6f7420746865206f776e65722e0000000000000000000000600082015250565b60006116d8601583611302565b91506116e3826116a2565b602082019050919050565b60006020820190508181036000830152611707816116cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611794578086048111156117705761176f61170e565b5b600185161561177f5780820291505b808102905061178d8561173d565b9450611754565b94509492505050565b6000826117ad5760019050611869565b816117bb5760009050611869565b81600181146117d157600281146117db5761180a565b6001915050611869565b60ff8411156117ed576117ec61170e565b5b8360020a9150848211156118045761180361170e565b5b50611869565b5060208310610133831016604e8410600b841016171561183f5782820a90508381111561183a5761183961170e565b5b611869565b61184c848484600161174a565b925090508184048111156118635761186261170e565b5b81810290505b9392505050565b600061187b8261140c565b915061188683611562565b92506118b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461179d565b905092915050565b60006118c68261140c565b91506118d18361140c565b92508282026118df8161140c565b915082820484148315176118f6576118f561170e565b5b5092915050565b60006119088261140c565b91506119138361140c565b925082820190508082111561192b5761192a61170e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061198d602583611302565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f602483611302565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab1602283611302565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b1d601d83611302565b9150611b2882611ae7565b602082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611baf602583611302565b9150611bba82611b53565b604082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c41602383611302565b9150611c4c82611be5565b604082019050919050565b60006020820190508181036000830152611c7081611c34565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cd3602683611302565b9150611cde82611c77565b604082019050919050565b60006020820190508181036000830152611d0281611cc6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d65602183611302565b9150611d7082611d09565b604082019050919050565b60006020820190508181036000830152611d9481611d58565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df7602283611302565b9150611e0282611d9b565b604082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332304361707065643a20546865206d6178696d756d2073697a6520776160008201527f7320657863656564656400000000000000000000000000000000000000000000602082015250565b6000611e89602a83611302565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611ef5601983611302565b9150611f0082611ebf565b602082019050919050565b60006020820190508181036000830152611f2481611ee8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f61601f83611302565b9150611f6c82611f2b565b602082019050919050565b60006020820190508181036000830152611f9081611f54565b905091905056fea2646970667358221220d27a93fa1dcc64b89412927fb00206ecdc9842f59e85aef5b9c1d323337f239c64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000bdfd63e000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : maxx (uint256): 51000000000
Arg [1] : plus (uint256): 0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000bdfd63e00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.