ETH Price: $2,868.26 (-10.44%)
Gas: 13 Gwei

Token

47 (47)
 

Overview

Max Total Supply

474,747 47

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 47

Value
$0.00
0x9d34151abe8d1594e74f463d350840119ab0689b
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:
FortySeven

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 3 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 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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);
}

File 5 of 10 : 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 6 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 7 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10 : FortySeven.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

// https://47th.fans
// https://t.me/FORTYSEVEN474
// https://x.com/47thETH

// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⡀⢠⣀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣾⢟⣤⣈⠉⠙⠺⣍⠛⠷⣯⣑⡒⠀⠢⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⠶⠋⢉⣁⡀⠀⠈⠁⠈⠉⢁⣀⠈⠓⠦⣈⠻⣿⠲⠤⣀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠟⠁⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⢀⡉⠲⣄⡈⠑⠦⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⢧⠖⠀⠀⠀⠀⠀⠀⠈⠑⠀⠀⠀⠐⡄⠀⠀⠀⠀⠀⠙⠢⡀⠈⠲⠀⠀⠉⠓⢲⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣷⣾⠰⡀⠀⠀⠀⠀⠂⠀⠀⠈⠒⠦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠄⠀⠒⠐⠒⢤⠙⠂⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡿⣶⣦⢂⠘⠘⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠲⡀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⢏⠁⢹⣯⣻⣧⠀⠙⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠆⠀⠀⠀⠀⠀⠀⠁⠒⠶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣯⣿⠂⠀⢻⣳⡝⠷⣄⡈⢱⡘⡂⢀⣀⠄⠀⠀⡀⠀⠀⠘⢂⣀⠲⠖⠀⣀⡀⠀⠀⢰⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣾⡇⠀⠀⠈⠓⠙⢲⣬⡙⠲⣝⣮⡙⠻⣷⣂⠀⣈⠂⠤⢄⡀⠈⠙⠒⢖⡒⠹⣯⡀⢬⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣷⣯⡴⠀⠀⠀⡀⠀⠛⢿⣿⡷⣽⣒⡬⠯⢝⣛⠷⠢⢴⠦⠄⡀⠨⢈⣩⣽⡟⣿⣾⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡶⢿⠟⠱⠁⠀⠀⣽⡦⠤⢤⣝⠿⣷⣦⣉⡓⣀⢍⡙⣷⣄⡴⠛⣡⡖⠋⡙⢿⣇⣿⠏⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡿⣛⣤⠀⠀⠀⠀⠈⣯⣶⣦⣌⣋⢈⣉⣩⣿⣿⣿⣿⣿⣾⣤⣴⣷⣶⣷⣿⢸⣿⣋⡔⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣷⢹⡿⠀⠀⠀⠀⠀⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⡿⣿⣿⣿⣿⣿⣿⡿⣿⠏⢸⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡾⢷⣤⠀⠀⠀⠀⠀⠀⠈⠉⠉⣹⣿⣿⣿⣯⠀⠸⣿⣿⣿⠿⢶⣞⣵⠀⡼⢹⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢳⡬⢿⡆⠀⠀⠀⠀⠀⠀⠀⠛⠋⢻⢇⣿⣯⡄⠀⣉⠻⠽⠛⠛⠉⠀⢰⡷⣾⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢋⡾⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⢹⡀⠀⣿⣦⠀⠀⠀⣀⣶⠟⣰⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣴⣾⡇⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣟⣷⠀⠁⠀⢸⣿⡆⠀⢀⡽⠋⢰⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣤⣶⣿⣿⣿⣿⡇⢹⣷⡀⠀⠀⠀⠀⠀⣀⡄⣻⠻⡿⢿⣖⣷⡟⠨⢿⣦⡬⠁⠀⢻⡧⣤⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣤⣤⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⢻⣷⡄⠀⠀⢀⣰⠏⢸⠯⠤⠾⢀⣿⠏⠀⠀⠀⠻⣄⠀⡀⣼⠇⠀⠈⠉⠙⠳⠶⢤⣄⣀⡀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⢀⣀⣤⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠻⣿⣤⠀⠈⠁⣤⡷⠶⠶⣤⣾⣷⠶⣶⣖⠿⣶⡌⡄⣸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠛⠳⠦
// ⠀⠀⣀⣤⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠈⢿⣧⠀⠘⠁⠀⠀⠀⠰⣾⣿⡿⠿⠿⠟⠻⣷⣿⡏⢙⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠀⠀⠙⠷⣶⣤⡀⠀⠀⢸⣦⡡⠠⢄⣀⣠⠶⠋⢹⡇⢸⡏⠖⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠈⢻⣝⣠⣤⣾⣿⣿⣿⠾⠝⡏⠀⠀⠈⡇⠘⢱⡆⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⢀⣰
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠉⢉⣿⣿⣭⡉⠀⠀⢰⠁⠀⠀⠀⣇⠀⢸⣷⠀⠀⠀⠘⠀⠀⠀⠀⠀⣶⣿⣿
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⡷⣄⠁⠀⠀⠀⠀⣿⠀⢸⣯⡷⣶⡀⠀⠀⠀⠀⠀⣼⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡀⠀⠀⢀⡴⠊⣇⠉⢻⣿⣿⣿⡟⠁⠈⠛⢦⡀⠀⠀⢻⠀⢸⣿⣿⣷⡏⠻⣆⠀⢠⣾⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠉⠀⠀⠿⠀⢠⣿⣿⣿⡐⠛⠉⠉⠉⠉⠃⠀⢸⡆⢸⣿⣿⣿⡷⣤⢹⣧⢀⣟⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⢀⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⠀⢸⡇⢸⣿⣿⣿⡏⣷⠞⠹⢿⣿⣿⣷⣯⣯

// ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠿⠛⠋⠉⡉⣉⡛⣛⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⣿⡿⠋⠁⠄⠄⠄⠄⠄⢀⣸⣿⣿⡿⠿⡯⢙⠿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⡿⠄⠄⠄⠄⠄⡀⡀⠄⢀⣀⣉⣉⣉⠁⠐⣶⣶⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⡇⠄⠄⠄⠄⠁⣿⣿⣀⠈⠿⢟⡛⠛⣿⠛⠛⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⡆⠄⠄⠄⠄⠄⠈⠁⠰⣄⣴⡬⢵⣴⣿⣤⣽⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣿⡇⠄⢀⢄⡀⠄⠄⠄⠄⡉⠻⣿⡿⠁⠘⠛⡿⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⡿⠃⠄⠄⠈⠻⠄⠄⠄⠄⢘⣧⣀⠾⠿⠶⠦⢳⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⣿⣶⣤⡀⢀⡀⠄⠄⠄⠄⠄⠄⠻⢣⣶⡒⠶⢤⢾⣿⣿⣿⣿⣿⣿⣿
// ⣿⣿⣿⣿⡿⠟⠋⠄⢘⣿⣦⡀⠄⠄⠄⠄⠄⠉⠛⠻⠻⠺⣼⣿⠟⠋⠛⠿⣿⣿
// ⠋⠉⠁⠄⠄⠄⠄⠄⠄⢻⣿⣿⣶⣄⡀⠄⠄⠄⠄⢀⣤⣾⣿⣿⡀⠄⠄⠄⠄⢹
// ⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢻⣿⣿⣿⣷⡤⠄⠰⡆⠄⠄⠈⠉⠛⠿⢦⣀⡀⡀⠄
// ⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠈⢿⣿⠟⡋⠄⠄⠄⢣⠄⠄⠄⠄⠄⠄⠄⠈⠹⣿⣀
// ⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠘⣷⣿⣿⣷⠄⠄⢺⣇⠄⠄⠄⠄⠄⠄⠄⠄⠸⣿
// ⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠹⣿⣿⡇⠄⠄⠸⣿⡄⠄⠈⠁⠄⠄⠄⠄⠄⣿
// ⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢻⣿⡇⠄⠄⠄⢹⣧⠄⠄⠄⠄⠄⠄⠄⠄⠘

contract FortySeven is ERC20, Ownable {
    uint256 public tax = 26;
    uint256 public donateToTrump = 5;

    address public treasury;
    address public routerPair;
    address public trump = 0x94845333028B1204Fbe14E1278Fd4Adde46B22ce;

    IUniswapV2Router02 public router;

    bool private inSwap;
    bool public isSwapBackEnabled;
    uint256 public amountToSwapBack = 9000 ether;
    mapping(address => bool) private excludedFromFees;

    event SwapedBack(address indexed receiver, uint256 indexed amount);

    modifier lock() {
        inSwap = true;
        _;
        inSwap = false;
    }

    modifier taxFree() {
        uint256 _tax = tax;
        tax = 0;
        _;
        tax = _tax;
    }

    constructor(address _router, address _treasury) ERC20("47", "47") {
        _mint(_treasury, 474747 ether);
        router = IUniswapV2Router02(_router);
        treasury = _treasury;
        routerPair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );
        isSwapBackEnabled = true;
        excludedFromFees[address(this)] = true;
        excludedFromFees[msg.sender] = true;
        excludedFromFees[_treasury] = true;
        transferOwnership(_treasury);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        address _pair = routerPair;
        bool canSwap = isSwapBackEnabled == true &&
            inSwap == false &&
            address(router) != address(0) &&
            routerPair != address(0) &&
            from != _pair &&
            from != owner();

        if (canSwap) {
            swapETH();
        }

        bool isFeeExempt = excludedFromFees[from] || excludedFromFees[to];

        if (isFeeExempt) {
            return super.transferFrom(from, to, amount);
        }
        if (to == _pair || (from == _pair && !isFeeExempt)) {
            uint256 forTrump = (amount * donateToTrump) / 100;
            uint256 fee = (amount * tax) / 100;
            uint256 newAmount = amount - (fee + forTrump);
            require(
                fee + forTrump + newAmount == amount,
                "Fee calculation error"
            );

            super.transferFrom(from, address(this), fee);
            super.transferFrom(from, trump, forTrump);
            return super.transferFrom(from, to, newAmount);
        }

        return super.transferFrom(from, to, amount);
    }

    function transfer(
        address to,
        uint256 amount
    ) public override returns (bool) {
        address _pair = routerPair;
        bool canSwap = isSwapBackEnabled &&
            !inSwap &&
            address(router) != address(0) &&
            _pair != address(0) &&
            msg.sender != _pair &&
            msg.sender != owner();

        if (canSwap) {
            swapETH();
        }

        bool isFeeExempt = excludedFromFees[msg.sender] || excludedFromFees[to];
        if (isFeeExempt) {
            return super.transfer(to, amount);
        }

        if (to == _pair || (msg.sender == _pair && !isFeeExempt)) {
            uint256 forTrump = (amount * donateToTrump) / 100;
            uint256 fee = (amount * tax) / 100;
            uint256 newAmount = amount - (fee + forTrump);
            require(
                fee + forTrump + newAmount == amount,
                "Fee calculation error"
            );

            super.transfer(address(this), fee);
            super.transfer(trump, forTrump);
            return super.transfer(to, newAmount);
        }

        return super.transfer(to, amount);
    }

    function swapETH() private lock taxFree {
        uint256 contractTokenBalance = this.balanceOf(address(this));
        uint256 swapAmount = amountToSwapBack;
        if (contractTokenBalance >= swapAmount) {
            uint256 balanceBefore = address(treasury).balance;
            swapTokensForEth(swapAmount);
            uint256 balanceAfter = address(treasury).balance;
            emit SwapedBack(treasury, balanceAfter - balanceBefore);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        this.approve(address(router), tokenAmount);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            treasury,
            block.timestamp
        );
    }

    function renewTax(uint256 newTax, uint256 newTrumpTax) public onlyOwner {
        tax = newTax;
        donateToTrump = newTrumpTax;
    }

    function setSwapBack(bool enabled) public onlyOwner {
        isSwapBackEnabled = enabled;
    }

    function setAmountToSwapBack(uint256 amount) public onlyOwner {
        amountToSwapBack = amount;
    }

    function getTokensFromContract(
        uint256 tokens
    ) public onlyOwner returns (bool success) {
        return ERC20(address(this)).transfer(msg.sender, tokens);
    }

    function withdrawEth(address addr) external onlyOwner {
        payable(addr).transfer(address(this).balance);
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"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":"receiver","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapedBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountToSwapBack","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":"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":"donateToTrump","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"getTokensFromContract","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":"isSwapBackEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"newTax","type":"uint256"},{"internalType":"uint256","name":"newTrumpTax","type":"uint256"}],"name":"renewTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setAmountToSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trump","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601a60065560056007557394845333028b1204fbe14e1278fd4adde46b22ce600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506901e7e4171bf4d3a00000600c553480156200007e57600080fd5b506040516200404f3803806200404f8339818101604052810190620000a4919062000912565b6040518060400160405280600281526020017f34370000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3437000000000000000000000000000000000000000000000000000000000000815250816003908162000121919062000bd3565b50806004908162000133919062000bd3565b505050620001566200014a6200051960201b60201c565b6200052160201b60201c565b62000172816964881620de97a50c0000620005e760201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000262573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000288919062000cba565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000337919062000cba565b306040518363ffffffff1660e01b81526004016200035792919062000cfd565b6020604051808303816000875af115801562000377573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039d919062000cba565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60156101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000511816200075f60201b60201c565b505062000f71565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006509062000d8b565b60405180910390fd5b6200066d600083836200087460201b60201c565b806002600082825462000681919062000ddc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006d8919062000ddc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200073f919062000e4a565b60405180910390a36200075b600083836200087960201b60201c565b5050565b6200076f6200051960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007956200087e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e59062000eb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008579062000f4f565b60405180910390fd5b62000871816200052160201b60201c565b50565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008da82620008ad565b9050919050565b620008ec81620008cd565b8114620008f857600080fd5b50565b6000815190506200090c81620008e1565b92915050565b600080604083850312156200092c576200092b620008a8565b5b60006200093c85828601620008fb565b92505060206200094f85828601620008fb565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009db57607f821691505b602082108103620009f157620009f062000993565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a1c565b62000a67868362000a1c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ab462000aae62000aa88462000a7f565b62000a89565b62000a7f565b9050919050565b6000819050919050565b62000ad08362000a93565b62000ae862000adf8262000abb565b84845462000a29565b825550505050565b600090565b62000aff62000af0565b62000b0c81848462000ac5565b505050565b5b8181101562000b345762000b2860008262000af5565b60018101905062000b12565b5050565b601f82111562000b835762000b4d81620009f7565b62000b588462000a0c565b8101602085101562000b68578190505b62000b8062000b778562000a0c565b83018262000b11565b50505b505050565b600082821c905092915050565b600062000ba86000198460080262000b88565b1980831691505092915050565b600062000bc3838362000b95565b9150826002028217905092915050565b62000bde8262000959565b67ffffffffffffffff81111562000bfa5762000bf962000964565b5b62000c068254620009c2565b62000c1382828562000b38565b600060209050601f83116001811462000c4b576000841562000c36578287015190505b62000c42858262000bb5565b86555062000cb2565b601f19841662000c5b86620009f7565b60005b8281101562000c855784890151825560018201915060208501945060208101905062000c5e565b8683101562000ca5578489015162000ca1601f89168262000b95565b8355505b6001600288020188555050505b505050505050565b60006020828403121562000cd35762000cd2620008a8565b5b600062000ce384828501620008fb565b91505092915050565b62000cf781620008cd565b82525050565b600060408201905062000d14600083018562000cec565b62000d23602083018462000cec565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d73601f8362000d2a565b915062000d808262000d3b565b602082019050919050565b6000602082019050818103600083015262000da68162000d64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000de98262000a7f565b915062000df68362000a7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e2e5762000e2d62000dad565b5b828201905092915050565b62000e448162000a7f565b82525050565b600060208201905062000e61600083018462000e39565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9f60208362000d2a565b915062000eac8262000e67565b602082019050919050565b6000602082019050818103600083015262000ed28162000e90565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000f3760268362000d2a565b915062000f448262000ed9565b604082019050919050565b6000602082019050818103600083015262000f6a8162000f28565b9050919050565b6130ce8062000f816000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e146105ed578063e82c3c4d1461062a578063f2fde38b14610653578063f887ea401461067c576101a7565b8063a9059cbb1461055a578063c29ec45914610597578063d9cad20f146105c2576101a7565b806393e484bb116100c657806393e484bb1461049e57806395d89b41146104c757806399c8d556146104f2578063a457c2d71461051d576101a7565b8063715018a6146104315780638b0b959d146104485780638da5cb5b14610473576101a7565b806328ac2d5311610159578063419460c311610133578063419460c31461036157806352dfc8d01461039e57806361d027b3146103c957806370a08231146103f4576101a7565b806328ac2d53146102ce578063313ce567146102f95780633950935114610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806312fcee1b1461021457806318160ddd1461023d57806323b872dd1461026857806325e16063146102a5576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106a7565b6040516101ce9190612327565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f991906123e2565b610739565b60405161020b919061243d565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190612458565b61075c565b005b34801561024957600080fd5b506102526107e2565b60405161025f9190612494565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a91906124af565b6107ec565b60405161029c919061243d565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612502565b610bd7565b005b3480156102da57600080fd5b506102e3610c9d565b6040516102f0919061253e565b60405180910390f35b34801561030557600080fd5b5061030e610cc3565b60405161031b9190612575565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906123e2565b610ccc565b604051610358919061243d565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612458565b610d76565b604051610395919061243d565b60405180910390f35b3480156103aa57600080fd5b506103b3610e79565b6040516103c0919061243d565b60405180910390f35b3480156103d557600080fd5b506103de610e8c565b6040516103eb919061253e565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612502565b610eb2565b6040516104289190612494565b60405180910390f35b34801561043d57600080fd5b50610446610efa565b005b34801561045457600080fd5b5061045d610f82565b60405161046a9190612494565b60405180910390f35b34801561047f57600080fd5b50610488610f88565b604051610495919061253e565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c091906125bc565b610fb2565b005b3480156104d357600080fd5b506104dc61104b565b6040516104e99190612327565b60405180910390f35b3480156104fe57600080fd5b506105076110dd565b6040516105149190612494565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906123e2565b6110e3565b604051610551919061243d565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906123e2565b6111cd565b60405161058e919061243d565b60405180910390f35b3480156105a357600080fd5b506105ac611583565b6040516105b9919061253e565b60405180910390f35b3480156105ce57600080fd5b506105d76115a9565b6040516105e49190612494565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906125e9565b6115af565b6040516106219190612494565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612629565b611636565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612502565b6116c4565b005b34801561068857600080fd5b506106916117bb565b60405161069e91906126c8565b60405180910390f35b6060600380546106b690612712565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290612712565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000806107446117e1565b90506107518185856117e9565b600191505092915050565b6107646117e1565b73ffffffffffffffffffffffffffffffffffffffff16610782610f88565b73ffffffffffffffffffffffffffffffffffffffff16146107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf9061278f565b60405180910390fd5b80600c8190555050565b6000600254905090565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060011515600b60159054906101000a900460ff16151514801561084c575060001515600b60149054906101000a900460ff161515145b80156108a75750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156109025750600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b801561093a57508173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156109795750610949610f88565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b9050801561098a576109896119b2565b5b6000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610a2d5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015610a4a57610a40878787611b88565b9350505050610bd0565b8273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480610ab957508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015610ab8575080155b5b15610bbf576000606460075487610ad091906127de565b610ada9190612867565b90506000606460065488610aee91906127de565b610af89190612867565b905060008282610b089190612898565b88610b1391906128ee565b905087818484610b239190612898565b610b2d9190612898565b14610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061296e565b60405180910390fd5b610b788a3084611b88565b50610ba68a600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611b88565b50610bb28a8a83611b88565b9650505050505050610bd0565b610bca878787611b88565b93505050505b9392505050565b610bdf6117e1565b73ffffffffffffffffffffffffffffffffffffffff16610bfd610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a9061278f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c99573d6000803e3d6000fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610cd76117e1565b9050610d6b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d669190612898565b6117e9565b600191505092915050565b6000610d806117e1565b73ffffffffffffffffffffffffffffffffffffffff16610d9e610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb9061278f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610e2f92919061298e565b6020604051808303816000875af1158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7291906129cc565b9050919050565b600b60159054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f026117e1565b73ffffffffffffffffffffffffffffffffffffffff16610f20610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d9061278f565b60405180910390fd5b610f806000611bb7565b565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fba6117e1565b73ffffffffffffffffffffffffffffffffffffffff16610fd8610f88565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061278f565b60405180910390fd5b80600b60156101000a81548160ff02191690831515021790555050565b60606004805461105a90612712565b80601f016020809104026020016040519081016040528092919081815260200182805461108690612712565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b60065481565b6000806110ee6117e1565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612a6b565b60405180910390fd5b6111c182868684036117e9565b60019250505092915050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600b60159054906101000a900460ff1680156112205750600b60149054906101000a900460ff16155b801561127b5750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156112b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156112ec57508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b801561132b57506112fb610f88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b9050801561133c5761133b6119b2565b5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113df5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905080156113fb576113f18686611c7d565b935050505061157d565b8273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148061146a57508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015611469575080155b5b1561156d57600060646007548761148191906127de565b61148b9190612867565b9050600060646006548861149f91906127de565b6114a99190612867565b9050600082826114b99190612898565b886114c491906128ee565b9050878184846114d49190612898565b6114de9190612898565b1461151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061296e565b60405180910390fd5b6115283083611c7d565b50611555600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c7d565b506115608982611c7d565b965050505050505061157d565b6115778686611c7d565b93505050505b92915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61163e6117e1565b73ffffffffffffffffffffffffffffffffffffffff1661165c610f88565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061278f565b60405180910390fd5b81600681905550806007819055505050565b6116cc6117e1565b73ffffffffffffffffffffffffffffffffffffffff166116ea610f88565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061278f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690612afd565b60405180910390fd5b6117b881611bb7565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90612b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612c21565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119a59190612494565b60405180910390a3505050565b6001600b60146101000a81548160ff02191690831515021790555060006006549050600060068190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a17919061253e565b602060405180830381865afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a589190612c56565b90506000600c549050808210611b61576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16319050611aaf82611ca0565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163190508181611af991906128ee565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1a592659b26492ebc7405bc47f9c772202e296f85e8d50f698e4efc5bac7595960405160405180910390a350505b505080600681905550506000600b60146101000a81548160ff021916908315150217905550565b600080611b936117e1565b9050611ba0858285611f79565b611bab858585612005565b60019150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c886117e1565b9050611c95818585612005565b600191505092915050565b6000600267ffffffffffffffff811115611cbd57611cbc612c83565b5b604051908082528060200260200182016040528015611ceb5781602001602082028036833780820191505090505b5090503081600081518110611d0357611d02612cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dce9190612cf6565b81600181518110611de257611de1612cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401611e7992919061298e565b6020604051808303816000875af1158015611e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebc91906129cc565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611f43959493929190612e1c565b600060405180830381600087803b158015611f5d57600080fd5b505af1158015611f71573d6000803e3d6000fd5b505050505050565b6000611f8584846115af565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fff5781811015611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890612ec2565b60405180910390fd5b611ffe84848484036117e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90612f54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90612fe6565b60405180910390fd5b6120ee838383612284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90613078565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122079190612898565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226b9190612494565b60405180910390a361227e848484612289565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c85780820151818401526020810190506122ad565b838111156122d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006122f98261228e565b6123038185612299565b93506123138185602086016122aa565b61231c816122dd565b840191505092915050565b6000602082019050818103600083015261234181846122ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123798261234e565b9050919050565b6123898161236e565b811461239457600080fd5b50565b6000813590506123a681612380565b92915050565b6000819050919050565b6123bf816123ac565b81146123ca57600080fd5b50565b6000813590506123dc816123b6565b92915050565b600080604083850312156123f9576123f8612349565b5b600061240785828601612397565b9250506020612418858286016123cd565b9150509250929050565b60008115159050919050565b61243781612422565b82525050565b6000602082019050612452600083018461242e565b92915050565b60006020828403121561246e5761246d612349565b5b600061247c848285016123cd565b91505092915050565b61248e816123ac565b82525050565b60006020820190506124a96000830184612485565b92915050565b6000806000606084860312156124c8576124c7612349565b5b60006124d686828701612397565b93505060206124e786828701612397565b92505060406124f8868287016123cd565b9150509250925092565b60006020828403121561251857612517612349565b5b600061252684828501612397565b91505092915050565b6125388161236e565b82525050565b6000602082019050612553600083018461252f565b92915050565b600060ff82169050919050565b61256f81612559565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612422565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b6000602082840312156125d2576125d1612349565b5b60006125e0848285016125a7565b91505092915050565b60008060408385031215612600576125ff612349565b5b600061260e85828601612397565b925050602061261f85828601612397565b9150509250929050565b600080604083850312156126405761263f612349565b5b600061264e858286016123cd565b925050602061265f858286016123cd565b9150509250929050565b6000819050919050565b600061268e6126896126848461234e565b612669565b61234e565b9050919050565b60006126a082612673565b9050919050565b60006126b282612695565b9050919050565b6126c2816126a7565b82525050565b60006020820190506126dd60008301846126b9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272a57607f821691505b60208210810361273d5761273c6126e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612779602083612299565b915061278482612743565b602082019050919050565b600060208201905081810360008301526127a88161276c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127e9826123ac565b91506127f4836123ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282d5761282c6127af565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612872826123ac565b915061287d836123ac565b92508261288d5761288c612838565b5b828204905092915050565b60006128a3826123ac565b91506128ae836123ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128e3576128e26127af565b5b828201905092915050565b60006128f9826123ac565b9150612904836123ac565b925082821015612917576129166127af565b5b828203905092915050565b7f4665652063616c63756c6174696f6e206572726f720000000000000000000000600082015250565b6000612958601583612299565b915061296382612922565b602082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b60006040820190506129a3600083018561252f565b6129b06020830184612485565b9392505050565b6000815190506129c681612590565b92915050565b6000602082840312156129e2576129e1612349565b5b60006129f0848285016129b7565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a55602583612299565b9150612a60826129f9565b604082019050919050565b60006020820190508181036000830152612a8481612a48565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ae7602683612299565b9150612af282612a8b565b604082019050919050565b60006020820190508181036000830152612b1681612ada565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b79602483612299565b9150612b8482612b1d565b604082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0b602283612299565b9150612c1682612baf565b604082019050919050565b60006020820190508181036000830152612c3a81612bfe565b9050919050565b600081519050612c50816123b6565b92915050565b600060208284031215612c6c57612c6b612349565b5b6000612c7a84828501612c41565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612cf081612380565b92915050565b600060208284031215612d0c57612d0b612349565b5b6000612d1a84828501612ce1565b91505092915050565b6000819050919050565b6000612d48612d43612d3e84612d23565b612669565b6123ac565b9050919050565b612d5881612d2d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d938161236e565b82525050565b6000612da58383612d8a565b60208301905092915050565b6000602082019050919050565b6000612dc982612d5e565b612dd38185612d69565b9350612dde83612d7a565b8060005b83811015612e0f578151612df68882612d99565b9750612e0183612db1565b925050600181019050612de2565b5085935050505092915050565b600060a082019050612e316000830188612485565b612e3e6020830187612d4f565b8181036040830152612e508186612dbe565b9050612e5f606083018561252f565b612e6c6080830184612485565b9695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612eac601d83612299565b9150612eb782612e76565b602082019050919050565b60006020820190508181036000830152612edb81612e9f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f3e602583612299565b9150612f4982612ee2565b604082019050919050565b60006020820190508181036000830152612f6d81612f31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd0602383612299565b9150612fdb82612f74565b604082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613062602683612299565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b905091905056fea2646970667358221220857dfea9af99ef2c0ba8a08421a7bd432d57791830c05c4161754b75efdbc8cb64736f6c634300080f00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004747b797f20d0d9cba5987501f77b75e4e0cb282

Deployed Bytecode

0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e146105ed578063e82c3c4d1461062a578063f2fde38b14610653578063f887ea401461067c576101a7565b8063a9059cbb1461055a578063c29ec45914610597578063d9cad20f146105c2576101a7565b806393e484bb116100c657806393e484bb1461049e57806395d89b41146104c757806399c8d556146104f2578063a457c2d71461051d576101a7565b8063715018a6146104315780638b0b959d146104485780638da5cb5b14610473576101a7565b806328ac2d5311610159578063419460c311610133578063419460c31461036157806352dfc8d01461039e57806361d027b3146103c957806370a08231146103f4576101a7565b806328ac2d53146102ce578063313ce567146102f95780633950935114610324576101a7565b806306fdde03146101ac578063095ea7b3146101d757806312fcee1b1461021457806318160ddd1461023d57806323b872dd1461026857806325e16063146102a5576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106a7565b6040516101ce9190612327565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f991906123e2565b610739565b60405161020b919061243d565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190612458565b61075c565b005b34801561024957600080fd5b506102526107e2565b60405161025f9190612494565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a91906124af565b6107ec565b60405161029c919061243d565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612502565b610bd7565b005b3480156102da57600080fd5b506102e3610c9d565b6040516102f0919061253e565b60405180910390f35b34801561030557600080fd5b5061030e610cc3565b60405161031b9190612575565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906123e2565b610ccc565b604051610358919061243d565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612458565b610d76565b604051610395919061243d565b60405180910390f35b3480156103aa57600080fd5b506103b3610e79565b6040516103c0919061243d565b60405180910390f35b3480156103d557600080fd5b506103de610e8c565b6040516103eb919061253e565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612502565b610eb2565b6040516104289190612494565b60405180910390f35b34801561043d57600080fd5b50610446610efa565b005b34801561045457600080fd5b5061045d610f82565b60405161046a9190612494565b60405180910390f35b34801561047f57600080fd5b50610488610f88565b604051610495919061253e565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c091906125bc565b610fb2565b005b3480156104d357600080fd5b506104dc61104b565b6040516104e99190612327565b60405180910390f35b3480156104fe57600080fd5b506105076110dd565b6040516105149190612494565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906123e2565b6110e3565b604051610551919061243d565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906123e2565b6111cd565b60405161058e919061243d565b60405180910390f35b3480156105a357600080fd5b506105ac611583565b6040516105b9919061253e565b60405180910390f35b3480156105ce57600080fd5b506105d76115a9565b6040516105e49190612494565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906125e9565b6115af565b6040516106219190612494565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612629565b611636565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612502565b6116c4565b005b34801561068857600080fd5b506106916117bb565b60405161069e91906126c8565b60405180910390f35b6060600380546106b690612712565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290612712565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000806107446117e1565b90506107518185856117e9565b600191505092915050565b6107646117e1565b73ffffffffffffffffffffffffffffffffffffffff16610782610f88565b73ffffffffffffffffffffffffffffffffffffffff16146107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf9061278f565b60405180910390fd5b80600c8190555050565b6000600254905090565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060011515600b60159054906101000a900460ff16151514801561084c575060001515600b60149054906101000a900460ff161515145b80156108a75750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156109025750600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b801561093a57508173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156109795750610949610f88565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b9050801561098a576109896119b2565b5b6000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610a2d5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015610a4a57610a40878787611b88565b9350505050610bd0565b8273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480610ab957508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015610ab8575080155b5b15610bbf576000606460075487610ad091906127de565b610ada9190612867565b90506000606460065488610aee91906127de565b610af89190612867565b905060008282610b089190612898565b88610b1391906128ee565b905087818484610b239190612898565b610b2d9190612898565b14610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061296e565b60405180910390fd5b610b788a3084611b88565b50610ba68a600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611b88565b50610bb28a8a83611b88565b9650505050505050610bd0565b610bca878787611b88565b93505050505b9392505050565b610bdf6117e1565b73ffffffffffffffffffffffffffffffffffffffff16610bfd610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a9061278f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c99573d6000803e3d6000fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610cd76117e1565b9050610d6b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d669190612898565b6117e9565b600191505092915050565b6000610d806117e1565b73ffffffffffffffffffffffffffffffffffffffff16610d9e610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb9061278f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610e2f92919061298e565b6020604051808303816000875af1158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7291906129cc565b9050919050565b600b60159054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f026117e1565b73ffffffffffffffffffffffffffffffffffffffff16610f20610f88565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d9061278f565b60405180910390fd5b610f806000611bb7565b565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fba6117e1565b73ffffffffffffffffffffffffffffffffffffffff16610fd8610f88565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061278f565b60405180910390fd5b80600b60156101000a81548160ff02191690831515021790555050565b60606004805461105a90612712565b80601f016020809104026020016040519081016040528092919081815260200182805461108690612712565b80156110d35780601f106110a8576101008083540402835291602001916110d3565b820191906000526020600020905b8154815290600101906020018083116110b657829003601f168201915b5050505050905090565b60065481565b6000806110ee6117e1565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612a6b565b60405180910390fd5b6111c182868684036117e9565b60019250505092915050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600b60159054906101000a900460ff1680156112205750600b60149054906101000a900460ff16155b801561127b5750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156112b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156112ec57508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b801561132b57506112fb610f88565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b9050801561133c5761133b6119b2565b5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113df5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905080156113fb576113f18686611c7d565b935050505061157d565b8273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148061146a57508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015611469575080155b5b1561156d57600060646007548761148191906127de565b61148b9190612867565b9050600060646006548861149f91906127de565b6114a99190612867565b9050600082826114b99190612898565b886114c491906128ee565b9050878184846114d49190612898565b6114de9190612898565b1461151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061296e565b60405180910390fd5b6115283083611c7d565b50611555600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c7d565b506115608982611c7d565b965050505050505061157d565b6115778686611c7d565b93505050505b92915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61163e6117e1565b73ffffffffffffffffffffffffffffffffffffffff1661165c610f88565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061278f565b60405180910390fd5b81600681905550806007819055505050565b6116cc6117e1565b73ffffffffffffffffffffffffffffffffffffffff166116ea610f88565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061278f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690612afd565b60405180910390fd5b6117b881611bb7565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90612b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612c21565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119a59190612494565b60405180910390a3505050565b6001600b60146101000a81548160ff02191690831515021790555060006006549050600060068190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a17919061253e565b602060405180830381865afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a589190612c56565b90506000600c549050808210611b61576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16319050611aaf82611ca0565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163190508181611af991906128ee565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f1a592659b26492ebc7405bc47f9c772202e296f85e8d50f698e4efc5bac7595960405160405180910390a350505b505080600681905550506000600b60146101000a81548160ff021916908315150217905550565b600080611b936117e1565b9050611ba0858285611f79565b611bab858585612005565b60019150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c886117e1565b9050611c95818585612005565b600191505092915050565b6000600267ffffffffffffffff811115611cbd57611cbc612c83565b5b604051908082528060200260200182016040528015611ceb5781602001602082028036833780820191505090505b5090503081600081518110611d0357611d02612cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dce9190612cf6565b81600181518110611de257611de1612cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401611e7992919061298e565b6020604051808303816000875af1158015611e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebc91906129cc565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611f43959493929190612e1c565b600060405180830381600087803b158015611f5d57600080fd5b505af1158015611f71573d6000803e3d6000fd5b505050505050565b6000611f8584846115af565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fff5781811015611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890612ec2565b60405180910390fd5b611ffe84848484036117e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90612f54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90612fe6565b60405180910390fd5b6120ee838383612284565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90613078565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122079190612898565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226b9190612494565b60405180910390a361227e848484612289565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c85780820151818401526020810190506122ad565b838111156122d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006122f98261228e565b6123038185612299565b93506123138185602086016122aa565b61231c816122dd565b840191505092915050565b6000602082019050818103600083015261234181846122ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123798261234e565b9050919050565b6123898161236e565b811461239457600080fd5b50565b6000813590506123a681612380565b92915050565b6000819050919050565b6123bf816123ac565b81146123ca57600080fd5b50565b6000813590506123dc816123b6565b92915050565b600080604083850312156123f9576123f8612349565b5b600061240785828601612397565b9250506020612418858286016123cd565b9150509250929050565b60008115159050919050565b61243781612422565b82525050565b6000602082019050612452600083018461242e565b92915050565b60006020828403121561246e5761246d612349565b5b600061247c848285016123cd565b91505092915050565b61248e816123ac565b82525050565b60006020820190506124a96000830184612485565b92915050565b6000806000606084860312156124c8576124c7612349565b5b60006124d686828701612397565b93505060206124e786828701612397565b92505060406124f8868287016123cd565b9150509250925092565b60006020828403121561251857612517612349565b5b600061252684828501612397565b91505092915050565b6125388161236e565b82525050565b6000602082019050612553600083018461252f565b92915050565b600060ff82169050919050565b61256f81612559565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612422565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b6000602082840312156125d2576125d1612349565b5b60006125e0848285016125a7565b91505092915050565b60008060408385031215612600576125ff612349565b5b600061260e85828601612397565b925050602061261f85828601612397565b9150509250929050565b600080604083850312156126405761263f612349565b5b600061264e858286016123cd565b925050602061265f858286016123cd565b9150509250929050565b6000819050919050565b600061268e6126896126848461234e565b612669565b61234e565b9050919050565b60006126a082612673565b9050919050565b60006126b282612695565b9050919050565b6126c2816126a7565b82525050565b60006020820190506126dd60008301846126b9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272a57607f821691505b60208210810361273d5761273c6126e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612779602083612299565b915061278482612743565b602082019050919050565b600060208201905081810360008301526127a88161276c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127e9826123ac565b91506127f4836123ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282d5761282c6127af565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612872826123ac565b915061287d836123ac565b92508261288d5761288c612838565b5b828204905092915050565b60006128a3826123ac565b91506128ae836123ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128e3576128e26127af565b5b828201905092915050565b60006128f9826123ac565b9150612904836123ac565b925082821015612917576129166127af565b5b828203905092915050565b7f4665652063616c63756c6174696f6e206572726f720000000000000000000000600082015250565b6000612958601583612299565b915061296382612922565b602082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b60006040820190506129a3600083018561252f565b6129b06020830184612485565b9392505050565b6000815190506129c681612590565b92915050565b6000602082840312156129e2576129e1612349565b5b60006129f0848285016129b7565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a55602583612299565b9150612a60826129f9565b604082019050919050565b60006020820190508181036000830152612a8481612a48565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ae7602683612299565b9150612af282612a8b565b604082019050919050565b60006020820190508181036000830152612b1681612ada565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b79602483612299565b9150612b8482612b1d565b604082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0b602283612299565b9150612c1682612baf565b604082019050919050565b60006020820190508181036000830152612c3a81612bfe565b9050919050565b600081519050612c50816123b6565b92915050565b600060208284031215612c6c57612c6b612349565b5b6000612c7a84828501612c41565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612cf081612380565b92915050565b600060208284031215612d0c57612d0b612349565b5b6000612d1a84828501612ce1565b91505092915050565b6000819050919050565b6000612d48612d43612d3e84612d23565b612669565b6123ac565b9050919050565b612d5881612d2d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d938161236e565b82525050565b6000612da58383612d8a565b60208301905092915050565b6000602082019050919050565b6000612dc982612d5e565b612dd38185612d69565b9350612dde83612d7a565b8060005b83811015612e0f578151612df68882612d99565b9750612e0183612db1565b925050600181019050612de2565b5085935050505092915050565b600060a082019050612e316000830188612485565b612e3e6020830187612d4f565b8181036040830152612e508186612dbe565b9050612e5f606083018561252f565b612e6c6080830184612485565b9695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612eac601d83612299565b9150612eb782612e76565b602082019050919050565b60006020820190508181036000830152612edb81612e9f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f3e602583612299565b9150612f4982612ee2565b604082019050919050565b60006020820190508181036000830152612f6d81612f31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612fd0602383612299565b9150612fdb82612f74565b604082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613062602683612299565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b905091905056fea2646970667358221220857dfea9af99ef2c0ba8a08421a7bd432d57791830c05c4161754b75efdbc8cb64736f6c634300080f0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004747b797f20d0d9cba5987501f77b75e4e0cb282

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _treasury (address): 0x4747b797f20d0D9Cba5987501f77b75e4e0Cb282

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000004747b797f20d0d9cba5987501f77b75e4e0cb282


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.