ETH Price: $3,170.63 (-7.89%)
Gas: 3 Gwei

Token

SAFU DEPLOYER (SAFU)
 

Overview

Max Total Supply

21,000,000,000 SAFU

Holders

157

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
SafuDeployer

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

/*

Telegram : https://t.me/SafuDeployer
Website : https://SafuDeployer.com
Utility : https://app.SafuDeployer.com

*/

/*

Introducing The Most Advanced Token Generator. You May Quickly And Easily Produce Your Own Coins With Our Coin Generator On The Ethereum Networks. Create A ERC20 Token In Less Than A Minute With The Most Used Smart Contract Generator For Ethereum. No Login.
 No Setup. No Coding Required.
 */
 
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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 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 {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    address public lpWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxTokensForSwapback;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // 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 automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("SAFU DEPLOYER", "SAFU") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 10;

        uint256 totalSupply = 21000000000 * 1e18;

        maxTransactionAmount = (totalSupply * 3) / 100; // 3% of total supply
        maxWallet = (totalSupply * 3) / 100; // 3% of total supply

        swapTokensAtAmount = (totalSupply * 4) / 10000; // 0.04% swapback trigger
        maxTokensForSwapback = (totalSupply * 3) / 1000; // 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x1Be0fB0170e55620D975cFD02F5fC780ABC1d6AE); 
        devWallet = address(0xa4A4d43D4982E8529eff063032a0748C990909f4);
        lpWallet = msg.sender;

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH
    /// @param newAmount Base 100000, so 0.5% = 500.
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= 1,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= 500,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        require(
            newAmount <= maxTokensForSwapback,
            "Swap amount cannot be higher than maxTokensForSwapback"
        );
        swapTokensAtAmount = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens the contract can swap for ETH
    /// @param newAmount Base 10000, so 0.5% = 50.
    function updateMaxTokensForSwapback(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= swapTokensAtAmount,
            "Swap amount cannot be lower than swapTokensAtAmount"
        );
        maxTokensForSwapback = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= 5,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * totalSupply()/1000;
    }


    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }
    
    /// @notice Sets the fees for buys
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 40);
    }

    /// @notice Sets the fees for sells
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 40);
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            lpWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > maxTokensForSwapback) {
            contractBalance = maxTokensForSwapback;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"tradingActive","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600d805462ffffff19166001908117909155600f805460ff191690911790553480156200003057600080fd5b506040518060400160405280600d81526020016c29a0a32a902222a82627aca2a960991b815250604051806040016040528060048152602001635341465560e01b8152508160039081620000859190620007ae565b506004620000948282620007ae565b505050620000b1620000ab6200045260201b60201c565b62000456565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d3816001620004a8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014491906200087a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000192573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b891906200087a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000206573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022c91906200087a565b6001600160a01b031660a081905262000247906001620004a8565b60a0516200025790600162000522565b6002600181600a6000816b43dacaf91c1a84ff0800000060646200027d826003620008c2565b620002899190620008e2565b600b5560646200029b826003620008c2565b620002a79190620008e2565b600c55612710620002ba826004620008c2565b620002c69190620008e2565b6009556103e8620002d9826003620008c2565b620002e59190620008e2565b600a556011879055601286905560138590558462000304878962000905565b62000310919062000905565b601055601584905560168390556017829055816200032f848662000905565b6200033b919062000905565b601455600680546001600160a01b0319908116731be0fb0170e55620d975cfd02f5fc780abc1d6ae1790915560078054821673a4a4d43d4982e8529eff063032a0748c990909f41790556008805490911633179055620003af620003a76005546001600160a01b031690565b600162000576565b620003bc30600162000576565b620003cb61dead600162000576565b600654620003e4906001600160a01b0316600162000576565b62000403620003fb6005546001600160a01b031690565b6001620004a8565b62000410306001620004a8565b6200041f61dead6001620004a8565b60065462000438906001600160a01b03166001620004a8565b62000444338262000620565b50505050505050506200091b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004f75760405162461bcd60e51b81526020600482018190526024820152600080516020620032dc83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c15760405162461bcd60e51b81526020600482018190526024820152600080516020620032dc8339815191526044820152606401620004ee565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ee565b80600260008282546200068c919062000905565b90915550506001600160a01b03821660009081526020819052604081208054839290620006bb90849062000905565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200073557607f821691505b6020821081036200075657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200070557600081815260208120601f850160051c81016020861015620007855750805b601f850160051c820191505b81811015620007a65782815560010162000791565b505050505050565b81516001600160401b03811115620007ca57620007ca6200070a565b620007e281620007db845462000720565b846200075c565b602080601f8311600181146200081a5760008415620008015750858301515b600019600386901b1c1916600185901b178555620007a6565b600085815260208120601f198616915b828110156200084b578886015182559484019460019091019084016200082a565b50858210156200086a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200088d57600080fd5b81516001600160a01b0381168114620008a557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008dc57620008dc620008ac565b92915050565b6000826200090057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008dc57620008dc620008ac565b60805160a051612963620009796000396000818161052801528181610f4f01526117b60152600081816103fd01528181611778015281816122d50152818161238e015281816123ca0152818161244401526124ac01526129636000f3fe6080604052600436106103545760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c876d0b9116100d1578063c876d0b9146108ee578063c8c8ebe414610908578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c02466681461088e578063c17b5b8c146108ae578063c18bc195146108ce57600080fd5b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d7146107ff578063a9059cbb1461081f578063b62496f51461083f578063bbc0c7421461086f57600080fd5b80639c3b4fdc146107bd5780639fccce32146107d3578063a0d82dc5146107e957600080fd5b806392136913116101a05780639213691314610752578063924de9b71461076857806395d89b41146107885780639a7a23d61461079d57600080fd5b80638a8c523c146106ff5780638da5cb5b146107145780638ea5220f1461073257600080fd5b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146106935780637af8ed9c146106a95780637bce5a04146106c95780638095d564146106df57600080fd5b8063751039fc1461063e5780637571336a1461065357806375f0a8741461067357600080fd5b80636a486a8e1161027a5780636a486a8e146105bd5780636ddd1713146105d357806370a08231146105f3578063715018a61461062957600080fd5b80634a62bb651461054a5780634fbee193146105645780636303516c1461059d57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612524565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612587565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046125b3565b601c6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860195481565b34801561047857600080fd5b5061044860185481565b34801561048e57600080fd5b506104a261049d3660046125d0565b610ad0565b005b3480156104b057600080fd5b506103ab6104bf3660046125e9565b610bb6565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab610511366004612587565b610c60565b34801561052257600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055657600080fd5b50600d546103ab9060ff1681565b34801561057057600080fd5b506103ab61057f3660046125b3565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105a957600080fd5b5060085461041f906001600160a01b031681565b3480156105c957600080fd5b5061044860145481565b3480156105df57600080fd5b50600d546103ab9062010000900460ff1681565b3480156105ff57600080fd5b5061044861060e3660046125b3565b6001600160a01b031660009081526020819052604090205490565b34801561063557600080fd5b506104a2610c9c565b34801561064a57600080fd5b506103ab610cd2565b34801561065f57600080fd5b506104a261066e36600461263a565b610d0f565b34801561067f57600080fd5b5060065461041f906001600160a01b031681565b34801561069f57600080fd5b50610448600a5481565b3480156106b557600080fd5b506103ab6106c43660046125d0565b610d64565b3480156106d557600080fd5b5061044860115481565b3480156106eb57600080fd5b506104a26106fa36600461266f565b610e2c565b34801561070b57600080fd5b506104a2610e91565b34801561072057600080fd5b506005546001600160a01b031661041f565b34801561073e57600080fd5b5060075461041f906001600160a01b031681565b34801561075e57600080fd5b5061044860155481565b34801561077457600080fd5b506104a261078336600461269b565b610ece565b34801561079457600080fd5b50610375610f14565b3480156107a957600080fd5b506104a26107b836600461263a565b610f23565b3480156107c957600080fd5b5061044860135481565b3480156107df57600080fd5b50610448601a5481565b3480156107f557600080fd5b5061044860175481565b34801561080b57600080fd5b506103ab61081a366004612587565b611002565b34801561082b57600080fd5b506103ab61083a366004612587565b61109b565b34801561084b57600080fd5b506103ab61085a3660046125b3565b601d6020526000908152604090205460ff1681565b34801561087b57600080fd5b50600d546103ab90610100900460ff1681565b34801561089a57600080fd5b506104a26108a936600461263a565b6110a8565b3480156108ba57600080fd5b506104a26108c936600461266f565b611131565b3480156108da57600080fd5b506104a26108e93660046125d0565b611191565b3480156108fa57600080fd5b50600f546103ab9060ff1681565b34801561091457600080fd5b50610448600b5481565b34801561092a57600080fd5b506103ab6109393660046125d0565b61123e565b34801561094a57600080fd5b5061044860105481565b34801561096057600080fd5b5061044861096f3660046126b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab6113e6565b3480156109d157600080fd5b5061044860125481565b3480156109e757600080fd5b506104a26109f63660046125b3565b611423565b348015610a0757600080fd5b5061044860165481565b348015610a1d57600080fd5b50610448600c5481565b606060038054610a36906126ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906126ef565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac63384846114be565b5060015b92915050565b6005546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612729565b60405180910390fd5b670de0b6b3a76400006103e8610b1860025490565b610b23906001612774565b610b2d919061278b565b610b37919061278b565b811015610b9e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610afa565b610bb081670de0b6b3a7640000612774565b600b5550565b6000610bc38484846115e2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c485760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610afa565b610c5585338584036114be565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c979086906127ad565b6114be565b6005546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610afa90612729565b610cd06000611e34565b565b6005546000906001600160a01b03163314610cff5760405162461bcd60e51b8152600401610afa90612729565b50600d805460ff19169055600190565b6005546001600160a01b03163314610d395760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d915760405162461bcd60e51b8152600401610afa90612729565b600954821015610dff5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081cddd85c151bdad95b9cd05d105b5bdd5b9d606a1b6064820152608401610afa565b620186a0610e0c60025490565b610e169084612774565b610e20919061278b565b600a555060015b919050565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610afa90612729565b60118390556012829055601381905580610e7083856127ad565b610e7a91906127ad565b601081905560281015610e8c57600080fd5b505050565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610afa90612729565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610afa90612729565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a36906126ef565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610afa90612729565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ff45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610afa565b610ffe8282611e86565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afa565b61109133858584036114be565b5060019392505050565b6000610ac63384846115e2565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610afa90612729565b6015839055601682905560178190558061117583856127ad565b61117f91906127ad565b601481905560281015610e8c57600080fd5b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610afa90612729565b60058110156112185760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610afa565b6103e861122460025490565b61122e9083612774565b611238919061278b565b600c5550565b6005546000906001600160a01b0316331461126b5760405162461bcd60e51b8152600401610afa90612729565b60018210156112da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610afa565b6101f48211156113495760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610afa565b600a548211156113ba5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152756e206d6178546f6b656e73466f72537761706261636b60501b6064820152608401610afa565b620186a06113c760025490565b6113d19084612774565b6113db919061278b565b600955506001919050565b6005546000906001600160a01b031633146114135760405162461bcd60e51b8152600401610afa90612729565b50600f805460ff19169055600190565b6005546001600160a01b0316331461144d5760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0381166114b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6114bb81611e34565b50565b6001600160a01b0383166115205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afa565b6001600160a01b0382166115815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116085760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b03821661162e5760405162461bcd60e51b8152600401610afa90612805565b8060000361164257610e8c83836000611eda565b600d5460ff1615611aff576005546001600160a01b0384811691161480159061167957506005546001600160a01b03838116911614155b801561168d57506001600160a01b03821615155b80156116a457506001600160a01b03821661dead14155b80156116ba5750600554600160a01b900460ff16155b15611aff57600d54610100900460ff16611752576001600160a01b0383166000908152601b602052604090205460ff168061170d57506001600160a01b0382166000908152601b602052604090205460ff165b6117525760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610afa565b600f5460ff1615611899576005546001600160a01b038381169116148015906117ad57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117eb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189957326000908152600e602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610afa565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff1680156118da57506001600160a01b0382166000908152601c602052604090205460ff16155b156119be57600b5481111561194f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610afa565b600c546001600160a01b03831660009081526020819052604090205461197590836127ad565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b611aff565b6001600160a01b0382166000908152601d602052604090205460ff1680156119ff57506001600160a01b0383166000908152601c602052604090205460ff16155b15611a7557600b548111156119b95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610afa565b6001600160a01b0382166000908152601c602052604090205460ff16611aff57600c546001600160a01b038316600090815260208190526040902054611abb90836127ad565b1115611aff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b3060009081526020819052604090205460095481108015908190611b2b5750600d5462010000900460ff165b8015611b415750600554600160a01b900460ff16155b8015611b6657506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b8b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611bb057506001600160a01b0384166000908152601b602052604090205460ff16155b15611bde576005805460ff60a01b1916600160a01b179055611bd061202f565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611c2c57506001600160a01b0385166000908152601b602052604090205460ff165b15611c35575060005b60008115611e20576001600160a01b0386166000908152601d602052604090205460ff168015611c6757506000601454115b15611d2557611c8c6064611c866014548861225390919063ffffffff16565b90612266565b905060145460165482611c9f9190612774565b611ca9919061278b565b60196000828254611cba91906127ad565b9091555050601454601754611ccf9083612774565b611cd9919061278b565b601a6000828254611cea91906127ad565b9091555050601454601554611cff9083612774565b611d09919061278b565b60186000828254611d1a91906127ad565b90915550611e029050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d4f57506000601054115b15611e0257611d6e6064611c866010548861225390919063ffffffff16565b905060105460125482611d819190612774565b611d8b919061278b565b60196000828254611d9c91906127ad565b9091555050601054601354611db19083612774565b611dbb919061278b565b601a6000828254611dcc91906127ad565b9091555050601054601154611de19083612774565b611deb919061278b565b60186000828254611dfc91906127ad565b90915550505b8015611e1357611e13873083611eda565b611e1d8186612848565b94505b611e2b878787611eda565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f005760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b038216611f265760405162461bcd60e51b8152600401610afa90612805565b6001600160a01b03831660009081526020819052604090205481811015611f9e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fd59084906127ad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a5460185460195461205691906127ad565b61206091906127ad565b9050600082158061206f575081155b1561207957505050565b600a5483111561208957600a5492505b60006002836019548661209c9190612774565b6120a6919061278b565b6120b0919061278b565b905060006120be8583612272565b9050476120ca8261227e565b60006120d64783612272565b905060006120f387611c866018548561225390919063ffffffff16565b9050600061211088611c86601a548661225390919063ffffffff16565b905060008161211f8486612848565b6121299190612848565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b5090985050861580159061219f5750600081115b156121f2576121ae878261243e565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461223f576040519150601f19603f3d011682016040523d82523d6000602084013e612244565b606091505b50505050505050505050505050565b600061225f8284612774565b9392505050565b600061225f828461278b565b600061225f8284612848565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122b3576122b361285b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190612871565b816001815181106123685761236861285b565b60200260200101906001600160a01b031690816001600160a01b0316815250506123b3307f0000000000000000000000000000000000000000000000000000000000000000846114be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061240890859060009086903090429060040161288e565b600060405180830381600087803b15801561242257600080fd5b505af1158015612436573d6000803e3d6000fd5b505050505050565b612469307f0000000000000000000000000000000000000000000000000000000000000000846114be565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156124f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061251d91906128ff565b5050505050565b600060208083528351808285015260005b8181101561255157858101830151858201604001528201612535565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bb57600080fd5b6000806040838503121561259a57600080fd5b82356125a581612572565b946020939093013593505050565b6000602082840312156125c557600080fd5b813561225f81612572565b6000602082840312156125e257600080fd5b5035919050565b6000806000606084860312156125fe57600080fd5b833561260981612572565b9250602084013561261981612572565b929592945050506040919091013590565b80358015158114610e2757600080fd5b6000806040838503121561264d57600080fd5b823561265881612572565b91506126666020840161262a565b90509250929050565b60008060006060848603121561268457600080fd5b505081359360208301359350604090920135919050565b6000602082840312156126ad57600080fd5b61225f8261262a565b600080604083850312156126c957600080fd5b82356126d481612572565b915060208301356126e481612572565b809150509250929050565b600181811c9082168061270357607f821691505b60208210810361272357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610aca57610aca61275e565b6000826127a857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610aca57610aca61275e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca61275e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561288357600080fd5b815161225f81612572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128de5784516001600160a01b0316835293830193918301916001016128b9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561291457600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207c338c8de03cccb51441b7d39efa4124bf999bb3d0170dbd7126b7a72327c8c264736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c876d0b9116100d1578063c876d0b9146108ee578063c8c8ebe414610908578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c02466681461088e578063c17b5b8c146108ae578063c18bc195146108ce57600080fd5b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d7146107ff578063a9059cbb1461081f578063b62496f51461083f578063bbc0c7421461086f57600080fd5b80639c3b4fdc146107bd5780639fccce32146107d3578063a0d82dc5146107e957600080fd5b806392136913116101a05780639213691314610752578063924de9b71461076857806395d89b41146107885780639a7a23d61461079d57600080fd5b80638a8c523c146106ff5780638da5cb5b146107145780638ea5220f1461073257600080fd5b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146106935780637af8ed9c146106a95780637bce5a04146106c95780638095d564146106df57600080fd5b8063751039fc1461063e5780637571336a1461065357806375f0a8741461067357600080fd5b80636a486a8e1161027a5780636a486a8e146105bd5780636ddd1713146105d357806370a08231146105f3578063715018a61461062957600080fd5b80634a62bb651461054a5780634fbee193146105645780636303516c1461059d57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612524565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612587565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046125b3565b601c6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860195481565b34801561047857600080fd5b5061044860185481565b34801561048e57600080fd5b506104a261049d3660046125d0565b610ad0565b005b3480156104b057600080fd5b506103ab6104bf3660046125e9565b610bb6565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab610511366004612587565b610c60565b34801561052257600080fd5b5061041f7f000000000000000000000000accb94fbc3334d481e31c427f23fb5e92f31623281565b34801561055657600080fd5b50600d546103ab9060ff1681565b34801561057057600080fd5b506103ab61057f3660046125b3565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105a957600080fd5b5060085461041f906001600160a01b031681565b3480156105c957600080fd5b5061044860145481565b3480156105df57600080fd5b50600d546103ab9062010000900460ff1681565b3480156105ff57600080fd5b5061044861060e3660046125b3565b6001600160a01b031660009081526020819052604090205490565b34801561063557600080fd5b506104a2610c9c565b34801561064a57600080fd5b506103ab610cd2565b34801561065f57600080fd5b506104a261066e36600461263a565b610d0f565b34801561067f57600080fd5b5060065461041f906001600160a01b031681565b34801561069f57600080fd5b50610448600a5481565b3480156106b557600080fd5b506103ab6106c43660046125d0565b610d64565b3480156106d557600080fd5b5061044860115481565b3480156106eb57600080fd5b506104a26106fa36600461266f565b610e2c565b34801561070b57600080fd5b506104a2610e91565b34801561072057600080fd5b506005546001600160a01b031661041f565b34801561073e57600080fd5b5060075461041f906001600160a01b031681565b34801561075e57600080fd5b5061044860155481565b34801561077457600080fd5b506104a261078336600461269b565b610ece565b34801561079457600080fd5b50610375610f14565b3480156107a957600080fd5b506104a26107b836600461263a565b610f23565b3480156107c957600080fd5b5061044860135481565b3480156107df57600080fd5b50610448601a5481565b3480156107f557600080fd5b5061044860175481565b34801561080b57600080fd5b506103ab61081a366004612587565b611002565b34801561082b57600080fd5b506103ab61083a366004612587565b61109b565b34801561084b57600080fd5b506103ab61085a3660046125b3565b601d6020526000908152604090205460ff1681565b34801561087b57600080fd5b50600d546103ab90610100900460ff1681565b34801561089a57600080fd5b506104a26108a936600461263a565b6110a8565b3480156108ba57600080fd5b506104a26108c936600461266f565b611131565b3480156108da57600080fd5b506104a26108e93660046125d0565b611191565b3480156108fa57600080fd5b50600f546103ab9060ff1681565b34801561091457600080fd5b50610448600b5481565b34801561092a57600080fd5b506103ab6109393660046125d0565b61123e565b34801561094a57600080fd5b5061044860105481565b34801561096057600080fd5b5061044861096f3660046126b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab6113e6565b3480156109d157600080fd5b5061044860125481565b3480156109e757600080fd5b506104a26109f63660046125b3565b611423565b348015610a0757600080fd5b5061044860165481565b348015610a1d57600080fd5b50610448600c5481565b606060038054610a36906126ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906126ef565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac63384846114be565b5060015b92915050565b6005546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612729565b60405180910390fd5b670de0b6b3a76400006103e8610b1860025490565b610b23906001612774565b610b2d919061278b565b610b37919061278b565b811015610b9e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610afa565b610bb081670de0b6b3a7640000612774565b600b5550565b6000610bc38484846115e2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c485760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610afa565b610c5585338584036114be565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c979086906127ad565b6114be565b6005546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610afa90612729565b610cd06000611e34565b565b6005546000906001600160a01b03163314610cff5760405162461bcd60e51b8152600401610afa90612729565b50600d805460ff19169055600190565b6005546001600160a01b03163314610d395760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d915760405162461bcd60e51b8152600401610afa90612729565b600954821015610dff5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081cddd85c151bdad95b9cd05d105b5bdd5b9d606a1b6064820152608401610afa565b620186a0610e0c60025490565b610e169084612774565b610e20919061278b565b600a555060015b919050565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610afa90612729565b60118390556012829055601381905580610e7083856127ad565b610e7a91906127ad565b601081905560281015610e8c57600080fd5b505050565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610afa90612729565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610afa90612729565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a36906126ef565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610afa90612729565b7f000000000000000000000000accb94fbc3334d481e31c427f23fb5e92f3162326001600160a01b0316826001600160a01b031603610ff45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610afa565b610ffe8282611e86565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afa565b61109133858584036114be565b5060019392505050565b6000610ac63384846115e2565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610afa90612729565b6015839055601682905560178190558061117583856127ad565b61117f91906127ad565b601481905560281015610e8c57600080fd5b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610afa90612729565b60058110156112185760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610afa565b6103e861122460025490565b61122e9083612774565b611238919061278b565b600c5550565b6005546000906001600160a01b0316331461126b5760405162461bcd60e51b8152600401610afa90612729565b60018210156112da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610afa565b6101f48211156113495760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610afa565b600a548211156113ba5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152756e206d6178546f6b656e73466f72537761706261636b60501b6064820152608401610afa565b620186a06113c760025490565b6113d19084612774565b6113db919061278b565b600955506001919050565b6005546000906001600160a01b031633146114135760405162461bcd60e51b8152600401610afa90612729565b50600f805460ff19169055600190565b6005546001600160a01b0316331461144d5760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0381166114b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6114bb81611e34565b50565b6001600160a01b0383166115205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afa565b6001600160a01b0382166115815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116085760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b03821661162e5760405162461bcd60e51b8152600401610afa90612805565b8060000361164257610e8c83836000611eda565b600d5460ff1615611aff576005546001600160a01b0384811691161480159061167957506005546001600160a01b03838116911614155b801561168d57506001600160a01b03821615155b80156116a457506001600160a01b03821661dead14155b80156116ba5750600554600160a01b900460ff16155b15611aff57600d54610100900460ff16611752576001600160a01b0383166000908152601b602052604090205460ff168061170d57506001600160a01b0382166000908152601b602052604090205460ff165b6117525760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610afa565b600f5460ff1615611899576005546001600160a01b038381169116148015906117ad57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117eb57507f000000000000000000000000accb94fbc3334d481e31c427f23fb5e92f3162326001600160a01b0316826001600160a01b031614155b1561189957326000908152600e602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610afa565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff1680156118da57506001600160a01b0382166000908152601c602052604090205460ff16155b156119be57600b5481111561194f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610afa565b600c546001600160a01b03831660009081526020819052604090205461197590836127ad565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b611aff565b6001600160a01b0382166000908152601d602052604090205460ff1680156119ff57506001600160a01b0383166000908152601c602052604090205460ff16155b15611a7557600b548111156119b95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610afa565b6001600160a01b0382166000908152601c602052604090205460ff16611aff57600c546001600160a01b038316600090815260208190526040902054611abb90836127ad565b1115611aff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b3060009081526020819052604090205460095481108015908190611b2b5750600d5462010000900460ff165b8015611b415750600554600160a01b900460ff16155b8015611b6657506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b8b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611bb057506001600160a01b0384166000908152601b602052604090205460ff16155b15611bde576005805460ff60a01b1916600160a01b179055611bd061202f565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611c2c57506001600160a01b0385166000908152601b602052604090205460ff165b15611c35575060005b60008115611e20576001600160a01b0386166000908152601d602052604090205460ff168015611c6757506000601454115b15611d2557611c8c6064611c866014548861225390919063ffffffff16565b90612266565b905060145460165482611c9f9190612774565b611ca9919061278b565b60196000828254611cba91906127ad565b9091555050601454601754611ccf9083612774565b611cd9919061278b565b601a6000828254611cea91906127ad565b9091555050601454601554611cff9083612774565b611d09919061278b565b60186000828254611d1a91906127ad565b90915550611e029050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d4f57506000601054115b15611e0257611d6e6064611c866010548861225390919063ffffffff16565b905060105460125482611d819190612774565b611d8b919061278b565b60196000828254611d9c91906127ad565b9091555050601054601354611db19083612774565b611dbb919061278b565b601a6000828254611dcc91906127ad565b9091555050601054601154611de19083612774565b611deb919061278b565b60186000828254611dfc91906127ad565b90915550505b8015611e1357611e13873083611eda565b611e1d8186612848565b94505b611e2b878787611eda565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f005760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b038216611f265760405162461bcd60e51b8152600401610afa90612805565b6001600160a01b03831660009081526020819052604090205481811015611f9e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fd59084906127ad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a5460185460195461205691906127ad565b61206091906127ad565b9050600082158061206f575081155b1561207957505050565b600a5483111561208957600a5492505b60006002836019548661209c9190612774565b6120a6919061278b565b6120b0919061278b565b905060006120be8583612272565b9050476120ca8261227e565b60006120d64783612272565b905060006120f387611c866018548561225390919063ffffffff16565b9050600061211088611c86601a548661225390919063ffffffff16565b905060008161211f8486612848565b6121299190612848565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b5090985050861580159061219f5750600081115b156121f2576121ae878261243e565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461223f576040519150601f19603f3d011682016040523d82523d6000602084013e612244565b606091505b50505050505050505050505050565b600061225f8284612774565b9392505050565b600061225f828461278b565b600061225f8284612848565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122b3576122b361285b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190612871565b816001815181106123685761236861285b565b60200260200101906001600160a01b031690816001600160a01b0316815250506123b3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061240890859060009086903090429060040161288e565b600060405180830381600087803b15801561242257600080fd5b505af1158015612436573d6000803e3d6000fd5b505050505050565b612469307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114be565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156124f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061251d91906128ff565b5050505050565b600060208083528351808285015260005b8181101561255157858101830151858201604001528201612535565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bb57600080fd5b6000806040838503121561259a57600080fd5b82356125a581612572565b946020939093013593505050565b6000602082840312156125c557600080fd5b813561225f81612572565b6000602082840312156125e257600080fd5b5035919050565b6000806000606084860312156125fe57600080fd5b833561260981612572565b9250602084013561261981612572565b929592945050506040919091013590565b80358015158114610e2757600080fd5b6000806040838503121561264d57600080fd5b823561265881612572565b91506126666020840161262a565b90509250929050565b60008060006060848603121561268457600080fd5b505081359360208301359350604090920135919050565b6000602082840312156126ad57600080fd5b61225f8261262a565b600080604083850312156126c957600080fd5b82356126d481612572565b915060208301356126e481612572565b809150509250929050565b600181811c9082168061270357607f821691505b60208210810361272357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610aca57610aca61275e565b6000826127a857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610aca57610aca61275e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca61275e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561288357600080fd5b815161225f81612572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128de5784516001600160a01b0316835293830193918301916001016128b9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561291457600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207c338c8de03cccb51441b7d39efa4124bf999bb3d0170dbd7126b7a72327c8c264736f6c63430008130033

Deployed Bytecode Sourcemap

28234:17986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6501:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8668:169;;;;;;;;;;-1:-1:-1;8668:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8668:169:0;1023:187:1;29658:63:0;;;;;;;;;;-1:-1:-1;29658:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28316:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;28316:51:0;1467:230:1;7621:108:0;;;;;;;;;;-1:-1:-1;7709:12:0;;7621:108;;;1848:25:1;;;1836:2;1821:18;7621:108:0;1702:177:1;29442:33:0;;;;;;;;;;;;;;;;29402;;;;;;;;;;;;;;;;35092:275;;;;;;;;;;-1:-1:-1;35092:275:0;;;;;:::i;:::-;;:::i;:::-;;9319:492;;;;;;;;;;-1:-1:-1;9319:492:0;;;;;:::i;:::-;;:::i;28419:53::-;;;;;;;;;;;;28465:6;28419:53;;7463:93;;;;;;;;;;-1:-1:-1;7463:93:0;;7546:2;2880:36:1;;2868:2;2853:18;7463:93:0;2738:184:1;10220:215:0;;;;;;;;;;-1:-1:-1;10220:215:0;;;;;:::i;:::-;;:::i;28374:38::-;;;;;;;;;;;;;;;28770:33;;;;;;;;;;-1:-1:-1;28770:33:0;;;;;;;;38489:126;;;;;;;;;;-1:-1:-1;38489:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38579:28:0;38555:4;38579:28;;;:19;:28;;;;;;;;;38489:126;28579:23;;;;;;;;;;-1:-1:-1;28579:23:0;;;;-1:-1:-1;;;;;28579:23:0;;;29257:28;;;;;;;;;;;;;;;;28850:31;;;;;;;;;;-1:-1:-1;28850:31:0;;;;;;;;;;;7792:127;;;;;;;;;;-1:-1:-1;7792:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7893:18:0;7866:7;7893:18;;;;;;;;;;;;7792:127;1807:103;;;;;;;;;;;;;:::i;33312:121::-;;;;;;;;;;;;;:::i;35912:167::-;;;;;;;;;;-1:-1:-1;35912:167:0;;;;;:::i;:::-;;:::i;28511:30::-;;;;;;;;;;-1:-1:-1;28511:30:0;;;;-1:-1:-1;;;;;28511:30:0;;;28651:35;;;;;;;;;;;;;;;;34573:361;;;;;;;;;;-1:-1:-1;34573:361:0;;;;;:::i;:::-;;:::i;29150:30::-;;;;;;;;;;;;;;;;36524:370;;;;;;;;;;-1:-1:-1;36524:370:0;;;;;:::i;:::-;;:::i;33125:112::-;;;;;;;;;;;;;:::i;1156:87::-;;;;;;;;;;-1:-1:-1;1229:6:0;;-1:-1:-1;;;;;1229:6:0;1156:87;;28548:24;;;;;;;;;;-1:-1:-1;28548:24:0;;;;-1:-1:-1;;;;;28548:24:0;;;29292:31;;;;;;;;;;;;;;;;36197:100;;;;;;;;;;-1:-1:-1;36197:100:0;;;;;:::i;:::-;;:::i;6720:104::-;;;;;;;;;;;;;:::i;37981:304::-;;;;;;;;;;-1:-1:-1;37981:304:0;;;;;:::i;:::-;;:::i;29224:24::-;;;;;;;;;;;;;;;;29482:27;;;;;;;;;;;;;;;;29368:25;;;;;;;;;;;;;;;;10938:413;;;;;;;;;;-1:-1:-1;10938:413:0;;;;;:::i;:::-;;:::i;8132:175::-;;;;;;;;;;-1:-1:-1;8132:175:0;;;;;:::i;:::-;;:::i;29879:57::-;;;;;;;;;;-1:-1:-1;29879:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28810:33;;;;;;;;;;-1:-1:-1;28810:33:0;;;;;;;;;;;37664:182;;;;;;;;;;-1:-1:-1;37664:182:0;;;;;:::i;:::-;;:::i;37118:379::-;;;;;;;;;;-1:-1:-1;37118:379:0;;;;;:::i;:::-;;:::i;35492:232::-;;;;;;;;;;-1:-1:-1;35492:232:0;;;;;:::i;:::-;;:::i;29068:39::-;;;;;;;;;;-1:-1:-1;29068:39:0;;;;;;;;28695:35;;;;;;;;;;;;;;;;33810:619;;;;;;;;;;-1:-1:-1;33810:619:0;;;;;:::i;:::-;;:::i;29116:27::-;;;;;;;;;;;;;;;;8370:151;;;;;;;;;;-1:-1:-1;8370:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8486:18:0;;;8459:7;8486:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8370:151;28611:33;;;;;;;;;;;;;;;;33504:135;;;;;;;;;;;;;:::i;29187:30::-;;;;;;;;;;;;;;;;2065:201;;;;;;;;;;-1:-1:-1;2065:201:0;;;;;:::i;:::-;;:::i;29330:31::-;;;;;;;;;;;;;;;;28737:24;;;;;;;;;;;;;;;;6501:100;6555:13;6588:5;6581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6501:100;:::o;8668:169::-;8751:4;8768:39;610:10;8791:7;8800:6;8768:8;:39::i;:::-;-1:-1:-1;8825:4:0;8668:169;;;;;:::o;35092:275::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;;;;;;;;;35229:4:::1;35221;35200:13;7709:12:::0;;;7621:108;35200:13:::1;:17;::::0;35216:1:::1;35200:17;:::i;:::-;35199:26;;;;:::i;:::-;35198:35;;;;:::i;:::-;35188:6;:45;;35166:142;;;::::0;-1:-1:-1;;;35166:142:0;;5786:2:1;35166:142:0::1;::::0;::::1;5768:21:1::0;5825:2;5805:18;;;5798:30;5864:34;5844:18;;;5837:62;-1:-1:-1;;;5915:18:1;;;5908:45;5970:19;;35166:142:0::1;5584:411:1::0;35166:142:0::1;35342:17;:6:::0;35352::::1;35342:17;:::i;:::-;35319:20;:40:::0;-1:-1:-1;35092:275:0:o;9319:492::-;9459:4;9476:36;9486:6;9494:9;9505:6;9476:9;:36::i;:::-;-1:-1:-1;;;;;9552:19:0;;9525:24;9552:19;;;:11;:19;;;;;;;;610:10;9552:33;;;;;;;;9604:26;;;;9596:79;;;;-1:-1:-1;;;9596:79:0;;6202:2:1;9596:79:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:38;6379:19;;9596:79:0;6000:404:1;9596:79:0;9711:57;9720:6;610:10;9761:6;9742:16;:25;9711:8;:57::i;:::-;-1:-1:-1;9799:4:0;;9319:492;-1:-1:-1;;;;9319:492:0:o;10220:215::-;610:10;10308:4;10357:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10357:34:0;;;;;;;;;;10308:4;;10325:80;;10348:7;;10357:47;;10394:10;;10357:47;:::i;:::-;10325:8;:80::i;1807:103::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;1872:30:::1;1899:1;1872:18;:30::i;:::-;1807:103::o:0;33312:121::-;1229:6;;33364:4;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;-1:-1:-1;33381:14:0::1;:22:::0;;-1:-1:-1;;33381:22:0::1;::::0;;;33312:121;:::o;35912:167::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36025:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36025:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35912:167::o;34573:361::-;1229:6;;34683:4;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;34740:18:::1;;34727:9;:31;;34705:132;;;::::0;-1:-1:-1;;;34705:132:0;;6741:2:1;34705:132:0::1;::::0;::::1;6723:21:1::0;6780:2;6760:18;;;6753:30;6819:34;6799:18;;;6792:62;-1:-1:-1;;;6870:18:1;;;6863:49;6929:19;;34705:132:0::1;6539:415:1::0;34705:132:0::1;34898:6;34883:13;7709:12:::0;;;7621:108;34883:13:::1;34871:25;::::0;:9;:25:::1;:::i;:::-;:33;;;;:::i;:::-;34848:20;:56:::0;-1:-1:-1;34922:4:0::1;1447:1;34573:361:::0;;;:::o;36524:370::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;36674:15:::1;:31:::0;;;36716:15:::1;:31:::0;;;36758:9:::1;:19:::0;;;36770:7;36803:33:::1;36734:13:::0;36692;36803:33:::1;:::i;:::-;:45;;;;:::i;:::-;36788:12;:60:::0;;;36883:2:::1;-1:-1:-1::0;36867:18:0::1;36859:27;;;::::0;::::1;;36524:370:::0;;;:::o;33125:112::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;33180:13:::1;:20:::0;;-1:-1:-1;;33211:18:0;;;;;33125:112::o;36197:100::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;36268:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36268:21:0;;::::1;::::0;;;::::1;::::0;;36197:100::o;6720:104::-;6776:13;6809:7;6802:14;;;;;:::i;37981:304::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;38125:13:::1;-1:-1:-1::0;;;;;38117:21:0::1;:4;-1:-1:-1::0;;;;;38117:21:0::1;::::0;38095:128:::1;;;::::0;-1:-1:-1;;;38095:128:0;;7161:2:1;38095:128:0::1;::::0;::::1;7143:21:1::0;7200:2;7180:18;;;7173:30;7239:34;7219:18;;;7212:62;7310:27;7290:18;;;7283:55;7355:19;;38095:128:0::1;6959:421:1::0;38095:128:0::1;38236:41;38265:4;38271:5;38236:28;:41::i;:::-;37981:304:::0;;:::o;10938:413::-;610:10;11031:4;11075:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11075:34:0;;;;;;;;;;11128:35;;;;11120:85;;;;-1:-1:-1;;;11120:85:0;;7587:2:1;11120:85:0;;;7569:21:1;7626:2;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;-1:-1:-1;;;7716:18:1;;;7709:35;7761:19;;11120:85:0;7385:401:1;11120:85:0;11241:67;610:10;11264:7;11292:15;11273:16;:34;11241:8;:67::i;:::-;-1:-1:-1;11339:4:0;;10938:413;-1:-1:-1;;;10938:413:0:o;8132:175::-;8218:4;8235:42;610:10;8259:9;8270:6;8235:9;:42::i;37664:182::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37749:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37749:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37804:34;;1163:41:1;;;37804:34:0::1;::::0;1136:18:1;37804:34:0::1;;;;;;;37664:182:::0;;:::o;37118:379::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;37269:16:::1;:32:::0;;;37312:16:::1;:32:::0;;;37355:10:::1;:20:::0;;;37368:7;37402:35:::1;37331:13:::0;37288;37402:35:::1;:::i;:::-;:48;;;;:::i;:::-;37386:13;:64:::0;;;37486:2:::1;-1:-1:-1::0;37469:19:0::1;37461:28;;;::::0;::::1;35492:232:::0;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;35601:1:::1;35591:6;:11;;35569:97;;;::::0;-1:-1:-1;;;35569:97:0;;7993:2:1;35569:97:0::1;::::0;::::1;7975:21:1::0;8032:2;8012:18;;;8005:30;8071:34;8051:18;;;8044:62;-1:-1:-1;;;8122:18:1;;;8115:34;8166:19;;35569:97:0::1;7791:400:1::0;35569:97:0::1;35712:4;35698:13;7709:12:::0;;;7621:108;35698:13:::1;35689:22;::::0;:6;:22:::1;:::i;:::-;:27;;;;:::i;:::-;35677:9;:39:::0;-1:-1:-1;35492:232:0:o;33810:619::-;1229:6;;33918:4;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;33975:1:::1;33962:9;:14;;33940:117;;;::::0;-1:-1:-1;;;33940:117:0;;8398:2:1;33940:117:0::1;::::0;::::1;8380:21:1::0;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;-1:-1:-1;;;8527:18:1;;;8520:51;8588:19;;33940:117:0::1;8196:417:1::0;33940:117:0::1;34103:3;34090:9;:16;;34068:118;;;::::0;-1:-1:-1;;;34068:118:0;;8820:2:1;34068:118:0::1;::::0;::::1;8802:21:1::0;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;-1:-1:-1;;;8949:18:1;;;8942:50;9009:19;;34068:118:0::1;8618:416:1::0;34068:118:0::1;34232:20;;34219:9;:33;;34197:137;;;::::0;-1:-1:-1;;;34197:137:0;;9241:2:1;34197:137:0::1;::::0;::::1;9223:21:1::0;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:52;9432:19;;34197:137:0::1;9039:418:1::0;34197:137:0::1;34393:6;34378:13;7709:12:::0;;;7621:108;34378:13:::1;34366:25;::::0;:9;:25:::1;:::i;:::-;:33;;;;:::i;:::-;34345:18;:54:::0;-1:-1:-1;34417:4:0::1;33810:619:::0;;;:::o;33504:135::-;1229:6;;33564:4;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;-1:-1:-1;33581:20:0::1;:28:::0;;-1:-1:-1;;33581:28:0::1;::::0;;;33504:135;:::o;2065:201::-;1229:6;;-1:-1:-1;;;;;1229:6:0;610:10;1376:23;1368:68;;;;-1:-1:-1;;;1368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2154:22:0;::::1;2146:73;;;::::0;-1:-1:-1;;;2146:73:0;;9664:2:1;2146:73:0::1;::::0;::::1;9646:21:1::0;9703:2;9683:18;;;9676:30;9742:34;9722:18;;;9715:62;-1:-1:-1;;;9793:18:1;;;9786:36;9839:19;;2146:73:0::1;9462:402:1::0;2146:73:0::1;2230:28;2249:8;2230:18;:28::i;:::-;2065:201:::0;:::o;14622:380::-;-1:-1:-1;;;;;14758:19:0;;14750:68;;;;-1:-1:-1;;;14750:68:0;;10071:2:1;14750:68:0;;;10053:21:1;10110:2;10090:18;;;10083:30;10149:34;10129:18;;;10122:62;-1:-1:-1;;;10200:18:1;;;10193:34;10244:19;;14750:68:0;9869:400:1;14750:68:0;-1:-1:-1;;;;;14837:21:0;;14829:68;;;;-1:-1:-1;;;14829:68:0;;10476:2:1;14829:68:0;;;10458:21:1;10515:2;10495:18;;;10488:30;10554:34;10534:18;;;10527:62;-1:-1:-1;;;10605:18:1;;;10598:32;10647:19;;14829:68:0;10274:398:1;14829:68:0;-1:-1:-1;;;;;14910:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14962:32;;1848:25:1;;;14962:32:0;;1821:18:1;14962:32:0;;;;;;;14622:380;;;:::o;38623:4717::-;-1:-1:-1;;;;;38755:18:0;;38747:68;;;;-1:-1:-1;;;38747:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38834:16:0;;38826:64;;;;-1:-1:-1;;;38826:64:0;;;;;;;:::i;:::-;38907:6;38917:1;38907:11;38903:93;;38935:28;38951:4;38957:2;38961:1;38935:15;:28::i;38903:93::-;39012:14;;;;39008:2487;;;1229:6;;-1:-1:-1;;;;;39065:15:0;;;1229:6;;39065:15;;;;:49;;-1:-1:-1;1229:6:0;;-1:-1:-1;;;;;39101:13:0;;;1229:6;;39101:13;;39065:49;:86;;;;-1:-1:-1;;;;;;39135:16:0;;;;39065:86;:128;;;;-1:-1:-1;;;;;;39172:21:0;;39186:6;39172:21;;39065:128;:158;;;;-1:-1:-1;39215:8:0;;-1:-1:-1;;;39215:8:0;;;;39214:9;39065:158;39043:2441;;;39263:13;;;;;;;39258:223;;-1:-1:-1;;;;;39335:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39364:23:0;;;;;;:19;:23;;;;;;;;39335:52;39301:160;;;;-1:-1:-1;;;39301:160:0;;11689:2:1;39301:160:0;;;11671:21:1;11728:2;11708:18;;;11701:30;-1:-1:-1;;;11747:18:1;;;11740:52;11809:18;;39301:160:0;11487:346:1;39301:160:0;39637:20;;;;39633:641;;;1229:6;;-1:-1:-1;;;;;39712:13:0;;;1229:6;;39712:13;;;;:72;;;39768:15;-1:-1:-1;;;;;39754:30:0;:2;-1:-1:-1;;;;;39754:30:0;;;39712:72;:129;;;;;39827:13;-1:-1:-1;;;;;39813:28:0;:2;-1:-1:-1;;;;;39813:28:0;;;39712:129;39682:573;;;39959:9;39930:39;;;;:28;:39;;;;;;40005:12;-1:-1:-1;39892:258:0;;;;-1:-1:-1;;;39892:258:0;;12040:2:1;39892:258:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;12189:34;12169:18;;;12162:62;-1:-1:-1;;;12240:19:1;;;12233:40;12290:19;;39892:258:0;11838:477:1;39892:258:0;40206:9;40177:39;;;;:28;:39;;;;;40219:12;40177:54;;39682:573;-1:-1:-1;;;;;40348:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40405:35:0;;;;;;:31;:35;;;;;;;;40404:36;40348:92;40322:1147;;;40527:20;;40517:6;:30;;40483:169;;;;-1:-1:-1;;;40483:169:0;;12522:2:1;40483:169:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:51;12712:19;;40483:169:0;12320:417:1;40483:169:0;40735:9;;-1:-1:-1;;;;;7893:18:0;;7866:7;7893:18;;;;;;;;;;;40709:22;;:6;:22;:::i;:::-;:35;;40675:140;;;;-1:-1:-1;;;40675:140:0;;12944:2:1;40675:140:0;;;12926:21:1;12983:2;12963:18;;;12956:30;-1:-1:-1;;;13002:18:1;;;12995:49;13061:18;;40675:140:0;12742:343:1;40675:140:0;40322:1147;;;-1:-1:-1;;;;;40913:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40968:37:0;;;;;;:31;:37;;;;;;;;40967:38;40913:92;40887:582;;;41092:20;;41082:6;:30;;41048:170;;;;-1:-1:-1;;;41048:170:0;;13292:2:1;41048:170:0;;;13274:21:1;13331:2;13311:18;;;13304:30;13370:34;13350:18;;;13343:62;-1:-1:-1;;;13421:18:1;;;13414:52;13483:19;;41048:170:0;13090:418:1;40887:582:0;-1:-1:-1;;;;;41249:35:0;;;;;;:31;:35;;;;;;;;41244:225;;41369:9;;-1:-1:-1;;;;;7893:18:0;;7866:7;7893:18;;;;;;;;;;;41343:22;;:6;:22;:::i;:::-;:35;;41309:140;;;;-1:-1:-1;;;41309:140:0;;12944:2:1;41309:140:0;;;12926:21:1;12983:2;12963:18;;;12956:30;-1:-1:-1;;;13002:18:1;;;12995:49;13061:18;;41309:140:0;12742:343:1;41309:140:0;41556:4;41507:28;7893:18;;;;;;;;;;;41614;;41590:42;;;;;;;41663:35;;-1:-1:-1;41687:11:0;;;;;;;41663:35;:61;;;;-1:-1:-1;41716:8:0;;-1:-1:-1;;;41716:8:0;;;;41715:9;41663:61;:110;;;;-1:-1:-1;;;;;;41742:31:0;;;;;;:25;:31;;;;;;;;41741:32;41663:110;:153;;;;-1:-1:-1;;;;;;41791:25:0;;;;;;:19;:25;;;;;;;;41790:26;41663:153;:194;;;;-1:-1:-1;;;;;;41834:23:0;;;;;;:19;:23;;;;;;;;41833:24;41663:194;41645:326;;;41884:8;:15;;-1:-1:-1;;;;41884:15:0;-1:-1:-1;;;41884:15:0;;;41916:10;:8;:10::i;:::-;41943:8;:16;;-1:-1:-1;;;;41943:16:0;;;41645:326;41999:8;;-1:-1:-1;;;;;42109:25:0;;41983:12;42109:25;;;:19;:25;;;;;;41999:8;-1:-1:-1;;;41999:8:0;;;;;41998:9;;42109:25;;:52;;-1:-1:-1;;;;;;42138:23:0;;;;;;:19;:23;;;;;;;;42109:52;42105:100;;;-1:-1:-1;42188:5:0;42105:100;42217:12;42322:7;42318:969;;;-1:-1:-1;;;;;42374:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42423:1;42407:13;;:17;42374:50;42370:768;;;42452:34;42482:3;42452:25;42463:13;;42452:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42445:41;;42555:13;;42535:16;;42528:4;:23;;;;:::i;:::-;42527:41;;;;:::i;:::-;42505:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42625:13:0;;42611:10;;42604:17;;:4;:17;:::i;:::-;42603:35;;;;:::i;:::-;42587:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42707:13:0;;42687:16;;42680:23;;:4;:23;:::i;:::-;42679:41;;;;:::i;:::-;42657:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42370:768:0;;-1:-1:-1;42370:768:0;;-1:-1:-1;;;;;42782:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42832:1;42817:12;;:16;42782:51;42778:360;;;42861:33;42890:3;42861:24;42872:12;;42861:6;:10;;:24;;;;:::i;:33::-;42854:40;;42962:12;;42943:15;;42936:4;:22;;;;:::i;:::-;42935:39;;;;:::i;:::-;42913:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43030:12:0;;43017:9;;43010:16;;:4;:16;:::i;:::-;43009:33;;;;:::i;:::-;42993:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43110:12:0;;43091:15;;43084:22;;:4;:22;:::i;:::-;43083:39;;;;:::i;:::-;43061:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42778:360:0;43158:8;;43154:91;;43187:42;43203:4;43217;43224;43187:15;:42::i;:::-;43261:14;43271:4;43261:14;;:::i;:::-;;;42318:969;43299:33;43315:4;43321:2;43325:6;43299:15;:33::i;:::-;38736:4604;;;;38623:4717;;;:::o;2426:191::-;2519:6;;;-1:-1:-1;;;;;2536:17:0;;;-1:-1:-1;;;;;;2536:17:0;;;;;;;2569:40;;2519:6;;;2536:17;2519:6;;2569:40;;2500:16;;2569:40;2489:128;2426:191;:::o;38293:188::-;-1:-1:-1;;;;;38376:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38376:39:0;;;;;;;;;;38433:40;;38376:39;;:31;38433:40;;;38293:188;;:::o;11841:733::-;-1:-1:-1;;;;;11981:20:0;;11973:70;;;;-1:-1:-1;;;11973:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12062:23:0;;12054:71;;;;-1:-1:-1;;;12054:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12222:17:0;;12198:21;12222:17;;;;;;;;;;;12258:23;;;;12250:74;;;;-1:-1:-1;;;12250:74:0;;13848:2:1;12250:74:0;;;13830:21:1;13887:2;13867:18;;;13860:30;13926:34;13906:18;;;13899:62;-1:-1:-1;;;13977:18:1;;;13970:36;14023:19;;12250:74:0;13646:402:1;12250:74:0;-1:-1:-1;;;;;12360:17:0;;;:9;:17;;;;;;;;;;;12380:22;;;12360:42;;12424:20;;;;;;;;:30;;12396:6;;12360:9;12424:30;;12396:6;;12424:30;:::i;:::-;;;;;;;;12489:9;-1:-1:-1;;;;;12472:35:0;12481:6;-1:-1:-1;;;;;12472:35:0;;12500:6;12472:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;12472:35:0;;;;;;;;11962:612;11841:733;;;:::o;44467:1750::-;44550:4;44506:23;7893:18;;;;;;;;;;;44506:50;;44567:25;44663:12;;44629:18;;44595;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44567:108;-1:-1:-1;44686:12:0;44715:20;;;:46;;-1:-1:-1;44739:22:0;;44715:46;44711:85;;;44778:7;;;44467:1750::o;44711:85::-;44830:20;;44812:15;:38;44808:109;;;44885:20;;44867:38;;44808:109;44978:23;45091:1;45058:17;45023:18;;45005:15;:36;;;;:::i;:::-;45004:71;;;;:::i;:::-;:88;;;;:::i;:::-;44978:114;-1:-1:-1;45103:26:0;45132:36;:15;44978:114;45132:19;:36::i;:::-;45103:65;-1:-1:-1;45209:21:0;45243:36;45103:65;45243:16;:36::i;:::-;45292:18;45313:44;:21;45339:17;45313:25;:44::i;:::-;45292:65;;45370:23;45396:81;45449:17;45396:34;45411:18;;45396:10;:14;;:34;;;;:::i;:81::-;45370:107;;45488:17;45508:51;45541:17;45508:28;45523:12;;45508:10;:14;;:28;;;;:::i;:51::-;45488:71;-1:-1:-1;45572:23:0;45488:71;45598:28;45611:15;45598:10;:28;:::i;:::-;:40;;;;:::i;:::-;45672:1;45651:18;:22;;;45684:18;:22;;;45717:12;:16;;;45768:9;;45760:45;;45572:66;;-1:-1:-1;;;;;;45768:9:0;;45791;;45760:45;45672:1;45760:45;45791:9;45768;45760:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45746:59:0;;-1:-1:-1;;45822:19:0;;;;;:42;;;45863:1;45845:15;:19;45822:42;45818:278;;;45881:46;45894:15;45911;45881:12;:46::i;:::-;46051:18;;45947:137;;;14465:25:1;;;14521:2;14506:18;;14499:34;;;14549:18;;;14542:34;;;;45947:137:0;;;;;;14453:2:1;45947:137:0;;;45818:278;46130:15;;46122:87;;-1:-1:-1;;;;;46130:15:0;;;;46173:21;;46122:87;;;;46173:21;46130:15;46122:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44467:1750:0:o;19551:98::-;19609:7;19636:5;19640:1;19636;:5;:::i;:::-;19629:12;19551:98;-1:-1:-1;;;19551:98:0:o;19950:::-;20008:7;20035:5;20039:1;20035;:5;:::i;19194:98::-;19252:7;19279:5;19283:1;19279;:5;:::i;43348:589::-;43498:16;;;43512:1;43498:16;;;;;;;;43474:21;;43498:16;;;;;;;;;;-1:-1:-1;43498:16:0;43474:40;;43543:4;43525;43530:1;43525:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43525:23:0;;;-1:-1:-1;;;;;43525:23:0;;;;;43569:15;-1:-1:-1;;;;;43569:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43559:4;43564:1;43559:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43559:32:0;;;-1:-1:-1;;;;;43559:32:0;;;;;43604:62;43621:4;43636:15;43654:11;43604:8;:62::i;:::-;43705:224;;-1:-1:-1;;;43705:224:0;;-1:-1:-1;;;;;43705:15:0;:66;;;;:224;;43786:11;;43812:1;;43856:4;;43883;;43903:15;;43705:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43403:534;43348:589;:::o;43945:514::-;44093:62;44110:4;44125:15;44143:11;44093:8;:62::i;:::-;44402:8;;44198:253;;-1:-1:-1;;;44198:253:0;;44270:4;44198:253;;;16433:34:1;16483:18;;;16476:34;;;44316:1:0;16526:18:1;;;16519:34;;;16569:18;;;16562:34;-1:-1:-1;;;;;44402:8:0;;;16612:19:1;;;16605:44;44425:15:0;16665:19:1;;;16658:35;44198:15:0;:31;;;;;;44237:9;;16367:19:1;;44198:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43945:514;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:315;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3092:315;;;;;:::o;3412:316::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;-1:-1:-1;;3597:23:1;;;3667:2;3652:18;;3639:32;;-1:-1:-1;3718:2:1;3703:18;;;3690:32;;3412:316;-1:-1:-1;3412:316:1:o;3733:180::-;3789:6;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:26;3897:9;3881:26;:::i;3918:388::-;3986:6;3994;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4102:9;4089:23;4121:31;4146:5;4121:31;:::i;:::-;4171:5;-1:-1:-1;4228:2:1;4213:18;;4200:32;4241:33;4200:32;4241:33;:::i;:::-;4293:7;4283:17;;;3918:388;;;;;:::o;4311:380::-;4390:1;4386:12;;;;4433;;;4454:61;;4508:4;4500:6;4496:17;4486:27;;4454:61;4561:2;4553:6;4550:14;4530:18;4527:38;4524:161;;4607:10;4602:3;4598:20;4595:1;4588:31;4642:4;4639:1;4632:15;4670:4;4667:1;4660:15;4524:161;;4311:380;;;:::o;4696:356::-;4898:2;4880:21;;;4917:18;;;4910:30;4976:34;4971:2;4956:18;;4949:62;5043:2;5028:18;;4696:356::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:168;5262:9;;;5293;;5310:15;;;5304:22;;5290:37;5280:71;;5331:18;;:::i;5362:217::-;5402:1;5428;5418:132;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5418:132;-1:-1:-1;5564:9:1;;5362:217::o;6409:125::-;6474:9;;;6495:10;;;6492:36;;;6508:18;;:::i;10677:401::-;10879:2;10861:21;;;10918:2;10898:18;;;10891:30;10957:34;10952:2;10937:18;;10930:62;-1:-1:-1;;;11023:2:1;11008:18;;11001:35;11068:3;11053:19;;10677:401::o;11083:399::-;11285:2;11267:21;;;11324:2;11304:18;;;11297:30;11363:34;11358:2;11343:18;;11336:62;-1:-1:-1;;;11429:2:1;11414:18;;11407:33;11472:3;11457:19;;11083:399::o;13513:128::-;13580:9;;;13601:11;;;13598:37;;;13615:18;;:::i;14719:127::-;14780:10;14775:3;14771:20;14768:1;14761:31;14811:4;14808:1;14801:15;14835:4;14832:1;14825:15;14851:251;14921:6;14974:2;14962:9;14953:7;14949:23;14945:32;14942:52;;;14990:1;14987;14980:12;14942:52;15022:9;15016:16;15041:31;15066:5;15041:31;:::i;15107:980::-;15369:4;15417:3;15406:9;15402:19;15448:6;15437:9;15430:25;15474:2;15512:6;15507:2;15496:9;15492:18;15485:34;15555:3;15550:2;15539:9;15535:18;15528:31;15579:6;15614;15608:13;15645:6;15637;15630:22;15683:3;15672:9;15668:19;15661:26;;15722:2;15714:6;15710:15;15696:29;;15743:1;15753:195;15767:6;15764:1;15761:13;15753:195;;;15832:13;;-1:-1:-1;;;;;15828:39:1;15816:52;;15923:15;;;;15888:12;;;;15864:1;15782:9;15753:195;;;-1:-1:-1;;;;;;;16004:32:1;;;;15999:2;15984:18;;15977:60;-1:-1:-1;;;16068:3:1;16053:19;16046:35;15965:3;15107:980;-1:-1:-1;;;15107:980:1:o;16704:306::-;16792:6;16800;16808;16861:2;16849:9;16840:7;16836:23;16832:32;16829:52;;;16877:1;16874;16867:12;16829:52;16906:9;16900:16;16890:26;;16956:2;16945:9;16941:18;16935:25;16925:35;;17000:2;16989:9;16985:18;16979:25;16969:35;;16704:306;;;;;:::o

Swarm Source

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