ETH Price: $3,387.81 (-1.57%)
Gas: 2 Gwei

Token

Tax (TAX)
 

Overview

Max Total Supply

1,000,000,000 TAX

Holders

272

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
144,337.067361121176142966 TAX

Value
$0.00
0xae52b79d8d7859afc2e61c81e4d39cf04ced0832
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:
Token

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-15
*/

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.7.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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/utils/Context.sol



pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/access/Ownable.sol



pragma solidity ^0.7.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.7.0;




/**
 * @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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}

// File: allzero.sol


pragma solidity ^0.7.0;



contract Token is ERC20, Ownable {
    address public uniswapV2Pair;
    uint256 public sellTax = 5; // 5%
    uint256 public buyTax = 0; // 3%
    uint256 public maxPerWallet = 10_000_000 ether; // 1%
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isBlacklisted;
    bool public tradingOpen = false;

    constructor (address _uniswapV2Pair) ERC20("Tax", "TAX") {
        _mint(msg.sender, 1_000_000_000 ether);
        uniswapV2Pair = _uniswapV2Pair;
    }

    function renounceOwnership() public override onlyOwner {
        transferOwnership(address(0x000000000000000000000000000000000000dEaD));
    }

    function setSellTax(uint256 newSellTax) external onlyOwner {
        require(newSellTax <= 100, "Sell tax too high"); // Max tax is 100%
        sellTax = newSellTax;
    }

    function setBuyTax(uint256 newBuyTax) external onlyOwner {
        require(newBuyTax <= 100, "Buy tax too high"); // Max tax is 100%
        buyTax = newBuyTax;
    }

    function setMaxPerWallet(uint256 newMaxPerWallet) external onlyOwner {
        maxPerWallet = newMaxPerWallet;
    }

    function openTrading() external onlyOwner {
        tradingOpen = true;
    }

    function excludeFromFees(address account) public onlyOwner {
        _isExcludedFromFees[account] = true;
    }

    function includeInFees(address account) public onlyOwner {
        _isExcludedFromFees[account] = false;
    }

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

    function blacklistBots(address account) public onlyOwner {
        _isBlacklisted[account] = true;
    }

    function unblacklistBot(address account) public onlyOwner {
        _isBlacklisted[account] = false;
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _isBlacklisted[account];
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "Blacklisted address");

        if (sender != owner() && recipient != owner() && sender != uniswapV2Pair && recipient != uniswapV2Pair) {
            if(maxPerWallet > 0) {
                uint256 recipientBalance = balanceOf(recipient);
                require(recipientBalance + amount <= maxPerWallet, "Transfer amount exceeds max per wallet");
            }
            require(tradingOpen, "Trading is not enabled yet");
        }

        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            super._transfer(sender, recipient, amount);
        } else {
            if (sender == uniswapV2Pair) { // if this is a buy
                uint256 taxAmount = (amount * buyTax) / 100; // calculate tax
                super._transfer(sender, address(0xCA1c620bC6D68df4fBFE801438A0f4bdF5885064), taxAmount); // burn the tax amount
                super._transfer(sender, recipient, amount - taxAmount); // transfer the rest to recipient
            } else if (recipient == uniswapV2Pair) { // if this is a sell
                uint256 taxAmount = (amount * sellTax) / 100; // calculate tax
                super._transfer(sender, address(0xCA1c620bC6D68df4fBFE801438A0f4bdF5885064), taxAmount); // burn the tax amount
                super._transfer(sender, recipient, amount - taxAmount); // transfer the rest to recipient
            } else {
                super._transfer(sender, recipient, amount); // no tax for other transfers
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[{"internalType":"address","name":"account","type":"address"}],"name":"unblacklistBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600560075560006008556a084595161401484a0000006009556000600c60006101000a81548160ff0219169083151502179055503480156200004557600080fd5b5060405162002c7e38038062002c7e833981810160405260208110156200006b57600080fd5b81019080805190602001909291905050506040518060400160405280600381526020017f54617800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5441580000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000100929190620004c3565b50806004908051906020019062000119929190620004c3565b506012600560006101000a81548160ff021916908360ff160217905550505060006200014a6200024f60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000207336b033b2e3c9fd0803ce80000006200025760201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000579565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200030f600083836200043560201b60201c565b6200032b816002546200043a60201b62001a2d1790919060201c565b60028190555062000389816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200043a60201b62001a2d1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620004b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004fb576000855562000547565b82601f106200051657805160ff191683800117855562000547565b8280016001018555821562000547579182015b828111156200054657825182559160200191906001019062000529565b5b5090506200055691906200055a565b5090565b5b80821115620005755760008160009055506001016200055b565b5090565b6126f580620005896000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063cc1776d3116100a2578063e57f14e111610071578063e57f14e114610883578063f2fde38b146108c7578063fe575a871461090b578063ffb54a9914610965576101cf565b8063cc1776d314610791578063dc1052e2146107af578063dd62ed3e146107dd578063e268e4d314610855576101cf565b8063a457c2d7116100de578063a457c2d71461067b578063a9059cbb146106df578063c9567bf914610743578063cbd69aa81461074d576101cf565b80638da5cb5b1461058057806395d89b41146105b4578063963f0efa14610637576101cf565b8063453c2310116101715780634fbee1931161014b5780634fbee1931461049657806370a08231146104f0578063715018a6146105485780638cd09d5014610552576101cf565b8063453c23101461042657806349bd5a5e146104445780634f7041a514610478576101cf565b806318160ddd116101ad57806318160ddd146102ff57806323b872dd1461031d578063313ce567146103a157806339509351146103c2576101cf565b806306fdde03146101d4578063095ea7b31461025757806316a2f82a146102bb575b600080fd5b6101dc610985565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a36004803603604081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a27565b60405180821515815260200191505060405180910390f35b6102fd600480360360208110156102d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a45565b005b610307610b4f565b6040518082815260200191505060405180910390f35b6103896004803603606081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b60405180821515815260200191505060405180910390f35b6103a9610c32565b604051808260ff16815260200191505060405180910390f35b61040e600480360360408110156103d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c49565b60405180821515815260200191505060405180910390f35b61042e610cfc565b6040518082815260200191505060405180910390f35b61044c610d02565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610480610d28565b6040518082815260200191505060405180910390f35b6104d8600480360360208110156104ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d2e565b60405180821515815260200191505060405180910390f35b6105326004803603602081101561050657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d84565b6040518082815260200191505060405180910390f35b610550610dcc565b005b61057e6004803603602081101561056857600080fd5b8101908080359060200190929190505050610e88565b005b610588610fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105bc610fe2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105fc5780820151818401526020810190506105e1565b50505050905090810190601f1680156106295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106796004803603602081101561064d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611084565b005b6106c76004803603604081101561069157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118e565b60405180821515815260200191505060405180910390f35b61072b600480360360408110156106f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b60405180821515815260200191505060405180910390f35b61074b611279565b005b61078f6004803603602081101561076357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611345565b005b61079961144f565b6040518082815260200191505060405180910390f35b6107db600480360360208110156107c557600080fd5b8101908080359060200190929190505050611455565b005b61083f600480360360408110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611585565b6040518082815260200191505060405180910390f35b6108816004803603602081101561086b57600080fd5b810190808035906020019092919050505061160c565b005b6108c56004803603602081101561089957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116c5565b005b610909600480360360208110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117cf565b005b61094d6004803603602081101561092157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119c4565b60405180821515815260200191505060405180910390f35b61096d611a1a565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3b610a34611ab5565b8484611abd565b6001905092915050565b610a4d611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610a6b610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b6000610b66848484611cb4565b610c2784610b72611ab5565b610c228560405180606001604052806028815260200161262a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bd8611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b611abd565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610cf2610c56611ab5565b84610ced8560016000610c67611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2d90919063ffffffff16565b611abd565b6001905092915050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd4611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610df2610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610e8661dead6117cf565b565b610e90611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610eae610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811115610fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f53656c6c2074617820746f6f206869676800000000000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561107a5780601f1061104f5761010080835404028352916020019161107a565b820191906000526020600020905b81548152906001019060200180831161105d57829003601f168201915b5050505050905090565b61108c611ab5565b73ffffffffffffffffffffffffffffffffffffffff166110aa610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061125161119b611ab5565b8461124c8560405180606001604052806025815260200161269b60259139600160006111c5611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b611abd565b6001905092915050565b600061126f611268611ab5565b8484611cb4565b6001905092915050565b611281611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661129f610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61134d611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661136b610fb8565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b61145d611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661147b610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606481111561157b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4275792074617820746f6f20686967680000000000000000000000000000000081525060200191505060405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611614611ab5565b73ffffffffffffffffffffffffffffffffffffffff16611632610fb8565b73ffffffffffffffffffffffffffffffffffffffff16146116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060098190555050565b6116cd611ab5565b73ffffffffffffffffffffffffffffffffffffffff166116eb610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6117d7611ab5565b73ffffffffffffffffffffffffffffffffffffffff166117f5610fb8565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125966026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900460ff1681565b600080828401905083811015611aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806126776024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125bc6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d585750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f426c61636b6c697374656420616464726573730000000000000000000000000081525060200191505060405180910390fd5b611dd2610fb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e405750611e10610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9a5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ef45750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ff35760006009541115611f70576000611f0f83610d84565b90506009548282011115611f6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126046026913960400191505060405180910390fd5b505b600c60009054906101000a900460ff16611ff2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120a9576120a48383836122ac565b6121ed565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612144576000606460085483028161210f57fe5b0490506121318473ca1c620bc6d68df4fbfe801438a0f4bdf5885064836122ac565b61213e84848385036122ac565b506121ec565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121df57600060646007548302816121aa57fe5b0490506121cc8473ca1c620bc6d68df4fbfe801438a0f4bdf5885064836122ac565b6121d984848385036122ac565b506121eb565b6121ea8383836122ac565b5b5b5b505050565b600083831115829061229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612264578082015181840152602081019050612249565b50505050905090810190601f1680156122915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126526025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125736023913960400191505060405180910390fd5b6123c383838361256d565b61242e816040518060600160405280602681526020016125de602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124c1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655472616e7366657220616d6f756e742065786365656473206d6178207065722077616c6c657445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b2c4ef3897ed5911002770fdf5899ddcf587096541a3c234f227e0dabe68146a64736f6c63430007060033000000000000000000000000ca1c620bc6d68df4fbfe801438a0f4bdf5885064

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063cc1776d3116100a2578063e57f14e111610071578063e57f14e114610883578063f2fde38b146108c7578063fe575a871461090b578063ffb54a9914610965576101cf565b8063cc1776d314610791578063dc1052e2146107af578063dd62ed3e146107dd578063e268e4d314610855576101cf565b8063a457c2d7116100de578063a457c2d71461067b578063a9059cbb146106df578063c9567bf914610743578063cbd69aa81461074d576101cf565b80638da5cb5b1461058057806395d89b41146105b4578063963f0efa14610637576101cf565b8063453c2310116101715780634fbee1931161014b5780634fbee1931461049657806370a08231146104f0578063715018a6146105485780638cd09d5014610552576101cf565b8063453c23101461042657806349bd5a5e146104445780634f7041a514610478576101cf565b806318160ddd116101ad57806318160ddd146102ff57806323b872dd1461031d578063313ce567146103a157806339509351146103c2576101cf565b806306fdde03146101d4578063095ea7b31461025757806316a2f82a146102bb575b600080fd5b6101dc610985565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a36004803603604081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a27565b60405180821515815260200191505060405180910390f35b6102fd600480360360208110156102d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a45565b005b610307610b4f565b6040518082815260200191505060405180910390f35b6103896004803603606081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b59565b60405180821515815260200191505060405180910390f35b6103a9610c32565b604051808260ff16815260200191505060405180910390f35b61040e600480360360408110156103d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c49565b60405180821515815260200191505060405180910390f35b61042e610cfc565b6040518082815260200191505060405180910390f35b61044c610d02565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610480610d28565b6040518082815260200191505060405180910390f35b6104d8600480360360208110156104ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d2e565b60405180821515815260200191505060405180910390f35b6105326004803603602081101561050657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d84565b6040518082815260200191505060405180910390f35b610550610dcc565b005b61057e6004803603602081101561056857600080fd5b8101908080359060200190929190505050610e88565b005b610588610fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105bc610fe2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105fc5780820151818401526020810190506105e1565b50505050905090810190601f1680156106295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106796004803603602081101561064d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611084565b005b6106c76004803603604081101561069157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061118e565b60405180821515815260200191505060405180910390f35b61072b600480360360408110156106f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b60405180821515815260200191505060405180910390f35b61074b611279565b005b61078f6004803603602081101561076357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611345565b005b61079961144f565b6040518082815260200191505060405180910390f35b6107db600480360360208110156107c557600080fd5b8101908080359060200190929190505050611455565b005b61083f600480360360408110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611585565b6040518082815260200191505060405180910390f35b6108816004803603602081101561086b57600080fd5b810190808035906020019092919050505061160c565b005b6108c56004803603602081101561089957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116c5565b005b610909600480360360208110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117cf565b005b61094d6004803603602081101561092157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119c4565b60405180821515815260200191505060405180910390f35b61096d611a1a565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3b610a34611ab5565b8484611abd565b6001905092915050565b610a4d611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610a6b610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b6000610b66848484611cb4565b610c2784610b72611ab5565b610c228560405180606001604052806028815260200161262a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bd8611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b611abd565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610cf2610c56611ab5565b84610ced8560016000610c67611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2d90919063ffffffff16565b611abd565b6001905092915050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd4611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610df2610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610e8661dead6117cf565b565b610e90611ab5565b73ffffffffffffffffffffffffffffffffffffffff16610eae610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811115610fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f53656c6c2074617820746f6f206869676800000000000000000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561107a5780601f1061104f5761010080835404028352916020019161107a565b820191906000526020600020905b81548152906001019060200180831161105d57829003601f168201915b5050505050905090565b61108c611ab5565b73ffffffffffffffffffffffffffffffffffffffff166110aa610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061125161119b611ab5565b8461124c8560405180606001604052806025815260200161269b60259139600160006111c5611ab5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b611abd565b6001905092915050565b600061126f611268611ab5565b8484611cb4565b6001905092915050565b611281611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661129f610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61134d611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661136b610fb8565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b61145d611ab5565b73ffffffffffffffffffffffffffffffffffffffff1661147b610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606481111561157b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4275792074617820746f6f20686967680000000000000000000000000000000081525060200191505060405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611614611ab5565b73ffffffffffffffffffffffffffffffffffffffff16611632610fb8565b73ffffffffffffffffffffffffffffffffffffffff16146116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060098190555050565b6116cd611ab5565b73ffffffffffffffffffffffffffffffffffffffff166116eb610fb8565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6117d7611ab5565b73ffffffffffffffffffffffffffffffffffffffff166117f5610fb8565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125966026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900460ff1681565b600080828401905083811015611aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806126776024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125bc6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d585750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f426c61636b6c697374656420616464726573730000000000000000000000000081525060200191505060405180910390fd5b611dd2610fb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e405750611e10610fb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9a5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ef45750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ff35760006009541115611f70576000611f0f83610d84565b90506009548282011115611f6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126046026913960400191505060405180910390fd5b505b600c60009054906101000a900460ff16611ff2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120a9576120a48383836122ac565b6121ed565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612144576000606460085483028161210f57fe5b0490506121318473ca1c620bc6d68df4fbfe801438a0f4bdf5885064836122ac565b61213e84848385036122ac565b506121ec565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121df57600060646007548302816121aa57fe5b0490506121cc8473ca1c620bc6d68df4fbfe801438a0f4bdf5885064836122ac565b6121d984848385036122ac565b506121eb565b6121ea8383836122ac565b5b5b5b505050565b600083831115829061229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612264578082015181840152602081019050612249565b50505050905090810190601f1680156122915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126526025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125736023913960400191505060405180910390fd5b6123c383838361256d565b61242e816040518060600160405280602681526020016125de602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124c1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655472616e7366657220616d6f756e742065786365656473206d6178207065722077616c6c657445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b2c4ef3897ed5911002770fdf5899ddcf587096541a3c234f227e0dabe68146a64736f6c63430007060033

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

000000000000000000000000ca1c620bc6d68df4fbfe801438a0f4bdf5885064

-----Decoded View---------------
Arg [0] : _uniswapV2Pair (address): 0xCA1c620bC6D68df4fBFE801438A0f4bdF5885064

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ca1c620bc6d68df4fbfe801438a0f4bdf5885064


Deployed Bytecode Sourcemap

24821:3671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15891:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18037:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26196:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16990:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18688:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16834:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19418:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24973:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24861:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24935:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26316:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17161:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25350:144;;;:::i;:::-;;25502:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12471:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16101:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26564:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20139:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17501:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25988:79;;;:::i;:::-;;26450:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24896:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25685:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17739:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25862:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26075:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13425:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26680:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25147:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15891:91;15936:13;15969:5;15962:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15891:91;:::o;18037:169::-;18120:4;18137:39;18146:12;:10;:12::i;:::-;18160:7;18169:6;18137:8;:39::i;:::-;18194:4;18187:11;;18037:169;;;;:::o;26196:112::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26295:5:::1;26264:19;:28;26284:7;26264:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;26196:112:::0;:::o;16990:108::-;17051:7;17078:12;;17071:19;;16990:108;:::o;18688:321::-;18794:4;18811:36;18821:6;18829:9;18840:6;18811:9;:36::i;:::-;18858:121;18867:6;18875:12;:10;:12::i;:::-;18889:89;18927:6;18889:89;;;;;;;;;;;;;;;;;:11;:19;18901:6;18889:19;;;;;;;;;;;;;;;:33;18909:12;:10;:12::i;:::-;18889:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18858:8;:121::i;:::-;18997:4;18990:11;;18688:321;;;;;:::o;16834:91::-;16883:5;16908:9;;;;;;;;;;;16901:16;;16834:91;:::o;19418:218::-;19506:4;19523:83;19532:12;:10;:12::i;:::-;19546:7;19555:50;19594:10;19555:11;:25;19567:12;:10;:12::i;:::-;19555:25;;;;;;;;;;;;;;;:34;19581:7;19555:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19523:8;:83::i;:::-;19624:4;19617:11;;19418:218;;;;:::o;24973:46::-;;;;:::o;24861:28::-;;;;;;;;;;;;;:::o;24935:25::-;;;;:::o;26316:126::-;26382:4;26406:19;:28;26426:7;26406:28;;;;;;;;;;;;;;;;;;;;;;;;;26399:35;;26316:126;;;:::o;17161:127::-;17235:7;17262:9;:18;17272:7;17262:18;;;;;;;;;;;;;;;;17255:25;;17161:127;;;:::o;25350:144::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25416:70:::1;25442:42;25416:17;:70::i;:::-;25350:144::o:0;25502:175::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25594:3:::1;25580:10;:17;;25572:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25659:10;25649:7;:20;;;;25502:175:::0;:::o;12471:87::-;12517:7;12544:6;;;;;;;;;;;12537:13;;12471:87;:::o;16101:95::-;16148:13;16181:7;16174:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16101:95;:::o;26564:108::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26659:5:::1;26633:14;:23;26648:7;26633:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;26564:108:::0;:::o;20139:269::-;20232:4;20249:129;20258:12;:10;:12::i;:::-;20272:7;20281:96;20320:15;20281:96;;;;;;;;;;;;;;;;;:11;:25;20293:12;:10;:12::i;:::-;20281:25;;;;;;;;;;;;;;;:34;20307:7;20281:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20249:8;:129::i;:::-;20396:4;20389:11;;20139:269;;;;:::o;17501:175::-;17587:4;17604:42;17614:12;:10;:12::i;:::-;17628:9;17639:6;17604:9;:42::i;:::-;17664:4;17657:11;;17501:175;;;;:::o;25988:79::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26055:4:::1;26041:11;;:18;;;;;;;;;;;;;;;;;;25988:79::o:0;26450:106::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26544:4:::1;26518:14;:23;26533:7;26518:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;26450:106:::0;:::o;24896:26::-;;;;:::o;25685:169::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25774:3:::1;25761:9;:16;;25753:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25837:9;25828:6;:18;;;;25685:169:::0;:::o;17739:151::-;17828:7;17855:11;:18;17867:5;17855:18;;;;;;;;;;;;;;;:27;17874:7;17855:27;;;;;;;;;;;;;;;;17848:34;;17739:151;;;;:::o;25862:118::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25957:15:::1;25942:12;:30;;;;25862:118:::0;:::o;26075:113::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26176:4:::1;26145:19;:28;26165:7;26145:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;26075:113:::0;:::o;13425:244::-;12702:12;:10;:12::i;:::-;12691:23;;:7;:5;:7::i;:::-;:23;;;12683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13534:1:::1;13514:22;;:8;:22;;;;13506:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13624:8;13595:38;;13616:6;;;;;;;;;;;13595:38;;;;;;;;;;;;13653:8;13644:6;;:17;;;;;;;;;;;;;;;;;;13425:244:::0;:::o;26680:116::-;26741:4;26765:14;:23;26780:7;26765:23;;;;;;;;;;;;;;;;;;;;;;;;;26758:30;;26680:116;;;:::o;25147:31::-;;;;;;;;;;;;;:::o;2731:179::-;2789:7;2809:9;2825:1;2821;:5;2809:17;;2850:1;2845;:6;;2837:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2901:1;2894:8;;;2731:179;;;;:::o;10961:106::-;11014:15;11049:10;11042:17;;10961:106;:::o;23286:346::-;23405:1;23388:19;;:5;:19;;;;23380:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23486:1;23467:21;;:7;:21;;;;23459:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23570:6;23540:11;:18;23552:5;23540:18;;;;;;;;;;;;;;;:27;23559:7;23540:27;;;;;;;;;;;;;;;:36;;;;23608:7;23592:32;;23601:5;23592:32;;;23617:6;23592:32;;;;;;;;;;;;;;;;;;23286:346;;;:::o;26804:1685::-;26920:14;:22;26935:6;26920:22;;;;;;;;;;;;;;;;;;;;;;;;;26919:23;:53;;;;;26947:14;:25;26962:9;26947:25;;;;;;;;;;;;;;;;;;;;;;;;;26946:26;26919:53;26911:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27023:7;:5;:7::i;:::-;27013:17;;:6;:17;;;;:41;;;;;27047:7;:5;:7::i;:::-;27034:20;;:9;:20;;;;27013:41;:68;;;;;27068:13;;;;;;;;;;;27058:23;;:6;:23;;;;27013:68;:98;;;;;27098:13;;;;;;;;;;;27085:26;;:9;:26;;;;27013:98;27009:409;;;27146:1;27131:12;;:16;27128:214;;;27168:24;27195:20;27205:9;27195;:20::i;:::-;27168:47;;27271:12;;27261:6;27242:16;:25;:41;;27234:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27128:214;;27364:11;;;;;;;;;;;27356:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:409;27434:19;:27;27454:6;27434:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;27465:19;:30;27485:9;27465:30;;;;;;;;;;;;;;;;;;;;;;;;;27434:61;27430:1052;;;27512:42;27528:6;27536:9;27547:6;27512:15;:42::i;:::-;27430:1052;;;27601:13;;;;;;;;;;;27591:23;;:6;:23;;;27587:884;;;27655:17;27695:3;27685:6;;27676;:15;27675:23;;;;;;27655:43;;27734:87;27750:6;27766:42;27811:9;27734:15;:87::i;:::-;27863:54;27879:6;27887:9;27907;27898:6;:18;27863:15;:54::i;:::-;27587:884;;;;27990:13;;;;;;;;;;;27977:26;;:9;:26;;;27973:498;;;28045:17;28086:3;28075:7;;28066:6;:16;28065:24;;;;;;28045:44;;28125:87;28141:6;28157:42;28202:9;28125:15;:87::i;:::-;28254:54;28270:6;28278:9;28298;28289:6;:18;28254:15;:54::i;:::-;27973:498;;;;28383:42;28399:6;28407:9;28418:6;28383:15;:42::i;:::-;27973:498;27587:884;27430:1052;26804:1685;;;:::o;5558:166::-;5644:7;5677:1;5672;:6;;5680:12;5664:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5715:1;5711;:5;5704:12;;5558:166;;;;;:::o;20898:539::-;21022:1;21004:20;;:6;:20;;;;20996:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21106:1;21085:23;;:9;:23;;;;21077:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21161:47;21182:6;21190:9;21201:6;21161:20;:47::i;:::-;21241:71;21263:6;21241:71;;;;;;;;;;;;;;;;;:9;:17;21251:6;21241:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21221:9;:17;21231:6;21221:17;;;;;;;;;;;;;;;:91;;;;21346:32;21371:6;21346:9;:20;21356:9;21346:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21323:9;:20;21333:9;21323:20;;;;;;;;;;;;;;;:55;;;;21411:9;21394:35;;21403:6;21394:35;;;21422:6;21394:35;;;;;;;;;;;;;;;;;;20898:539;;;:::o;24665:92::-;;;;:::o

Swarm Source

ipfs://b2c4ef3897ed5911002770fdf5899ddcf587096541a3c234f227e0dabe68146a
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.