ETH Price: $2,465.77 (-2.20%)

Token

DWF Coin (DWF)
 

Overview

Max Total Supply

74,000,000,000,000 DWF

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 DWF

Value
$0.00
0x7cafffaf5006b9586e0404ecee710b285e211d60
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DWF

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : dwf.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract DWF is ERC20, ERC20Burnable, Ownable {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapPair;
    address public liquidityProvider;
    bool public limited2;
    uint256 public maxPossessionAmount;
    mapping(address => bool) public blacklists;

    constructor(address initialOwner)
        ERC20("DWF Coin", "DWF")
        Ownable(initialOwner)
    {
        _mint(msg.sender, 100000000000000 * 10 ** decimals());
    }

    function setRule(bool _limited, address _uniswapPair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount, address _liquidityProvider, bool _limited2, uint256 _maxPossessionAmount) external onlyOwner {
        limited = _limited;
        uniswapPair = _uniswapPair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
        liquidityProvider = _liquidityProvider;
        limited2 = _limited2;
        maxPossessionAmount = _maxPossessionAmount;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {

        if (uniswapPair == address(0)) {
            require(from == owner() || to == owner(), "Trading has not started");
        }

        if (limited && from == uniswapPair && to != liquidityProvider) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid 1");
        }

        if (limited2 && block.timestamp < 1722466800) {
            
            if (from != liquidityProvider && from != uniswapPair){
                require(super.balanceOf(from) < maxPossessionAmount, "Forbid 2");
            }

            if (to != liquidityProvider && from != liquidityProvider && to != uniswapPair){
                require(super.balanceOf(to) + amount < maxPossessionAmount, "Forbid 3");
            }

        }

        super._update(from, to, amount);
    }

}

File 2 of 8 : Ownable.sol
// 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);
    }
}

File 3 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 4 of 8 : ERC20.sol
// 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);
            }
        }
    }
}

File 5 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 6 of 8 : draft-IERC6093.sol
// 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);
}

File 7 of 8 : IERC20Metadata.sol
// 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);
}

File 8 of 8 : IERC20.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPossessionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"bool","name":"_limited2","type":"bool"},{"internalType":"uint256","name":"_maxPossessionAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b5060405162002f3d38038062002f3d833981810160405281019062000036919062000b11565b806040518060400160405280600881526020017f44574620436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44574600000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000da5565b508060049081620000c6919062000da5565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000133919062000e9a565b60405180910390fd5b6200014d816200019760201b60201c565b506200019033620001636200025a60201b60201c565b600a6200017191906200103e565b655af3107a40006200018491906200108e565b6200026260201b60201c565b5062001341565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d5575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002cc919062000e9a565b60405180910390fd5b620002e85f8383620002ec60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200040857620003516200081b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003c55750620003966200081b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000407576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fe9062001136565b60405180910390fd5b5b600560149054906101000a900460ff16801562000471575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015620004cb575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15620005635760065481620004e6846200084360201b60201c565b620004f2919062001156565b111580156200052057506007548162000511846200084360201b60201c565b6200051d919062001156565b10155b62000562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055990620011de565b60405180910390fd5b5b600960149054906101000a900460ff1680156200058357506366aac1f042105b15620008035760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000634575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156200069257600a546200064e846200084360201b60201c565b1062000691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000688906200124c565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200073d575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000797575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200080257600a5481620007b2846200084360201b60201c565b620007be919062001156565b1062000801576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f890620012ba565b60405180910390fd5b5b5b620008168383836200088860201b60201c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008dc578060025f828254620008cf919062001156565b92505081905550620009ad565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000968578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200095f93929190620012eb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f6578060025f828254039250508190555062000a40565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a9f919062001326565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000adb8262000ab0565b9050919050565b62000aed8162000acf565b811462000af8575f80fd5b50565b5f8151905062000b0b8162000ae2565b92915050565b5f6020828403121562000b295762000b2862000aac565b5b5f62000b388482850162000afb565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bbd57607f821691505b60208210810362000bd35762000bd262000b78565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bfa565b62000c43868362000bfa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c8d62000c8762000c818462000c5b565b62000c64565b62000c5b565b9050919050565b5f819050919050565b62000ca88362000c6d565b62000cc062000cb78262000c94565b84845462000c06565b825550505050565b5f90565b62000cd662000cc8565b62000ce381848462000c9d565b505050565b5b8181101562000d0a5762000cfe5f8262000ccc565b60018101905062000ce9565b5050565b601f82111562000d595762000d238162000bd9565b62000d2e8462000beb565b8101602085101562000d3e578190505b62000d5662000d4d8562000beb565b83018262000ce8565b50505b505050565b5f82821c905092915050565b5f62000d7b5f198460080262000d5e565b1980831691505092915050565b5f62000d95838362000d6a565b9150826002028217905092915050565b62000db08262000b41565b67ffffffffffffffff81111562000dcc5762000dcb62000b4b565b5b62000dd8825462000ba5565b62000de582828562000d0e565b5f60209050601f83116001811462000e1b575f841562000e06578287015190505b62000e12858262000d88565b86555062000e81565b601f19841662000e2b8662000bd9565b5f5b8281101562000e545784890151825560018201915060208501945060208101905062000e2d565b8683101562000e74578489015162000e70601f89168262000d6a565b8355505b6001600288020188555050505b505050505050565b62000e948162000acf565b82525050565b5f60208201905062000eaf5f83018462000e89565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000f3f5780860481111562000f175762000f1662000eb5565b5b600185161562000f275780820291505b808102905062000f378562000ee2565b945062000ef7565b94509492505050565b5f8262000f5957600190506200102b565b8162000f68575f90506200102b565b816001811462000f81576002811462000f8c5762000fc2565b60019150506200102b565b60ff84111562000fa15762000fa062000eb5565b5b8360020a91508482111562000fbb5762000fba62000eb5565b5b506200102b565b5060208310610133831016604e8410600b841016171562000ffc5782820a90508381111562000ff65762000ff562000eb5565b5b6200102b565b6200100b848484600162000eee565b9250905081840481111562001025576200102462000eb5565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200104a8262000c5b565b9150620010578362001032565b9250620010867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f48565b905092915050565b5f6200109a8262000c5b565b9150620010a78362000c5b565b9250828202620010b78162000c5b565b91508282048414831517620010d157620010d062000eb5565b5b5092915050565b5f82825260208201905092915050565b7f54726164696e6720686173206e6f7420737461727465640000000000000000005f82015250565b5f6200111e601783620010d8565b91506200112b82620010e8565b602082019050919050565b5f6020820190508181035f8301526200114f8162001110565b9050919050565b5f620011628262000c5b565b91506200116f8362000c5b565b92508282019050808211156200118a576200118962000eb5565b5b92915050565b7f466f7262696420310000000000000000000000000000000000000000000000005f82015250565b5f620011c6600883620010d8565b9150620011d38262001190565b602082019050919050565b5f6020820190508181035f830152620011f781620011b8565b9050919050565b7f466f7262696420320000000000000000000000000000000000000000000000005f82015250565b5f62001234600883620010d8565b91506200124182620011fe565b602082019050919050565b5f6020820190508181035f830152620012658162001226565b9050919050565b7f466f7262696420330000000000000000000000000000000000000000000000005f82015250565b5f620012a2600883620010d8565b9150620012af826200126c565b602082019050919050565b5f6020820190508181035f830152620012d38162001294565b9050919050565b620012e58162000c5b565b82525050565b5f606082019050620013005f83018662000e89565b6200130f6020830185620012da565b6200131e6040830184620012da565b949350505050565b5f6020820190506200133b5f830184620012da565b92915050565b611bee806200134f5f395ff3fe608060405234801561000f575f80fd5b506004361061014b575f3560e01c806370a08231116100c157806395d89b411161007a57806395d89b411461037d578063a9059cbb1461039b578063b8698ce4146103cb578063c816841b146103e7578063dd62ed3e14610405578063f2fde38b146104355761014b565b806370a08231146102cd578063715018a6146102fd57806379cc679014610307578063860a32ec1461032357806389f9a1d3146103415780638da5cb5b1461035f5761014b565b80631ab99e12116101135780631ab99e121461020957806323b872dd14610227578063313ce5671461025757806342966c68146102755780635728b353146102915780635b8bec55146102af5761014b565b806306fdde031461014f578063095ea7b31461016d57806316c021291461019d57806318160ddd146101cd578063199c9529146101eb575b5f80fd5b610157610451565b60405161016491906115d5565b60405180910390f35b61018760048036038101906101829190611686565b6104e1565b60405161019491906116de565b60405180910390f35b6101b760048036038101906101b291906116f7565b610503565b6040516101c491906116de565b60405180910390f35b6101d5610520565b6040516101e29190611731565b60405180910390f35b6101f3610529565b60405161020091906116de565b60405180910390f35b61021161053c565b60405161021e9190611731565b60405180910390f35b610241600480360381019061023c919061174a565b610542565b60405161024e91906116de565b60405180910390f35b61025f610570565b60405161026c91906117b5565b60405180910390f35b61028f600480360381019061028a91906117ce565b610578565b005b61029961058c565b6040516102a69190611731565b60405180910390f35b6102b7610592565b6040516102c49190611808565b60405180910390f35b6102e760048036038101906102e291906116f7565b6105b7565b6040516102f49190611731565b60405180910390f35b6103056105fc565b005b610321600480360381019061031c9190611686565b61060f565b005b61032b61062f565b60405161033891906116de565b60405180910390f35b610349610642565b6040516103569190611731565b60405180910390f35b610367610648565b6040516103749190611808565b60405180910390f35b610385610670565b60405161039291906115d5565b60405180910390f35b6103b560048036038101906103b09190611686565b610700565b6040516103c291906116de565b60405180910390f35b6103e560048036038101906103e0919061184b565b610722565b005b6103ef6107fc565b6040516103fc9190611808565b60405180910390f35b61041f600480360381019061041a91906118e8565b610821565b60405161042c9190611731565b60405180910390f35b61044f600480360381019061044a91906116f7565b6108a3565b005b60606003805461046090611953565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611953565b80156104d75780601f106104ae576101008083540402835291602001916104d7565b820191905f5260205f20905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b5f806104eb610927565b90506104f881858561092e565b600191505092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600960149054906101000a900460ff1681565b60075481565b5f8061054c610927565b9050610559858285610940565b6105648585856109d2565b60019150509392505050565b5f6012905090565b610589610583610927565b82610ac2565b50565b600a5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610604610b41565b61060d5f610bc8565b565b6106218261061b610927565b83610940565b61062b8282610ac2565b5050565b600560149054906101000a900460ff1681565b60065481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461067f90611953565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611953565b80156106f65780601f106106cd576101008083540402835291602001916106f6565b820191905f5260205f20905b8154815290600101906020018083116106d957829003601f168201915b5050505050905090565b5f8061070a610927565b90506107178185856109d2565b600191505092915050565b61072a610b41565b86600560146101000a81548160ff0219169083151502179055508560085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600681905550836007819055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960146101000a81548160ff02191690831515021790555080600a8190555050505050505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108ab610b41565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109129190611808565b60405180910390fd5b61092481610bc8565b50565b5f33905090565b61093b8383836001610c8b565b505050565b5f61094b8484610821565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cc57818110156109bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109b493929190611983565b60405180910390fd5b6109cb84848484035f610c8b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a42575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a399190611808565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610aa99190611808565b60405180910390fd5b610abd838383610e5a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b32575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b299190611808565b60405180910390fd5b610b3d825f83610e5a565b5050565b610b49610927565b73ffffffffffffffffffffffffffffffffffffffff16610b67610648565b73ffffffffffffffffffffffffffffffffffffffff1614610bc657610b8a610927565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bbd9190611808565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cfb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cf29190611808565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d6b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d629190611808565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e54578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e4b9190611731565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f6157610eb6610648565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f215750610ef2610648565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790611a02565b60405180910390fd5b5b600560149054906101000a900460ff168015610fc9575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015611022575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110a15760065481611034846105b7565b61103e9190611a4d565b11158015611061575060075481611054846105b7565b61105e9190611a4d565b10155b6110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611aca565b60405180910390fd5b5b600960149054906101000a900460ff1680156110c057506366aac1f042105b156113225760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561116f575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156111c157600a54611180846105b7565b106111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790611b32565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561126b575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112c4575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561132157600a54816112d6846105b7565b6112e09190611a4d565b10611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790611b9a565b60405180910390fd5b5b5b61132d838383611332565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611382578060025f8282546113769190611a4d565b92505081905550611450565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561140b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161140293929190611983565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611497578060025f82825403925050819055506114e1565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161153e9190611731565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611582578082015181840152602081019050611567565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115a78261154b565b6115b18185611555565b93506115c1818560208601611565565b6115ca8161158d565b840191505092915050565b5f6020820190508181035f8301526115ed818461159d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611622826115f9565b9050919050565b61163281611618565b811461163c575f80fd5b50565b5f8135905061164d81611629565b92915050565b5f819050919050565b61166581611653565b811461166f575f80fd5b50565b5f813590506116808161165c565b92915050565b5f806040838503121561169c5761169b6115f5565b5b5f6116a98582860161163f565b92505060206116ba85828601611672565b9150509250929050565b5f8115159050919050565b6116d8816116c4565b82525050565b5f6020820190506116f15f8301846116cf565b92915050565b5f6020828403121561170c5761170b6115f5565b5b5f6117198482850161163f565b91505092915050565b61172b81611653565b82525050565b5f6020820190506117445f830184611722565b92915050565b5f805f60608486031215611761576117606115f5565b5b5f61176e8682870161163f565b935050602061177f8682870161163f565b925050604061179086828701611672565b9150509250925092565b5f60ff82169050919050565b6117af8161179a565b82525050565b5f6020820190506117c85f8301846117a6565b92915050565b5f602082840312156117e3576117e26115f5565b5b5f6117f084828501611672565b91505092915050565b61180281611618565b82525050565b5f60208201905061181b5f8301846117f9565b92915050565b61182a816116c4565b8114611834575f80fd5b50565b5f8135905061184581611821565b92915050565b5f805f805f805f60e0888a031215611866576118656115f5565b5b5f6118738a828b01611837565b97505060206118848a828b0161163f565b96505060406118958a828b01611672565b95505060606118a68a828b01611672565b94505060806118b78a828b0161163f565b93505060a06118c88a828b01611837565b92505060c06118d98a828b01611672565b91505092959891949750929550565b5f80604083850312156118fe576118fd6115f5565b5b5f61190b8582860161163f565b925050602061191c8582860161163f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061196a57607f821691505b60208210810361197d5761197c611926565b5b50919050565b5f6060820190506119965f8301866117f9565b6119a36020830185611722565b6119b06040830184611722565b949350505050565b7f54726164696e6720686173206e6f7420737461727465640000000000000000005f82015250565b5f6119ec601783611555565b91506119f7826119b8565b602082019050919050565b5f6020820190508181035f830152611a19816119e0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a5782611653565b9150611a6283611653565b9250828201905080821115611a7a57611a79611a20565b5b92915050565b7f466f7262696420310000000000000000000000000000000000000000000000005f82015250565b5f611ab4600883611555565b9150611abf82611a80565b602082019050919050565b5f6020820190508181035f830152611ae181611aa8565b9050919050565b7f466f7262696420320000000000000000000000000000000000000000000000005f82015250565b5f611b1c600883611555565b9150611b2782611ae8565b602082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b7f466f7262696420330000000000000000000000000000000000000000000000005f82015250565b5f611b84600883611555565b9150611b8f82611b50565b602082019050919050565b5f6020820190508181035f830152611bb181611b78565b905091905056fea264697066735822122019feda20f39a420c57d20ba21c638485646842caf14f8f979dc1eaf6529c1a9264736f6c634300081400330000000000000000000000008a2950936019bfe30a6389255a515080efcac360

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061014b575f3560e01c806370a08231116100c157806395d89b411161007a57806395d89b411461037d578063a9059cbb1461039b578063b8698ce4146103cb578063c816841b146103e7578063dd62ed3e14610405578063f2fde38b146104355761014b565b806370a08231146102cd578063715018a6146102fd57806379cc679014610307578063860a32ec1461032357806389f9a1d3146103415780638da5cb5b1461035f5761014b565b80631ab99e12116101135780631ab99e121461020957806323b872dd14610227578063313ce5671461025757806342966c68146102755780635728b353146102915780635b8bec55146102af5761014b565b806306fdde031461014f578063095ea7b31461016d57806316c021291461019d57806318160ddd146101cd578063199c9529146101eb575b5f80fd5b610157610451565b60405161016491906115d5565b60405180910390f35b61018760048036038101906101829190611686565b6104e1565b60405161019491906116de565b60405180910390f35b6101b760048036038101906101b291906116f7565b610503565b6040516101c491906116de565b60405180910390f35b6101d5610520565b6040516101e29190611731565b60405180910390f35b6101f3610529565b60405161020091906116de565b60405180910390f35b61021161053c565b60405161021e9190611731565b60405180910390f35b610241600480360381019061023c919061174a565b610542565b60405161024e91906116de565b60405180910390f35b61025f610570565b60405161026c91906117b5565b60405180910390f35b61028f600480360381019061028a91906117ce565b610578565b005b61029961058c565b6040516102a69190611731565b60405180910390f35b6102b7610592565b6040516102c49190611808565b60405180910390f35b6102e760048036038101906102e291906116f7565b6105b7565b6040516102f49190611731565b60405180910390f35b6103056105fc565b005b610321600480360381019061031c9190611686565b61060f565b005b61032b61062f565b60405161033891906116de565b60405180910390f35b610349610642565b6040516103569190611731565b60405180910390f35b610367610648565b6040516103749190611808565b60405180910390f35b610385610670565b60405161039291906115d5565b60405180910390f35b6103b560048036038101906103b09190611686565b610700565b6040516103c291906116de565b60405180910390f35b6103e560048036038101906103e0919061184b565b610722565b005b6103ef6107fc565b6040516103fc9190611808565b60405180910390f35b61041f600480360381019061041a91906118e8565b610821565b60405161042c9190611731565b60405180910390f35b61044f600480360381019061044a91906116f7565b6108a3565b005b60606003805461046090611953565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611953565b80156104d75780601f106104ae576101008083540402835291602001916104d7565b820191905f5260205f20905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b5f806104eb610927565b90506104f881858561092e565b600191505092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600960149054906101000a900460ff1681565b60075481565b5f8061054c610927565b9050610559858285610940565b6105648585856109d2565b60019150509392505050565b5f6012905090565b610589610583610927565b82610ac2565b50565b600a5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610604610b41565b61060d5f610bc8565b565b6106218261061b610927565b83610940565b61062b8282610ac2565b5050565b600560149054906101000a900460ff1681565b60065481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461067f90611953565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611953565b80156106f65780601f106106cd576101008083540402835291602001916106f6565b820191905f5260205f20905b8154815290600101906020018083116106d957829003601f168201915b5050505050905090565b5f8061070a610927565b90506107178185856109d2565b600191505092915050565b61072a610b41565b86600560146101000a81548160ff0219169083151502179055508560085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600681905550836007819055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960146101000a81548160ff02191690831515021790555080600a8190555050505050505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108ab610b41565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109129190611808565b60405180910390fd5b61092481610bc8565b50565b5f33905090565b61093b8383836001610c8b565b505050565b5f61094b8484610821565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cc57818110156109bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109b493929190611983565b60405180910390fd5b6109cb84848484035f610c8b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a42575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a399190611808565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610aa99190611808565b60405180910390fd5b610abd838383610e5a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b32575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b299190611808565b60405180910390fd5b610b3d825f83610e5a565b5050565b610b49610927565b73ffffffffffffffffffffffffffffffffffffffff16610b67610648565b73ffffffffffffffffffffffffffffffffffffffff1614610bc657610b8a610927565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bbd9190611808565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cfb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cf29190611808565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d6b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d629190611808565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e54578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e4b9190611731565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f6157610eb6610648565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f215750610ef2610648565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790611a02565b60405180910390fd5b5b600560149054906101000a900460ff168015610fc9575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015611022575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110a15760065481611034846105b7565b61103e9190611a4d565b11158015611061575060075481611054846105b7565b61105e9190611a4d565b10155b6110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611aca565b60405180910390fd5b5b600960149054906101000a900460ff1680156110c057506366aac1f042105b156113225760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561116f575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156111c157600a54611180846105b7565b106111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790611b32565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561126b575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112c4575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561132157600a54816112d6846105b7565b6112e09190611a4d565b10611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790611b9a565b60405180910390fd5b5b5b61132d838383611332565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611382578060025f8282546113769190611a4d565b92505081905550611450565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561140b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161140293929190611983565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611497578060025f82825403925050819055506114e1565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161153e9190611731565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611582578082015181840152602081019050611567565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115a78261154b565b6115b18185611555565b93506115c1818560208601611565565b6115ca8161158d565b840191505092915050565b5f6020820190508181035f8301526115ed818461159d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611622826115f9565b9050919050565b61163281611618565b811461163c575f80fd5b50565b5f8135905061164d81611629565b92915050565b5f819050919050565b61166581611653565b811461166f575f80fd5b50565b5f813590506116808161165c565b92915050565b5f806040838503121561169c5761169b6115f5565b5b5f6116a98582860161163f565b92505060206116ba85828601611672565b9150509250929050565b5f8115159050919050565b6116d8816116c4565b82525050565b5f6020820190506116f15f8301846116cf565b92915050565b5f6020828403121561170c5761170b6115f5565b5b5f6117198482850161163f565b91505092915050565b61172b81611653565b82525050565b5f6020820190506117445f830184611722565b92915050565b5f805f60608486031215611761576117606115f5565b5b5f61176e8682870161163f565b935050602061177f8682870161163f565b925050604061179086828701611672565b9150509250925092565b5f60ff82169050919050565b6117af8161179a565b82525050565b5f6020820190506117c85f8301846117a6565b92915050565b5f602082840312156117e3576117e26115f5565b5b5f6117f084828501611672565b91505092915050565b61180281611618565b82525050565b5f60208201905061181b5f8301846117f9565b92915050565b61182a816116c4565b8114611834575f80fd5b50565b5f8135905061184581611821565b92915050565b5f805f805f805f60e0888a031215611866576118656115f5565b5b5f6118738a828b01611837565b97505060206118848a828b0161163f565b96505060406118958a828b01611672565b95505060606118a68a828b01611672565b94505060806118b78a828b0161163f565b93505060a06118c88a828b01611837565b92505060c06118d98a828b01611672565b91505092959891949750929550565b5f80604083850312156118fe576118fd6115f5565b5b5f61190b8582860161163f565b925050602061191c8582860161163f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061196a57607f821691505b60208210810361197d5761197c611926565b5b50919050565b5f6060820190506119965f8301866117f9565b6119a36020830185611722565b6119b06040830184611722565b949350505050565b7f54726164696e6720686173206e6f7420737461727465640000000000000000005f82015250565b5f6119ec601783611555565b91506119f7826119b8565b602082019050919050565b5f6020820190508181035f830152611a19816119e0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a5782611653565b9150611a6283611653565b9250828201905080821115611a7a57611a79611a20565b5b92915050565b7f466f7262696420310000000000000000000000000000000000000000000000005f82015250565b5f611ab4600883611555565b9150611abf82611a80565b602082019050919050565b5f6020820190508181035f830152611ae181611aa8565b9050919050565b7f466f7262696420320000000000000000000000000000000000000000000000005f82015250565b5f611b1c600883611555565b9150611b2782611ae8565b602082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b7f466f7262696420330000000000000000000000000000000000000000000000005f82015250565b5f611b84600883611555565b9150611b8f82611b50565b602082019050919050565b5f6020820190508181035f830152611bb181611b78565b905091905056fea264697066735822122019feda20f39a420c57d20ba21c638485646842caf14f8f979dc1eaf6529c1a9264736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000008a2950936019bfe30a6389255a515080efcac360

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x8A2950936019BfE30A6389255a515080efcAc360

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a2950936019bfe30a6389255a515080efcac360


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.