ETH Price: $3,100.37 (+0.61%)
Gas: 3 Gwei

Token

unUSD (unUSD)
 

Overview

Max Total Supply

1,000,000,000 unUSD

Holders

248

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
105,000 unUSD

Value
$0.00
0x48ec84e8510fe7e7689adcc620fa0588a1800bb1
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:
unUSD

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : unUSD.sol
// SPDX-License-Identifier: UNLICENSED
// programmed = $1
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IUniswapV2Factory {
	function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

	function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
	function swapExactTokensForETHSupportingFeeOnTransferTokens(
		uint amountIn,
		uint amountOutMin,
		address[] calldata path,
		address to,
		uint deadline
	) external;
}

contract unUSD is ERC20, Ownable {
	IUniswapV2Router02 public immutable router;
	address public immutable uniswapV2Pair;

	// addresses
	address public devWallet;
	address private marketingWallet;

	// limits
	uint256 private maxBuyAmount;
	uint256 private maxSellAmount;
	uint256 private maxWalletAmount;

	uint256 private thresholdSwapAmount;

	// status flags
	bool private isTrading = false;
	bool public swapEnabled = false;
	bool public isSwapping;

	struct Fees {
		uint8 buyTotalFees;
		uint8 buyMarketingFee;
		uint8 buyDevFee;
		uint8 buyLiquidityFee;
		uint8 sellTotalFees;
		uint8 sellMarketingFee;
		uint8 sellDevFee;
		uint8 sellLiquidityFee;
	}

	Fees public _fees =
		Fees({
			buyTotalFees: 0,
			buyMarketingFee: 0,
			buyDevFee: 0,
			buyLiquidityFee: 0,
			sellTotalFees: 0,
			sellMarketingFee: 0,
			sellDevFee: 0,
			sellLiquidityFee: 0
		});

	uint256 public tokensForMarketing;
	uint256 public tokensForLiquidity;
	uint256 public tokensForDev;
	uint256 private taxTill;
	// exclude from fees and max transaction amount
	mapping(address => bool) private _isExcludedFromFees;
	mapping(address => bool) public _isExcludedMaxTransactionAmount;
	mapping(address => bool) public _isExcludedMaxWalletAmount;

	// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
	// could be subject to a maximum transfer amount
	mapping(address => bool) public marketPair;
	mapping(address => bool) public _isBlacklisted;

	event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived);

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

	constructor(
		address _marketingWallet,
		address _devWallet,
		string memory _name,
		string memory _symbol,
		uint256 _totalSupply,
		uint256 _prelaunchAmount,
		address _prelaunch
	) ERC20(_name, _symbol) {
		router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

		uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

		_isExcludedMaxTransactionAmount[address(router)] = true;
		_isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;
		_isExcludedMaxTransactionAmount[owner()] = true;
		_isExcludedMaxTransactionAmount[address(this)] = true;
		_isExcludedMaxTransactionAmount[_prelaunch] = true;

		_isExcludedFromFees[owner()] = true;
		_isExcludedFromFees[_prelaunch] = true;
		_isExcludedFromFees[address(this)] = true;

		_isExcludedMaxWalletAmount[owner()] = true;
		_isExcludedMaxWalletAmount[address(this)] = true;
		_isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;
		_isExcludedMaxWalletAmount[_prelaunch] = true;

		marketPair[address(uniswapV2Pair)] = true;

		approve(address(router), type(uint256).max);

		maxBuyAmount = (_totalSupply * 2) / 100; // 2% maxTransactionAmountTxn
		maxSellAmount = (_totalSupply * 2) / 100; // 2% maxTransactionAmountTxn
		maxWalletAmount = (_totalSupply * 2) / 100; // 2% maxWallet
		thresholdSwapAmount = (_totalSupply * 1) / 10000; // 0.01% swap wallet

		_fees.buyMarketingFee = 1;
		_fees.buyLiquidityFee = 1;
		_fees.buyDevFee = 1;
		_fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee;

		_fees.sellMarketingFee = 1;
		_fees.sellLiquidityFee = 1;
		_fees.sellDevFee = 1;
		_fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee;

		marketingWallet = _marketingWallet;
		devWallet = _devWallet;

		_mint(msg.sender, _totalSupply - _prelaunchAmount);
		_mint(_prelaunch, _prelaunchAmount);
	}

	receive() external payable {}

	// once enabled, can never be turned off
	function swapTrading() external onlyOwner {
		isTrading = true;
		swapEnabled = true;
		taxTill = block.number + 2;
	}

	// change the minimum amount of tokens to sell from fees
	function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns (bool) {
		thresholdSwapAmount = newAmount;
		return true;
	}

	function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
		require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "maxBuyAmount must be higher than 1%");
		require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "maxSellAmount must be higher than 1%");
		maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
		maxSellAmount = (totalSupply() * newMaxSell) / 1000;
	}

	function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
		require(
			((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100),
			"Cannot set maxWallet lower than 1%"
		);
		maxWalletAmount = (totalSupply() * newPercentage) / 1000;
	}

	// only use to disable contract sales if absolutely necessary (emergency use only)
	function toggleSwapEnabled(bool enabled) external onlyOwner {
		swapEnabled = enabled;
	}

	function blacklistAddress(address account, bool value) external onlyOwner {
		_isBlacklisted[account] = value;
	}

	function updateFees(
		uint8 _marketingFeeBuy,
		uint8 _liquidityFeeBuy,
		uint8 _devFeeBuy,
		uint8 _marketingFeeSell,
		uint8 _liquidityFeeSell,
		uint8 _devFeeSell
	) external onlyOwner {
		_fees.buyMarketingFee = _marketingFeeBuy;
		_fees.buyLiquidityFee = _liquidityFeeBuy;
		_fees.buyDevFee = _devFeeBuy;
		_fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee;

		_fees.sellMarketingFee = _marketingFeeSell;
		_fees.sellLiquidityFee = _liquidityFeeSell;
		_fees.sellDevFee = _devFeeSell;
		_fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee;
		require(_fees.buyTotalFees <= 30, "Must keep fees at 30% or less");
		require(_fees.sellTotalFees <= 30, "Must keep fees at 30% or less");
	}

	function excludeFromFees(address account, bool excluded) public onlyOwner {
		_isExcludedFromFees[account] = excluded;
	}

	function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
		_isExcludedMaxWalletAmount[account] = excluded;
	}

	function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
		_isExcludedMaxTransactionAmount[updAds] = isEx;
	}

	function setMarketPair(address pair, bool value) public onlyOwner {
		require(pair != uniswapV2Pair, "Must keep uniswapV2Pair");
		marketPair[pair] = value;
	}

	function setWallets(address _marketingWallet, address _devWallet) external onlyOwner {
		marketingWallet = _marketingWallet;
		devWallet = _devWallet;
	}

	function isExcludedFromFees(address account) public view returns (bool) {
		return _isExcludedFromFees[account];
	}

	function _transfer(address sender, address recipient, uint256 amount) internal override {
		if (amount == 0) {
			super._transfer(sender, recipient, 0);
			return;
		}

		if (sender != owner() && recipient != owner() && !isSwapping) {
			if (!isTrading) {
				require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
			}
			if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
				require(amount <= maxBuyAmount, "buy transfer over max amount");
			} else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
				require(amount <= maxSellAmount, "Sell transfer over max amount");
			}

			if (!_isExcludedMaxWalletAmount[recipient]) {
				require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
			}
			require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "Blacklisted address");
		}

		uint256 contractTokenBalance = balanceOf(address(this));

		bool canSwap = contractTokenBalance >= thresholdSwapAmount;

		if (
			canSwap &&
			swapEnabled &&
			!isSwapping &&
			marketPair[recipient] &&
			!_isExcludedFromFees[sender] &&
			!_isExcludedFromFees[recipient]
		) {
			swapBack();
		}

		bool takeFee = !isSwapping;

		// if any account belongs to _isExcludedFromFee account then remove the fee
		if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
			takeFee = false;
		}

		// only take fees on buys/sells, do not take on wallet transfers
		if (takeFee) {
			uint256 fees = 0;
			if (block.number < taxTill) {
				fees = (amount * 99) / 100;
				tokensForMarketing += (fees * 94) / 99;
				tokensForDev += (fees * 5) / 99;
			} else if (marketPair[recipient] && _fees.sellTotalFees > 0) {
				fees = (amount * _fees.sellTotalFees) / 100;
				tokensForLiquidity += (fees * _fees.sellLiquidityFee) / _fees.sellTotalFees;
				tokensForMarketing += (fees * _fees.sellMarketingFee) / _fees.sellTotalFees;
				tokensForDev += (fees * _fees.sellDevFee) / _fees.sellTotalFees;
			}
			// on buy
			else if (marketPair[sender] && _fees.buyTotalFees > 0) {
				fees = (amount * _fees.buyTotalFees) / 100;
				tokensForLiquidity += (fees * _fees.buyLiquidityFee) / _fees.buyTotalFees;
				tokensForMarketing += (fees * _fees.buyMarketingFee) / _fees.buyTotalFees;
				tokensForDev += (fees * _fees.buyDevFee) / _fees.buyTotalFees;
			}

			if (fees > 0) {
				super._transfer(sender, address(this), fees);
			}

			amount -= fees;
		}

		super._transfer(sender, recipient, amount);
	}

	function swapTokensForEth(uint256 tAmount) private {
		// generate the uniswap pair path of token -> weth
		address[] memory path = new address[](2);
		path[0] = address(this);
		path[1] = router.WETH();

		_approve(address(this), address(router), tAmount);

		// make the swap
		router.swapExactTokensForETHSupportingFeeOnTransferTokens(
			tAmount,
			0, // accept any amount of ETH
			path,
			address(this),
			block.timestamp
		);
	}

	function addLiquidity(uint256 tAmount, uint256 ethAmount) private {
		// approve token transfer to cover all possible scenarios
		_approve(address(this), address(router), tAmount);

		// add the liquidity
		router.addLiquidityETH{ value: ethAmount }(address(this), tAmount, 0, 0, address(this), block.timestamp);
	}

	function swapBack() private lockTheSwap {
		uint256 contractTokenBalance = balanceOf(address(this));
		uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
		bool success;

		if (contractTokenBalance == 0 || toSwap == 0) {
			return;
		}

		if (contractTokenBalance > thresholdSwapAmount * 20) {
			contractTokenBalance = thresholdSwapAmount * 20;
		}

		// Halve the amount of liquidity tokens
		uint256 liquidityTokens = (contractTokenBalance * tokensForLiquidity) / toSwap / 2;
		uint256 amountToSwapForETH = contractTokenBalance - liquidityTokens;

		uint256 initialETHBalance = address(this).balance;

		swapTokensForEth(amountToSwapForETH);

		uint256 newBalance = address(this).balance - initialETHBalance;

		uint256 ethForMarketing = (newBalance * tokensForMarketing) / toSwap;
		uint256 ethForDev = (newBalance * tokensForDev) / toSwap;
		uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDev);

		tokensForLiquidity = 0;
		tokensForMarketing = 0;
		tokensForDev = 0;

		if (liquidityTokens > 0 && ethForLiquidity > 0) {
			addLiquidity(liquidityTokens, ethForLiquidity);
			emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
		}

		(success, ) = address(devWallet).call{ value: (address(this).balance - ethForMarketing) }("");
		(success, ) = address(marketingWallet).call{ value: address(this).balance }("");
	}
}

File 2 of 8 : 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 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 8 : 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 5 of 8 : 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 6 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_prelaunchAmount","type":"uint256"},{"internalType":"address","name":"_prelaunch","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint8","name":"buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"buyMarketingFee","type":"uint8"},{"internalType":"uint8","name":"buyDevFee","type":"uint8"},{"internalType":"uint8","name":"buyLiquidityFee","type":"uint8"},{"internalType":"uint8","name":"sellTotalFees","type":"uint8"},{"internalType":"uint8","name":"sellMarketingFee","type":"uint8"},{"internalType":"uint8","name":"sellDevFee","type":"uint8"},{"internalType":"uint8","name":"sellLiquidityFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_marketingFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_devFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeSell","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeSell","type":"uint8"},{"internalType":"uint8","name":"_devFeeSell","type":"uint8"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff191690556101c0604052600060c081905260e08190526101008190526101208190526101408190526101608190526101808190526101a052600d80546001600160401b03191690553480156200005b57600080fd5b50604051620032ec380380620032ec8339810160408190526200007e91620008f5565b848460036200008e838262000a39565b5060046200009d828262000a39565b505050620000ba620000b46200058b60201b60201c565b6200058f565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000110573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000136919062000b05565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000186573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ac919062000b05565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000b05565b6001600160a01b0390811660a081905260805190911660009081526013602081905260408083208054600160ff19918216811790925594845290832080549094168117909355906200027a6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526013909352818320805485166001908117909155908516835290822080549093168117909255601290620002e76005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790559085168152601290925280822080548416600190811790915530835290822080549093168117909255601490620003546005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526014845282812080548616600190811790915560a0518316808352848320805488168317905592871682528382208054871682179055918152601590935291208054909216179055608051620003de90600019620005e1565b506064620003ee84600262000b40565b620003fa919062000b5a565b60085560646200040c84600262000b40565b62000418919062000b5a565b60095560646200042a84600262000b40565b62000436919062000b5a565b600a556127106200044984600162000b40565b62000455919062000b5a565b600b55600d805463ffffff0019166301010100179081905560ff62010000820481169162000493916301000000820481169161010090041662000b7d565b6200049f919062000b7d565b600d80546501000000000060ff93841665ff00000000ff1990921691909117811761ffff60301b1916670101000000000000179182905566010000000000008204831692620004ff92670100000000000000810482169290041662000b7d565b6200050b919062000b7d565b600d805460ff929092166401000000000260ff60201b19909216919091179055600780546001600160a01b03808a166001600160a01b031992831617909255600680549289169290911691909117905562000572336200056c848662000b99565b620005fd565b6200057e8183620005fd565b5050505050505062000bc5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600033620005f1818585620006e6565b60019150505b92915050565b6001600160a01b038216620006595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200066d919062000baf565b90915550506001600160a01b038216600090815260208190526040812080548392906200069c90849062000baf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166200074a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000650565b6001600160a01b038216620007ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000650565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b80516001600160a01b03811681146200082b57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200085857600080fd5b81516001600160401b038082111562000875576200087562000830565b604051601f8301601f19908116603f01168101908282118183101715620008a057620008a062000830565b81604052838152602092508683858801011115620008bd57600080fd5b600091505b83821015620008e15785820183015181830184015290820190620008c2565b600093810190920192909252949350505050565b600080600080600080600060e0888a0312156200091157600080fd5b6200091c8862000813565b96506200092c6020890162000813565b60408901519096506001600160401b03808211156200094a57600080fd5b620009588b838c0162000846565b965060608a01519150808211156200096f57600080fd5b506200097e8a828b0162000846565b9450506080880151925060a088015191506200099d60c0890162000813565b905092959891949750929550565b600181811c90821680620009c057607f821691505b602082108103620009e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080e57600081815260208120601f850160051c8101602086101562000a105750805b601f850160051c820191505b8181101562000a315782815560010162000a1c565b505050505050565b81516001600160401b0381111562000a555762000a5562000830565b62000a6d8162000a668454620009ab565b84620009e7565b602080601f83116001811462000aa5576000841562000a8c5750858301515b600019600386901b1c1916600185901b17855562000a31565b600085815260208120601f198616915b8281101562000ad65788860151825594840194600190910190840162000ab5565b508582101562000af55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000b1857600080fd5b62000b238262000813565b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005f757620005f762000b2a565b60008262000b7857634e487b7160e01b600052601260045260246000fd5b500490565b60ff8181168382160190811115620005f757620005f762000b2a565b81810381811115620005f757620005f762000b2a565b80820180821115620005f757620005f762000b2a565b60805160a0516126d762000c15600039600081816104410152610ff001526000818161086001528181612044015281816120fd01528181612139015281816121ab015261220701526126d76000f3fe60806040526004361061023f5760003560e01c80637571336a1161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610798578063e16830a8146107de578063f2fde38b146107fe578063f5b3c3bf1461081e578063f887ea401461084e57600080fd5b8063c02466681461066c578063c16dd4a41461068c578063c18bc195146106ac578063d212a69a146106cc578063d3f6a1571461077857600080fd5b80639fccce32116100f25780639fccce32146105e1578063a457c2d7146105f7578063a9059cbb14610617578063b886311514610637578063b9e418e71461065757600080fd5b80637571336a1461053e5780638da5cb5b1461055e5780638ea5220f1461057c57806395d89b411461059c57806396880b17146105b157600080fd5b8063313ce567116101bc5780634fbee193116101805780634fbee1931461047b578063555467a1146104b45780636ddd1713146104d457806370a08231146104f3578063715018a61461052957600080fd5b8063313ce567146103b35780633265e846146103cf57806339509351146103ef578063455a43961461040f57806349bd5a5e1461042f57600080fd5b80631a8145bb116102035780631a8145bb146103175780631c6e8a751461032d5780631cdd3be31461034d5780631f3fed8f1461037d57806323b872dd1461039357600080fd5b806306fdde031461024b578063095ea7b31461027657806310d5de53146102a657806311a582c3146102d657806318160ddd146102f857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610882565b60405161026d9190612285565b60405180910390f35b34801561028257600080fd5b506102966102913660046122e8565b610914565b604051901515815260200161026d565b3480156102b257600080fd5b506102966102c1366004612314565b60136020526000908152604090205460ff1681565b3480156102e257600080fd5b506102f66102f1366004612338565b61092e565b005b34801561030457600080fd5b506002545b60405190815260200161026d565b34801561032357600080fd5b50610309600f5481565b34801561033957600080fd5b506102f661034836600461236a565b610acd565b34801561035957600080fd5b50610296610368366004612314565b60166020526000908152604090205460ff1681565b34801561038957600080fd5b50610309600e5481565b34801561039f57600080fd5b506102966103ae366004612385565b610b11565b3480156103bf57600080fd5b506040516012815260200161026d565b3480156103db57600080fd5b506102f66103ea3660046123d7565b610b35565b3480156103fb57600080fd5b5061029661040a3660046122e8565b610d1d565b34801561041b57600080fd5b506102f661042a36600461244b565b610d5c565b34801561043b57600080fd5b506104637f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b34801561048757600080fd5b50610296610496366004612314565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104c057600080fd5b506102966104cf366004612480565b610db1565b3480156104e057600080fd5b50600c5461029690610100900460ff1681565b3480156104ff57600080fd5b5061030961050e366004612314565b6001600160a01b031660009081526020819052604090205490565b34801561053557600080fd5b506102f6610dec565b34801561054a57600080fd5b506102f661055936600461244b565b610e22565b34801561056a57600080fd5b506005546001600160a01b0316610463565b34801561058857600080fd5b50600654610463906001600160a01b031681565b3480156105a857600080fd5b50610260610e77565b3480156105bd57600080fd5b506102966105cc366004612314565b60146020526000908152604090205460ff1681565b3480156105ed57600080fd5b5061030960105481565b34801561060357600080fd5b506102966106123660046122e8565b610e86565b34801561062357600080fd5b506102966106323660046122e8565b610f18565b34801561064357600080fd5b50600c546102969062010000900460ff1681565b34801561066357600080fd5b506102f6610f26565b34801561067857600080fd5b506102f661068736600461244b565b610f6f565b34801561069857600080fd5b506102f66106a736600461244b565b610fc4565b3480156106b857600080fd5b506102f66106c7366004612480565b61109a565b3480156106d857600080fd5b50600d5461072c9060ff80821691610100810482169162010000820481169163010000008104821691600160201b8204811691650100000000008104821691600160301b8204811691600160381b90041688565b6040805160ff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e08201526101000161026d565b34801561078457600080fd5b506102f6610793366004612499565b61117a565b3480156107a457600080fd5b506103096107b3366004612499565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107ea57600080fd5b506102f66107f936600461244b565b6111d2565b34801561080a57600080fd5b506102f6610819366004612314565b611227565b34801561082a57600080fd5b50610296610839366004612314565b60156020526000908152604090205460ff1681565b34801561085a57600080fd5b506104637f000000000000000000000000000000000000000000000000000000000000000081565b606060038054610891906124d2565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd906124d2565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000336109228185856112c2565b60019150505b92915050565b6005546001600160a01b031633146109615760405162461bcd60e51b81526004016109589061250c565b60405180910390fd5b606461096c60025490565b6109769190612557565b6103e88361098360025490565b61098d9190612579565b6109979190612557565b10156109f15760405162461bcd60e51b815260206004820152602360248201527f6d6178427579416d6f756e74206d75737420626520686967686572207468616e60448201526220312560e81b6064820152608401610958565b60646109fc60025490565b610a069190612557565b6103e882610a1360025490565b610a1d9190612579565b610a279190612557565b1015610a815760405162461bcd60e51b8152602060048201526024808201527f6d617853656c6c416d6f756e74206d75737420626520686967686572207468616044820152636e20312560e01b6064820152608401610958565b6103e882610a8e60025490565b610a989190612579565b610aa29190612557565b6008556103e881610ab260025490565b610abc9190612579565b610ac69190612557565b6009555050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109589061250c565b600c80549115156101000261ff0019909216919091179055565b600033610b1f8582856113e6565b610b2a858585611478565b506001949350505050565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b81526004016109589061250c565b600d805463ff00ff00191661010060ff898116820263ff000000191692909217630100000089841681029190911762ff0000191662010000898516810291909117948590558404831693610bbb93918104821692900416612590565b610bc59190612590565b600d805460ff92831665ff00000000ff19909116176501000000000086841681029190911767ffff0000000000001916600160381b868516810266ff000000000000191691909117600160301b868616810291909117938490558304841693610c379391820481169290910416612590565b610c419190612590565b600d805460ff928316600160201b0264ff000000001982168117909255601e9183169216919091171115610cb75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610958565b600d54601e600160201b90910460ff161115610d155760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610958565b505050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109229082908690610d579087906125a9565b6112c2565b6005546001600160a01b03163314610d865760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b81526004016109589061250c565b50600b81905560015b919050565b6005546001600160a01b03163314610e165760405162461bcd60e51b81526004016109589061250c565b610e206000611b79565b565b6005546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b606060048054610891906124d2565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610958565b610b2a82868684036112c2565b600033610922818585611478565b6005546001600160a01b03163314610f505760405162461bcd60e51b81526004016109589061250c565b600c805461ffff1916610101179055610f6a4360026125a9565b601155565b6005546001600160a01b03163314610f995760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b81526004016109589061250c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361106f5760405162461bcd60e51b815260206004820152601760248201527f4d757374206b65657020756e69737761705632506169720000000000000000006044820152606401610958565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110c45760405162461bcd60e51b81526004016109589061250c565b60646110cf60025490565b6110d99190612557565b6103e8826110e660025490565b6110f09190612579565b6110fa9190612557565b10156111535760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610958565b6103e88161116060025490565b61116a9190612579565b6111749190612557565b600a5550565b6005546001600160a01b031633146111a45760405162461bcd60e51b81526004016109589061250c565b600780546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112515760405162461bcd60e51b81526004016109589061250c565b6001600160a01b0381166112b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610958565b6112bf81611b79565b50565b6001600160a01b0383166113245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610958565b6001600160a01b0382166113855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610958565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461147257818110156114655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610958565b61147284848484036112c2565b50505050565b806000036114915761148c83836000611bcb565b505050565b6005546001600160a01b038481169116148015906114bd57506005546001600160a01b03838116911614155b80156114d25750600c5462010000900460ff16155b156117a857600c5460ff16611565576001600160a01b03831660009081526012602052604090205460ff168061152057506001600160a01b03821660009081526012602052604090205460ff165b6115655760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610958565b6001600160a01b03831660009081526015602052604090205460ff1680156115a657506001600160a01b03821660009081526013602052604090205460ff16155b15611602576008548111156115fd5760405162461bcd60e51b815260206004820152601c60248201527f627579207472616e73666572206f766572206d617820616d6f756e74000000006044820152606401610958565b61169a565b6001600160a01b03821660009081526015602052604090205460ff16801561164357506001600160a01b03831660009081526013602052604090205460ff16155b1561169a5760095481111561169a5760405162461bcd60e51b815260206004820152601d60248201527f53656c6c207472616e73666572206f766572206d617820616d6f756e740000006044820152606401610958565b6001600160a01b03821660009081526014602052604090205460ff1661172457600a546001600160a01b0383166000908152602081905260409020546116e090836125a9565b11156117245760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610958565b6001600160a01b03831660009081526016602052604090205460ff1615801561176657506001600160a01b03821660009081526016602052604090205460ff16155b6117a85760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610958565b30600090815260208190526040902054600b54811080159081906117d35750600c54610100900460ff165b80156117e85750600c5462010000900460ff16155b801561180c57506001600160a01b03841660009081526015602052604090205460ff165b801561183157506001600160a01b03851660009081526012602052604090205460ff16155b801561185657506001600160a01b03841660009081526012602052604090205460ff16155b1561186357611863611d99565b600c546001600160a01b03861660009081526012602052604090205460ff620100009092048216159116806118b057506001600160a01b03851660009081526012602052604090205460ff165b156118b9575060005b8015611b6e5760006011544310156119455760646118d8866063612579565b6118e29190612557565b905060636118f182605e612579565b6118fb9190612557565b600e600082825461190c91906125a9565b909155506063905061191f826005612579565b6119299190612557565b6010600082825461193a91906125a9565b90915550611b4f9050565b6001600160a01b03861660009081526015602052604090205460ff1680156119785750600d54600160201b900460ff1615155b15611a4c57600d5460649061199790600160201b900460ff1687612579565b6119a19190612557565b600d5490915060ff600160201b82048116916119c691600160381b9091041683612579565b6119d09190612557565b600f60008282546119e191906125a9565b9091555050600d5460ff600160201b8204811691611a0a91650100000000009091041683612579565b611a149190612557565b600e6000828254611a2591906125a9565b9091555050600d5460ff600160201b820481169161191f91600160301b9091041683612579565b6001600160a01b03871660009081526015602052604090205460ff168015611a785750600d5460ff1615155b15611b4f57600d54606490611a909060ff1687612579565b611a9a9190612557565b600d5490915060ff80821691611ab99163010000009091041683612579565b611ac39190612557565b600f6000828254611ad491906125a9565b9091555050600d5460ff80821691611af3916101009091041683612579565b611afd9190612557565b600e6000828254611b0e91906125a9565b9091555050600d5460ff80821691611b2e91620100009091041683612579565b611b389190612557565b60106000828254611b4991906125a9565b90915550505b8015611b6057611b60873083611bcb565b611b6a81866125bc565b9450505b610d15868686611bcb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c2f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610958565b6001600160a01b038216611c915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610958565b6001600160a01b03831660009081526020819052604090205481811015611d095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610958565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d409084906125a9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8c91815260200190565b60405180910390a3611472565b600c805462ff00001916620100001790553060009081526020819052604081205490506000601054600e54600f54611dd191906125a9565b611ddb91906125a9565b90506000821580611dea575081155b15611df757505050611fdf565b600b54611e05906014612579565b831115611e1d57600b54611e1a906014612579565b92505b6000600283600f5486611e309190612579565b611e3a9190612557565b611e449190612557565b90506000611e5282866125bc565b905047611e5e82611fed565b6000611e6a82476125bc565b9050600086600e5483611e7d9190612579565b611e879190612557565b905060008760105484611e9a9190612579565b611ea49190612557565b90506000611eb282846125a9565b611ebc90856125bc565b6000600f819055600e81905560105590508615801590611edc5750600081115b15611f2557611eeb87826121a5565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b0316611f3b84476125bc565b604051600081818185875af1925050503d8060008114611f77576040519150601f19603f3d011682016040523d82523d6000602084013e611f7c565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611fcc576040519150601f19603f3d011682016040523d82523d6000602084013e611fd1565b606091505b505050505050505050505050505b600c805462ff000019169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612022576120226125cf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c491906125e5565b816001815181106120d7576120d76125cf565b60200260200101906001600160a01b031690816001600160a01b031681525050612122307f0000000000000000000000000000000000000000000000000000000000000000846112c2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612177908590600090869030904290600401612602565b600060405180830381600087803b15801561219157600080fd5b505af1158015610d15573d6000803e3d6000fd5b6121d0307f0000000000000000000000000000000000000000000000000000000000000000846112c2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612259573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061227e9190612673565b5050505050565b600060208083528351808285015260005b818110156122b257858101830151858201604001528201612296565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112bf57600080fd5b600080604083850312156122fb57600080fd5b8235612306816122d3565b946020939093013593505050565b60006020828403121561232657600080fd5b8135612331816122d3565b9392505050565b6000806040838503121561234b57600080fd5b50508035926020909101359150565b80358015158114610de757600080fd5b60006020828403121561237c57600080fd5b6123318261235a565b60008060006060848603121561239a57600080fd5b83356123a5816122d3565b925060208401356123b5816122d3565b929592945050506040919091013590565b803560ff81168114610de757600080fd5b60008060008060008060c087890312156123f057600080fd5b6123f9876123c6565b9550612407602088016123c6565b9450612415604088016123c6565b9350612423606088016123c6565b9250612431608088016123c6565b915061243f60a088016123c6565b90509295509295509295565b6000806040838503121561245e57600080fd5b8235612469816122d3565b91506124776020840161235a565b90509250929050565b60006020828403121561249257600080fd5b5035919050565b600080604083850312156124ac57600080fd5b82356124b7816122d3565b915060208301356124c7816122d3565b809150509250929050565b600181811c908216806124e657607f821691505b60208210810361250657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261257457634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761092857610928612541565b60ff818116838216019081111561092857610928612541565b8082018082111561092857610928612541565b8181038181111561092857610928612541565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125f757600080fd5b8151612331816122d3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126525784516001600160a01b03168352938301939183019160010161262d565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561268857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207e17eae4d76b2dbea1c50c09b8828bef8f602eafdccc1a42fad964cf55147bfb64736f6c63430008130033000000000000000000000000353df62a0ae544821804c8481fbdb8255b2de1190000000000000000000000007366765efedb7965197f46ffbc8d9eccc78aeb5600000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000009c6d7f37dd59d31528426395e86f560ee67a5e910000000000000000000000000000000000000000000000000000000000000005756e5553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005756e555344000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80637571336a1161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610798578063e16830a8146107de578063f2fde38b146107fe578063f5b3c3bf1461081e578063f887ea401461084e57600080fd5b8063c02466681461066c578063c16dd4a41461068c578063c18bc195146106ac578063d212a69a146106cc578063d3f6a1571461077857600080fd5b80639fccce32116100f25780639fccce32146105e1578063a457c2d7146105f7578063a9059cbb14610617578063b886311514610637578063b9e418e71461065757600080fd5b80637571336a1461053e5780638da5cb5b1461055e5780638ea5220f1461057c57806395d89b411461059c57806396880b17146105b157600080fd5b8063313ce567116101bc5780634fbee193116101805780634fbee1931461047b578063555467a1146104b45780636ddd1713146104d457806370a08231146104f3578063715018a61461052957600080fd5b8063313ce567146103b35780633265e846146103cf57806339509351146103ef578063455a43961461040f57806349bd5a5e1461042f57600080fd5b80631a8145bb116102035780631a8145bb146103175780631c6e8a751461032d5780631cdd3be31461034d5780631f3fed8f1461037d57806323b872dd1461039357600080fd5b806306fdde031461024b578063095ea7b31461027657806310d5de53146102a657806311a582c3146102d657806318160ddd146102f857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610882565b60405161026d9190612285565b60405180910390f35b34801561028257600080fd5b506102966102913660046122e8565b610914565b604051901515815260200161026d565b3480156102b257600080fd5b506102966102c1366004612314565b60136020526000908152604090205460ff1681565b3480156102e257600080fd5b506102f66102f1366004612338565b61092e565b005b34801561030457600080fd5b506002545b60405190815260200161026d565b34801561032357600080fd5b50610309600f5481565b34801561033957600080fd5b506102f661034836600461236a565b610acd565b34801561035957600080fd5b50610296610368366004612314565b60166020526000908152604090205460ff1681565b34801561038957600080fd5b50610309600e5481565b34801561039f57600080fd5b506102966103ae366004612385565b610b11565b3480156103bf57600080fd5b506040516012815260200161026d565b3480156103db57600080fd5b506102f66103ea3660046123d7565b610b35565b3480156103fb57600080fd5b5061029661040a3660046122e8565b610d1d565b34801561041b57600080fd5b506102f661042a36600461244b565b610d5c565b34801561043b57600080fd5b506104637f0000000000000000000000004af2b9b7a4cafbf278dea8afaeba1bd0573b67e681565b6040516001600160a01b03909116815260200161026d565b34801561048757600080fd5b50610296610496366004612314565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104c057600080fd5b506102966104cf366004612480565b610db1565b3480156104e057600080fd5b50600c5461029690610100900460ff1681565b3480156104ff57600080fd5b5061030961050e366004612314565b6001600160a01b031660009081526020819052604090205490565b34801561053557600080fd5b506102f6610dec565b34801561054a57600080fd5b506102f661055936600461244b565b610e22565b34801561056a57600080fd5b506005546001600160a01b0316610463565b34801561058857600080fd5b50600654610463906001600160a01b031681565b3480156105a857600080fd5b50610260610e77565b3480156105bd57600080fd5b506102966105cc366004612314565b60146020526000908152604090205460ff1681565b3480156105ed57600080fd5b5061030960105481565b34801561060357600080fd5b506102966106123660046122e8565b610e86565b34801561062357600080fd5b506102966106323660046122e8565b610f18565b34801561064357600080fd5b50600c546102969062010000900460ff1681565b34801561066357600080fd5b506102f6610f26565b34801561067857600080fd5b506102f661068736600461244b565b610f6f565b34801561069857600080fd5b506102f66106a736600461244b565b610fc4565b3480156106b857600080fd5b506102f66106c7366004612480565b61109a565b3480156106d857600080fd5b50600d5461072c9060ff80821691610100810482169162010000820481169163010000008104821691600160201b8204811691650100000000008104821691600160301b8204811691600160381b90041688565b6040805160ff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e08201526101000161026d565b34801561078457600080fd5b506102f6610793366004612499565b61117a565b3480156107a457600080fd5b506103096107b3366004612499565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107ea57600080fd5b506102f66107f936600461244b565b6111d2565b34801561080a57600080fd5b506102f6610819366004612314565b611227565b34801561082a57600080fd5b50610296610839366004612314565b60156020526000908152604090205460ff1681565b34801561085a57600080fd5b506104637f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b606060038054610891906124d2565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd906124d2565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000336109228185856112c2565b60019150505b92915050565b6005546001600160a01b031633146109615760405162461bcd60e51b81526004016109589061250c565b60405180910390fd5b606461096c60025490565b6109769190612557565b6103e88361098360025490565b61098d9190612579565b6109979190612557565b10156109f15760405162461bcd60e51b815260206004820152602360248201527f6d6178427579416d6f756e74206d75737420626520686967686572207468616e60448201526220312560e81b6064820152608401610958565b60646109fc60025490565b610a069190612557565b6103e882610a1360025490565b610a1d9190612579565b610a279190612557565b1015610a815760405162461bcd60e51b8152602060048201526024808201527f6d617853656c6c416d6f756e74206d75737420626520686967686572207468616044820152636e20312560e01b6064820152608401610958565b6103e882610a8e60025490565b610a989190612579565b610aa29190612557565b6008556103e881610ab260025490565b610abc9190612579565b610ac69190612557565b6009555050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109589061250c565b600c80549115156101000261ff0019909216919091179055565b600033610b1f8582856113e6565b610b2a858585611478565b506001949350505050565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b81526004016109589061250c565b600d805463ff00ff00191661010060ff898116820263ff000000191692909217630100000089841681029190911762ff0000191662010000898516810291909117948590558404831693610bbb93918104821692900416612590565b610bc59190612590565b600d805460ff92831665ff00000000ff19909116176501000000000086841681029190911767ffff0000000000001916600160381b868516810266ff000000000000191691909117600160301b868616810291909117938490558304841693610c379391820481169290910416612590565b610c419190612590565b600d805460ff928316600160201b0264ff000000001982168117909255601e9183169216919091171115610cb75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610958565b600d54601e600160201b90910460ff161115610d155760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610958565b505050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109229082908690610d579087906125a9565b6112c2565b6005546001600160a01b03163314610d865760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610dde5760405162461bcd60e51b81526004016109589061250c565b50600b81905560015b919050565b6005546001600160a01b03163314610e165760405162461bcd60e51b81526004016109589061250c565b610e206000611b79565b565b6005546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b606060048054610891906124d2565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610958565b610b2a82868684036112c2565b600033610922818585611478565b6005546001600160a01b03163314610f505760405162461bcd60e51b81526004016109589061250c565b600c805461ffff1916610101179055610f6a4360026125a9565b601155565b6005546001600160a01b03163314610f995760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b81526004016109589061250c565b7f0000000000000000000000004af2b9b7a4cafbf278dea8afaeba1bd0573b67e66001600160a01b0316826001600160a01b03160361106f5760405162461bcd60e51b815260206004820152601760248201527f4d757374206b65657020756e69737761705632506169720000000000000000006044820152606401610958565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110c45760405162461bcd60e51b81526004016109589061250c565b60646110cf60025490565b6110d99190612557565b6103e8826110e660025490565b6110f09190612579565b6110fa9190612557565b10156111535760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610958565b6103e88161116060025490565b61116a9190612579565b6111749190612557565b600a5550565b6005546001600160a01b031633146111a45760405162461bcd60e51b81526004016109589061250c565b600780546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b81526004016109589061250c565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112515760405162461bcd60e51b81526004016109589061250c565b6001600160a01b0381166112b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610958565b6112bf81611b79565b50565b6001600160a01b0383166113245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610958565b6001600160a01b0382166113855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610958565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461147257818110156114655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610958565b61147284848484036112c2565b50505050565b806000036114915761148c83836000611bcb565b505050565b6005546001600160a01b038481169116148015906114bd57506005546001600160a01b03838116911614155b80156114d25750600c5462010000900460ff16155b156117a857600c5460ff16611565576001600160a01b03831660009081526012602052604090205460ff168061152057506001600160a01b03821660009081526012602052604090205460ff165b6115655760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610958565b6001600160a01b03831660009081526015602052604090205460ff1680156115a657506001600160a01b03821660009081526013602052604090205460ff16155b15611602576008548111156115fd5760405162461bcd60e51b815260206004820152601c60248201527f627579207472616e73666572206f766572206d617820616d6f756e74000000006044820152606401610958565b61169a565b6001600160a01b03821660009081526015602052604090205460ff16801561164357506001600160a01b03831660009081526013602052604090205460ff16155b1561169a5760095481111561169a5760405162461bcd60e51b815260206004820152601d60248201527f53656c6c207472616e73666572206f766572206d617820616d6f756e740000006044820152606401610958565b6001600160a01b03821660009081526014602052604090205460ff1661172457600a546001600160a01b0383166000908152602081905260409020546116e090836125a9565b11156117245760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610958565b6001600160a01b03831660009081526016602052604090205460ff1615801561176657506001600160a01b03821660009081526016602052604090205460ff16155b6117a85760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610958565b30600090815260208190526040902054600b54811080159081906117d35750600c54610100900460ff165b80156117e85750600c5462010000900460ff16155b801561180c57506001600160a01b03841660009081526015602052604090205460ff165b801561183157506001600160a01b03851660009081526012602052604090205460ff16155b801561185657506001600160a01b03841660009081526012602052604090205460ff16155b1561186357611863611d99565b600c546001600160a01b03861660009081526012602052604090205460ff620100009092048216159116806118b057506001600160a01b03851660009081526012602052604090205460ff165b156118b9575060005b8015611b6e5760006011544310156119455760646118d8866063612579565b6118e29190612557565b905060636118f182605e612579565b6118fb9190612557565b600e600082825461190c91906125a9565b909155506063905061191f826005612579565b6119299190612557565b6010600082825461193a91906125a9565b90915550611b4f9050565b6001600160a01b03861660009081526015602052604090205460ff1680156119785750600d54600160201b900460ff1615155b15611a4c57600d5460649061199790600160201b900460ff1687612579565b6119a19190612557565b600d5490915060ff600160201b82048116916119c691600160381b9091041683612579565b6119d09190612557565b600f60008282546119e191906125a9565b9091555050600d5460ff600160201b8204811691611a0a91650100000000009091041683612579565b611a149190612557565b600e6000828254611a2591906125a9565b9091555050600d5460ff600160201b820481169161191f91600160301b9091041683612579565b6001600160a01b03871660009081526015602052604090205460ff168015611a785750600d5460ff1615155b15611b4f57600d54606490611a909060ff1687612579565b611a9a9190612557565b600d5490915060ff80821691611ab99163010000009091041683612579565b611ac39190612557565b600f6000828254611ad491906125a9565b9091555050600d5460ff80821691611af3916101009091041683612579565b611afd9190612557565b600e6000828254611b0e91906125a9565b9091555050600d5460ff80821691611b2e91620100009091041683612579565b611b389190612557565b60106000828254611b4991906125a9565b90915550505b8015611b6057611b60873083611bcb565b611b6a81866125bc565b9450505b610d15868686611bcb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c2f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610958565b6001600160a01b038216611c915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610958565b6001600160a01b03831660009081526020819052604090205481811015611d095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610958565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d409084906125a9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8c91815260200190565b60405180910390a3611472565b600c805462ff00001916620100001790553060009081526020819052604081205490506000601054600e54600f54611dd191906125a9565b611ddb91906125a9565b90506000821580611dea575081155b15611df757505050611fdf565b600b54611e05906014612579565b831115611e1d57600b54611e1a906014612579565b92505b6000600283600f5486611e309190612579565b611e3a9190612557565b611e449190612557565b90506000611e5282866125bc565b905047611e5e82611fed565b6000611e6a82476125bc565b9050600086600e5483611e7d9190612579565b611e879190612557565b905060008760105484611e9a9190612579565b611ea49190612557565b90506000611eb282846125a9565b611ebc90856125bc565b6000600f819055600e81905560105590508615801590611edc5750600081115b15611f2557611eeb87826121a5565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b0316611f3b84476125bc565b604051600081818185875af1925050503d8060008114611f77576040519150601f19603f3d011682016040523d82523d6000602084013e611f7c565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611fcc576040519150601f19603f3d011682016040523d82523d6000602084013e611fd1565b606091505b505050505050505050505050505b600c805462ff000019169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612022576120226125cf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c491906125e5565b816001815181106120d7576120d76125cf565b60200260200101906001600160a01b031690816001600160a01b031681525050612122307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112c2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612177908590600090869030904290600401612602565b600060405180830381600087803b15801561219157600080fd5b505af1158015610d15573d6000803e3d6000fd5b6121d0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112c2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612259573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061227e9190612673565b5050505050565b600060208083528351808285015260005b818110156122b257858101830151858201604001528201612296565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112bf57600080fd5b600080604083850312156122fb57600080fd5b8235612306816122d3565b946020939093013593505050565b60006020828403121561232657600080fd5b8135612331816122d3565b9392505050565b6000806040838503121561234b57600080fd5b50508035926020909101359150565b80358015158114610de757600080fd5b60006020828403121561237c57600080fd5b6123318261235a565b60008060006060848603121561239a57600080fd5b83356123a5816122d3565b925060208401356123b5816122d3565b929592945050506040919091013590565b803560ff81168114610de757600080fd5b60008060008060008060c087890312156123f057600080fd5b6123f9876123c6565b9550612407602088016123c6565b9450612415604088016123c6565b9350612423606088016123c6565b9250612431608088016123c6565b915061243f60a088016123c6565b90509295509295509295565b6000806040838503121561245e57600080fd5b8235612469816122d3565b91506124776020840161235a565b90509250929050565b60006020828403121561249257600080fd5b5035919050565b600080604083850312156124ac57600080fd5b82356124b7816122d3565b915060208301356124c7816122d3565b809150509250929050565b600181811c908216806124e657607f821691505b60208210810361250657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261257457634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761092857610928612541565b60ff818116838216019081111561092857610928612541565b8082018082111561092857610928612541565b8181038181111561092857610928612541565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125f757600080fd5b8151612331816122d3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126525784516001600160a01b03168352938301939183019160010161262d565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561268857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207e17eae4d76b2dbea1c50c09b8828bef8f602eafdccc1a42fad964cf55147bfb64736f6c63430008130033

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

000000000000000000000000353df62a0ae544821804c8481fbdb8255b2de1190000000000000000000000007366765efedb7965197f46ffbc8d9eccc78aeb5600000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000009c6d7f37dd59d31528426395e86f560ee67a5e910000000000000000000000000000000000000000000000000000000000000005756e5553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005756e555344000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x353df62A0ae544821804c8481fBdB8255B2DE119
Arg [1] : _devWallet (address): 0x7366765EFedb7965197f46FfBC8d9ecCC78aeB56
Arg [2] : _name (string): unUSD
Arg [3] : _symbol (string): unUSD
Arg [4] : _totalSupply (uint256): 1000000000000000000000000000
Arg [5] : _prelaunchAmount (uint256): 100000000000000000000000000
Arg [6] : _prelaunch (address): 0x9C6d7f37dd59D31528426395e86f560EE67a5E91

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000353df62a0ae544821804c8481fbdb8255b2de119
Arg [1] : 0000000000000000000000007366765efedb7965197f46ffbc8d9eccc78aeb56
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [6] : 0000000000000000000000009c6d7f37dd59d31528426395e86f560ee67a5e91
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 756e555344000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 756e555344000000000000000000000000000000000000000000000000000000


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.