Source Code
Overview
POL Balance
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Loading...
Loading
Contract Name:
ButtcoinTestTestnet
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ibuttcoin.testnet.sol"; contract ButtcoinTestTestnet is ERC20, Ownable, ibuttcoin { address public immutable liquidityWallet; address public immutable stakingRewardsWallet; address public constant burnAddress = address(0xdead); address public vestingContract; uint256 public constant INITIAL_SUPPLY = 2500 * 10**18; uint256 public constant MAX_SUPPLY = 3750 * 10**18; uint256 public transactionFee = 1; // 1% default uint256 public nftSalesCount; uint256 public nextMilestone = 50; uint256 public incrementsMinted; event FeesDistributed(address indexed sender, uint256 liquidity, uint256 staking, uint256 burned); event TokensBurned(address indexed burner, uint256 amount); event NFTSalesRecorded(uint256 amount, uint256 totalSales); event MintFromMilestone(address indexed to, uint256 minted, uint256 burned); event TransactionFeeUpdated(uint256 oldFee, uint256 newFee); event ExcessiveIterations(uint256 nftSalesCount, uint256 nextMilestone); constructor( address liquidityWallet_, address stakingRewardsWallet_, address owner_ ) ERC20("ButtcoinTestTestnet", "TURDS_TEST") Ownable(owner_) { require(liquidityWallet_ != address(0), "Liquidity wallet cannot be zero"); require(stakingRewardsWallet_ != address(0), "Staking rewards wallet cannot be zero"); liquidityWallet = liquidityWallet_; stakingRewardsWallet = stakingRewardsWallet_; _mint(owner_, INITIAL_SUPPLY); } function decimals() public pure override returns (uint8) { return 18; } function recordNFTSales(uint256 amount) external override onlyOwner { require(amount > 0, "No NFT sales recorded"); nftSalesCount += amount; emit NFTSalesRecorded(amount, nftSalesCount); uint256 iterations; uint256 MAX_ITERATIONS = 50; while (nftSalesCount >= nextMilestone && totalSupply() < MAX_SUPPLY && iterations < MAX_ITERATIONS) { uint256 mintAmount = 25 * 10**18; uint256 newSupply = totalSupply() + mintAmount; if (newSupply > MAX_SUPPLY) { mintAmount = MAX_SUPPLY - totalSupply(); } _mint(address(this), mintAmount); uint256 burnAmount = (mintAmount * 10) / 100; _burn(address(this), burnAmount); incrementsMinted++; emit MintFromMilestone(address(this), mintAmount, burnAmount); nextMilestone += 50; iterations++; } if (iterations == MAX_ITERATIONS) { emit ExcessiveIterations(nftSalesCount, nextMilestone); } } function setVestingContract(address vestingContract_) external override onlyOwner { require(vestingContract_ != address(0), "Invalid vesting contract"); vestingContract = vestingContract_; } function ownerMint(address to, uint256 amount) external override onlyOwner { require(to != address(0), "Invalid address"); require(totalSupply() + amount <= MAX_SUPPLY, "Exceeds max supply"); _mint(to, amount); } function setTransactionFee(uint256 newFee) external override onlyOwner { require(newFee <= 5, "Fee too high"); uint256 oldFee = transactionFee; transactionFee = newFee; emit TransactionFeeUpdated(oldFee, newFee); } function burn(uint256 amount) public override { require(balanceOf(msg.sender) >= amount, "Burn exceeds balance"); _burn(msg.sender, amount); emit TokensBurned(msg.sender, amount); } function _applyFeeAndTransfer(address sender, address recipient, uint256 amount) internal { bool skipFee = sender == vestingContract; if (transactionFee > 0 && !skipFee) { uint256 fee = (amount * transactionFee) / 100; uint256 liquidityAmount = fee / 2; uint256 stakingAmount = (fee * 3) / 10; uint256 burnAmount = fee - liquidityAmount - stakingAmount; if (liquidityAmount > 0) super._transfer(sender, liquidityWallet, liquidityAmount); if (stakingAmount > 0) super._transfer(sender, stakingRewardsWallet, stakingAmount); if (burnAmount > 0) _burn(sender, burnAmount); emit FeesDistributed(sender, liquidityAmount, stakingAmount, burnAmount); super._transfer(sender, recipient, amount - fee); } else { super._transfer(sender, recipient, amount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.21; 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.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.21; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.21; 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.21; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.21; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.21; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; /** * @title ibuttcoin * @dev Interface for Buttcoin's custom functionality beyond a basic ERC20. * * NOTE: * 1) We do NOT redeclare standard ERC20 methods or events here. * 2) We only keep the custom functions that your contract adds, * like recordNFTSales, setVestingContract, etc. * 3) If you prefer to have custom events in the contract only, * comment them out here to avoid "Event with same name" errors. */ interface ibuttcoin { /** * @notice Record an NFT sale, possibly triggering milestone-based minting logic. */ function recordNFTSales(uint256 amount) external; /** * @notice Allows the owner to set a vesting contract that is fee-exempt. */ function setVestingContract(address vestingContract_) external; /** * @notice Owner can mint new tokens up to MAX_SUPPLY. */ function ownerMint(address to, uint256 amount) external; /** * @notice Updates the transaction fee (0–5%). */ function setTransactionFee(uint256 newTransactionFee) external; /** * @notice Burns tokens from the caller’s balance. */ function burn(uint256 amount) external; // ---------------------------------------------------------------------- // If you REALLY want these custom events in the interface, comment them // out in the contract to avoid duplication. Typically, we keep them only // in the contract for clarity and no duplication errors. // ---------------------------------------------------------------------- // event NFTSalesRecorded(uint256 amount, uint256 totalSales); // event MintFromMilestone(address indexed to, uint256 amountMinted, uint256 amountBurned); // event TransactionFeeUpdated(uint256 oldFee, uint256 newFee); // event TokensBurned(address indexed burner, uint256 amount); }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract ABI
API[{"inputs":[{"internalType":"address","name":"liquidityWallet_","type":"address"},{"internalType":"address","name":"stakingRewardsWallet_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"nftSalesCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nextMilestone","type":"uint256"}],"name":"ExcessiveIterations","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"staking","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burned","type":"uint256"}],"name":"FeesDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"minted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burned","type":"uint256"}],"name":"MintFromMilestone","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSales","type":"uint256"}],"name":"NFTSalesRecorded","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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"TransactionFeeUpdated","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":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"incrementsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextMilestone","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftSalesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recordNFTSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setTransactionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vestingContract_","type":"address"}],"name":"setVestingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingRewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"transactionFee","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":[],"name":"vestingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0604052600160075560326009553480156200001b57600080fd5b5060405162002af438038062002af48339818101604052810190620000419190620006b8565b806040518060400160405280601381526020017f42757474636f696e54657374546573746e6574000000000000000000000000008152506040518060400160405280600a81526020017f54555244535f54455354000000000000000000000000000000000000000000008152508160039081620000bf91906200098e565b508060049081620000d191906200098e565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001495760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000140919062000a86565b60405180910390fd5b6200015a81620002cb60201b60201c565b50600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c49062000b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200023f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002369062000b9c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620002c28168878678326eac9000006200039160201b60201c565b50505062000c93565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004065760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003fd919062000a86565b60405180910390fd5b6200041a600083836200041e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200047457806002600082825462000467919062000bed565b925050819055506200054a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000503578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004fa9392919062000c39565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005955780600260008282540392505081905550620005e2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000641919062000c76565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006808262000653565b9050919050565b620006928162000673565b81146200069e57600080fd5b50565b600081519050620006b28162000687565b92915050565b600080600060608486031215620006d457620006d36200064e565b5b6000620006e486828701620006a1565b9350506020620006f786828701620006a1565b92505060406200070a86828701620006a1565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079657607f821691505b602082108103620007ac57620007ab6200074e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007d7565b620008228683620007d7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200086f6200086962000863846200083a565b62000844565b6200083a565b9050919050565b6000819050919050565b6200088b836200084e565b620008a36200089a8262000876565b848454620007e4565b825550505050565b600090565b620008ba620008ab565b620008c781848462000880565b505050565b5b81811015620008ef57620008e3600082620008b0565b600181019050620008cd565b5050565b601f8211156200093e576200090881620007b2565b6200091384620007c7565b8101602085101562000923578190505b6200093b6200093285620007c7565b830182620008cc565b50505b505050565b600082821c905092915050565b6000620009636000198460080262000943565b1980831691505092915050565b60006200097e838362000950565b9150826002028217905092915050565b620009998262000714565b67ffffffffffffffff811115620009b557620009b46200071f565b5b620009c182546200077d565b620009ce828285620008f3565b600060209050601f83116001811462000a065760008415620009f1578287015190505b620009fd858262000970565b86555062000a6d565b601f19841662000a1686620007b2565b60005b8281101562000a405784890151825560018201915060208501945060208101905062000a19565b8683101562000a60578489015162000a5c601f89168262000950565b8355505b6001600288020188555050505b505050505050565b62000a808162000673565b82525050565b600060208201905062000a9d600083018462000a75565b92915050565b600082825260208201905092915050565b7f4c69717569646974792077616c6c65742063616e6e6f74206265207a65726f00600082015250565b600062000aec601f8362000aa3565b915062000af98262000ab4565b602082019050919050565b6000602082019050818103600083015262000b1f8162000add565b9050919050565b7f5374616b696e6720726577617264732077616c6c65742063616e6e6f7420626560008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062000b8460258362000aa3565b915062000b918262000b26565b604082019050919050565b6000602082019050818103600083015262000bb78162000b75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bfa826200083a565b915062000c07836200083a565b925082820190508082111562000c225762000c2162000bbe565b5b92915050565b62000c33816200083a565b82525050565b600060608201905062000c50600083018662000a75565b62000c5f602083018562000c28565b62000c6e604083018462000c28565b949350505050565b600060208201905062000c8d600083018462000c28565b92915050565b60805160a051611e3b62000cb9600039600061099401526000610cdf0152611e3b6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639ed3edf011610097578063d469801611610071578063d46980161461048a578063dd62ed3e146104a8578063f2fde38b146104d8578063fa2f9628146104f4576101a9565b80639ed3edf014610420578063a9059cbb1461043e578063b566c09c1461046e576101a9565b806374991569116100d357806374991569146103aa57806383a30da4146103c65780638da5cb5b146103e457806395d89b4114610402576101a9565b806370a082311461035257806370d5ae0514610382578063715018a6146103a0576101a9565b8063313ce56711610166578063484b973c11610140578063484b973c146102dc57806355b01e79146102f85780635e6f60451461031657806365f9775f14610334576101a9565b8063313ce5671461028457806332cb6b0c146102a257806342966c68146102c0576101a9565b806306fdde03146101ae578063095ea7b3146101cc578063096a8ab7146101fc57806318160ddd1461021857806323b872dd146102365780632ff2e9dc14610266575b600080fd5b6101b6610512565b6040516101c39190611693565b60405180910390f35b6101e660048036038101906101e1919061174e565b6105a4565b6040516101f391906117a9565b60405180910390f35b610216600480360381019061021191906117c4565b6105c7565b005b61022061065e565b60405161022d9190611800565b60405180910390f35b610250600480360381019061024b919061181b565b610668565b60405161025d91906117a9565b60405180910390f35b61026e610697565b60405161027b9190611800565b60405180910390f35b61028c6106a4565b604051610299919061188a565b60405180910390f35b6102aa6106ad565b6040516102b79190611800565b60405180910390f35b6102da60048036038101906102d591906117c4565b6106ba565b005b6102f660048036038101906102f1919061174e565b610760565b005b610300610843565b60405161030d9190611800565b60405180910390f35b61031e610849565b60405161032b91906118b4565b60405180910390f35b61033c61086f565b6040516103499190611800565b60405180910390f35b61036c600480360381019061036791906118cf565b610875565b6040516103799190611800565b60405180910390f35b61038a6108bd565b60405161039791906118b4565b60405180910390f35b6103a86108c3565b005b6103c460048036038101906103bf91906118cf565b6108d7565b005b6103ce610992565b6040516103db91906118b4565b60405180910390f35b6103ec6109b6565b6040516103f991906118b4565b60405180910390f35b61040a6109e0565b6040516104179190611693565b60405180910390f35b610428610a72565b6040516104359190611800565b60405180910390f35b6104586004803603810190610453919061174e565b610a78565b60405161046591906117a9565b60405180910390f35b610488600480360381019061048391906117c4565b610a9b565b005b610492610cdd565b60405161049f91906118b4565b60405180910390f35b6104c260048036038101906104bd91906118fc565b610d01565b6040516104cf9190611800565b60405180910390f35b6104f260048036038101906104ed91906118cf565b610d88565b005b6104fc610e0e565b6040516105099190611800565b60405180910390f35b6060600380546105219061196b565b80601f016020809104026020016040519081016040528092919081815260200182805461054d9061196b565b801561059a5780601f1061056f5761010080835404028352916020019161059a565b820191906000526020600020905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b6000806105af610e14565b90506105bc818585610e1c565b600191505092915050565b6105cf610e2e565b6005811115610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906119e8565b60405180910390fd5b60006007549050816007819055507f8ca7933ce2ff57fba5ae3725215b1ddd4c4992592aa12800ac9bf8cae75f423b8183604051610652929190611a08565b60405180910390a15050565b6000600254905090565b600080610673610e14565b9050610680858285610eb5565b61068b858585610f49565b60019150509392505050565b68878678326eac90000081565b60006012905090565b68cb49b44ba602d8000081565b806106c433610875565b1015610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90611a7d565b60405180910390fd5b61070f338261103d565b3373ffffffffffffffffffffffffffffffffffffffff167ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb6826040516107559190611800565b60405180910390a250565b610768610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611ae9565b60405180910390fd5b68cb49b44ba602d80000816107ea61065e565b6107f49190611b38565b1115610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611bb8565b60405180910390fd5b61083f82826110bf565b5050565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61dead81565b6108cb610e2e565b6108d56000611141565b565b6108df610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611c24565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ef9061196b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061196b565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b60075481565b600080610a83610e14565b9050610a90818585610f49565b600191505092915050565b610aa3610e2e565b60008111610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90611c90565b60405180910390fd5b8060086000828254610af89190611b38565b925050819055507fd9e0707ccc4aa6d74ac98eeb4ae5e0804ab77e2f9d14197f35d916865b809d3881600854604051610b32929190611a08565b60405180910390a1600080603290505b60095460085410158015610b65575068cb49b44ba602d80000610b6361065e565b105b8015610b7057508082105b15610c9357600068015af1d78b58c400009050600081610b8e61065e565b610b989190611b38565b905068cb49b44ba602d80000811115610bca57610bb361065e565b68cb49b44ba602d80000610bc79190611cb0565b91505b610bd430836110bf565b60006064600a84610be59190611ce4565b610bef9190611d55565b9050610bfb308261103d565b600a6000815480929190610c0e90611d86565b91905055503073ffffffffffffffffffffffffffffffffffffffff167f597137b7f3ead8920f8d5d02aec5e29111245466f51410b402f7e6dc0695b4228483604051610c5b929190611a08565b60405180910390a2603260096000828254610c769190611b38565b925050819055508480610c8890611d86565b955050505050610b42565b808203610cd8577fb2a3b15dcc2d3e40bc8d0ec57c14ed9dc5b9a7b3cd96e7bc16f7c7c30606f7e9600854600954604051610ccf929190611a08565b60405180910390a15b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d90610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e025760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610df991906118b4565b60405180910390fd5b610e0b81611141565b50565b60085481565b600033905090565b610e298383836001611207565b505050565b610e36610e14565b73ffffffffffffffffffffffffffffffffffffffff16610e546109b6565b73ffffffffffffffffffffffffffffffffffffffff1614610eb357610e77610e14565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eaa91906118b4565b60405180910390fd5b565b6000610ec18484610d01565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f33578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f2a93929190611dce565b60405180910390fd5b610f4284848484036000611207565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbb5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fb291906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102d5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161102491906118b4565b60405180910390fd5b6110388383836113de565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110af5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110a691906118b4565b60405180910390fd5b6110bb826000836113de565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111315760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161112891906118b4565b60405180910390fd5b61113d600083836113de565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112795760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161127091906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112eb5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112e291906118b4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113d8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113cf9190611800565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114305780600260008282546114249190611b38565b92505081905550611503565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114bc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114b393929190611dce565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154c5780600260008282540392505081905550611599565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f69190611800565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561163d578082015181840152602081019050611622565b60008484015250505050565b6000601f19601f8301169050919050565b600061166582611603565b61166f818561160e565b935061167f81856020860161161f565b61168881611649565b840191505092915050565b600060208201905081810360008301526116ad818461165a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e5826116ba565b9050919050565b6116f5816116da565b811461170057600080fd5b50565b600081359050611712816116ec565b92915050565b6000819050919050565b61172b81611718565b811461173657600080fd5b50565b60008135905061174881611722565b92915050565b60008060408385031215611765576117646116b5565b5b600061177385828601611703565b925050602061178485828601611739565b9150509250929050565b60008115159050919050565b6117a38161178e565b82525050565b60006020820190506117be600083018461179a565b92915050565b6000602082840312156117da576117d96116b5565b5b60006117e884828501611739565b91505092915050565b6117fa81611718565b82525050565b600060208201905061181560008301846117f1565b92915050565b600080600060608486031215611834576118336116b5565b5b600061184286828701611703565b935050602061185386828701611703565b925050604061186486828701611739565b9150509250925092565b600060ff82169050919050565b6118848161186e565b82525050565b600060208201905061189f600083018461187b565b92915050565b6118ae816116da565b82525050565b60006020820190506118c960008301846118a5565b92915050565b6000602082840312156118e5576118e46116b5565b5b60006118f384828501611703565b91505092915050565b60008060408385031215611913576119126116b5565b5b600061192185828601611703565b925050602061193285828601611703565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061198357607f821691505b6020821081036119965761199561193c565b5b50919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006119d2600c8361160e565b91506119dd8261199c565b602082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b6000604082019050611a1d60008301856117f1565b611a2a60208301846117f1565b9392505050565b7f4275726e20657863656564732062616c616e6365000000000000000000000000600082015250565b6000611a6760148361160e565b9150611a7282611a31565b602082019050919050565b60006020820190508181036000830152611a9681611a5a565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611ad3600f8361160e565b9150611ade82611a9d565b602082019050919050565b60006020820190508181036000830152611b0281611ac6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b4382611718565b9150611b4e83611718565b9250828201905080821115611b6657611b65611b09565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000611ba260128361160e565b9150611bad82611b6c565b602082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f496e76616c69642076657374696e6720636f6e74726163740000000000000000600082015250565b6000611c0e60188361160e565b9150611c1982611bd8565b602082019050919050565b60006020820190508181036000830152611c3d81611c01565b9050919050565b7f4e6f204e46542073616c6573207265636f726465640000000000000000000000600082015250565b6000611c7a60158361160e565b9150611c8582611c44565b602082019050919050565b60006020820190508181036000830152611ca981611c6d565b9050919050565b6000611cbb82611718565b9150611cc683611718565b9250828203905081811115611cde57611cdd611b09565b5b92915050565b6000611cef82611718565b9150611cfa83611718565b9250828202611d0881611718565b91508282048414831517611d1f57611d1e611b09565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d6082611718565b9150611d6b83611718565b925082611d7b57611d7a611d26565b5b828204905092915050565b6000611d9182611718565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611dc357611dc2611b09565b5b600182019050919050565b6000606082019050611de360008301866118a5565b611df060208301856117f1565b611dfd60408301846117f1565b94935050505056fea26469706673582212203f9c6f4025751757e84af23b40c2144e6a0a0d4522831eff50914ba3f52f5c5064736f6c634300081500330000000000000000000000008e394d8f858f88f3f1df149dd17bb879ab472870000000000000000000000000dc99828c91afdbe5dc1b00e0b6305c14df6cbfd40000000000000000000000004a93891eea617e2ea3fd2e3ee13b9d0048e388d9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639ed3edf011610097578063d469801611610071578063d46980161461048a578063dd62ed3e146104a8578063f2fde38b146104d8578063fa2f9628146104f4576101a9565b80639ed3edf014610420578063a9059cbb1461043e578063b566c09c1461046e576101a9565b806374991569116100d357806374991569146103aa57806383a30da4146103c65780638da5cb5b146103e457806395d89b4114610402576101a9565b806370a082311461035257806370d5ae0514610382578063715018a6146103a0576101a9565b8063313ce56711610166578063484b973c11610140578063484b973c146102dc57806355b01e79146102f85780635e6f60451461031657806365f9775f14610334576101a9565b8063313ce5671461028457806332cb6b0c146102a257806342966c68146102c0576101a9565b806306fdde03146101ae578063095ea7b3146101cc578063096a8ab7146101fc57806318160ddd1461021857806323b872dd146102365780632ff2e9dc14610266575b600080fd5b6101b6610512565b6040516101c39190611693565b60405180910390f35b6101e660048036038101906101e1919061174e565b6105a4565b6040516101f391906117a9565b60405180910390f35b610216600480360381019061021191906117c4565b6105c7565b005b61022061065e565b60405161022d9190611800565b60405180910390f35b610250600480360381019061024b919061181b565b610668565b60405161025d91906117a9565b60405180910390f35b61026e610697565b60405161027b9190611800565b60405180910390f35b61028c6106a4565b604051610299919061188a565b60405180910390f35b6102aa6106ad565b6040516102b79190611800565b60405180910390f35b6102da60048036038101906102d591906117c4565b6106ba565b005b6102f660048036038101906102f1919061174e565b610760565b005b610300610843565b60405161030d9190611800565b60405180910390f35b61031e610849565b60405161032b91906118b4565b60405180910390f35b61033c61086f565b6040516103499190611800565b60405180910390f35b61036c600480360381019061036791906118cf565b610875565b6040516103799190611800565b60405180910390f35b61038a6108bd565b60405161039791906118b4565b60405180910390f35b6103a86108c3565b005b6103c460048036038101906103bf91906118cf565b6108d7565b005b6103ce610992565b6040516103db91906118b4565b60405180910390f35b6103ec6109b6565b6040516103f991906118b4565b60405180910390f35b61040a6109e0565b6040516104179190611693565b60405180910390f35b610428610a72565b6040516104359190611800565b60405180910390f35b6104586004803603810190610453919061174e565b610a78565b60405161046591906117a9565b60405180910390f35b610488600480360381019061048391906117c4565b610a9b565b005b610492610cdd565b60405161049f91906118b4565b60405180910390f35b6104c260048036038101906104bd91906118fc565b610d01565b6040516104cf9190611800565b60405180910390f35b6104f260048036038101906104ed91906118cf565b610d88565b005b6104fc610e0e565b6040516105099190611800565b60405180910390f35b6060600380546105219061196b565b80601f016020809104026020016040519081016040528092919081815260200182805461054d9061196b565b801561059a5780601f1061056f5761010080835404028352916020019161059a565b820191906000526020600020905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b6000806105af610e14565b90506105bc818585610e1c565b600191505092915050565b6105cf610e2e565b6005811115610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906119e8565b60405180910390fd5b60006007549050816007819055507f8ca7933ce2ff57fba5ae3725215b1ddd4c4992592aa12800ac9bf8cae75f423b8183604051610652929190611a08565b60405180910390a15050565b6000600254905090565b600080610673610e14565b9050610680858285610eb5565b61068b858585610f49565b60019150509392505050565b68878678326eac90000081565b60006012905090565b68cb49b44ba602d8000081565b806106c433610875565b1015610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90611a7d565b60405180910390fd5b61070f338261103d565b3373ffffffffffffffffffffffffffffffffffffffff167ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb6826040516107559190611800565b60405180910390a250565b610768610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611ae9565b60405180910390fd5b68cb49b44ba602d80000816107ea61065e565b6107f49190611b38565b1115610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611bb8565b60405180910390fd5b61083f82826110bf565b5050565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61dead81565b6108cb610e2e565b6108d56000611141565b565b6108df610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611c24565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000dc99828c91afdbe5dc1b00e0b6305c14df6cbfd481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ef9061196b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061196b565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b60075481565b600080610a83610e14565b9050610a90818585610f49565b600191505092915050565b610aa3610e2e565b60008111610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90611c90565b60405180910390fd5b8060086000828254610af89190611b38565b925050819055507fd9e0707ccc4aa6d74ac98eeb4ae5e0804ab77e2f9d14197f35d916865b809d3881600854604051610b32929190611a08565b60405180910390a1600080603290505b60095460085410158015610b65575068cb49b44ba602d80000610b6361065e565b105b8015610b7057508082105b15610c9357600068015af1d78b58c400009050600081610b8e61065e565b610b989190611b38565b905068cb49b44ba602d80000811115610bca57610bb361065e565b68cb49b44ba602d80000610bc79190611cb0565b91505b610bd430836110bf565b60006064600a84610be59190611ce4565b610bef9190611d55565b9050610bfb308261103d565b600a6000815480929190610c0e90611d86565b91905055503073ffffffffffffffffffffffffffffffffffffffff167f597137b7f3ead8920f8d5d02aec5e29111245466f51410b402f7e6dc0695b4228483604051610c5b929190611a08565b60405180910390a2603260096000828254610c769190611b38565b925050819055508480610c8890611d86565b955050505050610b42565b808203610cd8577fb2a3b15dcc2d3e40bc8d0ec57c14ed9dc5b9a7b3cd96e7bc16f7c7c30606f7e9600854600954604051610ccf929190611a08565b60405180910390a15b505050565b7f0000000000000000000000008e394d8f858f88f3f1df149dd17bb879ab47287081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d90610e2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e025760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610df991906118b4565b60405180910390fd5b610e0b81611141565b50565b60085481565b600033905090565b610e298383836001611207565b505050565b610e36610e14565b73ffffffffffffffffffffffffffffffffffffffff16610e546109b6565b73ffffffffffffffffffffffffffffffffffffffff1614610eb357610e77610e14565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eaa91906118b4565b60405180910390fd5b565b6000610ec18484610d01565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f33578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f2a93929190611dce565b60405180910390fd5b610f4284848484036000611207565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbb5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fb291906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102d5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161102491906118b4565b60405180910390fd5b6110388383836113de565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110af5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110a691906118b4565b60405180910390fd5b6110bb826000836113de565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111315760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161112891906118b4565b60405180910390fd5b61113d600083836113de565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112795760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161127091906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112eb5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112e291906118b4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113d8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113cf9190611800565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114305780600260008282546114249190611b38565b92505081905550611503565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114bc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114b393929190611dce565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154c5780600260008282540392505081905550611599565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f69190611800565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561163d578082015181840152602081019050611622565b60008484015250505050565b6000601f19601f8301169050919050565b600061166582611603565b61166f818561160e565b935061167f81856020860161161f565b61168881611649565b840191505092915050565b600060208201905081810360008301526116ad818461165a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e5826116ba565b9050919050565b6116f5816116da565b811461170057600080fd5b50565b600081359050611712816116ec565b92915050565b6000819050919050565b61172b81611718565b811461173657600080fd5b50565b60008135905061174881611722565b92915050565b60008060408385031215611765576117646116b5565b5b600061177385828601611703565b925050602061178485828601611739565b9150509250929050565b60008115159050919050565b6117a38161178e565b82525050565b60006020820190506117be600083018461179a565b92915050565b6000602082840312156117da576117d96116b5565b5b60006117e884828501611739565b91505092915050565b6117fa81611718565b82525050565b600060208201905061181560008301846117f1565b92915050565b600080600060608486031215611834576118336116b5565b5b600061184286828701611703565b935050602061185386828701611703565b925050604061186486828701611739565b9150509250925092565b600060ff82169050919050565b6118848161186e565b82525050565b600060208201905061189f600083018461187b565b92915050565b6118ae816116da565b82525050565b60006020820190506118c960008301846118a5565b92915050565b6000602082840312156118e5576118e46116b5565b5b60006118f384828501611703565b91505092915050565b60008060408385031215611913576119126116b5565b5b600061192185828601611703565b925050602061193285828601611703565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061198357607f821691505b6020821081036119965761199561193c565b5b50919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006119d2600c8361160e565b91506119dd8261199c565b602082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b6000604082019050611a1d60008301856117f1565b611a2a60208301846117f1565b9392505050565b7f4275726e20657863656564732062616c616e6365000000000000000000000000600082015250565b6000611a6760148361160e565b9150611a7282611a31565b602082019050919050565b60006020820190508181036000830152611a9681611a5a565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611ad3600f8361160e565b9150611ade82611a9d565b602082019050919050565b60006020820190508181036000830152611b0281611ac6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b4382611718565b9150611b4e83611718565b9250828201905080821115611b6657611b65611b09565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000611ba260128361160e565b9150611bad82611b6c565b602082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f496e76616c69642076657374696e6720636f6e74726163740000000000000000600082015250565b6000611c0e60188361160e565b9150611c1982611bd8565b602082019050919050565b60006020820190508181036000830152611c3d81611c01565b9050919050565b7f4e6f204e46542073616c6573207265636f726465640000000000000000000000600082015250565b6000611c7a60158361160e565b9150611c8582611c44565b602082019050919050565b60006020820190508181036000830152611ca981611c6d565b9050919050565b6000611cbb82611718565b9150611cc683611718565b9250828203905081811115611cde57611cdd611b09565b5b92915050565b6000611cef82611718565b9150611cfa83611718565b9250828202611d0881611718565b91508282048414831517611d1f57611d1e611b09565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d6082611718565b9150611d6b83611718565b925082611d7b57611d7a611d26565b5b828204905092915050565b6000611d9182611718565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611dc357611dc2611b09565b5b600182019050919050565b6000606082019050611de360008301866118a5565b611df060208301856117f1565b611dfd60408301846117f1565b94935050505056fea26469706673582212203f9c6f4025751757e84af23b40c2144e6a0a0d4522831eff50914ba3f52f5c5064736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008e394d8f858f88f3f1df149dd17bb879ab472870000000000000000000000000dc99828c91afdbe5dc1b00e0b6305c14df6cbfd40000000000000000000000004a93891eea617e2ea3fd2e3ee13b9d0048e388d9
-----Decoded View---------------
Arg [0] : liquidityWallet_ (address): 0x8E394d8f858F88F3f1Df149DD17BB879ab472870
Arg [1] : stakingRewardsWallet_ (address): 0xDC99828c91AFDbe5DC1B00e0b6305C14Df6cBfd4
Arg [2] : owner_ (address): 0x4A93891eea617e2eA3FD2e3Ee13B9D0048E388D9
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000008e394d8f858f88f3f1df149dd17bb879ab472870
Arg [1] : 000000000000000000000000dc99828c91afdbe5dc1b00e0b6305c14df6cbfd4
Arg [2] : 0000000000000000000000004a93891eea617e2ea3fd2e3ee13b9d0048e388d9
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.