ETH Price: $2,592.31 (-2.39%)

Token

METAThaiCoin (TAC)
 

Overview

Max Total Supply

4,000,000,000,000 TAC

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,704,242.941459276715318227 TAC

Value
$0.00
0xD6c9706C1f0EE53C12117809dB30CAD05D1C3274
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:
MetaThai

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : MetaThai.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";

contract MetaThai is Context, Ownable, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    // ======= ERC20 =======

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name = "METAThaiCoin";
    string private _symbol = "TAC";

    /**
     * @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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

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

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

    // ======= token =======

    mapping(address => bool) private _isExcludedFromFee;

    uint256 public swapFeeOnTransfer;
    uint256 public taxFeeOnTransfer;

    uint256 private _swapFee;
    uint256 private _taxFee;

    address payable public marketingAddress;
    address public taxAddress;

    bool private inSwap = false;
    bool public swapEnabled = false;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    constructor(
        address _uniswapRouter,
        address payable _marketingAddress,
        address _taxAddress,
        uint256 _swapFeeOnTransfer,
        uint256 _taxFeeOnTransfer
    ) {
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[marketingAddress] = true;
        _isExcludedFromFee[taxAddress] = true;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _uniswapRouter
        );
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        marketingAddress = _marketingAddress;
        taxAddress = _taxAddress;

        swapFeeOnTransfer = _swapFeeOnTransfer;
        taxFeeOnTransfer = _taxFeeOnTransfer;

        uint256 amount = 4000000000000 * 1e18;
        _totalSupply = amount;
        _balances[owner()] = amount;
        emit Transfer(address(0), owner(), amount);
    }

    //to receive BNB from uniswapV2Router when swapping
    receive() external payable {}

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

    modifier onlyDev() {
        require(owner() == _msgSender(), "Caller is not the dev");
        _;
    }

    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");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        _swapFee = 0;
        _taxFee = 0;

        uint256 contractTokenBalance = balanceOf(address(this));
        if (
            !inSwap &&
            from != uniswapV2Pair &&
            swapEnabled &&
            contractTokenBalance > 0
        ) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                marketingAddress.transfer(address(this).balance);
            }
        }

        if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || inSwap) {
            _swapFee = 0;
            _taxFee = 0;
        } else {
            _swapFee = swapFeeOnTransfer;
            _taxFee = taxFeeOnTransfer;
        }

        _tokenTransfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        _transferStandard(sender, recipient, amount);
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        uint256 sFee = amount.mul(_swapFee).div(100);
        uint256 tFee = amount.mul(_taxFee).div(100);
        uint256 transferAmount = amount.sub(sFee).sub(tFee);

        unchecked {
            _balances[sender] = _balances[sender].sub(amount);
        }

        _balances[recipient] = _balances[recipient].add(transferAmount);
        emit Transfer(sender, recipient, transferAmount);

        if (tFee > 0) {
            _balances[taxAddress] = _balances[taxAddress].add(tFee);
            emit Transfer(sender, taxAddress, tFee);
        }
        if (sFee > 0) {
            _balances[address(this)] = _balances[address(this)].add(sFee);
            emit Transfer(sender, address(this), sFee);
        }
    }

    function toggleSwap(bool _swapEnabled) public onlyDev {
        swapEnabled = _swapEnabled;
    }

    function setAddress(address payable _marketingAddress, address _taxAddress)
        public
        onlyOwner
    {
        marketingAddress = _marketingAddress;
        taxAddress = _taxAddress;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 9 : 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 3 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Moves `amount` tokens from the caller's 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);
}

File 4 of 9 : 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 5 of 9 : 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 6 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 9 : IUniswapV2Factory.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.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 8 of 9 : IUniswapV2Router02.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

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 9 of 9 : IUniswapV2Router01.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"},{"internalType":"address payable","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256","name":"_swapFeeOnTransfer","type":"uint256"},{"internalType":"uint256","name":"_taxFeeOnTransfer","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_taxAddress","type":"address"}],"name":"setAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFeeOnTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeOnTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600c81526020017f4d45544154686169436f696e000000000000000000000000000000000000000081525060049080519060200190620000519291906200076c565b506040518060400160405280600381526020017f5441430000000000000000000000000000000000000000000000000000000000815250600590805190602001906200009f9291906200076c565b506000600c60146101000a81548160ff0219169083151502179055506000600c60156101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040516200371f3803806200371f83398181016040528101906200010991906200088d565b620001296200011d6200067760201b60201c565b6200067f60201b60201c565b6001600660006200013f6200074360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600085905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036957600080fd5b505afa1580156200037e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a4919062000861565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040757600080fd5b505afa1580156200041c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000442919062000861565b6040518363ffffffff1660e01b81526004016200046192919062000931565b602060405180830381600087803b1580156200047c57600080fd5b505af115801562000491573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b7919062000861565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826007819055508160088190555060006c327cb2734119d3b7a9000000009050806003819055508060016000620005b56200074360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620006036200074360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200066291906200095e565b60405180910390a35050505050505062000a80565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200077a90620009cd565b90600052602060002090601f0160209004810192826200079e5760008555620007ea565b82601f10620007b957805160ff1916838001178555620007ea565b82800160010185558215620007ea579182015b82811115620007e9578251825591602001919060010190620007cc565b5b509050620007f99190620007fd565b5090565b5b8082111562000818576000816000905550600101620007fe565b5090565b6000815190506200082d8162000a32565b92915050565b600081519050620008448162000a4c565b92915050565b6000815190506200085b8162000a66565b92915050565b6000602082840312156200087457600080fd5b600062000884848285016200081c565b91505092915050565b600080600080600060a08688031215620008a657600080fd5b6000620008b6888289016200081c565b9550506020620008c98882890162000833565b9450506040620008dc888289016200081c565b9350506060620008ef888289016200084a565b925050608062000902888289016200084a565b9150509295509295909350565b6200091a816200097b565b82525050565b6200092b81620009c3565b82525050565b60006040820190506200094860008301856200090f565b6200095760208301846200090f565b9392505050565b600060208201905062000975600083018462000920565b92915050565b60006200098882620009a3565b9050919050565b60006200099c82620009a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620009e657607f821691505b60208210811415620009fd57620009fc62000a03565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000a3d816200097b565b811462000a4957600080fd5b50565b62000a57816200098f565b811462000a6357600080fd5b50565b62000a7181620009c3565b811462000a7d57600080fd5b50565b612c8f8062000a906000396000f3fe60806040526004361061016a5760003560e01c80636d8aa8f8116100d1578063a457c2d71161008a578063b7bda68f11610064578063b7bda68f1461053d578063c492f04614610568578063dd62ed3e14610591578063f2fde38b146105ce57610171565b8063a457c2d714610498578063a5ece941146104d5578063a9059cbb1461050057610171565b80636d8aa8f81461039a5780636ddd1713146103c357806370a08231146103ee578063715018a61461042b5780638da5cb5b1461044257806395d89b411461046d57610171565b80633950935111610123578063395093511461029c5780633b58524d146102d95780633ccfd60b1461030257806349bd5a5e146103195780634d8b1aac1461034457806368b05a891461036f57610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105f7565b60405161019891906123a5565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611fd4565b610689565b6040516101d5919061236f565b60405180910390f35b3480156101ea57600080fd5b506101f36106ac565b604051610200919061238a565b60405180910390f35b34801561021557600080fd5b5061021e6106d2565b60405161022b9190612527565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611f85565b6106dc565b604051610268919061236f565b60405180910390f35b34801561027d57600080fd5b5061028661070b565b604051610293919061259c565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611fd4565b610714565b6040516102d0919061236f565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190611f0d565b61074b565b005b34801561030e57600080fd5b5061031761084d565b005b34801561032557600080fd5b5061032e610912565b60405161033b9190612339565b60405180910390f35b34801561035057600080fd5b50610359610938565b6040516103669190612527565b60405180910390f35b34801561037b57600080fd5b5061038461093e565b6040516103919190612527565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612068565b610944565b005b3480156103cf57600080fd5b506103d86109dd565b6040516103e5919061236f565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190611ebb565b6109f0565b6040516104229190612527565b60405180910390f35b34801561043757600080fd5b50610440610a39565b005b34801561044e57600080fd5b50610457610ac1565b6040516104649190612339565b60405180910390f35b34801561047957600080fd5b50610482610aea565b60405161048f91906123a5565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611fd4565b610b7c565b6040516104cc919061236f565b60405180910390f35b3480156104e157600080fd5b506104ea610bf3565b6040516104f79190612354565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190611fd4565b610c19565b604051610534919061236f565b60405180910390f35b34801561054957600080fd5b50610552610c3c565b60405161055f9190612339565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612010565b610c62565b005b34801561059d57600080fd5b506105b860048036038101906105b39190611f49565b610da9565b6040516105c59190612527565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190611ebb565b610e30565b005b606060048054610606906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906127f1565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b600080610694610f28565b90506106a1818585610f30565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806106e7610f28565b90506106f48582856110fb565b6106ff858585611187565b60019150509392505050565b60006012905090565b60008061071f610f28565b90506107408185856107318589610da9565b61073b919061260c565b610f30565b600191505092915050565b610753610f28565b73ffffffffffffffffffffffffffffffffffffffff16610771610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90612487565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610855610f28565b73ffffffffffffffffffffffffffffffffffffffff16610873610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612487565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561090f573d6000803e3d6000fd5b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60075481565b61094c610f28565b73ffffffffffffffffffffffffffffffffffffffff1661096a610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790612467565b60405180910390fd5b80600c60156101000a81548160ff02191690831515021790555050565b600c60159054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a41610f28565b73ffffffffffffffffffffffffffffffffffffffff16610a5f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90612487565b60405180910390fd5b610abf600061155c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610af9906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906127f1565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b600080610b87610f28565b90506000610b958286610da9565b905083811015610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612507565b60405180910390fd5b610be78286868403610f30565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c24610f28565b9050610c31818585611187565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c6a610f28565b73ffffffffffffffffffffffffffffffffffffffff16610c88610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612487565b60405180910390fd5b60005b83839050811015610da3578160066000868685818110610d2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d3f9190611ebb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d9b90612823565b915050610ce1565b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e38610f28565b73ffffffffffffffffffffffffffffffffffffffff16610e56610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390612487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906123e7565b60405180910390fd5b610f258161155c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906124e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612407565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110ee9190612527565b60405180910390a3505050565b60006111078484610da9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111815781811015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90612427565b60405180910390fd5b6111808484848403610f30565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906124c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e906123c7565b60405180910390fd5b600081116112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906124a7565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612447565b60405180910390fd5b60006009819055506000600a81905550600061134c306109f0565b9050600c60149054906101000a900460ff161580156113b95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156113d15750600c60159054906101000a900460ff165b80156113dd5750600081115b15611465576113eb81611620565b6000479050600081111561146357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611461573d6000803e3d6000fd5b505b505b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061151d5750600c60149054906101000a900460ff165b156115375760006009819055506000600a8190555061154a565b600754600981905550600854600a819055505b61155585858561191a565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561167e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116ac5781602001602082028036833780820191505090505b50905030816000815181106116ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561178c57600080fd5b505afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c49190611ee4565b816001815181106117fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061186530600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610f30565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016118c9959493929190612542565b600060405180830381600087803b1580156118e357600080fd5b505af11580156118f7573d6000803e3d6000fd5b50505050506000600c60146101000a81548160ff02191690831515021790555050565b61192583838361192a565b505050565b6000611954606461194660095485611db090919063ffffffff16565b611dc690919063ffffffff16565b905060006119806064611972600a5486611db090919063ffffffff16565b611dc690919063ffffffff16565b905060006119a98261199b8587611ddc90919063ffffffff16565b611ddc90919063ffffffff16565b90506119fd84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ddc90919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9281600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b329190612527565b60405180910390a36000821115611ca457611bb78260016000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b60016000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9b9190612527565b60405180910390a35b6000831115611da857611cff83600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611d9f9190612527565b60405180910390a35b505050505050565b60008183611dbe9190612693565b905092915050565b60008183611dd49190612662565b905092915050565b60008183611dea91906126ed565b905092915050565b60008183611e00919061260c565b905092915050565b600081359050611e1781612bfd565b92915050565b600081519050611e2c81612bfd565b92915050565b600081359050611e4181612c14565b92915050565b60008083601f840112611e5957600080fd5b8235905067ffffffffffffffff811115611e7257600080fd5b602083019150836020820283011115611e8a57600080fd5b9250929050565b600081359050611ea081612c2b565b92915050565b600081359050611eb581612c42565b92915050565b600060208284031215611ecd57600080fd5b6000611edb84828501611e08565b91505092915050565b600060208284031215611ef657600080fd5b6000611f0484828501611e1d565b91505092915050565b60008060408385031215611f2057600080fd5b6000611f2e85828601611e32565b9250506020611f3f85828601611e08565b9150509250929050565b60008060408385031215611f5c57600080fd5b6000611f6a85828601611e08565b9250506020611f7b85828601611e08565b9150509250929050565b600080600060608486031215611f9a57600080fd5b6000611fa886828701611e08565b9350506020611fb986828701611e08565b9250506040611fca86828701611ea6565b9150509250925092565b60008060408385031215611fe757600080fd5b6000611ff585828601611e08565b925050602061200685828601611ea6565b9150509250929050565b60008060006040848603121561202557600080fd5b600084013567ffffffffffffffff81111561203f57600080fd5b61204b86828701611e47565b9350935050602061205e86828701611e91565b9150509250925092565b60006020828403121561207a57600080fd5b600061208884828501611e91565b91505092915050565b600061209d83836120b8565b60208301905092915050565b6120b281612733565b82525050565b6120c181612721565b82525050565b6120d081612721565b82525050565b60006120e1826125c7565b6120eb81856125ea565b93506120f6836125b7565b8060005b8381101561212757815161210e8882612091565b9750612119836125dd565b9250506001810190506120fa565b5085935050505092915050565b61213d81612745565b82525050565b61214c81612788565b82525050565b61215b816127ac565b82525050565b600061216c826125d2565b61217681856125fb565b93506121868185602086016127be565b61218f816128f9565b840191505092915050565b60006121a76023836125fb565b91506121b28261290a565b604082019050919050565b60006121ca6026836125fb565b91506121d582612959565b604082019050919050565b60006121ed6022836125fb565b91506121f8826129a8565b604082019050919050565b6000612210601d836125fb565b915061221b826129f7565b602082019050919050565b60006122336026836125fb565b915061223e82612a20565b604082019050919050565b60006122566015836125fb565b915061226182612a6f565b602082019050919050565b60006122796020836125fb565b915061228482612a98565b602082019050919050565b600061229c6029836125fb565b91506122a782612ac1565b604082019050919050565b60006122bf6025836125fb565b91506122ca82612b10565b604082019050919050565b60006122e26024836125fb565b91506122ed82612b5f565b604082019050919050565b60006123056025836125fb565b915061231082612bae565b604082019050919050565b61232481612771565b82525050565b6123338161277b565b82525050565b600060208201905061234e60008301846120c7565b92915050565b600060208201905061236960008301846120a9565b92915050565b60006020820190506123846000830184612134565b92915050565b600060208201905061239f6000830184612143565b92915050565b600060208201905081810360008301526123bf8184612161565b905092915050565b600060208201905081810360008301526123e08161219a565b9050919050565b60006020820190508181036000830152612400816121bd565b9050919050565b60006020820190508181036000830152612420816121e0565b9050919050565b6000602082019050818103600083015261244081612203565b9050919050565b6000602082019050818103600083015261246081612226565b9050919050565b6000602082019050818103600083015261248081612249565b9050919050565b600060208201905081810360008301526124a08161226c565b9050919050565b600060208201905081810360008301526124c08161228f565b9050919050565b600060208201905081810360008301526124e0816122b2565b9050919050565b60006020820190508181036000830152612500816122d5565b9050919050565b60006020820190508181036000830152612520816122f8565b9050919050565b600060208201905061253c600083018461231b565b92915050565b600060a082019050612557600083018861231b565b6125646020830187612152565b818103604083015261257681866120d6565b905061258560608301856120c7565b612592608083018461231b565b9695505050505050565b60006020820190506125b1600083018461232a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061261782612771565b915061262283612771565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126575761265661286c565b5b828201905092915050565b600061266d82612771565b915061267883612771565b9250826126885761268761289b565b5b828204905092915050565b600061269e82612771565b91506126a983612771565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126e2576126e161286c565b5b828202905092915050565b60006126f882612771565b915061270383612771565b9250828210156127165761271561286c565b5b828203905092915050565b600061272c82612751565b9050919050565b600061273e82612751565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006127938261279a565b9050919050565b60006127a582612751565b9050919050565b60006127b782612771565b9050919050565b60005b838110156127dc5780820151818401526020810190506127c1565b838111156127eb576000848401525b50505050565b6000600282049050600182168061280957607f821691505b6020821081141561281d5761281c6128ca565b5b50919050565b600061282e82612771565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128615761286061286c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206465760000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612c0681612721565b8114612c1157600080fd5b50565b612c1d81612733565b8114612c2857600080fd5b50565b612c3481612745565b8114612c3f57600080fd5b50565b612c4b81612771565b8114612c5657600080fd5b5056fea26469706673582212204e69c0cf46d426ec79ccc787af390639c6884882d6ec02bd196464ecfe5a9ab264736f6c634300080400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ebd94762c92af6a76a79a6babb8df0be8d484011000000000000000000000000d8f8fd37c51ccae295c92278775488cc232d7c2e00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80636d8aa8f8116100d1578063a457c2d71161008a578063b7bda68f11610064578063b7bda68f1461053d578063c492f04614610568578063dd62ed3e14610591578063f2fde38b146105ce57610171565b8063a457c2d714610498578063a5ece941146104d5578063a9059cbb1461050057610171565b80636d8aa8f81461039a5780636ddd1713146103c357806370a08231146103ee578063715018a61461042b5780638da5cb5b1461044257806395d89b411461046d57610171565b80633950935111610123578063395093511461029c5780633b58524d146102d95780633ccfd60b1461030257806349bd5a5e146103195780634d8b1aac1461034457806368b05a891461036f57610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105f7565b60405161019891906123a5565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611fd4565b610689565b6040516101d5919061236f565b60405180910390f35b3480156101ea57600080fd5b506101f36106ac565b604051610200919061238a565b60405180910390f35b34801561021557600080fd5b5061021e6106d2565b60405161022b9190612527565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611f85565b6106dc565b604051610268919061236f565b60405180910390f35b34801561027d57600080fd5b5061028661070b565b604051610293919061259c565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611fd4565b610714565b6040516102d0919061236f565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190611f0d565b61074b565b005b34801561030e57600080fd5b5061031761084d565b005b34801561032557600080fd5b5061032e610912565b60405161033b9190612339565b60405180910390f35b34801561035057600080fd5b50610359610938565b6040516103669190612527565b60405180910390f35b34801561037b57600080fd5b5061038461093e565b6040516103919190612527565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612068565b610944565b005b3480156103cf57600080fd5b506103d86109dd565b6040516103e5919061236f565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190611ebb565b6109f0565b6040516104229190612527565b60405180910390f35b34801561043757600080fd5b50610440610a39565b005b34801561044e57600080fd5b50610457610ac1565b6040516104649190612339565b60405180910390f35b34801561047957600080fd5b50610482610aea565b60405161048f91906123a5565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611fd4565b610b7c565b6040516104cc919061236f565b60405180910390f35b3480156104e157600080fd5b506104ea610bf3565b6040516104f79190612354565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190611fd4565b610c19565b604051610534919061236f565b60405180910390f35b34801561054957600080fd5b50610552610c3c565b60405161055f9190612339565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612010565b610c62565b005b34801561059d57600080fd5b506105b860048036038101906105b39190611f49565b610da9565b6040516105c59190612527565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190611ebb565b610e30565b005b606060048054610606906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906127f1565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b600080610694610f28565b90506106a1818585610f30565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806106e7610f28565b90506106f48582856110fb565b6106ff858585611187565b60019150509392505050565b60006012905090565b60008061071f610f28565b90506107408185856107318589610da9565b61073b919061260c565b610f30565b600191505092915050565b610753610f28565b73ffffffffffffffffffffffffffffffffffffffff16610771610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90612487565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610855610f28565b73ffffffffffffffffffffffffffffffffffffffff16610873610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612487565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561090f573d6000803e3d6000fd5b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60075481565b61094c610f28565b73ffffffffffffffffffffffffffffffffffffffff1661096a610ac1565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790612467565b60405180910390fd5b80600c60156101000a81548160ff02191690831515021790555050565b600c60159054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a41610f28565b73ffffffffffffffffffffffffffffffffffffffff16610a5f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90612487565b60405180910390fd5b610abf600061155c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610af9906127f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906127f1565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b600080610b87610f28565b90506000610b958286610da9565b905083811015610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612507565b60405180910390fd5b610be78286868403610f30565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c24610f28565b9050610c31818585611187565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c6a610f28565b73ffffffffffffffffffffffffffffffffffffffff16610c88610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612487565b60405180910390fd5b60005b83839050811015610da3578160066000868685818110610d2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d3f9190611ebb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d9b90612823565b915050610ce1565b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e38610f28565b73ffffffffffffffffffffffffffffffffffffffff16610e56610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390612487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906123e7565b60405180910390fd5b610f258161155c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906124e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612407565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110ee9190612527565b60405180910390a3505050565b60006111078484610da9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111815781811015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90612427565b60405180910390fd5b6111808484848403610f30565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906124c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e906123c7565b60405180910390fd5b600081116112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906124a7565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612447565b60405180910390fd5b60006009819055506000600a81905550600061134c306109f0565b9050600c60149054906101000a900460ff161580156113b95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156113d15750600c60159054906101000a900460ff165b80156113dd5750600081115b15611465576113eb81611620565b6000479050600081111561146357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611461573d6000803e3d6000fd5b505b505b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061151d5750600c60149054906101000a900460ff165b156115375760006009819055506000600a8190555061154a565b600754600981905550600854600a819055505b61155585858561191a565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561167e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116ac5781602001602082028036833780820191505090505b50905030816000815181106116ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561178c57600080fd5b505afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c49190611ee4565b816001815181106117fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061186530600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610f30565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016118c9959493929190612542565b600060405180830381600087803b1580156118e357600080fd5b505af11580156118f7573d6000803e3d6000fd5b50505050506000600c60146101000a81548160ff02191690831515021790555050565b61192583838361192a565b505050565b6000611954606461194660095485611db090919063ffffffff16565b611dc690919063ffffffff16565b905060006119806064611972600a5486611db090919063ffffffff16565b611dc690919063ffffffff16565b905060006119a98261199b8587611ddc90919063ffffffff16565b611ddc90919063ffffffff16565b90506119fd84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ddc90919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9281600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b329190612527565b60405180910390a36000821115611ca457611bb78260016000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b60016000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9b9190612527565b60405180910390a35b6000831115611da857611cff83600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df290919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611d9f9190612527565b60405180910390a35b505050505050565b60008183611dbe9190612693565b905092915050565b60008183611dd49190612662565b905092915050565b60008183611dea91906126ed565b905092915050565b60008183611e00919061260c565b905092915050565b600081359050611e1781612bfd565b92915050565b600081519050611e2c81612bfd565b92915050565b600081359050611e4181612c14565b92915050565b60008083601f840112611e5957600080fd5b8235905067ffffffffffffffff811115611e7257600080fd5b602083019150836020820283011115611e8a57600080fd5b9250929050565b600081359050611ea081612c2b565b92915050565b600081359050611eb581612c42565b92915050565b600060208284031215611ecd57600080fd5b6000611edb84828501611e08565b91505092915050565b600060208284031215611ef657600080fd5b6000611f0484828501611e1d565b91505092915050565b60008060408385031215611f2057600080fd5b6000611f2e85828601611e32565b9250506020611f3f85828601611e08565b9150509250929050565b60008060408385031215611f5c57600080fd5b6000611f6a85828601611e08565b9250506020611f7b85828601611e08565b9150509250929050565b600080600060608486031215611f9a57600080fd5b6000611fa886828701611e08565b9350506020611fb986828701611e08565b9250506040611fca86828701611ea6565b9150509250925092565b60008060408385031215611fe757600080fd5b6000611ff585828601611e08565b925050602061200685828601611ea6565b9150509250929050565b60008060006040848603121561202557600080fd5b600084013567ffffffffffffffff81111561203f57600080fd5b61204b86828701611e47565b9350935050602061205e86828701611e91565b9150509250925092565b60006020828403121561207a57600080fd5b600061208884828501611e91565b91505092915050565b600061209d83836120b8565b60208301905092915050565b6120b281612733565b82525050565b6120c181612721565b82525050565b6120d081612721565b82525050565b60006120e1826125c7565b6120eb81856125ea565b93506120f6836125b7565b8060005b8381101561212757815161210e8882612091565b9750612119836125dd565b9250506001810190506120fa565b5085935050505092915050565b61213d81612745565b82525050565b61214c81612788565b82525050565b61215b816127ac565b82525050565b600061216c826125d2565b61217681856125fb565b93506121868185602086016127be565b61218f816128f9565b840191505092915050565b60006121a76023836125fb565b91506121b28261290a565b604082019050919050565b60006121ca6026836125fb565b91506121d582612959565b604082019050919050565b60006121ed6022836125fb565b91506121f8826129a8565b604082019050919050565b6000612210601d836125fb565b915061221b826129f7565b602082019050919050565b60006122336026836125fb565b915061223e82612a20565b604082019050919050565b60006122566015836125fb565b915061226182612a6f565b602082019050919050565b60006122796020836125fb565b915061228482612a98565b602082019050919050565b600061229c6029836125fb565b91506122a782612ac1565b604082019050919050565b60006122bf6025836125fb565b91506122ca82612b10565b604082019050919050565b60006122e26024836125fb565b91506122ed82612b5f565b604082019050919050565b60006123056025836125fb565b915061231082612bae565b604082019050919050565b61232481612771565b82525050565b6123338161277b565b82525050565b600060208201905061234e60008301846120c7565b92915050565b600060208201905061236960008301846120a9565b92915050565b60006020820190506123846000830184612134565b92915050565b600060208201905061239f6000830184612143565b92915050565b600060208201905081810360008301526123bf8184612161565b905092915050565b600060208201905081810360008301526123e08161219a565b9050919050565b60006020820190508181036000830152612400816121bd565b9050919050565b60006020820190508181036000830152612420816121e0565b9050919050565b6000602082019050818103600083015261244081612203565b9050919050565b6000602082019050818103600083015261246081612226565b9050919050565b6000602082019050818103600083015261248081612249565b9050919050565b600060208201905081810360008301526124a08161226c565b9050919050565b600060208201905081810360008301526124c08161228f565b9050919050565b600060208201905081810360008301526124e0816122b2565b9050919050565b60006020820190508181036000830152612500816122d5565b9050919050565b60006020820190508181036000830152612520816122f8565b9050919050565b600060208201905061253c600083018461231b565b92915050565b600060a082019050612557600083018861231b565b6125646020830187612152565b818103604083015261257681866120d6565b905061258560608301856120c7565b612592608083018461231b565b9695505050505050565b60006020820190506125b1600083018461232a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061261782612771565b915061262283612771565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126575761265661286c565b5b828201905092915050565b600061266d82612771565b915061267883612771565b9250826126885761268761289b565b5b828204905092915050565b600061269e82612771565b91506126a983612771565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126e2576126e161286c565b5b828202905092915050565b60006126f882612771565b915061270383612771565b9250828210156127165761271561286c565b5b828203905092915050565b600061272c82612751565b9050919050565b600061273e82612751565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006127938261279a565b9050919050565b60006127a582612751565b9050919050565b60006127b782612771565b9050919050565b60005b838110156127dc5780820151818401526020810190506127c1565b838111156127eb576000848401525b50505050565b6000600282049050600182168061280957607f821691505b6020821081141561281d5761281c6128ca565b5b50919050565b600061282e82612771565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128615761286061286c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206465760000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612c0681612721565b8114612c1157600080fd5b50565b612c1d81612733565b8114612c2857600080fd5b50565b612c3481612745565b8114612c3f57600080fd5b50565b612c4b81612771565b8114612c5657600080fd5b5056fea26469706673582212204e69c0cf46d426ec79ccc787af390639c6884882d6ec02bd196464ecfe5a9ab264736f6c63430008040033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ebd94762c92af6a76a79a6babb8df0be8d484011000000000000000000000000d8f8fd37c51ccae295c92278775488cc232d7c2e00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketingAddress (address): 0xEbd94762C92Af6A76A79a6BAbb8dF0be8D484011
Arg [2] : _taxAddress (address): 0xD8f8FD37C51CcaE295c92278775488CC232D7C2E
Arg [3] : _swapFeeOnTransfer (uint256): 3
Arg [4] : _taxFeeOnTransfer (uint256): 1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000ebd94762c92af6a76a79a6babb8df0be8d484011
Arg [2] : 000000000000000000000000d8f8fd37c51ccae295c92278775488cc232d7c2e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001


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.