More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 19 from a total of 19 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18554593 | 386 days ago | IN | 0 ETH | 0.00067463 | ||||
Stake | 18487305 | 395 days ago | IN | 0 ETH | 0.00130705 | ||||
Unstake | 18487271 | 395 days ago | IN | 0 ETH | 0.00107634 | ||||
Approve | 18453917 | 400 days ago | IN | 0 ETH | 0.00041988 | ||||
Approve | 18422528 | 405 days ago | IN | 0 ETH | 0.00086296 | ||||
Approve | 18422343 | 405 days ago | IN | 0 ETH | 0.00060461 | ||||
Approve | 18419114 | 405 days ago | IN | 0 ETH | 0.00075332 | ||||
Transfer | 18390531 | 409 days ago | IN | 0 ETH | 0.00054351 | ||||
Approve | 18375700 | 411 days ago | IN | 0 ETH | 0.00030658 | ||||
Transfer | 18375634 | 411 days ago | IN | 0 ETH | 0.00037065 | ||||
Transfer | 18374586 | 411 days ago | IN | 0 ETH | 0.00033258 | ||||
Approve | 18370410 | 412 days ago | IN | 0 ETH | 0.00033476 | ||||
Approve | 18370336 | 412 days ago | IN | 0 ETH | 0.00046147 | ||||
Approve | 18370146 | 412 days ago | IN | 0 ETH | 0.00022144 | ||||
Approve | 18370064 | 412 days ago | IN | 0 ETH | 0.00031785 | ||||
Approve | 18369975 | 412 days ago | IN | 0 ETH | 0.00033094 | ||||
Stake | 18369042 | 412 days ago | IN | 0 ETH | 0.00075183 | ||||
Set Stake Percen... | 18368608 | 412 days ago | IN | 0 ETH | 0.00042235 | ||||
Set Stake Percen... | 18368584 | 412 days ago | IN | 0 ETH | 0.00042455 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Zonacoin
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; pragma solidity ^0.8.21; // The Zonacoin contract is a standard ERC20 token with added staking functionality and reward accrual for participation in staking. // Let's go through the contract's functions one by one: //This is not the full version of your contacts //https://zonacoin.org/ Web3 Zonacoin //https://wiki.zonacoin.org/ Web3 Wiki Zonacoin //https://t.me/ZonaCoinOrg Telegram News //https://t.me/ZonacoinChat Telegram chat // email [email protected] contract Zonacoin is ERC20, Ownable { uint256 public maxSupply = 50000000 * 10**18; //50 million is the maximum limit, we will prohibit staking when the value reaches ~50 million. Although there is no limit on staking in the contract, we will make a mention so that people understand what can be expected in 10 years uint256 public stakePercentage = 0; uint256 private storedStakePercentage; mapping(address => uint256) public stakedBalances; mapping(address => uint256) public lastStakeTime; mapping(address => uint256) private unstakeTime; // 1. Constructor // The constructor performs the following actions: // - Calls the ERC20 constructor with parameters "Zonacoin" and "ZNC" // - Calls the Ownable constructor with the parameter msg.sender (the contract creator's address) // - Executes the _mint function, which creates 1,000,000 tokens and sends them to the contract creator's address. constructor() ERC20("Zonacoin", "ZNC") Ownable(msg.sender) { _mint(msg.sender, 1000000 * 10**18); } // 2. Stake Function // The stake function allows a user to lock their tokens in the contract and earn rewards for participating in staking. The function takes the parameter amount, which represents the number of tokens the user wants to lock. // The function performs the following actions: // - Checks if the user has enough tokens to stake // - Calls the _transfer function to transfer tokens from the user to the contract // - Increases the stakedBalances value for the user by the amount // - Sets the lastStakeTime for the user equal to the current time // - Sets the unstakeTime for the user equal to the current time plus 86400 seconds (1 day). function stake(uint256 amount) external { require(amount <= balanceOf(msg.sender), "Insufficient balance"); _transfer(msg.sender, address(this), amount); stakedBalances[msg.sender] += amount; lastStakeTime[msg.sender] = block.timestamp; unstakeTime[msg.sender] = block.timestamp + 86400; // 1 days } // 3. Unstake Function // The unstake function allows a user to unlock their tokens and receive rewards for participating in staking. The function takes the parameter amount, which represents the number of tokens the user wants to unlock. // The function performs the following actions: // - Checks if the user has enough staked tokens to unstake // - Checks if enough time has passed since the tokens were staked (1 day) // - Calculates the reward for the user by calling the calculateReward function // - Checks if the contract has enough tokens to pay the reward and the requested amount // - Calls the _transfer function to transfer tokens from the contract to the user // - Decreases the stakedBalances value for the user by the amount // - Sets the lastStakeTime for the user equal to the current time. function unstake(uint256 amount) external { require(amount <= stakedBalances[msg.sender], "Insufficient staked balance"); require(block.timestamp >= unstakeTime[msg.sender], "Cannot unstake before 1 days"); uint256 reward = calculateReward(msg.sender); require(amount + reward <= balanceOf(address(this)), "Insufficient balance in contract"); _transfer(address(this), msg.sender, amount + reward); stakedBalances[msg.sender] -= amount; lastStakeTime[msg.sender] = block.timestamp; } // 4. Calculate Reward Function // The calculateReward function calculates the reward for participating in staking for a given user. The function takes the parameter account, which represents the user's address. // The function performs the following actions: // - Gets the stakedAmount value for the user // - Calculates the time elapsed since the last token staking in minutes // - Calculates the reward using the storedStakePercentage (the staking percentage value stored in the contract). // Please let me know if there's anything else you'd like to know! function calculateReward(address account) public view returns (uint256) { uint256 stakedAmount = stakedBalances[account]; uint256 timeDiff = (block.timestamp - lastStakeTime[account]) / 60; // Difference in minutes uint256 reward = (stakedAmount * storedStakePercentage * timeDiff) / 100000000000; // Using storedStakePercentage return reward; } // 5. Modifier resetReward // The resetReward modifier calls the calculateReward function and awards the user with the calculated reward if it is greater than zero. Then, the modifier performs the remaining actions of the function it was applied to. modifier resetReward() { uint256 reward = calculateReward(msg.sender); if (reward > 0) { _mint(msg.sender, reward); lastStakeTime[msg.sender] = block.timestamp; } _; } // 6. Function setStakePercentage // The setStakePercentage function allows the contract owner to change the stake percentage value. The function takes the parameter percentage, which represents the new stake percentage value. // The function performs the following actions: // - Checks that the new stake percentage value is within the allowed range (from 0 to 189998) // - Stores the current stake percentage value in storedStakePercentage // - Sets the new stake percentage value in stakePercentage. // We do not have the right to change the reward without clear instructions; any violation by the contract is not allowed!1/2 // Every ~1,200,000 - ~1,300,000 blocks of Ethereum, the Zonacoin reward will decrease by 0.875%, which is equivalent to 12.5%. // This means that the reward for staking will decrease every 6 months. // Every 6 months, there will be a halving event. // The first halving will occur on April 17, 2024. // The difference may be 1-3 days from the halving! // 189,999 - October 17, 2023 // 165,624 ~ April 17, 2024 // 144,119 ~ October 16, 2024 // 126,573 ~ April 16, 2025 // 110,587 ~ October 16, 2025 // 96,695 ~ April 16, 2026 // 84,553 ~ October 16, 2026 // 73,942 ~ April 16, 2027 // 64,500 ~ October 17, 2027 // .... // We do not have the right to change the reward without clear instructions; any violation by the contract is not allowed!2/2 function setStakePercentage(uint256 percentage) external resetReward onlyOwner { require(percentage >= 0 && percentage <= 189998, "Invalid stake percentage"); // 189998~100% ^-^ storedStakePercentage = stakePercentage; // Saving the current value of stakePercentage stakePercentage = percentage; // Updating the stakePercentage } // 7. Function fullUnstake // The fullUnstake function allows a user to unfreeze all their staked tokens and receive rewards for their participation in staking. The function performs the following actions: // - Checks if enough time has passed since the tokens were staked (1 day) // - Calculates the amount of staked tokens for the user // - Calculates the reward for the user by calling the calculateReward function // - Checks if the contract has enough tokens to pay the reward and the requested amount // - Calls the _transfer function to transfer tokens from the contract to the user // - Sets the stakedBalances value for the user to zero // - Sets the lastStakeTime for the user to the current time. function fullUnstake() external resetReward { require(block.timestamp >= unstakeTime[msg.sender], "Cannot perform full stake before 1 days"); uint256 amount = stakedBalances[msg.sender]; uint256 reward = calculateReward(msg.sender); require(amount + reward <= balanceOf(address(this)), "Insufficient balance in contract"); _transfer(address(this), msg.sender, amount + reward); stakedBalances[msg.sender] = 0; lastStakeTime[msg.sender] = block.timestamp; } // 8. Function renounceOwnership // The renounceOwnership function overrides the function from the Ownable contract and prohibits the contract owner from relinquishing ownership of the contract. If the function is called, it will throw an exception. // I hope this helps! If you have any further questions, feel free to ask. function renounceOwnership() public virtual override onlyOwner { revert("Cannot renounce ownership"); } } //Happy investment, and remember, your creator does not like meme coins and also does not like hype projects) //I love you cats ^:^ //I LIVE ZONACOIN TOKEN ERC20 #1
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * 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. */ 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}. * * 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 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}. * * 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 `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: * ``` * 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fullUnstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastStakeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setStakePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526a295be96e640669720000006006555f60075534801562000023575f80fd5b50336040518060400160405280600881526020017f5a6f6e61636f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a4e4300000000000000000000000000000000000000000000000000000000008152508160039081620000a2919062000733565b508060049081620000b4919062000733565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200012a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012191906200085a565b60405180910390fd5b6200013b816200015e60201b60201c565b50620001583369d3c21bcecceda10000006200022160201b60201c565b62000943565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000294575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200028b91906200085a565b60405180910390fd5b620002a75f8383620002ab60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002ff578060025f828254620002f29190620008a2565b92505081905550620003d0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200038b578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200038293929190620008ed565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000419578060025f828254039250508190555062000463565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004c2919062000928565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200054b57607f821691505b60208210810362000561576200056062000506565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000588565b620005d1868362000588565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200061b620006156200060f84620005e9565b620005f2565b620005e9565b9050919050565b5f819050919050565b6200063683620005fb565b6200064e620006458262000622565b84845462000594565b825550505050565b5f90565b6200066462000656565b620006718184846200062b565b505050565b5b8181101562000698576200068c5f826200065a565b60018101905062000677565b5050565b601f821115620006e757620006b18162000567565b620006bc8462000579565b81016020851015620006cc578190505b620006e4620006db8562000579565b83018262000676565b50505b505050565b5f82821c905092915050565b5f620007095f1984600802620006ec565b1980831691505092915050565b5f620007238383620006f8565b9150826002028217905092915050565b6200073e82620004cf565b67ffffffffffffffff8111156200075a5762000759620004d9565b5b62000766825462000533565b620007738282856200069c565b5f60209050601f831160018114620007a9575f841562000794578287015190505b620007a0858262000716565b8655506200080f565b601f198416620007b98662000567565b5f5b82811015620007e257848901518255600182019150602085019450602081019050620007bb565b86831015620008025784890151620007fe601f891682620006f8565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008428262000817565b9050919050565b620008548162000836565b82525050565b5f6020820190506200086f5f83018462000849565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008ae82620005e9565b9150620008bb83620005e9565b9250828201905080821115620008d657620008d562000875565b5b92915050565b620008e781620005e9565b82525050565b5f606082019050620009025f83018662000849565b620009116020830185620008dc565b620009206040830184620008dc565b949350505050565b5f6020820190506200093d5f830184620008dc565b92915050565b611e0780620009515f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80637bb1ca19116100b6578063a9059cbb1161007a578063a9059cbb14610327578063c1a70d1414610357578063d5abeb0114610375578063d82e396214610393578063dd62ed3e146103c3578063f2fde38b146103f357610135565b80637bb1ca19146102955780638da5cb5b146102c5578063924a0038146102e357806395d89b41146102ed578063a694fc3a1461030b57610135565b80632e17de78116100fd5780632e17de7814610205578063313ce5671461022157806370a082311461023f578063715018a61461026f57806374dd00d21461027957610135565b806306fdde0314610139578063095ea7b3146101575780631460fa871461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b61014161040f565b60405161014e9190611686565b60405180910390f35b610171600480360381019061016c9190611737565b61049f565b60405161017e919061178f565b60405180910390f35b6101a1600480360381019061019c91906117a8565b6104c1565b6040516101ae91906117e2565b60405180910390f35b6101bf6104d6565b6040516101cc91906117e2565b60405180910390f35b6101ef60048036038101906101ea91906117fb565b6104df565b6040516101fc919061178f565b60405180910390f35b61021f600480360381019061021a919061184b565b61050d565b005b61022961071e565b6040516102369190611891565b60405180910390f35b610259600480360381019061025491906117a8565b610726565b60405161026691906117e2565b60405180910390f35b61027761076b565b005b610293600480360381019061028e919061184b565b6107ae565b005b6102af60048036038101906102aa91906117a8565b61087d565b6040516102bc91906117e2565b60405180910390f35b6102cd610892565b6040516102da91906118b9565b60405180910390f35b6102eb6108ba565b005b6102f5610add565b6040516103029190611686565b60405180910390f35b6103256004803603810190610320919061184b565b610b6d565b005b610341600480360381019061033c9190611737565b610cab565b60405161034e919061178f565b60405180910390f35b61035f610ccd565b60405161036c91906117e2565b60405180910390f35b61037d610cd3565b60405161038a91906117e2565b60405180910390f35b6103ad60048036038101906103a891906117a8565b610cd9565b6040516103ba91906117e2565b60405180910390f35b6103dd60048036038101906103d891906118d2565b610daa565b6040516103ea91906117e2565b60405180910390f35b61040d600480360381019061040891906117a8565b610e2c565b005b60606003805461041e9061193d565b80601f016020809104026020016040519081016040528092919081815260200182805461044a9061193d565b80156104955780601f1061046c57610100808354040283529160200191610495565b820191905f5260205f20905b81548152906001019060200180831161047857829003601f168201915b5050505050905090565b5f806104a9610eb0565b90506104b6818585610eb7565b600191505092915050565b6009602052805f5260405f205f915090505481565b5f600254905090565b5f806104e9610eb0565b90506104f6858285610ec9565b610501858585610f5b565b60019150509392505050565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205481111561058d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610584906119b7565b60405180910390fd5b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442101561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611a1f565b60405180910390fd5b5f61061733610cd9565b905061062230610726565b818361062e9190611a6a565b111561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611ae7565b60405180910390fd5b610685303383856106809190611a6a565b610f5b565b8160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106d19190611b05565b9250508190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61077361104b565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611b82565b60405180910390fd5b5f6107b833610cd9565b90505f81111561080f576107cc33826110d2565b42600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61081761104b565b5f821015801561082a57506202e62e8211155b610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090611bea565b60405180910390fd5b600754600881905550816007819055505050565b600a602052805f5260405f205f915090505481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6108c433610cd9565b90505f81111561091b576108d833826110d2565b42600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442101561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290611c78565b60405180910390fd5b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f6109e633610cd9565b90506109f130610726565b81836109fd9190611a6a565b1115610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590611ae7565b60405180910390fd5b610a5430338385610a4f9190611a6a565b610f5b565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b606060048054610aec9061193d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b189061193d565b8015610b635780601f10610b3a57610100808354040283529160200191610b63565b820191905f5260205f20905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b610b7633610726565b811115610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611ce0565b60405180910390fd5b610bc3333083610f5b565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c0f9190611a6a565b9250508190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506201518042610c679190611a6a565b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f80610cb5610eb0565b9050610cc2818585610f5b565b600191505092915050565b60075481565b60065481565b5f8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f603c600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442610d679190611b05565b610d719190611d2b565b90505f64174876e8008260085485610d899190611d5b565b610d939190611d5b565b610d9d9190611d2b565b9050809350505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e3461104b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ea4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e9b91906118b9565b60405180910390fd5b610ead81611151565b50565b5f33905090565b610ec48383836001611214565b505050565b5f610ed48484610daa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f555781811015610f46578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f3d93929190611d9c565b60405180910390fd5b610f5484848484035f611214565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fc291906118b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161103291906118b9565b60405180910390fd5b6110468383836113e3565b505050565b611053610eb0565b73ffffffffffffffffffffffffffffffffffffffff16611071610892565b73ffffffffffffffffffffffffffffffffffffffff16146110d057611094610eb0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110c791906118b9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611142575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161113991906118b9565b60405180910390fd5b61114d5f83836113e3565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611284575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161127b91906118b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112eb91906118b9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113dd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113d491906117e2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611433578060025f8282546114279190611a6a565b92505081905550611501565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114bc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114b393929190611d9c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611548578060025f8282540392505081905550611592565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115ef91906117e2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611633578082015181840152602081019050611618565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611658826115fc565b6116628185611606565b9350611672818560208601611616565b61167b8161163e565b840191505092915050565b5f6020820190508181035f83015261169e818461164e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116d3826116aa565b9050919050565b6116e3816116c9565b81146116ed575f80fd5b50565b5f813590506116fe816116da565b92915050565b5f819050919050565b61171681611704565b8114611720575f80fd5b50565b5f813590506117318161170d565b92915050565b5f806040838503121561174d5761174c6116a6565b5b5f61175a858286016116f0565b925050602061176b85828601611723565b9150509250929050565b5f8115159050919050565b61178981611775565b82525050565b5f6020820190506117a25f830184611780565b92915050565b5f602082840312156117bd576117bc6116a6565b5b5f6117ca848285016116f0565b91505092915050565b6117dc81611704565b82525050565b5f6020820190506117f55f8301846117d3565b92915050565b5f805f60608486031215611812576118116116a6565b5b5f61181f868287016116f0565b9350506020611830868287016116f0565b925050604061184186828701611723565b9150509250925092565b5f602082840312156118605761185f6116a6565b5b5f61186d84828501611723565b91505092915050565b5f60ff82169050919050565b61188b81611876565b82525050565b5f6020820190506118a45f830184611882565b92915050565b6118b3816116c9565b82525050565b5f6020820190506118cc5f8301846118aa565b92915050565b5f80604083850312156118e8576118e76116a6565b5b5f6118f5858286016116f0565b9250506020611906858286016116f0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061195457607f821691505b60208210810361196757611966611910565b5b50919050565b7f496e73756666696369656e74207374616b65642062616c616e636500000000005f82015250565b5f6119a1601b83611606565b91506119ac8261196d565b602082019050919050565b5f6020820190508181035f8301526119ce81611995565b9050919050565b7f43616e6e6f7420756e7374616b65206265666f726520312064617973000000005f82015250565b5f611a09601c83611606565b9150611a14826119d5565b602082019050919050565b5f6020820190508181035f830152611a36816119fd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a7482611704565b9150611a7f83611704565b9250828201905080821115611a9757611a96611a3d565b5b92915050565b7f496e73756666696369656e742062616c616e636520696e20636f6e74726163745f82015250565b5f611ad1602083611606565b9150611adc82611a9d565b602082019050919050565b5f6020820190508181035f830152611afe81611ac5565b9050919050565b5f611b0f82611704565b9150611b1a83611704565b9250828203905081811115611b3257611b31611a3d565b5b92915050565b7f43616e6e6f742072656e6f756e6365206f776e657273686970000000000000005f82015250565b5f611b6c601983611606565b9150611b7782611b38565b602082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f496e76616c6964207374616b652070657263656e7461676500000000000000005f82015250565b5f611bd4601883611606565b9150611bdf82611ba0565b602082019050919050565b5f6020820190508181035f830152611c0181611bc8565b9050919050565b7f43616e6e6f7420706572666f726d2066756c6c207374616b65206265666f72655f8201527f2031206461797300000000000000000000000000000000000000000000000000602082015250565b5f611c62602783611606565b9150611c6d82611c08565b604082019050919050565b5f6020820190508181035f830152611c8f81611c56565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611cca601483611606565b9150611cd582611c96565b602082019050919050565b5f6020820190508181035f830152611cf781611cbe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611d3582611704565b9150611d4083611704565b925082611d5057611d4f611cfe565b5b828204905092915050565b5f611d6582611704565b9150611d7083611704565b9250828202611d7e81611704565b91508282048414831517611d9557611d94611a3d565b5b5092915050565b5f606082019050611daf5f8301866118aa565b611dbc60208301856117d3565b611dc960408301846117d3565b94935050505056fea264697066735822122007ae460a53c8b48b93b5cf2bcb54cc986b8c2f70073ae46afd7be31bcba0328864736f6c63430008150033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80637bb1ca19116100b6578063a9059cbb1161007a578063a9059cbb14610327578063c1a70d1414610357578063d5abeb0114610375578063d82e396214610393578063dd62ed3e146103c3578063f2fde38b146103f357610135565b80637bb1ca19146102955780638da5cb5b146102c5578063924a0038146102e357806395d89b41146102ed578063a694fc3a1461030b57610135565b80632e17de78116100fd5780632e17de7814610205578063313ce5671461022157806370a082311461023f578063715018a61461026f57806374dd00d21461027957610135565b806306fdde0314610139578063095ea7b3146101575780631460fa871461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b61014161040f565b60405161014e9190611686565b60405180910390f35b610171600480360381019061016c9190611737565b61049f565b60405161017e919061178f565b60405180910390f35b6101a1600480360381019061019c91906117a8565b6104c1565b6040516101ae91906117e2565b60405180910390f35b6101bf6104d6565b6040516101cc91906117e2565b60405180910390f35b6101ef60048036038101906101ea91906117fb565b6104df565b6040516101fc919061178f565b60405180910390f35b61021f600480360381019061021a919061184b565b61050d565b005b61022961071e565b6040516102369190611891565b60405180910390f35b610259600480360381019061025491906117a8565b610726565b60405161026691906117e2565b60405180910390f35b61027761076b565b005b610293600480360381019061028e919061184b565b6107ae565b005b6102af60048036038101906102aa91906117a8565b61087d565b6040516102bc91906117e2565b60405180910390f35b6102cd610892565b6040516102da91906118b9565b60405180910390f35b6102eb6108ba565b005b6102f5610add565b6040516103029190611686565b60405180910390f35b6103256004803603810190610320919061184b565b610b6d565b005b610341600480360381019061033c9190611737565b610cab565b60405161034e919061178f565b60405180910390f35b61035f610ccd565b60405161036c91906117e2565b60405180910390f35b61037d610cd3565b60405161038a91906117e2565b60405180910390f35b6103ad60048036038101906103a891906117a8565b610cd9565b6040516103ba91906117e2565b60405180910390f35b6103dd60048036038101906103d891906118d2565b610daa565b6040516103ea91906117e2565b60405180910390f35b61040d600480360381019061040891906117a8565b610e2c565b005b60606003805461041e9061193d565b80601f016020809104026020016040519081016040528092919081815260200182805461044a9061193d565b80156104955780601f1061046c57610100808354040283529160200191610495565b820191905f5260205f20905b81548152906001019060200180831161047857829003601f168201915b5050505050905090565b5f806104a9610eb0565b90506104b6818585610eb7565b600191505092915050565b6009602052805f5260405f205f915090505481565b5f600254905090565b5f806104e9610eb0565b90506104f6858285610ec9565b610501858585610f5b565b60019150509392505050565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205481111561058d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610584906119b7565b60405180910390fd5b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442101561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611a1f565b60405180910390fd5b5f61061733610cd9565b905061062230610726565b818361062e9190611a6a565b111561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611ae7565b60405180910390fd5b610685303383856106809190611a6a565b610f5b565b8160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106d19190611b05565b9250508190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61077361104b565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611b82565b60405180910390fd5b5f6107b833610cd9565b90505f81111561080f576107cc33826110d2565b42600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61081761104b565b5f821015801561082a57506202e62e8211155b610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090611bea565b60405180910390fd5b600754600881905550816007819055505050565b600a602052805f5260405f205f915090505481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6108c433610cd9565b90505f81111561091b576108d833826110d2565b42600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442101561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290611c78565b60405180910390fd5b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f6109e633610cd9565b90506109f130610726565b81836109fd9190611a6a565b1115610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590611ae7565b60405180910390fd5b610a5430338385610a4f9190611a6a565b610f5b565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b606060048054610aec9061193d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b189061193d565b8015610b635780601f10610b3a57610100808354040283529160200191610b63565b820191905f5260205f20905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b610b7633610726565b811115610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611ce0565b60405180910390fd5b610bc3333083610f5b565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c0f9190611a6a565b9250508190555042600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506201518042610c679190611a6a565b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f80610cb5610eb0565b9050610cc2818585610f5b565b600191505092915050565b60075481565b60065481565b5f8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f603c600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442610d679190611b05565b610d719190611d2b565b90505f64174876e8008260085485610d899190611d5b565b610d939190611d5b565b610d9d9190611d2b565b9050809350505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e3461104b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ea4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e9b91906118b9565b60405180910390fd5b610ead81611151565b50565b5f33905090565b610ec48383836001611214565b505050565b5f610ed48484610daa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f555781811015610f46578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f3d93929190611d9c565b60405180910390fd5b610f5484848484035f611214565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fc291906118b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161103291906118b9565b60405180910390fd5b6110468383836113e3565b505050565b611053610eb0565b73ffffffffffffffffffffffffffffffffffffffff16611071610892565b73ffffffffffffffffffffffffffffffffffffffff16146110d057611094610eb0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110c791906118b9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611142575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161113991906118b9565b60405180910390fd5b61114d5f83836113e3565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611284575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161127b91906118b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112eb91906118b9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113dd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113d491906117e2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611433578060025f8282546114279190611a6a565b92505081905550611501565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114bc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114b393929190611d9c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611548578060025f8282540392505081905550611592565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115ef91906117e2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611633578082015181840152602081019050611618565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611658826115fc565b6116628185611606565b9350611672818560208601611616565b61167b8161163e565b840191505092915050565b5f6020820190508181035f83015261169e818461164e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116d3826116aa565b9050919050565b6116e3816116c9565b81146116ed575f80fd5b50565b5f813590506116fe816116da565b92915050565b5f819050919050565b61171681611704565b8114611720575f80fd5b50565b5f813590506117318161170d565b92915050565b5f806040838503121561174d5761174c6116a6565b5b5f61175a858286016116f0565b925050602061176b85828601611723565b9150509250929050565b5f8115159050919050565b61178981611775565b82525050565b5f6020820190506117a25f830184611780565b92915050565b5f602082840312156117bd576117bc6116a6565b5b5f6117ca848285016116f0565b91505092915050565b6117dc81611704565b82525050565b5f6020820190506117f55f8301846117d3565b92915050565b5f805f60608486031215611812576118116116a6565b5b5f61181f868287016116f0565b9350506020611830868287016116f0565b925050604061184186828701611723565b9150509250925092565b5f602082840312156118605761185f6116a6565b5b5f61186d84828501611723565b91505092915050565b5f60ff82169050919050565b61188b81611876565b82525050565b5f6020820190506118a45f830184611882565b92915050565b6118b3816116c9565b82525050565b5f6020820190506118cc5f8301846118aa565b92915050565b5f80604083850312156118e8576118e76116a6565b5b5f6118f5858286016116f0565b9250506020611906858286016116f0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061195457607f821691505b60208210810361196757611966611910565b5b50919050565b7f496e73756666696369656e74207374616b65642062616c616e636500000000005f82015250565b5f6119a1601b83611606565b91506119ac8261196d565b602082019050919050565b5f6020820190508181035f8301526119ce81611995565b9050919050565b7f43616e6e6f7420756e7374616b65206265666f726520312064617973000000005f82015250565b5f611a09601c83611606565b9150611a14826119d5565b602082019050919050565b5f6020820190508181035f830152611a36816119fd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a7482611704565b9150611a7f83611704565b9250828201905080821115611a9757611a96611a3d565b5b92915050565b7f496e73756666696369656e742062616c616e636520696e20636f6e74726163745f82015250565b5f611ad1602083611606565b9150611adc82611a9d565b602082019050919050565b5f6020820190508181035f830152611afe81611ac5565b9050919050565b5f611b0f82611704565b9150611b1a83611704565b9250828203905081811115611b3257611b31611a3d565b5b92915050565b7f43616e6e6f742072656e6f756e6365206f776e657273686970000000000000005f82015250565b5f611b6c601983611606565b9150611b7782611b38565b602082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f496e76616c6964207374616b652070657263656e7461676500000000000000005f82015250565b5f611bd4601883611606565b9150611bdf82611ba0565b602082019050919050565b5f6020820190508181035f830152611c0181611bc8565b9050919050565b7f43616e6e6f7420706572666f726d2066756c6c207374616b65206265666f72655f8201527f2031206461797300000000000000000000000000000000000000000000000000602082015250565b5f611c62602783611606565b9150611c6d82611c08565b604082019050919050565b5f6020820190508181035f830152611c8f81611c56565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611cca601483611606565b9150611cd582611c96565b602082019050919050565b5f6020820190508181035f830152611cf781611cbe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611d3582611704565b9150611d4083611704565b925082611d5057611d4f611cfe565b5b828204905092915050565b5f611d6582611704565b9150611d7083611704565b9250828202611d7e81611704565b91508282048414831517611d9557611d94611a3d565b5b5092915050565b5f606082019050611daf5f8301866118aa565b611dbc60208301856117d3565b611dc960408301846117d3565b94935050505056fea264697066735822122007ae460a53c8b48b93b5cf2bcb54cc986b8c2f70073ae46afd7be31bcba0328864736f6c63430008150033
Loading...
Loading
Loading...
Loading
OVERVIEW
Leading cybersecurity coin, decentralized ERC20 token.Multichain Portfolio | 29 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.