ETH Price: $3,244.72 (-2.53%)
 

Overview

Max Total Supply

1,000,000,000 FAI

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,539,025.527126266036204047 FAI

Value
$0.00
0x876f906ed516a69ba3904a09473429c34d332caf
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:
FortifyAI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Contract.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;
pragma experimental ABIEncoderV2;

import {Context} from "./Context.sol";
import {Ownable} from "./Ownable.sol";
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {ERC20} from "./ERC20.sol";
import {SafeMath} from "./SafeMath.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";

contract FortifyAI is ERC20, Ownable {
    using SafeMath for uint256;

    uint256 buyTax = 0;
    uint256 sellTax = 0;
    uint256 _totalSupply = 1_000_000_000 * (10**18);
    uint256 _maxTxAmount = (_totalSupply * 2) / 100; 

    IUniswapV2Router02 public immutable uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair;

    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled = false;
    bool public swapEnabled = false;
    bool private _swapping = false;
    bool public enableAMV = true;

    mapping(address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    mapping(address => uint256) private _latestBuyBlock;


    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("Fortify AI", "FAI") {
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _isExcludedFromEnableTrad[owner()] = true;
        _mint(owner(), _totalSupply);
    }

    function ActiveTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            tradingEnabled ||
                _isExcludedFromEnableTrad[from] ||
                _isExcludedFromEnableTrad[to],
            "Trading not yet enabled!"
        );
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        bool take = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            take = false;
        }
        uint256 Amounttx = 0;
        if (take) {
            if (_automatedMarketMakerPairs[from]) {
                _latestBuyBlock[to] = block.number;
                Amounttx = amount.mul(buyTax).div(100);
            } else if (_automatedMarketMakerPairs[to]) {
                if (enableAMV && !_isExcludedFromEnableTrad[from]) {
                    require(_latestBuyBlock[from] != block.number);
                    require(amount <= _maxTxAmount);
                }
                Amounttx = amount.mul(sellTax).div(100);
            }

            if (Amounttx > 0) {
                super._transfer(from, address(this), Amounttx);
            }
            amount -= Amounttx;
        }
        super._transfer(from, to, amount);
    }

    function excludeFromEnobleTrading(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function reduceFee(uint256 _buyTax, uint256 _sellTax) external onlyOwner {
        require(_buyTax <= 49, "fee percent can't be more than 49%");
        require(_sellTax <= 49, "fee percent can't be more than 49%");
        buyTax = _buyTax;
        sellTax = _sellTax;
    }

    function setIsLimit(uint256 _amount) external onlyOwner{
        _maxTxAmount = _amount;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function tokenReleasedForAirdrop(
        address[] memory list,
        uint256[] memory amount
    ) external onlyOwner {
        for (uint256 i = 0; i < list.length; i++) {
            emit Transfer(msg.sender, list[i], amount[i]);
        }
    }
}

File 2 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token, uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,  uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,  bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,  address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 3 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 4 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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, ELONDOGEreverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.

     * - 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.
     *

     *
     * - 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 customELONDOGE 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
 
     * 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.
     *

     *
     * 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 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Context.sol";
import "./IERC20Metadata.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
lly, 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 ELONDOGE 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;

    uint256 public _maxlSupply;

    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

     * 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:
 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];
    }

    function approve(address spender,
     uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    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;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    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;
    }

    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 ELONDOGE 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);
    }

    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);
    }

    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 ELONDOGE 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);
    }

    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);
    }

    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);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 6 of 10 : 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 7 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 ELONDOGE 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.
    
     *
     * 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);
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting  the deployer ELONDOGE 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 ELONDOGE 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 ELONDOGE account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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 10 of 10 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,  address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,  uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA, uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,  uint256 amountTokenDesired,
        uint256 amountTokenMin,  uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,  uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,  uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,  uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin, address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,  uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,   uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut, address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,  uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

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

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ActiveTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAMV","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","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":"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":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"reduceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setIsLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"tokenReleasedForAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a06040525f6007555f6008556b033b2e3c9fd0803ce8000000600955606460026009546200002f91906200057d565b6200003b9190620005f4565b600a55737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152505f600b60146101000a81548160ff0219169083151502179055505f600b60156101000a81548160ff0219169083151502179055505f600b60166101000a81548160ff0219169083151502179055506001600b60176101000a81548160ff021916908315150217905550348015620000fa575f80fd5b506040518060400160405280600a81526020017f466f7274696679204149000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4641490000000000000000000000000000000000000000000000000000000000815250816004908162000178919062000886565b5080600590816200018a919062000886565b505050620001ad620001a1620002e660201b60201c565b620002ed60201b60201c565b6001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f6200026e620003b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620002e0620002d1620003b060201b60201c565b600954620003d860201b60201c565b62000a4e565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044090620009c8565b60405180910390fd5b6200045c5f83836200053d60201b60201c565b8060025f8282546200046f9190620009e8565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200051e919062000a33565b60405180910390a3620005395f83836200054260201b60201c565b5050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620005898262000547565b9150620005968362000547565b9250828202620005a68162000547565b91508282048414831517620005c057620005bf62000550565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620006008262000547565b91506200060d8362000547565b92508262000620576200061f620005c7565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006a757607f821691505b602082108103620006bd57620006bc62000662565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006e4565b6200072d8683620006e4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200076e62000768620007628462000547565b62000745565b62000547565b9050919050565b5f819050919050565b62000789836200074e565b620007a1620007988262000775565b848454620006f0565b825550505050565b5f90565b620007b7620007a9565b620007c48184846200077e565b505050565b5b81811015620007eb57620007df5f82620007ad565b600181019050620007ca565b5050565b601f8211156200083a576200080481620006c3565b6200080f84620006d5565b810160208510156200081f578190505b620008376200082e85620006d5565b830182620007c9565b50505b505050565b5f82821c905092915050565b5f6200085c5f19846008026200083f565b1980831691505092915050565b5f6200087683836200084b565b9150826002028217905092915050565b62000891826200062b565b67ffffffffffffffff811115620008ad57620008ac62000635565b5b620008b982546200068f565b620008c6828285620007ef565b5f60209050601f831160018114620008fc575f8415620008e7578287015190505b620008f3858262000869565b86555062000962565b601f1984166200090c86620006c3565b5f5b8281101562000935578489015182556001820191506020850194506020810190506200090e565b8683101562000955578489015162000951601f8916826200084b565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009b0601f836200096a565b9150620009bd826200097a565b602082019050919050565b5f6020820190508181035f830152620009e181620009a2565b9050919050565b5f620009f48262000547565b915062000a018362000547565b925082820190508082111562000a1c5762000a1b62000550565b5b92915050565b62000a2d8162000547565b82525050565b5f60208201905062000a485f83018462000a22565b92915050565b60805161280762000a675f395f6105d301526128075ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c80636ddd1713116100f757806395d89b4111610095578063a9059cbb1161006f578063a9059cbb14610485578063dc0d4537146104b5578063dd62ed3e146104d3578063f2fde38b14610503576101a7565b806395d89b411461041b5780639a7a23d614610439578063a457c2d714610455576101a7565b806372333356116100d157806372333356146103a757806380262ed5146103c35780638da5cb5b146103df57806393ec52de146103fd576101a7565b80636ddd17131461034f57806370a082311461036d578063715018a61461039d576101a7565b8063232d4e7711610164578063313ce5671161013e578063313ce567146102c557806339509351146102e357806349bd5a5e146103135780634ada218b14610331576101a7565b8063232d4e771461025b57806323b872dd1461027757806327c8f835146102a7576101a7565b806306fdde03146101ab578063095ea7b3146101c95780631694505e146101f957806318160ddd14610217578063182073a4146102355780631a032b0414610251575b5f80fd5b6101b361051f565b6040516101c09190611905565b60405180910390f35b6101e360048036038101906101de91906119c3565b6105af565b6040516101f09190611a1b565b60405180910390f35b6102016105d1565b60405161020e9190611a8f565b60405180910390f35b61021f6105f5565b60405161022c9190611ab7565b60405180910390f35b61024f600480360381019061024a9190611afa565b6105fe565b005b6102596106ac565b005b61027560048036038101906102709190611d38565b61073c565b005b610291600480360381019061028c9190611dae565b6107fa565b60405161029e9190611a1b565b60405180910390f35b6102af610828565b6040516102bc9190611e0d565b60405180910390f35b6102cd61082e565b6040516102da9190611e41565b60405180910390f35b6102fd60048036038101906102f891906119c3565b610836565b60405161030a9190611a1b565b60405180910390f35b61031b61086c565b6040516103289190611e0d565b60405180910390f35b610339610891565b6040516103469190611a1b565b60405180910390f35b6103576108a4565b6040516103649190611a1b565b60405180910390f35b61038760048036038101906103829190611e5a565b6108b7565b6040516103949190611ab7565b60405180910390f35b6103a56108fc565b005b6103c160048036038101906103bc9190611e85565b61090f565b005b6103dd60048036038101906103d89190611ec3565b6109b1565b005b6103e76109c3565b6040516103f49190611e0d565b60405180910390f35b6104056109eb565b6040516104129190611ab7565b60405180910390f35b6104236109f1565b6040516104309190611905565b60405180910390f35b610453600480360381019061044e9190611afa565b610a81565b005b61046f600480360381019061046a91906119c3565b610b26565b60405161047c9190611a1b565b60405180910390f35b61049f600480360381019061049a91906119c3565b610b9b565b6040516104ac9190611a1b565b60405180910390f35b6104bd610bbd565b6040516104ca9190611a1b565b60405180910390f35b6104ed60048036038101906104e89190611eee565b610bd0565b6040516104fa9190611ab7565b60405180910390f35b61051d60048036038101906105189190611e5a565b610c52565b005b60606004805461052e90611f59565b80601f016020809104026020016040519081016040528092919081815260200182805461055a90611f59565b80156105a55780601f1061057c576101008083540402835291602001916105a5565b820191905f5260205f20905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b5f806105b9610cd4565b90506105c6818585610cdb565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610606610e9e565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516106a09190611a1b565b60405180910390a25050565b6106b4610e9e565b600b60149054906101000a900460ff1615610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb90611fd3565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b610744610e9e565b5f5b82518110156107f55782818151811061076257610761611ff1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8484815181106107cb576107ca611ff1565b5b60200260200101516040516107e09190611ab7565b60405180910390a38080600101915050610746565b505050565b5f80610804610cd4565b9050610811858285610f1c565b61081c858585610fa7565b60019150509392505050565b61dead81565b5f6012905090565b5f80610840610cd4565b90506108618185856108528589610bd0565b61085c919061204b565b610cdb565b600191505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b600b60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610904610e9e565b61090d5f61147a565b565b610917610e9e565b603182111561095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906120ee565b60405180910390fd5b603181111561099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906120ee565b60405180910390fd5b81600781905550806008819055505050565b6109b9610e9e565b80600a8190555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a0090611f59565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90611f59565b8015610a775780601f10610a4e57610100808354040283529160200191610a77565b820191905f5260205f20905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b610a89610e9e565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906121a2565b60405180910390fd5b610b22828261153d565b5050565b5f80610b30610cd4565b90505f610b3d8286610bd0565b905083811015610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990612230565b60405180910390fd5b610b8f8286868403610cdb565b60019250505092915050565b5f80610ba5610cd4565b9050610bb2818585610fa7565b600191505092915050565b600b60179054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c5a610e9e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906122be565b60405180910390fd5b610cd18161147a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061234c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906123da565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e919190611ab7565b60405180910390a3505050565b610ea6610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610ec46109c3565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612468565b60405180910390fd5b565b5f610f278484610bd0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fa15781811015610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906124d0565b60405180910390fd5b610fa08484848403610cdb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061255e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906125ec565b60405180910390fd5b600b60149054906101000a900460ff16806110e45750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806111355750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612654565b60405180910390fd5b5f810361118b5761118683835f6115db565b611475565b5f600b60169054906101000a900460ff16159050600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061123a5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611243575f90505b5f811561146757600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561130a5743600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061130360646112f56007548661184790919063ffffffff16565b61185c90919063ffffffff16565b9050611444565b600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561144357600b60179054906101000a900460ff1680156113bc5750600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156114185743600e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611409575f80fd5b600a54831115611417575f80fd5b5b61144060646114326008548661184790919063ffffffff16565b61185c90919063ffffffff16565b90505b5b5f811115611458576114578530836115db565b5b80836114649190612672565b92505b6114728585856115db565b50505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611649576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116409061255e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae906125ec565b60405180910390fd5b6116c2838383611871565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612715565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182e9190611ab7565b60405180910390a3611841848484611876565b50505050565b5f81836118549190612733565b905092915050565b5f818361186991906127a1565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118b2578082015181840152602081019050611897565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118d78261187b565b6118e18185611885565b93506118f1818560208601611895565b6118fa816118bd565b840191505092915050565b5f6020820190508181035f83015261191d81846118cd565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61195f82611936565b9050919050565b61196f81611955565b8114611979575f80fd5b50565b5f8135905061198a81611966565b92915050565b5f819050919050565b6119a281611990565b81146119ac575f80fd5b50565b5f813590506119bd81611999565b92915050565b5f80604083850312156119d9576119d861192e565b5b5f6119e68582860161197c565b92505060206119f7858286016119af565b9150509250929050565b5f8115159050919050565b611a1581611a01565b82525050565b5f602082019050611a2e5f830184611a0c565b92915050565b5f819050919050565b5f611a57611a52611a4d84611936565b611a34565b611936565b9050919050565b5f611a6882611a3d565b9050919050565b5f611a7982611a5e565b9050919050565b611a8981611a6f565b82525050565b5f602082019050611aa25f830184611a80565b92915050565b611ab181611990565b82525050565b5f602082019050611aca5f830184611aa8565b92915050565b611ad981611a01565b8114611ae3575f80fd5b50565b5f81359050611af481611ad0565b92915050565b5f8060408385031215611b1057611b0f61192e565b5b5f611b1d8582860161197c565b9250506020611b2e85828601611ae6565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b72826118bd565b810181811067ffffffffffffffff82111715611b9157611b90611b3c565b5b80604052505050565b5f611ba3611925565b9050611baf8282611b69565b919050565b5f67ffffffffffffffff821115611bce57611bcd611b3c565b5b602082029050602081019050919050565b5f80fd5b5f611bf5611bf084611bb4565b611b9a565b90508083825260208201905060208402830185811115611c1857611c17611bdf565b5b835b81811015611c415780611c2d888261197c565b845260208401935050602081019050611c1a565b5050509392505050565b5f82601f830112611c5f57611c5e611b38565b5b8135611c6f848260208601611be3565b91505092915050565b5f67ffffffffffffffff821115611c9257611c91611b3c565b5b602082029050602081019050919050565b5f611cb5611cb084611c78565b611b9a565b90508083825260208201905060208402830185811115611cd857611cd7611bdf565b5b835b81811015611d015780611ced88826119af565b845260208401935050602081019050611cda565b5050509392505050565b5f82601f830112611d1f57611d1e611b38565b5b8135611d2f848260208601611ca3565b91505092915050565b5f8060408385031215611d4e57611d4d61192e565b5b5f83013567ffffffffffffffff811115611d6b57611d6a611932565b5b611d7785828601611c4b565b925050602083013567ffffffffffffffff811115611d9857611d97611932565b5b611da485828601611d0b565b9150509250929050565b5f805f60608486031215611dc557611dc461192e565b5b5f611dd28682870161197c565b9350506020611de38682870161197c565b9250506040611df4868287016119af565b9150509250925092565b611e0781611955565b82525050565b5f602082019050611e205f830184611dfe565b92915050565b5f60ff82169050919050565b611e3b81611e26565b82525050565b5f602082019050611e545f830184611e32565b92915050565b5f60208284031215611e6f57611e6e61192e565b5b5f611e7c8482850161197c565b91505092915050565b5f8060408385031215611e9b57611e9a61192e565b5b5f611ea8858286016119af565b9250506020611eb9858286016119af565b9150509250929050565b5f60208284031215611ed857611ed761192e565b5b5f611ee5848285016119af565b91505092915050565b5f8060408385031215611f0457611f0361192e565b5b5f611f118582860161197c565b9250506020611f228582860161197c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f7057607f821691505b602082108103611f8357611f82611f2c565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f611fbd601783611885565b9150611fc882611f89565b602082019050919050565b5f6020820190508181035f830152611fea81611fb1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61205582611990565b915061206083611990565b92508282019050808211156120785761207761201e565b5b92915050565b7f6665652070657263656e742063616e2774206265206d6f7265207468616e20345f8201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120d8602283611885565b91506120e38261207e565b604082019050919050565b5f6020820190508181035f830152612105816120cc565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f7420626520725f8201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b5f61218c604583611885565b91506121978261210c565b606082019050919050565b5f6020820190508181035f8301526121b981612180565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61221a602583611885565b9150612225826121c0565b604082019050919050565b5f6020820190508181035f8301526122478161220e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6122a8602683611885565b91506122b38261224e565b604082019050919050565b5f6020820190508181035f8301526122d58161229c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612336602483611885565b9150612341826122dc565b604082019050919050565b5f6020820190508181035f8301526123638161232a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123c4602283611885565b91506123cf8261236a565b604082019050919050565b5f6020820190508181035f8301526123f1816123b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520454c4f4e445f8201527f4f4745206f776e65720000000000000000000000000000000000000000000000602082015250565b5f612452602983611885565b915061245d826123f8565b604082019050919050565b5f6020820190508181035f83015261247f81612446565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6124ba601d83611885565b91506124c582612486565b602082019050919050565b5f6020820190508181035f8301526124e7816124ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612548602583611885565b9150612553826124ee565b604082019050919050565b5f6020820190508181035f8301526125758161253c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6125d6602383611885565b91506125e18261257c565b604082019050919050565b5f6020820190508181035f830152612603816125ca565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f61263e601883611885565b91506126498261260a565b602082019050919050565b5f6020820190508181035f83015261266b81612632565b9050919050565b5f61267c82611990565b915061268783611990565b925082820390508181111561269f5761269e61201e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320455f8201527f4c4f4e444f47452062616c616e63650000000000000000000000000000000000602082015250565b5f6126ff602f83611885565b915061270a826126a5565b604082019050919050565b5f6020820190508181035f83015261272c816126f3565b9050919050565b5f61273d82611990565b915061274883611990565b925082820261275681611990565b9150828204841483151761276d5761276c61201e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127ab82611990565b91506127b683611990565b9250826127c6576127c5612774565b5b82820490509291505056fea264697066735822122095ffba3c09f148c032c9b4bd6599e25b4f22f96057f505f8a4525700b9b3ba0164736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c80636ddd1713116100f757806395d89b4111610095578063a9059cbb1161006f578063a9059cbb14610485578063dc0d4537146104b5578063dd62ed3e146104d3578063f2fde38b14610503576101a7565b806395d89b411461041b5780639a7a23d614610439578063a457c2d714610455576101a7565b806372333356116100d157806372333356146103a757806380262ed5146103c35780638da5cb5b146103df57806393ec52de146103fd576101a7565b80636ddd17131461034f57806370a082311461036d578063715018a61461039d576101a7565b8063232d4e7711610164578063313ce5671161013e578063313ce567146102c557806339509351146102e357806349bd5a5e146103135780634ada218b14610331576101a7565b8063232d4e771461025b57806323b872dd1461027757806327c8f835146102a7576101a7565b806306fdde03146101ab578063095ea7b3146101c95780631694505e146101f957806318160ddd14610217578063182073a4146102355780631a032b0414610251575b5f80fd5b6101b361051f565b6040516101c09190611905565b60405180910390f35b6101e360048036038101906101de91906119c3565b6105af565b6040516101f09190611a1b565b60405180910390f35b6102016105d1565b60405161020e9190611a8f565b60405180910390f35b61021f6105f5565b60405161022c9190611ab7565b60405180910390f35b61024f600480360381019061024a9190611afa565b6105fe565b005b6102596106ac565b005b61027560048036038101906102709190611d38565b61073c565b005b610291600480360381019061028c9190611dae565b6107fa565b60405161029e9190611a1b565b60405180910390f35b6102af610828565b6040516102bc9190611e0d565b60405180910390f35b6102cd61082e565b6040516102da9190611e41565b60405180910390f35b6102fd60048036038101906102f891906119c3565b610836565b60405161030a9190611a1b565b60405180910390f35b61031b61086c565b6040516103289190611e0d565b60405180910390f35b610339610891565b6040516103469190611a1b565b60405180910390f35b6103576108a4565b6040516103649190611a1b565b60405180910390f35b61038760048036038101906103829190611e5a565b6108b7565b6040516103949190611ab7565b60405180910390f35b6103a56108fc565b005b6103c160048036038101906103bc9190611e85565b61090f565b005b6103dd60048036038101906103d89190611ec3565b6109b1565b005b6103e76109c3565b6040516103f49190611e0d565b60405180910390f35b6104056109eb565b6040516104129190611ab7565b60405180910390f35b6104236109f1565b6040516104309190611905565b60405180910390f35b610453600480360381019061044e9190611afa565b610a81565b005b61046f600480360381019061046a91906119c3565b610b26565b60405161047c9190611a1b565b60405180910390f35b61049f600480360381019061049a91906119c3565b610b9b565b6040516104ac9190611a1b565b60405180910390f35b6104bd610bbd565b6040516104ca9190611a1b565b60405180910390f35b6104ed60048036038101906104e89190611eee565b610bd0565b6040516104fa9190611ab7565b60405180910390f35b61051d60048036038101906105189190611e5a565b610c52565b005b60606004805461052e90611f59565b80601f016020809104026020016040519081016040528092919081815260200182805461055a90611f59565b80156105a55780601f1061057c576101008083540402835291602001916105a5565b820191905f5260205f20905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b5f806105b9610cd4565b90506105c6818585610cdb565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610606610e9e565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516106a09190611a1b565b60405180910390a25050565b6106b4610e9e565b600b60149054906101000a900460ff1615610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb90611fd3565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b610744610e9e565b5f5b82518110156107f55782818151811061076257610761611ff1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8484815181106107cb576107ca611ff1565b5b60200260200101516040516107e09190611ab7565b60405180910390a38080600101915050610746565b505050565b5f80610804610cd4565b9050610811858285610f1c565b61081c858585610fa7565b60019150509392505050565b61dead81565b5f6012905090565b5f80610840610cd4565b90506108618185856108528589610bd0565b61085c919061204b565b610cdb565b600191505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b600b60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610904610e9e565b61090d5f61147a565b565b610917610e9e565b603182111561095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906120ee565b60405180910390fd5b603181111561099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906120ee565b60405180910390fd5b81600781905550806008819055505050565b6109b9610e9e565b80600a8190555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a0090611f59565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90611f59565b8015610a775780601f10610a4e57610100808354040283529160200191610a77565b820191905f5260205f20905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b610a89610e9e565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906121a2565b60405180910390fd5b610b22828261153d565b5050565b5f80610b30610cd4565b90505f610b3d8286610bd0565b905083811015610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990612230565b60405180910390fd5b610b8f8286868403610cdb565b60019250505092915050565b5f80610ba5610cd4565b9050610bb2818585610fa7565b600191505092915050565b600b60179054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c5a610e9e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906122be565b60405180910390fd5b610cd18161147a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061234c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906123da565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e919190611ab7565b60405180910390a3505050565b610ea6610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610ec46109c3565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612468565b60405180910390fd5b565b5f610f278484610bd0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fa15781811015610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906124d0565b60405180910390fd5b610fa08484848403610cdb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061255e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906125ec565b60405180910390fd5b600b60149054906101000a900460ff16806110e45750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806111355750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612654565b60405180910390fd5b5f810361118b5761118683835f6115db565b611475565b5f600b60169054906101000a900460ff16159050600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061123a5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611243575f90505b5f811561146757600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561130a5743600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061130360646112f56007548661184790919063ffffffff16565b61185c90919063ffffffff16565b9050611444565b600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561144357600b60179054906101000a900460ff1680156113bc5750600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156114185743600e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611409575f80fd5b600a54831115611417575f80fd5b5b61144060646114326008548661184790919063ffffffff16565b61185c90919063ffffffff16565b90505b5b5f811115611458576114578530836115db565b5b80836114649190612672565b92505b6114728585856115db565b50505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611649576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116409061255e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae906125ec565b60405180910390fd5b6116c2838383611871565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612715565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182e9190611ab7565b60405180910390a3611841848484611876565b50505050565b5f81836118549190612733565b905092915050565b5f818361186991906127a1565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118b2578082015181840152602081019050611897565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118d78261187b565b6118e18185611885565b93506118f1818560208601611895565b6118fa816118bd565b840191505092915050565b5f6020820190508181035f83015261191d81846118cd565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61195f82611936565b9050919050565b61196f81611955565b8114611979575f80fd5b50565b5f8135905061198a81611966565b92915050565b5f819050919050565b6119a281611990565b81146119ac575f80fd5b50565b5f813590506119bd81611999565b92915050565b5f80604083850312156119d9576119d861192e565b5b5f6119e68582860161197c565b92505060206119f7858286016119af565b9150509250929050565b5f8115159050919050565b611a1581611a01565b82525050565b5f602082019050611a2e5f830184611a0c565b92915050565b5f819050919050565b5f611a57611a52611a4d84611936565b611a34565b611936565b9050919050565b5f611a6882611a3d565b9050919050565b5f611a7982611a5e565b9050919050565b611a8981611a6f565b82525050565b5f602082019050611aa25f830184611a80565b92915050565b611ab181611990565b82525050565b5f602082019050611aca5f830184611aa8565b92915050565b611ad981611a01565b8114611ae3575f80fd5b50565b5f81359050611af481611ad0565b92915050565b5f8060408385031215611b1057611b0f61192e565b5b5f611b1d8582860161197c565b9250506020611b2e85828601611ae6565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b72826118bd565b810181811067ffffffffffffffff82111715611b9157611b90611b3c565b5b80604052505050565b5f611ba3611925565b9050611baf8282611b69565b919050565b5f67ffffffffffffffff821115611bce57611bcd611b3c565b5b602082029050602081019050919050565b5f80fd5b5f611bf5611bf084611bb4565b611b9a565b90508083825260208201905060208402830185811115611c1857611c17611bdf565b5b835b81811015611c415780611c2d888261197c565b845260208401935050602081019050611c1a565b5050509392505050565b5f82601f830112611c5f57611c5e611b38565b5b8135611c6f848260208601611be3565b91505092915050565b5f67ffffffffffffffff821115611c9257611c91611b3c565b5b602082029050602081019050919050565b5f611cb5611cb084611c78565b611b9a565b90508083825260208201905060208402830185811115611cd857611cd7611bdf565b5b835b81811015611d015780611ced88826119af565b845260208401935050602081019050611cda565b5050509392505050565b5f82601f830112611d1f57611d1e611b38565b5b8135611d2f848260208601611ca3565b91505092915050565b5f8060408385031215611d4e57611d4d61192e565b5b5f83013567ffffffffffffffff811115611d6b57611d6a611932565b5b611d7785828601611c4b565b925050602083013567ffffffffffffffff811115611d9857611d97611932565b5b611da485828601611d0b565b9150509250929050565b5f805f60608486031215611dc557611dc461192e565b5b5f611dd28682870161197c565b9350506020611de38682870161197c565b9250506040611df4868287016119af565b9150509250925092565b611e0781611955565b82525050565b5f602082019050611e205f830184611dfe565b92915050565b5f60ff82169050919050565b611e3b81611e26565b82525050565b5f602082019050611e545f830184611e32565b92915050565b5f60208284031215611e6f57611e6e61192e565b5b5f611e7c8482850161197c565b91505092915050565b5f8060408385031215611e9b57611e9a61192e565b5b5f611ea8858286016119af565b9250506020611eb9858286016119af565b9150509250929050565b5f60208284031215611ed857611ed761192e565b5b5f611ee5848285016119af565b91505092915050565b5f8060408385031215611f0457611f0361192e565b5b5f611f118582860161197c565b9250506020611f228582860161197c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f7057607f821691505b602082108103611f8357611f82611f2c565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f611fbd601783611885565b9150611fc882611f89565b602082019050919050565b5f6020820190508181035f830152611fea81611fb1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61205582611990565b915061206083611990565b92508282019050808211156120785761207761201e565b5b92915050565b7f6665652070657263656e742063616e2774206265206d6f7265207468616e20345f8201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120d8602283611885565b91506120e38261207e565b604082019050919050565b5f6020820190508181035f830152612105816120cc565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f7420626520725f8201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b5f61218c604583611885565b91506121978261210c565b606082019050919050565b5f6020820190508181035f8301526121b981612180565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61221a602583611885565b9150612225826121c0565b604082019050919050565b5f6020820190508181035f8301526122478161220e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6122a8602683611885565b91506122b38261224e565b604082019050919050565b5f6020820190508181035f8301526122d58161229c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612336602483611885565b9150612341826122dc565b604082019050919050565b5f6020820190508181035f8301526123638161232a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123c4602283611885565b91506123cf8261236a565b604082019050919050565b5f6020820190508181035f8301526123f1816123b8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520454c4f4e445f8201527f4f4745206f776e65720000000000000000000000000000000000000000000000602082015250565b5f612452602983611885565b915061245d826123f8565b604082019050919050565b5f6020820190508181035f83015261247f81612446565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6124ba601d83611885565b91506124c582612486565b602082019050919050565b5f6020820190508181035f8301526124e7816124ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612548602583611885565b9150612553826124ee565b604082019050919050565b5f6020820190508181035f8301526125758161253c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6125d6602383611885565b91506125e18261257c565b604082019050919050565b5f6020820190508181035f830152612603816125ca565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f61263e601883611885565b91506126498261260a565b602082019050919050565b5f6020820190508181035f83015261266b81612632565b9050919050565b5f61267c82611990565b915061268783611990565b925082820390508181111561269f5761269e61201e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320455f8201527f4c4f4e444f47452062616c616e63650000000000000000000000000000000000602082015250565b5f6126ff602f83611885565b915061270a826126a5565b604082019050919050565b5f6020820190508181035f83015261272c816126f3565b9050919050565b5f61273d82611990565b915061274883611990565b925082820261275681611990565b9150828204841483151761276d5761276c61201e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127ab82611990565b91506127b683611990565b9250826127c6576127c5612774565b5b82820490509291505056fea264697066735822122095ffba3c09f148c032c9b4bd6599e25b4f22f96057f505f8a4525700b9b3ba0164736f6c63430008180033

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.