ETH Price: $3,448.95 (-0.89%)
Gas: 4 Gwei

Token

PassiveIncomeToken (🐶P.I.T💰)
 

Overview

Max Total Supply

61,739,328,008,186.609414292743992259 🐶P.I.T💰

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,777,753,964,852.121731675953707673 🐶P.I.T💰

Value
$0.00
0xaa6e61b26d97d8a5ab1e07019fc53a5a2f7268a7
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:
PassiveIncomeToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : PassiveIncomeToken.sol
//                                            ,d""7b.
//                                           ,'    ,d^b.
//                            __,d"""""""b..d.    d'
//              ,d""""-.  ,d""'              `"b.dP
//            dP' ,___  `7b.                     `b
//          `"788P'  `".   "                       `b
//          ,d" `b      `"                          `7.
//    `P""""7.   8)                                   7.
//     `.    8  ,P               ,---.                 """"b.
//      8.  d' ,P             ,d"   ,88b.         "b       `8
//     d' `"  ,P             ""    ,P   `7b        `b     ,dP
//    d'      8                    d       `b.      d8888888888b.
//   ,'      d'                   ,8.     8   78""""""788888888' `"b.
//   8b _   8P                 ,P'   `"""oo.,d"          ""788'     `7.
// .-""""8 d8'            ,-""7P                       .    `7.      ,8.
//`b     8 88              ,d"8   d8b.                 8b    `b      d `.
// `b___8 88             '  ,8  d8888888b.           ; `b    8     ,P  8.
//   8     88                8  d8"7P""8""""b..      ,8  `b  ,8"""""8'  88
//   8     `b ,d"'           7  8  8   8   ,8. 7P--,dP   ,8"'     ,8' _,d8.
//  7.     8d"                 8 ,db.P""bd' `7P ,d""""""""""""""""""'    8
//   `b     d'                  8P'  8   88  ,P"'                         8
//    7. _,d'                   7b  ,d88888"'                            d'
//    ,P' '8                     8888888"'                               8
//   ,P   88                     `888P'                                  8
//  ,8_mGk_8                       "'                                   d'
//        "8                                                    ,'     d'
//        `b                                                  d8b..d""
//         `b                                              ,dP'
//           `7.                           ______________,d""
//             `7b.                     ,d""
//                `7b..             _,d"'
//                     """--....-"""'


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

contract PassiveIncomeToken is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;

    uint256 private constant burnPercentage = 60;
    uint256 private constant feePercentage = 40;
    address private constant feeAddress = 0xD5F346BCE4846e94C7600D54E487F810Dd53305e;
    uint256 private constant transactionCooldown = 30 days; // 30 days cooldown

    bool public feesEnabled = true;
    bool public renounceEnabled = true;

    address public liquidityPair;

    uint256 public totalTokensBurned;

    mapping(address => bool) private excludedFromFeesAndCooldown;
    mapping(address => bool) private blacklisted;
    mapping(address => uint256) private lastTransactionTime;
    mapping(address => uint256) private firstBuyTime;

    // Address of the Uniswap V2 router
    address private constant uniswapRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    constructor() ERC20("PassiveIncomeToken", unicode"🐶P.I.T💰") {
        uint256 totalSupply = 69000000000000000000000000000000;
        _mint(msg.sender, totalSupply);
    }

    function _transferWithFee(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer amount must be greater than zero");
        require(balanceOf(sender) >= amount, "ERC20: insufficient balance");

        require(!excludedFromFeesAndCooldown[sender], "Sender is excluded from fees");
        require(!blacklisted[sender], "Sender is blacklisted");

        // Exclude the Uniswap V2 router from the transaction cooldown
        if (sender != uniswapRouter) {
            require(block.timestamp - firstBuyTime[sender] >= transactionCooldown, "Transaction cooldown not reached");
        }

        uint256 burnAmount = amount.mul(burnPercentage).div(1000);
        uint256 feeAmount = amount.mul(feePercentage).div(1000);

        _burn(sender, burnAmount);
        _transfer(sender, feeAddress, feeAmount);
        _transfer(sender, recipient, amount.sub(burnAmount).sub(feeAmount));

        totalTokensBurned = totalTokensBurned.add(burnAmount);
        lastTransactionTime[sender] = block.timestamp;
    }

    function renounceOwnership() public override onlyOwner {
        require(renounceEnabled, "Ownership renouncement is disabled");
        super.renounceOwnership();
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transferWithFee(msg.sender, recipient, amount);
        return true;
    }

    function excludeFromFeesAndCooldown(address account) external onlyOwner {
        excludedFromFeesAndCooldown[account] = true;
    }

    function includeInFeesAndCooldown(address account) external onlyOwner {
        excludedFromFeesAndCooldown[account] = false;
    }

    function addToBlacklist(address account) external onlyOwner {
        blacklisted[account] = true;
    }

    function removeFromBlacklist(address account) external onlyOwner {
        blacklisted[account] = false;
    }

    function recordFirstBuyTime() external {
        require(firstBuyTime[msg.sender] == 0, "First buy time already recorded");
        firstBuyTime[msg.sender] = block.timestamp;
    }
}

File 2 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

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

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

File 5 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFeesAndCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFeesAndCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPair","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordFirstBuyTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560146101000a81548160ff0219169083151502179055506001600560156101000a81548160ff02191690831515021790555034801562000046575f80fd5b506040518060400160405280601281526020017f50617373697665496e636f6d65546f6b656e00000000000000000000000000008152506040518060400160405280600d81526020017ff09f90b6502e492e54f09f92b0000000000000000000000000000000000000008152508160039081620000c49190620005c1565b508060049081620000d69190620005c1565b505050620000f9620000ed6200012460201b60201c565b6200012b60201b60201c565b5f6d0366e7064422fd8420234000000090506200011d3382620001ee60201b60201c565b50620007b6565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200025f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002569062000703565b60405180910390fd5b620002725f83836200035360201b60201c565b8060025f82825462000285919062000750565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033491906200079b565b60405180910390a36200034f5f83836200035860201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003d957607f821691505b602082108103620003ef57620003ee62000394565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000416565b6200045f868362000416565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004a9620004a36200049d8462000477565b62000480565b62000477565b9050919050565b5f819050919050565b620004c48362000489565b620004dc620004d382620004b0565b84845462000422565b825550505050565b5f90565b620004f2620004e4565b620004ff818484620004b9565b505050565b5b8181101562000526576200051a5f82620004e8565b60018101905062000505565b5050565b601f82111562000575576200053f81620003f5565b6200054a8462000407565b810160208510156200055a578190505b62000572620005698562000407565b83018262000504565b50505b505050565b5f82821c905092915050565b5f620005975f19846008026200057a565b1980831691505092915050565b5f620005b1838362000586565b9150826002028217905092915050565b620005cc826200035d565b67ffffffffffffffff811115620005e857620005e762000367565b5b620005f48254620003c1565b620006018282856200052a565b5f60209050601f83116001811462000637575f841562000622578287015190505b6200062e8582620005a4565b8655506200069d565b601f1984166200064786620003f5565b5f5b82811015620006705784890151825560018201915060208501945060208101905062000649565b868310156200069057848901516200068c601f89168262000586565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006eb601f83620006a5565b9150620006f882620006b5565b602082019050919050565b5f6020820190508181035f8301526200071c81620006dd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200075c8262000477565b9150620007698362000477565b925082820190508082111562000784576200078362000723565b5b92915050565b620007958162000477565b82525050565b5f602082019050620007b05f8301846200078a565b92915050565b6125ea80620007c45f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c806370a08231116100dc57806395d89b4111610095578063a9059cbb1161006f578063a9059cbb14610411578063d157e30114610441578063dd62ed3e1461045f578063f2fde38b1461048f57610171565b806395d89b41146103a5578063a457c2d7146103c3578063a64e4f8a146103f357610171565b806370a08231146102f7578063715018a61461032757806378d38c751461033157806379cc67901461034d578063808a5457146103695780638da5cb5b1461038757610171565b8063395093511161012e578063395093511461023957806342966c681461026957806344337ea114610285578063537df3b6146102a15780635e8d6e49146102bd5780636feed189146102db57610171565b806306fdde0314610175578063095ea7b314610193578063145ce03e146101c357806318160ddd146101cd57806323b872dd146101eb578063313ce5671461021b575b5f80fd5b61017d6104ab565b60405161018a91906118aa565b60405180910390f35b6101ad60048036038101906101a8919061195b565b61053b565b6040516101ba91906119b3565b60405180910390f35b6101cb61055d565b005b6101d5610620565b6040516101e291906119db565b60405180910390f35b610205600480360381019061020091906119f4565b610629565b60405161021291906119b3565b60405180910390f35b610223610657565b6040516102309190611a5f565b60405180910390f35b610253600480360381019061024e919061195b565b61065f565b60405161026091906119b3565b60405180910390f35b610283600480360381019061027e9190611a78565b610695565b005b61029f600480360381019061029a9190611aa3565b6106a9565b005b6102bb60048036038101906102b69190611aa3565b610709565b005b6102c5610768565b6040516102d291906119b3565b60405180910390f35b6102f560048036038101906102f09190611aa3565b61077b565b005b610311600480360381019061030c9190611aa3565b6107da565b60405161031e91906119db565b60405180910390f35b61032f61081f565b005b61034b60048036038101906103469190611aa3565b610880565b005b6103676004803603810190610362919061195b565b6108e0565b005b610371610900565b60405161037e9190611add565b60405180910390f35b61038f610925565b60405161039c9190611add565b60405180910390f35b6103ad61094d565b6040516103ba91906118aa565b60405180910390f35b6103dd60048036038101906103d8919061195b565b6109dd565b6040516103ea91906119b3565b60405180910390f35b6103fb610a52565b60405161040891906119b3565b60405180910390f35b61042b6004803603810190610426919061195b565b610a65565b60405161043891906119b3565b60405180910390f35b610449610a7b565b60405161045691906119db565b60405180910390f35b61047960048036038101906104749190611af6565b610a81565b60405161048691906119db565b60405180910390f35b6104a960048036038101906104a49190611aa3565b610b03565b005b6060600380546104ba90611b61565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690611b61565b80156105315780601f1061050857610100808354040283529160200191610531565b820191905f5260205f20905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b5f80610545610b85565b9050610552818585610b8c565b600191505092915050565b5f600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d390611bdb565b60405180910390fd5b42600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550565b5f600254905090565b5f80610633610b85565b9050610640858285610d4f565b61064b858585610dda565b60019150509392505050565b5f6012905090565b5f80610669610b85565b905061068a81858561067b8589610a81565b6106859190611c26565b610b8c565b600191505092915050565b6106a66106a0610b85565b82611046565b50565b6106b1611209565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610711611209565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600560159054906101000a900460ff1681565b610783611209565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610827611209565b600560159054906101000a900460ff16610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d90611cc9565b60405180910390fd5b61087e611287565b565b610888611209565b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6108f2826108ec610b85565b83610d4f565b6108fc8282611046565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095c90611b61565b80601f016020809104026020016040519081016040528092919081815260200182805461098890611b61565b80156109d35780601f106109aa576101008083540402835291602001916109d3565b820191905f5260205f20905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b5f806109e7610b85565b90505f6109f48286610a81565b905083811015610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090611d57565b60405180910390fd5b610a468286868403610b8c565b60019250505092915050565b600560149054906101000a900460ff1681565b5f610a7133848461129a565b6001905092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b0b611209565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611de5565b60405180910390fd5b610b82816116ff565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611e73565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90611f01565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d4291906119db565b60405180910390a3505050565b5f610d5a8484610a81565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd45781811015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611f69565b60405180910390fd5b610dd38484848403610b8c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611ff7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90612085565b60405180910390fd5b610ec18383836117c2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90612113565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161102d91906119db565b60405180910390a36110408484846117c7565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab906121a1565b60405180910390fd5b6110bf825f836117c2565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061222f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f191906119db565b60405180910390a3611204835f846117c7565b505050565b611211610b85565b73ffffffffffffffffffffffffffffffffffffffff1661122f610925565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612297565b60405180910390fd5b565b61128f611209565b6112985f6116ff565b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90611ff7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90612085565b60405180910390fd5b5f81116113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612325565b60405180910390fd5b806113c2846107da565b1015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061238d565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906123f5565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061245d565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115ed5762278d00600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054426115ab919061247b565b10156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906124f8565b60405180910390fd5b5b5f6116166103e8611608603c856117cc90919063ffffffff16565b6117e190919063ffffffff16565b90505f6116416103e86116336028866117cc90919063ffffffff16565b6117e190919063ffffffff16565b905061164d8583611046565b61166c8573d5f346bce4846e94c7600d54e487f810dd53305e83610dda565b61169b85856116968461168887896117f690919063ffffffff16565b6117f690919063ffffffff16565b610dda565b6116b08260075461180b90919063ffffffff16565b60078190555042600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81836117d99190612516565b905092915050565b5f81836117ee9190612584565b905092915050565b5f8183611803919061247b565b905092915050565b5f81836118189190611c26565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561185757808201518184015260208101905061183c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61187c82611820565b611886818561182a565b935061189681856020860161183a565b61189f81611862565b840191505092915050565b5f6020820190508181035f8301526118c28184611872565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118f7826118ce565b9050919050565b611907816118ed565b8114611911575f80fd5b50565b5f81359050611922816118fe565b92915050565b5f819050919050565b61193a81611928565b8114611944575f80fd5b50565b5f8135905061195581611931565b92915050565b5f8060408385031215611971576119706118ca565b5b5f61197e85828601611914565b925050602061198f85828601611947565b9150509250929050565b5f8115159050919050565b6119ad81611999565b82525050565b5f6020820190506119c65f8301846119a4565b92915050565b6119d581611928565b82525050565b5f6020820190506119ee5f8301846119cc565b92915050565b5f805f60608486031215611a0b57611a0a6118ca565b5b5f611a1886828701611914565b9350506020611a2986828701611914565b9250506040611a3a86828701611947565b9150509250925092565b5f60ff82169050919050565b611a5981611a44565b82525050565b5f602082019050611a725f830184611a50565b92915050565b5f60208284031215611a8d57611a8c6118ca565b5b5f611a9a84828501611947565b91505092915050565b5f60208284031215611ab857611ab76118ca565b5b5f611ac584828501611914565b91505092915050565b611ad7816118ed565b82525050565b5f602082019050611af05f830184611ace565b92915050565b5f8060408385031215611b0c57611b0b6118ca565b5b5f611b1985828601611914565b9250506020611b2a85828601611914565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b7857607f821691505b602082108103611b8b57611b8a611b34565b5b50919050565b7f4669727374206275792074696d6520616c7265616479207265636f72646564005f82015250565b5f611bc5601f8361182a565b9150611bd082611b91565b602082019050919050565b5f6020820190508181035f830152611bf281611bb9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c3082611928565b9150611c3b83611928565b9250828201905080821115611c5357611c52611bf9565b5b92915050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cb360228361182a565b9150611cbe82611c59565b604082019050919050565b5f6020820190508181035f830152611ce081611ca7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d4160258361182a565b9150611d4c82611ce7565b604082019050919050565b5f6020820190508181035f830152611d6e81611d35565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dcf60268361182a565b9150611dda82611d75565b604082019050919050565b5f6020820190508181035f830152611dfc81611dc3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e5d60248361182a565b9150611e6882611e03565b604082019050919050565b5f6020820190508181035f830152611e8a81611e51565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eeb60228361182a565b9150611ef682611e91565b604082019050919050565b5f6020820190508181035f830152611f1881611edf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611f53601d8361182a565b9150611f5e82611f1f565b602082019050919050565b5f6020820190508181035f830152611f8081611f47565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611fe160258361182a565b9150611fec82611f87565b604082019050919050565b5f6020820190508181035f83015261200e81611fd5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61206f60238361182a565b915061207a82612015565b604082019050919050565b5f6020820190508181035f83015261209c81612063565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6120fd60268361182a565b9150612108826120a3565b604082019050919050565b5f6020820190508181035f83015261212a816120f1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61218b60218361182a565b915061219682612131565b604082019050919050565b5f6020820190508181035f8301526121b88161217f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61221960228361182a565b9150612224826121bf565b604082019050919050565b5f6020820190508181035f8301526122468161220d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61228160208361182a565b915061228c8261224d565b602082019050919050565b5f6020820190508181035f8301526122ae81612275565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f61230f60308361182a565b915061231a826122b5565b604082019050919050565b5f6020820190508181035f83015261233c81612303565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612377601b8361182a565b915061238282612343565b602082019050919050565b5f6020820190508181035f8301526123a48161236b565b9050919050565b7f53656e646572206973206578636c756465642066726f6d2066656573000000005f82015250565b5f6123df601c8361182a565b91506123ea826123ab565b602082019050919050565b5f6020820190508181035f83015261240c816123d3565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f61244760158361182a565b915061245282612413565b602082019050919050565b5f6020820190508181035f8301526124748161243b565b9050919050565b5f61248582611928565b915061249083611928565b92508282039050818111156124a8576124a7611bf9565b5b92915050565b7f5472616e73616374696f6e20636f6f6c646f776e206e6f7420726561636865645f82015250565b5f6124e260208361182a565b91506124ed826124ae565b602082019050919050565b5f6020820190508181035f83015261250f816124d6565b9050919050565b5f61252082611928565b915061252b83611928565b925082820261253981611928565b915082820484148315176125505761254f611bf9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61258e82611928565b915061259983611928565b9250826125a9576125a8612557565b5b82820490509291505056fea264697066735822122009317fa7025aa09ad571cbc0df509d8c41b00dc41d9302970a57f60c3f31ef3964736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610171575f3560e01c806370a08231116100dc57806395d89b4111610095578063a9059cbb1161006f578063a9059cbb14610411578063d157e30114610441578063dd62ed3e1461045f578063f2fde38b1461048f57610171565b806395d89b41146103a5578063a457c2d7146103c3578063a64e4f8a146103f357610171565b806370a08231146102f7578063715018a61461032757806378d38c751461033157806379cc67901461034d578063808a5457146103695780638da5cb5b1461038757610171565b8063395093511161012e578063395093511461023957806342966c681461026957806344337ea114610285578063537df3b6146102a15780635e8d6e49146102bd5780636feed189146102db57610171565b806306fdde0314610175578063095ea7b314610193578063145ce03e146101c357806318160ddd146101cd57806323b872dd146101eb578063313ce5671461021b575b5f80fd5b61017d6104ab565b60405161018a91906118aa565b60405180910390f35b6101ad60048036038101906101a8919061195b565b61053b565b6040516101ba91906119b3565b60405180910390f35b6101cb61055d565b005b6101d5610620565b6040516101e291906119db565b60405180910390f35b610205600480360381019061020091906119f4565b610629565b60405161021291906119b3565b60405180910390f35b610223610657565b6040516102309190611a5f565b60405180910390f35b610253600480360381019061024e919061195b565b61065f565b60405161026091906119b3565b60405180910390f35b610283600480360381019061027e9190611a78565b610695565b005b61029f600480360381019061029a9190611aa3565b6106a9565b005b6102bb60048036038101906102b69190611aa3565b610709565b005b6102c5610768565b6040516102d291906119b3565b60405180910390f35b6102f560048036038101906102f09190611aa3565b61077b565b005b610311600480360381019061030c9190611aa3565b6107da565b60405161031e91906119db565b60405180910390f35b61032f61081f565b005b61034b60048036038101906103469190611aa3565b610880565b005b6103676004803603810190610362919061195b565b6108e0565b005b610371610900565b60405161037e9190611add565b60405180910390f35b61038f610925565b60405161039c9190611add565b60405180910390f35b6103ad61094d565b6040516103ba91906118aa565b60405180910390f35b6103dd60048036038101906103d8919061195b565b6109dd565b6040516103ea91906119b3565b60405180910390f35b6103fb610a52565b60405161040891906119b3565b60405180910390f35b61042b6004803603810190610426919061195b565b610a65565b60405161043891906119b3565b60405180910390f35b610449610a7b565b60405161045691906119db565b60405180910390f35b61047960048036038101906104749190611af6565b610a81565b60405161048691906119db565b60405180910390f35b6104a960048036038101906104a49190611aa3565b610b03565b005b6060600380546104ba90611b61565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690611b61565b80156105315780601f1061050857610100808354040283529160200191610531565b820191905f5260205f20905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b5f80610545610b85565b9050610552818585610b8c565b600191505092915050565b5f600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d390611bdb565b60405180910390fd5b42600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550565b5f600254905090565b5f80610633610b85565b9050610640858285610d4f565b61064b858585610dda565b60019150509392505050565b5f6012905090565b5f80610669610b85565b905061068a81858561067b8589610a81565b6106859190611c26565b610b8c565b600191505092915050565b6106a66106a0610b85565b82611046565b50565b6106b1611209565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610711611209565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600560159054906101000a900460ff1681565b610783611209565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610827611209565b600560159054906101000a900460ff16610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d90611cc9565b60405180910390fd5b61087e611287565b565b610888611209565b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6108f2826108ec610b85565b83610d4f565b6108fc8282611046565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095c90611b61565b80601f016020809104026020016040519081016040528092919081815260200182805461098890611b61565b80156109d35780601f106109aa576101008083540402835291602001916109d3565b820191905f5260205f20905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b5f806109e7610b85565b90505f6109f48286610a81565b905083811015610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090611d57565b60405180910390fd5b610a468286868403610b8c565b60019250505092915050565b600560149054906101000a900460ff1681565b5f610a7133848461129a565b6001905092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b0b611209565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611de5565b60405180910390fd5b610b82816116ff565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611e73565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90611f01565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d4291906119db565b60405180910390a3505050565b5f610d5a8484610a81565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd45781811015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611f69565b60405180910390fd5b610dd38484848403610b8c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611ff7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90612085565b60405180910390fd5b610ec18383836117c2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90612113565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161102d91906119db565b60405180910390a36110408484846117c7565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab906121a1565b60405180910390fd5b6110bf825f836117c2565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061222f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f191906119db565b60405180910390a3611204835f846117c7565b505050565b611211610b85565b73ffffffffffffffffffffffffffffffffffffffff1661122f610925565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612297565b60405180910390fd5b565b61128f611209565b6112985f6116ff565b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90611ff7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90612085565b60405180910390fd5b5f81116113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612325565b60405180910390fd5b806113c2846107da565b1015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061238d565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906123f5565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061245d565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115ed5762278d00600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054426115ab919061247b565b10156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906124f8565b60405180910390fd5b5b5f6116166103e8611608603c856117cc90919063ffffffff16565b6117e190919063ffffffff16565b90505f6116416103e86116336028866117cc90919063ffffffff16565b6117e190919063ffffffff16565b905061164d8583611046565b61166c8573d5f346bce4846e94c7600d54e487f810dd53305e83610dda565b61169b85856116968461168887896117f690919063ffffffff16565b6117f690919063ffffffff16565b610dda565b6116b08260075461180b90919063ffffffff16565b60078190555042600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81836117d99190612516565b905092915050565b5f81836117ee9190612584565b905092915050565b5f8183611803919061247b565b905092915050565b5f81836118189190611c26565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561185757808201518184015260208101905061183c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61187c82611820565b611886818561182a565b935061189681856020860161183a565b61189f81611862565b840191505092915050565b5f6020820190508181035f8301526118c28184611872565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118f7826118ce565b9050919050565b611907816118ed565b8114611911575f80fd5b50565b5f81359050611922816118fe565b92915050565b5f819050919050565b61193a81611928565b8114611944575f80fd5b50565b5f8135905061195581611931565b92915050565b5f8060408385031215611971576119706118ca565b5b5f61197e85828601611914565b925050602061198f85828601611947565b9150509250929050565b5f8115159050919050565b6119ad81611999565b82525050565b5f6020820190506119c65f8301846119a4565b92915050565b6119d581611928565b82525050565b5f6020820190506119ee5f8301846119cc565b92915050565b5f805f60608486031215611a0b57611a0a6118ca565b5b5f611a1886828701611914565b9350506020611a2986828701611914565b9250506040611a3a86828701611947565b9150509250925092565b5f60ff82169050919050565b611a5981611a44565b82525050565b5f602082019050611a725f830184611a50565b92915050565b5f60208284031215611a8d57611a8c6118ca565b5b5f611a9a84828501611947565b91505092915050565b5f60208284031215611ab857611ab76118ca565b5b5f611ac584828501611914565b91505092915050565b611ad7816118ed565b82525050565b5f602082019050611af05f830184611ace565b92915050565b5f8060408385031215611b0c57611b0b6118ca565b5b5f611b1985828601611914565b9250506020611b2a85828601611914565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b7857607f821691505b602082108103611b8b57611b8a611b34565b5b50919050565b7f4669727374206275792074696d6520616c7265616479207265636f72646564005f82015250565b5f611bc5601f8361182a565b9150611bd082611b91565b602082019050919050565b5f6020820190508181035f830152611bf281611bb9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c3082611928565b9150611c3b83611928565b9250828201905080821115611c5357611c52611bf9565b5b92915050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cb360228361182a565b9150611cbe82611c59565b604082019050919050565b5f6020820190508181035f830152611ce081611ca7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d4160258361182a565b9150611d4c82611ce7565b604082019050919050565b5f6020820190508181035f830152611d6e81611d35565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dcf60268361182a565b9150611dda82611d75565b604082019050919050565b5f6020820190508181035f830152611dfc81611dc3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e5d60248361182a565b9150611e6882611e03565b604082019050919050565b5f6020820190508181035f830152611e8a81611e51565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eeb60228361182a565b9150611ef682611e91565b604082019050919050565b5f6020820190508181035f830152611f1881611edf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611f53601d8361182a565b9150611f5e82611f1f565b602082019050919050565b5f6020820190508181035f830152611f8081611f47565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611fe160258361182a565b9150611fec82611f87565b604082019050919050565b5f6020820190508181035f83015261200e81611fd5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61206f60238361182a565b915061207a82612015565b604082019050919050565b5f6020820190508181035f83015261209c81612063565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6120fd60268361182a565b9150612108826120a3565b604082019050919050565b5f6020820190508181035f83015261212a816120f1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61218b60218361182a565b915061219682612131565b604082019050919050565b5f6020820190508181035f8301526121b88161217f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61221960228361182a565b9150612224826121bf565b604082019050919050565b5f6020820190508181035f8301526122468161220d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61228160208361182a565b915061228c8261224d565b602082019050919050565b5f6020820190508181035f8301526122ae81612275565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f61230f60308361182a565b915061231a826122b5565b604082019050919050565b5f6020820190508181035f83015261233c81612303565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612377601b8361182a565b915061238282612343565b602082019050919050565b5f6020820190508181035f8301526123a48161236b565b9050919050565b7f53656e646572206973206578636c756465642066726f6d2066656573000000005f82015250565b5f6123df601c8361182a565b91506123ea826123ab565b602082019050919050565b5f6020820190508181035f83015261240c816123d3565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f61244760158361182a565b915061245282612413565b602082019050919050565b5f6020820190508181035f8301526124748161243b565b9050919050565b5f61248582611928565b915061249083611928565b92508282039050818111156124a8576124a7611bf9565b5b92915050565b7f5472616e73616374696f6e20636f6f6c646f776e206e6f7420726561636865645f82015250565b5f6124e260208361182a565b91506124ed826124ae565b602082019050919050565b5f6020820190508181035f83015261250f816124d6565b9050919050565b5f61252082611928565b915061252b83611928565b925082820261253981611928565b915082820484148315176125505761254f611bf9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61258e82611928565b915061259983611928565b9250826125a9576125a8612557565b5b82820490509291505056fea264697066735822122009317fa7025aa09ad571cbc0df509d8c41b00dc41d9302970a57f60c3f31ef3964736f6c63430008150033

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.