ETH Price: $3,461.89 (+2.57%)

Token

YieldX (YIELDX)
 

Overview

Max Total Supply

100,000,000 YIELDX

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
386,353.073544227291870524 YIELDX

Value
$0.00
0xf44451985eedbbac20db1e5f27f17812497f6d06
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:
YieldX

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-22
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/*
$YIELDX 

YieldX - A decentralized protocol designed to maximize liquidity and returns for liquidity providers.

Telegram:
https://t.me/YieldXPortal
Web:
https://yieldx.cc
X:
https://x.com/YieldXProtocol


*/

// --- Context.sol ---
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)


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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// --- IERC20.sol ---
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

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

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

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// --- IERC20Metadata.sol ---
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// --- Ownable.sol ---
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// --- ERC20.sol ---
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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


interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract YieldX is ERC20, Ownable {

    uint256 private buyTax = 25;
    uint256 private sellTax = 30;

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;
    mapping(address => bool) public isExempt;
    
    address private immutable marketingAddress;
    address private immutable taxAddress;

    uint256 public maxTransactionAmount;
    uint256 public maxTxLaunch;
    bool private launch = false;
    bool private slowLaunch = true;
    uint256 private blockLaunch;
    uint256 private lastSellBlock;
    uint256 private sellCount;
    uint256 private minSwap;
    uint256 private maxSwap;
    uint256 private _buyCount= 0;
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        address _taxAddress,
        address _marketingAddress,
        address _daoWallet // Add DAO wallet parameter
    ) ERC20("YieldX", "YIELDX") Ownable() {
        uint256 totalSupply = 100000000 * 10**18; // 100 million tokens with 18 decimals

        marketingAddress = _marketingAddress;
        taxAddress = _taxAddress;

        // Exempt key addresses from taxes
        isExempt[msg.sender] = true; 
        isExempt[address(this)] = true; 
        isExempt[_marketingAddress] = true;
        isExempt[_daoWallet] = true; // Exempt DAO wallet from taxes

        // Mint 75% of the total supply to the contract deployer (signer)
        _mint(msg.sender, totalSupply * 75 / 100);

        // Mint 20% of the total supply to the DAO wallet
        _mint(_daoWallet, totalSupply * 20 / 100);

        // Mint 5% of the total supply to the marketing address
        _mint(_marketingAddress, totalSupply * 5 / 100);

        // Uniswap setup for liquidity
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap V2 Router
        uniswapV2Pair = address(
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH())
        );
        
        maxTransactionAmount = totalSupply * 1 / 100; // 1% max transaction limit
        maxTxLaunch = totalSupply * 3 / 1000; // 0.3% during launch
        maxSwap = 200000 * 10**18; // Max swap 200,000 tokens
        minSwap = 25000 * 10**18; // Min swap 25,000 tokens
    }

    function addLiquidityV2() external onlyOwner {
        _approve(address(this), address(uniswapV2Router), balanceOf(address(this)));
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

     function getMinCASwap() public view returns (uint256){
        return minSwap / 10**decimals();
    }

    function setMaxCASwap(uint256 _maxSwap) external onlyOwner{
        maxSwap = _maxSwap * 10**decimals();
    }

    function setMinSwap(uint256 _minSwap) external onlyOwner{
        minSwap = _minSwap * 10**decimals();
    }

    function switchCaCAnSell() external onlyOwner {
        if (inSwap){
            inSwap = false;
        } else {
            inSwap = true;
        }
    }

    function offSlowLaunch() external onlyOwner {
        slowLaunch = false;
    }

    function getMaxCASwap() public view returns (uint256){
        return maxSwap / 10**decimals();
    }

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

    // Add this mapping to track if a wallet has already bought in the first block
    mapping(address => bool) private hasBoughtInFirstBlock;

    function _transfer(address from, address to, uint256 value) internal virtual override {
        if (!isExempt[from] && !isExempt[to]) {
            require(launch, "Trading has not been launched yet.");
            uint256 tax = 0;

            // Handle the case where slowLaunch is active
            if (slowLaunch && blockLaunch != block.number) {
                require(value <= maxTxLaunch, "Transaction exceeds max launch limit.");
            } else {
                require(value <= maxTransactionAmount, "Transaction exceeds max limit.");
            }

            // Handle sell transactions
            if (to == uniswapV2Pair) {
                tax = sellTax;
                uint256 tokensSwap = balanceOf(address(this));
                if (tokensSwap > minSwap && !inSwap) {
                    if (block.number > lastSellBlock) {
                        sellCount = 0;
                    }
                    if (sellCount < 3) {
                        sellCount++;
                        lastSellBlock = block.number;
                        swapTokensEth(min(maxSwap, min(value, tokensSwap)));
                    }
                }
            }
            // Handle buy transactions (from uniswap pair)
            else if (from == uniswapV2Pair) {
                tax = buyTax;

                // Add the first block buy restriction
                if (block.number == blockLaunch) {
                    require(!hasBoughtInFirstBlock[to], "Wallet already bought in the first block.");
                    hasBoughtInFirstBlock[to] = true; // Mark wallet as having bought in the first block
                    _buyCount++;
                    require(_buyCount <= 20, "Exceeds buys on the first block.");
                    tax = 35; // Apply a special first-block tax rate
                }
            }

            uint256 taxAmount = value * tax / 100;
            uint256 amountAfterTax = value - taxAmount;

            if (taxAmount > 0) {
                super._transfer(from, address(this), taxAmount); // Send tax to contract
            }
            super._transfer(from, to, amountAfterTax);
            return;
        }
        super._transfer(from, to, value);
    }

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }
    
    function setTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner {
        require(newBuyTax < 30 && newSellTax < 30);
        sellTax = newSellTax;
        buyTax = newBuyTax;
    }

    function setMaxTx(uint256 newMaxTx) external onlyOwner {
        maxTransactionAmount = newMaxTx * 10**decimals();
    }

    function removeAllLimits() external onlyOwner {
        maxTransactionAmount = totalSupply();
    }

    function exportETH() external {
        payable(marketingAddress).transfer(address(this).balance);
    }

    function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner {
        isExempt[wAddress] = isExcle;
    }
    
    function openTrading() external onlyOwner {
        launch = true;
        blockLaunch = block.number;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_daoWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidityV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLaunch","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":"offSlowLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCASwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchCaCAnSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600655601e6007555f600d5f6101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055505f60135534801562000052575f80fd5b5060405162003ba638038062003ba68339818101604052810190620000789190620008c3565b6040518060400160405280600681526020017f5969656c645800000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5949454c445800000000000000000000000000000000000000000000000000008152508160039081620000f5919062000b80565b50806004908162000107919062000b80565b5050506200012a6200011e6200062560201b60201c565b6200062c60201b60201c565b5f6a52b7d2dcc80cd2e400000090508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000323336064604b846200030b919062000c91565b62000317919062000d08565b620006ef60201b60201c565b6200035182606460148462000339919062000c91565b62000345919062000d08565b620006ef60201b60201c565b6200037f83606460058462000367919062000c91565b62000373919062000d08565b620006ef60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200043e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000464919062000d3f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000511919062000d3f565b6040518363ffffffff1660e01b81526004016200053092919062000d80565b6020604051808303815f875af11580156200054d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000573919062000d3f565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600182620005c3919062000c91565b620005cf919062000d08565b600b819055506103e8600382620005e7919062000c91565b620005f3919062000d08565b600c81905550692a5a058fc295ed00000060128190555069054b40b1f852bda000006011819055505050505062000e8f565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007579062000e09565b60405180910390fd5b620007735f83836200085460201b60201c565b8060025f82825462000786919062000e29565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000835919062000e74565b60405180910390a3620008505f83836200085960201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200088d8262000862565b9050919050565b6200089f8162000881565b8114620008aa575f80fd5b50565b5f81519050620008bd8162000894565b92915050565b5f805f60608486031215620008dd57620008dc6200085e565b5b5f620008ec86828701620008ad565b9350506020620008ff86828701620008ad565b92505060406200091286828701620008ad565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200099857607f821691505b602082108103620009ae57620009ad62000953565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d5565b62000a1e8683620009d5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a6862000a6262000a5c8462000a36565b62000a3f565b62000a36565b9050919050565b5f819050919050565b62000a838362000a48565b62000a9b62000a928262000a6f565b848454620009e1565b825550505050565b5f90565b62000ab162000aa3565b62000abe81848462000a78565b505050565b5b8181101562000ae55762000ad95f8262000aa7565b60018101905062000ac4565b5050565b601f82111562000b345762000afe81620009b4565b62000b0984620009c6565b8101602085101562000b19578190505b62000b3162000b2885620009c6565b83018262000ac3565b50505b505050565b5f82821c905092915050565b5f62000b565f198460080262000b39565b1980831691505092915050565b5f62000b70838362000b45565b9150826002028217905092915050565b62000b8b826200091c565b67ffffffffffffffff81111562000ba75762000ba662000926565b5b62000bb3825462000980565b62000bc082828562000ae9565b5f60209050601f83116001811462000bf6575f841562000be1578287015190505b62000bed858262000b63565b86555062000c5c565b601f19841662000c0686620009b4565b5f5b8281101562000c2f5784890151825560018201915060208501945060208101905062000c08565b8683101562000c4f578489015162000c4b601f89168262000b45565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c9d8262000a36565b915062000caa8362000a36565b925082820262000cba8162000a36565b9150828204841483151762000cd45762000cd362000c64565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d148262000a36565b915062000d218362000a36565b92508262000d345762000d3362000cdb565b5b828204905092915050565b5f6020828403121562000d575762000d566200085e565b5b5f62000d6684828501620008ad565b91505092915050565b62000d7a8162000881565b82525050565b5f60408201905062000d955f83018562000d6f565b62000da4602083018462000d6f565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000df1601f8362000dab565b915062000dfe8262000dbb565b602082019050919050565b5f6020820190508181035f83015262000e228162000de3565b9050919050565b5f62000e358262000a36565b915062000e428362000a36565b925082820190508082111562000e5d5762000e5c62000c64565b5b92915050565b62000e6e8162000a36565b82525050565b5f60208201905062000e895f83018462000e63565b92915050565b60805160a051612cf562000eb15f395f6118de01525f610bf80152612cf55ff3fe6080604052600436106101db575f3560e01c806395d89b4111610101578063c8c8ebe411610094578063db05e5cb11610063578063db05e5cb14610664578063dd62ed3e1461067a578063f2fde38b146106b6578063ffe270da146106de576101e2565b8063c8c8ebe4146105e6578063c9567bf914610610578063d579d4ed14610626578063d7acde1f1461063c576101e2565b8063a9e282b8116100d0578063a9e282b814610532578063aca2cd6e1461055a578063ad5dff7314610582578063bc337182146105be576101e2565b806395d89b4114610466578063a457c2d714610490578063a508de62146104cc578063a9059cbb146104f6576101e2565b8063395093511161017957806370a082311161014857806370a08231146103d4578063715018a614610410578063826ca8cc146104265780638da5cb5b1461043c576101e2565b8063395093511461031c57806349bd5a5e146103585780634b203e1b14610382578063667f6526146103ac576101e2565b8063095ea7b3116101b5578063095ea7b31461025057806318160ddd1461028c57806323b872dd146102b6578063313ce567146102f2576101e2565b806306fdde03146101e6578063084cf615146102105780630949e8c81461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f4565b6040516102079190611c68565b60405180910390f35b34801561021b575f80fd5b50610224610784565b6040516102319190611ca0565b60405180910390f35b348015610245575f80fd5b5061024e61078a565b005b34801561025b575f80fd5b5061027660048036038101906102719190611d41565b6107ae565b6040516102839190611d99565b60405180910390f35b348015610297575f80fd5b506102a06107d0565b6040516102ad9190611ca0565b60405180910390f35b3480156102c1575f80fd5b506102dc60048036038101906102d79190611db2565b6107d9565b6040516102e99190611d99565b60405180910390f35b3480156102fd575f80fd5b50610306610807565b6040516103139190611e1d565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611d41565b61080f565b60405161034f9190611d99565b60405180910390f35b348015610363575f80fd5b5061036c610845565b6040516103799190611e45565b60405180910390f35b34801561038d575f80fd5b5061039661086a565b6040516103a39190611ca0565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190611e5e565b610891565b005b3480156103df575f80fd5b506103fa60048036038101906103f59190611e9c565b6108c3565b6040516104079190611ca0565b60405180910390f35b34801561041b575f80fd5b50610424610908565b005b348015610431575f80fd5b5061043a61091b565b005b348015610447575f80fd5b50610450610972565b60405161045d9190611e45565b60405180910390f35b348015610471575f80fd5b5061047a61099a565b6040516104879190611c68565b60405180910390f35b34801561049b575f80fd5b506104b660048036038101906104b19190611d41565b610a2a565b6040516104c39190611d99565b60405180910390f35b3480156104d7575f80fd5b506104e0610a9f565b6040516104ed9190611ca0565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190611d41565b610ac6565b6040516105299190611d99565b60405180910390f35b34801561053d575f80fd5b5061055860048036038101906105539190611ec7565b610ae8565b005b348015610565575f80fd5b50610580600480360381019061057b9190611f1c565b610b18565b005b34801561058d575f80fd5b506105a860048036038101906105a39190611e9c565b610b78565b6040516105b59190611d99565b60405180910390f35b3480156105c9575f80fd5b506105e460048036038101906105df9190611ec7565b610b95565b005b3480156105f1575f80fd5b506105fa610bc5565b6040516106079190611ca0565b60405180910390f35b34801561061b575f80fd5b50610624610bcb565b005b348015610631575f80fd5b5061063a610bf6565b005b348015610647575f80fd5b50610662600480360381019061065d9190611ec7565b610c5c565b005b34801561066f575f80fd5b50610678610c8c565b005b348015610685575f80fd5b506106a0600480360381019061069b9190611f5a565b610ca4565b6040516106ad9190611ca0565b60405180910390f35b3480156106c1575f80fd5b506106dc60048036038101906106d79190611e9c565b610d26565b005b3480156106e9575f80fd5b506106f2610da8565b005b60606003805461070390611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90611fc5565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600c5481565b610792610e9e565b5f600d60016101000a81548160ff021916908315150217905550565b5f806107b8610f1c565b90506107c5818585610f23565b600191505092915050565b5f600254905090565b5f806107e3610f1c565b90506107f08582856110e6565b6107fb858585611171565b60019150509392505050565b5f6012905090565b5f80610819610f1c565b905061083a81858561082b8589610ca4565b6108359190612022565b610f23565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610873610807565b600a61087f9190612184565b60115461088c91906121fb565b905090565b610899610e9e565b601e821080156108a95750601e81105b6108b1575f80fd5b80600781905550816006819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610910610e9e565b6109195f611604565b565b610923610e9e565b60145f9054906101000a900460ff1615610955575f60145f6101000a81548160ff021916908315150217905550610970565b600160145f6101000a81548160ff0219169083151502179055505b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a990611fc5565b80601f01602080910402602001604051908101604052809291908181526020018280546109d590611fc5565b8015610a205780601f106109f757610100808354040283529160200191610a20565b820191905f5260205f20905b815481529060010190602001808311610a0357829003601f168201915b5050505050905090565b5f80610a34610f1c565b90505f610a418286610ca4565b905083811015610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061229b565b60405180910390fd5b610a938286868403610f23565b60019250505092915050565b5f610aa8610807565b600a610ab49190612184565b601254610ac191906121fb565b905090565b5f80610ad0610f1c565b9050610add818585611171565b600191505092915050565b610af0610e9e565b610af8610807565b600a610b049190612184565b81610b0f91906122b9565b60118190555050565b610b20610e9e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b610b9d610e9e565b610ba5610807565b600a610bb19190612184565b81610bbc91906122b9565b600b8190555050565b600b5481565b610bd3610e9e565b6001600d5f6101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c59573d5f803e3d5ffd5b50565b610c64610e9e565b610c6c610807565b600a610c789190612184565b81610c8391906122b9565b60128190555050565b610c94610e9e565b610c9c6107d0565b600b81905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d2e610e9e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061236a565b60405180910390fd5b610da581611604565b50565b610db0610e9e565b610de43060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ddf306108c3565b610f23565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e2c306108c3565b5f80610e36610972565b426040518863ffffffff1660e01b8152600401610e58969594939291906123ca565b60606040518083038185885af1158015610e74573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e99919061243d565b505050565b610ea6610f1c565b73ffffffffffffffffffffffffffffffffffffffff16610ec4610972565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906124d7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906125f3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d99190611ca0565b60405180910390a3505050565b5f6110f18484610ca4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116b578181101561115d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111549061265b565b60405180910390fd5b61116a8484848403610f23565b5b50505050565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561120f5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115f357600d5f9054906101000a900460ff16611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906126e9565b60405180910390fd5b5f600d60019054906101000a900460ff168015611281575043600e5414155b156112d057600c548211156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612777565b60405180910390fd5b611316565b600b54821115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906127df565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113fd5760075490505f611379306108c3565b905060115481118015611398575060145f9054906101000a900460ff16155b156113f757600f544311156113af575f6010819055505b600360105410156113f65760105f8154809291906113cc906127fd565b919050555043600f819055506113f56113f06012546113eb86856116c7565b6116c7565b6116df565b5b5b506115a2565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115a1576006549050600e5443036115a05760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906128b4565b60405180910390fd5b600160155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060135f815480929190611550906127fd565b91905055506014601354111561159b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115929061291c565b60405180910390fd5b602390505b5b5b5f606482846115b191906122b9565b6115bb91906121fb565b90505f81846115ca919061293a565b90505f8211156115e0576115df863084611968565b5b6115eb868683611968565b5050506115ff565b6115fe838383611968565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116116d557826116d7565b815b905092915050565b600160145f6101000a81548160ff0219169083151502179055506117253060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f23565b5f600267ffffffffffffffff8111156117415761174061296d565b5b60405190808252806020026020018201604052801561176f5781602001602082028036833780820191505090505b50905030815f815181106117865761178561299a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184e91906129db565b816001815181106118625761186161299a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b815260040161191e959493929190612abd565b5f604051808303815f87803b158015611935575f80fd5b505af1158015611947573d5f803e3d5ffd5b50505050505f60145f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90612b85565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90612c13565b60405180910390fd5b611a4f838383611bd4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990612ca1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bbb9190611ca0565b60405180910390a3611bce848484611bd9565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c15578082015181840152602081019050611bfa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c3a82611bde565b611c448185611be8565b9350611c54818560208601611bf8565b611c5d81611c20565b840191505092915050565b5f6020820190508181035f830152611c808184611c30565b905092915050565b5f819050919050565b611c9a81611c88565b82525050565b5f602082019050611cb35f830184611c91565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ce682611cbd565b9050919050565b611cf681611cdc565b8114611d00575f80fd5b50565b5f81359050611d1181611ced565b92915050565b611d2081611c88565b8114611d2a575f80fd5b50565b5f81359050611d3b81611d17565b92915050565b5f8060408385031215611d5757611d56611cb9565b5b5f611d6485828601611d03565b9250506020611d7585828601611d2d565b9150509250929050565b5f8115159050919050565b611d9381611d7f565b82525050565b5f602082019050611dac5f830184611d8a565b92915050565b5f805f60608486031215611dc957611dc8611cb9565b5b5f611dd686828701611d03565b9350506020611de786828701611d03565b9250506040611df886828701611d2d565b9150509250925092565b5f60ff82169050919050565b611e1781611e02565b82525050565b5f602082019050611e305f830184611e0e565b92915050565b611e3f81611cdc565b82525050565b5f602082019050611e585f830184611e36565b92915050565b5f8060408385031215611e7457611e73611cb9565b5b5f611e8185828601611d2d565b9250506020611e9285828601611d2d565b9150509250929050565b5f60208284031215611eb157611eb0611cb9565b5b5f611ebe84828501611d03565b91505092915050565b5f60208284031215611edc57611edb611cb9565b5b5f611ee984828501611d2d565b91505092915050565b611efb81611d7f565b8114611f05575f80fd5b50565b5f81359050611f1681611ef2565b92915050565b5f8060408385031215611f3257611f31611cb9565b5b5f611f3f85828601611d03565b9250506020611f5085828601611f08565b9150509250929050565b5f8060408385031215611f7057611f6f611cb9565b5b5f611f7d85828601611d03565b9250506020611f8e85828601611d03565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fdc57607f821691505b602082108103611fef57611fee611f98565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61202c82611c88565b915061203783611c88565b925082820190508082111561204f5761204e611ff5565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156120aa5780860481111561208657612085611ff5565b5b60018516156120955780820291505b80810290506120a385612055565b945061206a565b94509492505050565b5f826120c2576001905061217d565b816120cf575f905061217d565b81600181146120e557600281146120ef5761211e565b600191505061217d565b60ff84111561210157612100611ff5565b5b8360020a91508482111561211857612117611ff5565b5b5061217d565b5060208310610133831016604e8410600b84101617156121535782820a90508381111561214e5761214d611ff5565b5b61217d565b6121608484846001612061565b9250905081840481111561217757612176611ff5565b5b81810290505b9392505050565b5f61218e82611c88565b915061219983611e02565b92506121c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846120b3565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61220582611c88565b915061221083611c88565b9250826122205761221f6121ce565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612285602583611be8565b91506122908261222b565b604082019050919050565b5f6020820190508181035f8301526122b281612279565b9050919050565b5f6122c382611c88565b91506122ce83611c88565b92508282026122dc81611c88565b915082820484148315176122f3576122f2611ff5565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612354602683611be8565b915061235f826122fa565b604082019050919050565b5f6020820190508181035f83015261238181612348565b9050919050565b5f819050919050565b5f819050919050565b5f6123b46123af6123aa84612388565b612391565b611c88565b9050919050565b6123c48161239a565b82525050565b5f60c0820190506123dd5f830189611e36565b6123ea6020830188611c91565b6123f760408301876123bb565b61240460608301866123bb565b6124116080830185611e36565b61241e60a0830184611c91565b979650505050505050565b5f8151905061243781611d17565b92915050565b5f805f6060848603121561245457612453611cb9565b5b5f61246186828701612429565b935050602061247286828701612429565b925050604061248386828701612429565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6124c1602083611be8565b91506124cc8261248d565b602082019050919050565b5f6020820190508181035f8301526124ee816124b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61254f602483611be8565b915061255a826124f5565b604082019050919050565b5f6020820190508181035f83015261257c81612543565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125dd602283611be8565b91506125e882612583565b604082019050919050565b5f6020820190508181035f83015261260a816125d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612645601d83611be8565b915061265082612611565b602082019050919050565b5f6020820190508181035f83015261267281612639565b9050919050565b7f54726164696e6720686173206e6f74206265656e206c61756e636865642079655f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f6126d3602283611be8565b91506126de82612679565b604082019050919050565b5f6020820190508181035f830152612700816126c7565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c61756e6368206c5f8201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b5f612761602583611be8565b915061276c82612707565b604082019050919050565b5f6020820190508181035f83015261278e81612755565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c696d69742e00005f82015250565b5f6127c9601e83611be8565b91506127d482612795565b602082019050919050565b5f6020820190508181035f8301526127f6816127bd565b9050919050565b5f61280782611c88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361283957612838611ff5565b5b600182019050919050565b7f57616c6c657420616c726561647920626f7567687420696e20746865206669725f8201527f737420626c6f636b2e0000000000000000000000000000000000000000000000602082015250565b5f61289e602983611be8565b91506128a982612844565b604082019050919050565b5f6020820190508181035f8301526128cb81612892565b9050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e5f82015250565b5f612906602083611be8565b9150612911826128d2565b602082019050919050565b5f6020820190508181035f830152612933816128fa565b9050919050565b5f61294482611c88565b915061294f83611c88565b925082820390508181111561296757612966611ff5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506129d581611ced565b92915050565b5f602082840312156129f0576129ef611cb9565b5b5f6129fd848285016129c7565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612a3881611cdc565b82525050565b5f612a498383612a2f565b60208301905092915050565b5f602082019050919050565b5f612a6b82612a06565b612a758185612a10565b9350612a8083612a20565b805f5b83811015612ab0578151612a978882612a3e565b9750612aa283612a55565b925050600181019050612a83565b5085935050505092915050565b5f60a082019050612ad05f830188611c91565b612add60208301876123bb565b8181036040830152612aef8186612a61565b9050612afe6060830185611e36565b612b0b6080830184611c91565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b6f602583611be8565b9150612b7a82612b15565b604082019050919050565b5f6020820190508181035f830152612b9c81612b63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612bfd602383611be8565b9150612c0882612ba3565b604082019050919050565b5f6020820190508181035f830152612c2a81612bf1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c8b602683611be8565b9150612c9682612c31565b604082019050919050565b5f6020820190508181035f830152612cb881612c7f565b905091905056fea2646970667358221220edc7cde75230cd06a97648a4f299a4888947be82d28bf7ed31d2b61640655a1f64736f6c634300081400330000000000000000000000001eee63e411f4a3c78f8e6bc291b5708f62b734db000000000000000000000000bc919df722be563538a2640b26a7ebb9533f7bd0000000000000000000000000bc9a7cc3493d223774fcbdd837d787f2ca0d0839

Deployed Bytecode

0x6080604052600436106101db575f3560e01c806395d89b4111610101578063c8c8ebe411610094578063db05e5cb11610063578063db05e5cb14610664578063dd62ed3e1461067a578063f2fde38b146106b6578063ffe270da146106de576101e2565b8063c8c8ebe4146105e6578063c9567bf914610610578063d579d4ed14610626578063d7acde1f1461063c576101e2565b8063a9e282b8116100d0578063a9e282b814610532578063aca2cd6e1461055a578063ad5dff7314610582578063bc337182146105be576101e2565b806395d89b4114610466578063a457c2d714610490578063a508de62146104cc578063a9059cbb146104f6576101e2565b8063395093511161017957806370a082311161014857806370a08231146103d4578063715018a614610410578063826ca8cc146104265780638da5cb5b1461043c576101e2565b8063395093511461031c57806349bd5a5e146103585780634b203e1b14610382578063667f6526146103ac576101e2565b8063095ea7b3116101b5578063095ea7b31461025057806318160ddd1461028c57806323b872dd146102b6578063313ce567146102f2576101e2565b806306fdde03146101e6578063084cf615146102105780630949e8c81461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f4565b6040516102079190611c68565b60405180910390f35b34801561021b575f80fd5b50610224610784565b6040516102319190611ca0565b60405180910390f35b348015610245575f80fd5b5061024e61078a565b005b34801561025b575f80fd5b5061027660048036038101906102719190611d41565b6107ae565b6040516102839190611d99565b60405180910390f35b348015610297575f80fd5b506102a06107d0565b6040516102ad9190611ca0565b60405180910390f35b3480156102c1575f80fd5b506102dc60048036038101906102d79190611db2565b6107d9565b6040516102e99190611d99565b60405180910390f35b3480156102fd575f80fd5b50610306610807565b6040516103139190611e1d565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611d41565b61080f565b60405161034f9190611d99565b60405180910390f35b348015610363575f80fd5b5061036c610845565b6040516103799190611e45565b60405180910390f35b34801561038d575f80fd5b5061039661086a565b6040516103a39190611ca0565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190611e5e565b610891565b005b3480156103df575f80fd5b506103fa60048036038101906103f59190611e9c565b6108c3565b6040516104079190611ca0565b60405180910390f35b34801561041b575f80fd5b50610424610908565b005b348015610431575f80fd5b5061043a61091b565b005b348015610447575f80fd5b50610450610972565b60405161045d9190611e45565b60405180910390f35b348015610471575f80fd5b5061047a61099a565b6040516104879190611c68565b60405180910390f35b34801561049b575f80fd5b506104b660048036038101906104b19190611d41565b610a2a565b6040516104c39190611d99565b60405180910390f35b3480156104d7575f80fd5b506104e0610a9f565b6040516104ed9190611ca0565b60405180910390f35b348015610501575f80fd5b5061051c60048036038101906105179190611d41565b610ac6565b6040516105299190611d99565b60405180910390f35b34801561053d575f80fd5b5061055860048036038101906105539190611ec7565b610ae8565b005b348015610565575f80fd5b50610580600480360381019061057b9190611f1c565b610b18565b005b34801561058d575f80fd5b506105a860048036038101906105a39190611e9c565b610b78565b6040516105b59190611d99565b60405180910390f35b3480156105c9575f80fd5b506105e460048036038101906105df9190611ec7565b610b95565b005b3480156105f1575f80fd5b506105fa610bc5565b6040516106079190611ca0565b60405180910390f35b34801561061b575f80fd5b50610624610bcb565b005b348015610631575f80fd5b5061063a610bf6565b005b348015610647575f80fd5b50610662600480360381019061065d9190611ec7565b610c5c565b005b34801561066f575f80fd5b50610678610c8c565b005b348015610685575f80fd5b506106a0600480360381019061069b9190611f5a565b610ca4565b6040516106ad9190611ca0565b60405180910390f35b3480156106c1575f80fd5b506106dc60048036038101906106d79190611e9c565b610d26565b005b3480156106e9575f80fd5b506106f2610da8565b005b60606003805461070390611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90611fc5565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600c5481565b610792610e9e565b5f600d60016101000a81548160ff021916908315150217905550565b5f806107b8610f1c565b90506107c5818585610f23565b600191505092915050565b5f600254905090565b5f806107e3610f1c565b90506107f08582856110e6565b6107fb858585611171565b60019150509392505050565b5f6012905090565b5f80610819610f1c565b905061083a81858561082b8589610ca4565b6108359190612022565b610f23565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610873610807565b600a61087f9190612184565b60115461088c91906121fb565b905090565b610899610e9e565b601e821080156108a95750601e81105b6108b1575f80fd5b80600781905550816006819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610910610e9e565b6109195f611604565b565b610923610e9e565b60145f9054906101000a900460ff1615610955575f60145f6101000a81548160ff021916908315150217905550610970565b600160145f6101000a81548160ff0219169083151502179055505b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a990611fc5565b80601f01602080910402602001604051908101604052809291908181526020018280546109d590611fc5565b8015610a205780601f106109f757610100808354040283529160200191610a20565b820191905f5260205f20905b815481529060010190602001808311610a0357829003601f168201915b5050505050905090565b5f80610a34610f1c565b90505f610a418286610ca4565b905083811015610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061229b565b60405180910390fd5b610a938286868403610f23565b60019250505092915050565b5f610aa8610807565b600a610ab49190612184565b601254610ac191906121fb565b905090565b5f80610ad0610f1c565b9050610add818585611171565b600191505092915050565b610af0610e9e565b610af8610807565b600a610b049190612184565b81610b0f91906122b9565b60118190555050565b610b20610e9e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b610b9d610e9e565b610ba5610807565b600a610bb19190612184565b81610bbc91906122b9565b600b8190555050565b600b5481565b610bd3610e9e565b6001600d5f6101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000bc919df722be563538a2640b26a7ebb9533f7bd073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c59573d5f803e3d5ffd5b50565b610c64610e9e565b610c6c610807565b600a610c789190612184565b81610c8391906122b9565b60128190555050565b610c94610e9e565b610c9c6107d0565b600b81905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d2e610e9e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061236a565b60405180910390fd5b610da581611604565b50565b610db0610e9e565b610de43060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ddf306108c3565b610f23565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e2c306108c3565b5f80610e36610972565b426040518863ffffffff1660e01b8152600401610e58969594939291906123ca565b60606040518083038185885af1158015610e74573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e99919061243d565b505050565b610ea6610f1c565b73ffffffffffffffffffffffffffffffffffffffff16610ec4610972565b73ffffffffffffffffffffffffffffffffffffffff1614610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906124d7565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906125f3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d99190611ca0565b60405180910390a3505050565b5f6110f18484610ca4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116b578181101561115d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111549061265b565b60405180910390fd5b61116a8484848403610f23565b5b50505050565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561120f5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156115f357600d5f9054906101000a900460ff16611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906126e9565b60405180910390fd5b5f600d60019054906101000a900460ff168015611281575043600e5414155b156112d057600c548211156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612777565b60405180910390fd5b611316565b600b54821115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906127df565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113fd5760075490505f611379306108c3565b905060115481118015611398575060145f9054906101000a900460ff16155b156113f757600f544311156113af575f6010819055505b600360105410156113f65760105f8154809291906113cc906127fd565b919050555043600f819055506113f56113f06012546113eb86856116c7565b6116c7565b6116df565b5b5b506115a2565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115a1576006549050600e5443036115a05760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906128b4565b60405180910390fd5b600160155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060135f815480929190611550906127fd565b91905055506014601354111561159b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115929061291c565b60405180910390fd5b602390505b5b5b5f606482846115b191906122b9565b6115bb91906121fb565b90505f81846115ca919061293a565b90505f8211156115e0576115df863084611968565b5b6115eb868683611968565b5050506115ff565b6115fe838383611968565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116116d557826116d7565b815b905092915050565b600160145f6101000a81548160ff0219169083151502179055506117253060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f23565b5f600267ffffffffffffffff8111156117415761174061296d565b5b60405190808252806020026020018201604052801561176f5781602001602082028036833780820191505090505b50905030815f815181106117865761178561299a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184e91906129db565b816001815181106118625761186161299a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f0000000000000000000000001eee63e411f4a3c78f8e6bc291b5708f62b734db426040518663ffffffff1660e01b815260040161191e959493929190612abd565b5f604051808303815f87803b158015611935575f80fd5b505af1158015611947573d5f803e3d5ffd5b50505050505f60145f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90612b85565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90612c13565b60405180910390fd5b611a4f838383611bd4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990612ca1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bbb9190611ca0565b60405180910390a3611bce848484611bd9565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c15578082015181840152602081019050611bfa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c3a82611bde565b611c448185611be8565b9350611c54818560208601611bf8565b611c5d81611c20565b840191505092915050565b5f6020820190508181035f830152611c808184611c30565b905092915050565b5f819050919050565b611c9a81611c88565b82525050565b5f602082019050611cb35f830184611c91565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ce682611cbd565b9050919050565b611cf681611cdc565b8114611d00575f80fd5b50565b5f81359050611d1181611ced565b92915050565b611d2081611c88565b8114611d2a575f80fd5b50565b5f81359050611d3b81611d17565b92915050565b5f8060408385031215611d5757611d56611cb9565b5b5f611d6485828601611d03565b9250506020611d7585828601611d2d565b9150509250929050565b5f8115159050919050565b611d9381611d7f565b82525050565b5f602082019050611dac5f830184611d8a565b92915050565b5f805f60608486031215611dc957611dc8611cb9565b5b5f611dd686828701611d03565b9350506020611de786828701611d03565b9250506040611df886828701611d2d565b9150509250925092565b5f60ff82169050919050565b611e1781611e02565b82525050565b5f602082019050611e305f830184611e0e565b92915050565b611e3f81611cdc565b82525050565b5f602082019050611e585f830184611e36565b92915050565b5f8060408385031215611e7457611e73611cb9565b5b5f611e8185828601611d2d565b9250506020611e9285828601611d2d565b9150509250929050565b5f60208284031215611eb157611eb0611cb9565b5b5f611ebe84828501611d03565b91505092915050565b5f60208284031215611edc57611edb611cb9565b5b5f611ee984828501611d2d565b91505092915050565b611efb81611d7f565b8114611f05575f80fd5b50565b5f81359050611f1681611ef2565b92915050565b5f8060408385031215611f3257611f31611cb9565b5b5f611f3f85828601611d03565b9250506020611f5085828601611f08565b9150509250929050565b5f8060408385031215611f7057611f6f611cb9565b5b5f611f7d85828601611d03565b9250506020611f8e85828601611d03565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fdc57607f821691505b602082108103611fef57611fee611f98565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61202c82611c88565b915061203783611c88565b925082820190508082111561204f5761204e611ff5565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156120aa5780860481111561208657612085611ff5565b5b60018516156120955780820291505b80810290506120a385612055565b945061206a565b94509492505050565b5f826120c2576001905061217d565b816120cf575f905061217d565b81600181146120e557600281146120ef5761211e565b600191505061217d565b60ff84111561210157612100611ff5565b5b8360020a91508482111561211857612117611ff5565b5b5061217d565b5060208310610133831016604e8410600b84101617156121535782820a90508381111561214e5761214d611ff5565b5b61217d565b6121608484846001612061565b9250905081840481111561217757612176611ff5565b5b81810290505b9392505050565b5f61218e82611c88565b915061219983611e02565b92506121c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846120b3565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61220582611c88565b915061221083611c88565b9250826122205761221f6121ce565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612285602583611be8565b91506122908261222b565b604082019050919050565b5f6020820190508181035f8301526122b281612279565b9050919050565b5f6122c382611c88565b91506122ce83611c88565b92508282026122dc81611c88565b915082820484148315176122f3576122f2611ff5565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612354602683611be8565b915061235f826122fa565b604082019050919050565b5f6020820190508181035f83015261238181612348565b9050919050565b5f819050919050565b5f819050919050565b5f6123b46123af6123aa84612388565b612391565b611c88565b9050919050565b6123c48161239a565b82525050565b5f60c0820190506123dd5f830189611e36565b6123ea6020830188611c91565b6123f760408301876123bb565b61240460608301866123bb565b6124116080830185611e36565b61241e60a0830184611c91565b979650505050505050565b5f8151905061243781611d17565b92915050565b5f805f6060848603121561245457612453611cb9565b5b5f61246186828701612429565b935050602061247286828701612429565b925050604061248386828701612429565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6124c1602083611be8565b91506124cc8261248d565b602082019050919050565b5f6020820190508181035f8301526124ee816124b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61254f602483611be8565b915061255a826124f5565b604082019050919050565b5f6020820190508181035f83015261257c81612543565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125dd602283611be8565b91506125e882612583565b604082019050919050565b5f6020820190508181035f83015261260a816125d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612645601d83611be8565b915061265082612611565b602082019050919050565b5f6020820190508181035f83015261267281612639565b9050919050565b7f54726164696e6720686173206e6f74206265656e206c61756e636865642079655f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f6126d3602283611be8565b91506126de82612679565b604082019050919050565b5f6020820190508181035f830152612700816126c7565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c61756e6368206c5f8201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b5f612761602583611be8565b915061276c82612707565b604082019050919050565b5f6020820190508181035f83015261278e81612755565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c696d69742e00005f82015250565b5f6127c9601e83611be8565b91506127d482612795565b602082019050919050565b5f6020820190508181035f8301526127f6816127bd565b9050919050565b5f61280782611c88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361283957612838611ff5565b5b600182019050919050565b7f57616c6c657420616c726561647920626f7567687420696e20746865206669725f8201527f737420626c6f636b2e0000000000000000000000000000000000000000000000602082015250565b5f61289e602983611be8565b91506128a982612844565b604082019050919050565b5f6020820190508181035f8301526128cb81612892565b9050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e5f82015250565b5f612906602083611be8565b9150612911826128d2565b602082019050919050565b5f6020820190508181035f830152612933816128fa565b9050919050565b5f61294482611c88565b915061294f83611c88565b925082820390508181111561296757612966611ff5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506129d581611ced565b92915050565b5f602082840312156129f0576129ef611cb9565b5b5f6129fd848285016129c7565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612a3881611cdc565b82525050565b5f612a498383612a2f565b60208301905092915050565b5f602082019050919050565b5f612a6b82612a06565b612a758185612a10565b9350612a8083612a20565b805f5b83811015612ab0578151612a978882612a3e565b9750612aa283612a55565b925050600181019050612a83565b5085935050505092915050565b5f60a082019050612ad05f830188611c91565b612add60208301876123bb565b8181036040830152612aef8186612a61565b9050612afe6060830185611e36565b612b0b6080830184611c91565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b6f602583611be8565b9150612b7a82612b15565b604082019050919050565b5f6020820190508181035f830152612b9c81612b63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612bfd602383611be8565b9150612c0882612ba3565b604082019050919050565b5f6020820190508181035f830152612c2a81612bf1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c8b602683611be8565b9150612c9682612c31565b604082019050919050565b5f6020820190508181035f830152612cb881612c7f565b905091905056fea2646970667358221220edc7cde75230cd06a97648a4f299a4888947be82d28bf7ed31d2b61640655a1f64736f6c63430008140033

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

0000000000000000000000001eee63e411f4a3c78f8e6bc291b5708f62b734db000000000000000000000000bc919df722be563538a2640b26a7ebb9533f7bd0000000000000000000000000bc9a7cc3493d223774fcbdd837d787f2ca0d0839

-----Decoded View---------------
Arg [0] : _taxAddress (address): 0x1Eee63E411F4a3C78F8E6bC291b5708F62B734db
Arg [1] : _marketingAddress (address): 0xBc919df722bE563538A2640b26a7eBb9533f7Bd0
Arg [2] : _daoWallet (address): 0xBC9a7CC3493D223774FcbdD837d787f2cA0d0839

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001eee63e411f4a3c78f8e6bc291b5708f62b734db
Arg [1] : 000000000000000000000000bc919df722be563538a2640b26a7ebb9533f7bd0
Arg [2] : 000000000000000000000000bc9a7cc3493d223774fcbdd837d787f2ca0d0839


Deployed Bytecode Sourcemap

21040:7358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21427:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24324:81;;;;;;;;;;;;;:::i;:::-;;11752:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10521:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12533:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10363:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13203:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21203:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23805:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27553:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10692:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6498:103;;;;;;;;;;;;;:::i;:::-;;24154:162;;;;;;;;;;;;;:::i;:::-;;5857:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9611:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13944:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24413:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11025:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24036:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28110:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21238:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27757:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21385:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28247:111;;;;;;;;;;;;;:::i;:::-;;27996:106;;;;;;;;;;;;;:::i;:::-;;23916:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27887:101;;;;;;;;;;;;;:::i;:::-;;11281:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6756:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23423:373;;;;;;;;;;;;;:::i;:::-;;9392:100;9446:13;9479:5;9472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;:::o;21427:26::-;;;;:::o;24324:81::-;5743:13;:11;:13::i;:::-;24392:5:::1;24379:10;;:18;;;;;;;;;;;;;;;;;;24324:81::o:0;11752:201::-;11835:4;11852:13;11868:12;:10;:12::i;:::-;11852:28;;11891:32;11900:5;11907:7;11916:6;11891:8;:32::i;:::-;11941:4;11934:11;;;11752:201;;;;:::o;10521:108::-;10582:7;10609:12;;10602:19;;10521:108;:::o;12533:261::-;12630:4;12647:15;12665:12;:10;:12::i;:::-;12647:30;;12688:38;12704:4;12710:7;12719:6;12688:15;:38::i;:::-;12737:27;12747:4;12753:2;12757:6;12737:9;:27::i;:::-;12782:4;12775:11;;;12533:261;;;;;:::o;10363:93::-;10421:5;10446:2;10439:9;;10363:93;:::o;13203:238::-;13291:4;13308:13;13324:12;:10;:12::i;:::-;13308:28;;13347:64;13356:5;13363:7;13400:10;13372:25;13382:5;13389:7;13372:9;:25::i;:::-;:38;;;;:::i;:::-;13347:8;:64::i;:::-;13429:4;13422:11;;;13203:238;;;;:::o;21203:28::-;;;;;;;;;;;;;:::o;23805:103::-;23850:7;23890:10;:8;:10::i;:::-;23886:2;:14;;;;:::i;:::-;23876:7;;:24;;;;:::i;:::-;23869:31;;23805:103;:::o;27553:196::-;5743:13;:11;:13::i;:::-;27659:2:::1;27647:9;:14;:33;;;;;27678:2;27665:10;:15;27647:33;27639:42;;;::::0;::::1;;27702:10;27692:7;:20;;;;27732:9;27723:6;:18;;;;27553:196:::0;;:::o;10692:127::-;10766:7;10793:9;:18;10803:7;10793:18;;;;;;;;;;;;;;;;10786:25;;10692:127;;;:::o;6498:103::-;5743:13;:11;:13::i;:::-;6563:30:::1;6590:1;6563:18;:30::i;:::-;6498:103::o:0;24154:162::-;5743:13;:11;:13::i;:::-;24215:6:::1;;;;;;;;;;;24211:98;;;24246:5;24237:6;;:14;;;;;;;;;;;;;;;;;;24211:98;;;24293:4;24284:6;;:13;;;;;;;;;;;;;;;;;;24211:98;24154:162::o:0;5857:87::-;5903:7;5930:6;;;;;;;;;;;5923:13;;5857:87;:::o;9611:104::-;9667:13;9700:7;9693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9611:104;:::o;13944:436::-;14037:4;14054:13;14070:12;:10;:12::i;:::-;14054:28;;14093:24;14120:25;14130:5;14137:7;14120:9;:25::i;:::-;14093:52;;14184:15;14164:16;:35;;14156:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14277:60;14286:5;14293:7;14321:15;14302:16;:34;14277:8;:60::i;:::-;14368:4;14361:11;;;;13944:436;;;;:::o;24413:103::-;24458:7;24498:10;:8;:10::i;:::-;24494:2;:14;;;;:::i;:::-;24484:7;;:24;;;;:::i;:::-;24477:31;;24413:103;:::o;11025:193::-;11104:4;11121:13;11137:12;:10;:12::i;:::-;11121:28;;11160;11170:5;11177:2;11181:6;11160:9;:28::i;:::-;11206:4;11199:11;;;11025:193;;;;:::o;24036:110::-;5743:13;:11;:13::i;:::-;24128:10:::1;:8;:10::i;:::-;24124:2;:14;;;;:::i;:::-;24113:8;:25;;;;:::i;:::-;24103:7;:35;;;;24036:110:::0;:::o;28110:125::-;5743:13;:11;:13::i;:::-;28220:7:::1;28199:8;:18;28208:8;28199:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;28110:125:::0;;:::o;21238:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;27757:122::-;5743:13;:11;:13::i;:::-;27861:10:::1;:8;:10::i;:::-;27857:2;:14;;;;:::i;:::-;27846:8;:25;;;;:::i;:::-;27823:20;:48;;;;27757:122:::0;:::o;21385:35::-;;;;:::o;28247:111::-;5743:13;:11;:13::i;:::-;28309:4:::1;28300:6;;:13;;;;;;;;;;;;;;;;;;28338:12;28324:11;:26;;;;28247:111::o:0;27996:106::-;28045:16;28037:34;;:57;28072:21;28037:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27996:106::o;23916:112::-;5743:13;:11;:13::i;:::-;24010:10:::1;:8;:10::i;:::-;24006:2;:14;;;;:::i;:::-;23995:8;:25;;;;:::i;:::-;23985:7;:35;;;;23916:112:::0;:::o;27887:101::-;5743:13;:11;:13::i;:::-;27967::::1;:11;:13::i;:::-;27944:20;:36;;;;27887:101::o:0;11281:151::-;11370:7;11397:11;:18;11409:5;11397:18;;;;;;;;;;;;;;;:27;11416:7;11397:27;;;;;;;;;;;;;;;;11390:34;;11281:151;;;;:::o;6756:201::-;5743:13;:11;:13::i;:::-;6865:1:::1;6845:22;;:8;:22;;::::0;6837:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6921:28;6940:8;6921:18;:28::i;:::-;6756:201:::0;:::o;23423:373::-;5743:13;:11;:13::i;:::-;23479:75:::1;23496:4;23511:15;;;;;;;;;;;23529:24;23547:4;23529:9;:24::i;:::-;23479:8;:75::i;:::-;23565:15;;;;;;;;;;;:31;;;23604:21;23649:4;23669:24;23687:4;23669:9;:24::i;:::-;23708:1;23724::::0;23740:7:::1;:5;:7::i;:::-;23762:15;23565:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;23423:373::o:0;6022:132::-;6097:12;:10;:12::i;:::-;6086:23;;:7;:5;:7::i;:::-;:23;;;6078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6022:132::o;926:98::-;979:7;1006:10;999:17;;926:98;:::o;17937:346::-;18056:1;18039:19;;:5;:19;;;18031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18137:1;18118:21;;:7;:21;;;18110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18221:6;18191:11;:18;18203:5;18191:18;;;;;;;;;;;;;;;:27;18210:7;18191:27;;;;;;;;;;;;;;;:36;;;;18259:7;18243:32;;18252:5;18243:32;;;18268:6;18243:32;;;;;;:::i;:::-;;;;;;;;17937:346;;;:::o;18574:419::-;18675:24;18702:25;18712:5;18719:7;18702:9;:25::i;:::-;18675:52;;18762:17;18742:16;:37;18738:248;;18824:6;18804:16;:26;;18796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18908:51;18917:5;18924:7;18952:6;18933:16;:25;18908:8;:51::i;:::-;18738:248;18664:329;18574:419;;;:::o;25167:2268::-;25269:8;:14;25278:4;25269:14;;;;;;;;;;;;;;;;;;;;;;;;;25268:15;:32;;;;;25288:8;:12;25297:2;25288:12;;;;;;;;;;;;;;;;;;;;;;;;;25287:13;25268:32;25264:2121;;;25325:6;;;;;;;;;;;25317:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;25385:11;25480:10;;;;;;;;;;;:41;;;;;25509:12;25494:11;;:27;;25480:41;25476:265;;;25559:11;;25550:5;:20;;25542:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;25476:265;;;25670:20;;25661:5;:29;;25653:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;25476:265;25808:13;;;;;;;;;;;25802:19;;:2;:19;;;25798:1247;;25848:7;;25842:13;;25874:18;25895:24;25913:4;25895:9;:24::i;:::-;25874:45;;25955:7;;25942:10;:20;:31;;;;;25967:6;;;;;;;;;;;25966:7;25942:31;25938:413;;;26017:13;;26002:12;:28;25998:98;;;26071:1;26059:9;:13;;;;25998:98;26134:1;26122:9;;:13;26118:214;;;26164:9;;:11;;;;;;;;;:::i;:::-;;;;;;26218:12;26202:13;:28;;;;26257:51;26271:36;26275:7;;26284:22;26288:5;26295:10;26284:3;:22::i;:::-;26271:3;:36::i;:::-;26257:13;:51::i;:::-;26118:214;25938:413;25823:543;25798:1247;;;26457:13;;;;;;;;;;;26449:21;;:4;:21;;;26445:600;;26497:6;;26491:12;;26600:11;;26584:12;:27;26580:450;;26645:21;:25;26667:2;26645:25;;;;;;;;;;;;;;;;;;;;;;;;;26644:26;26636:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;26767:4;26739:21;:25;26761:2;26739:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;26845:9;;:11;;;;;;;;;:::i;:::-;;;;;;26900:2;26887:9;;:15;;26879:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26968:2;26962:8;;26580:450;26445:600;25798:1247;27061:17;27095:3;27089;27081:5;:11;;;;:::i;:::-;:17;;;;:::i;:::-;27061:37;;27113:22;27146:9;27138:5;:17;;;;:::i;:::-;27113:42;;27188:1;27176:9;:13;27172:125;;;27210:47;27226:4;27240;27247:9;27210:15;:47::i;:::-;27172:125;27311:41;27327:4;27333:2;27337:14;27311:15;:41::i;:::-;27367:7;;;;;25264:2121;27395:32;27411:4;27417:2;27421:5;27395:15;:32::i;:::-;25167:2268;;;;:::o;7117:191::-;7191:16;7210:6;;;;;;;;;;;7191:25;;7236:8;7227:6;;:17;;;;;;;;;;;;;;;;;;7291:8;7260:40;;7281:8;7260:40;;;;;;;;;;;;7180:128;7117:191;:::o;27443:98::-;27500:7;27527:1;27525;:3;27524:9;;27532:1;27524:9;;;27530:1;27524:9;27517:16;;27443:98;;;;:::o;24524:488::-;21795:4;21786:6;;:13;;;;;;;;;;;;;;;;;;24600:62:::1;24617:4;24632:15;;;;;;;;;;;24650:11;24600:8;:62::i;:::-;24683:21;24721:1;24707:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24683:40;;24752:4;24734;24739:1;24734:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;24778:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24768:4;24773:1;24768:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;24811:15;;;;;;;;;;;:66;;;24892:11;24918:1;24934:4;24953:10;24978:15;24811:193;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;24589:423;21831:5:::0;21822:6;;:14;;;;;;;;;;;;;;;;;;24524:488;:::o;14850:806::-;14963:1;14947:18;;:4;:18;;;14939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15040:1;15026:16;;:2;:16;;;15018:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15095:38;15116:4;15122:2;15126:6;15095:20;:38::i;:::-;15146:19;15168:9;:15;15178:4;15168:15;;;;;;;;;;;;;;;;15146:37;;15217:6;15202:11;:21;;15194:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15334:6;15320:11;:20;15302:9;:15;15312:4;15302:15;;;;;;;;;;;;;;;:38;;;;15537:6;15520:9;:13;15530:2;15520:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15587:2;15572:26;;15581:4;15572:26;;;15591:6;15572:26;;;;;;:::i;:::-;;;;;;;;15611:37;15631:4;15637:2;15641:6;15611:19;:37::i;:::-;14928:728;14850:806;;;:::o;19593:91::-;;;;:::o;20288:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:77::-;1386:7;1415:5;1404:16;;1349:77;;;:::o;1432:118::-;1519:24;1537:5;1519:24;:::i;:::-;1514:3;1507:37;1432:118;;:::o;1556:222::-;1649:4;1687:2;1676:9;1672:18;1664:26;;1700:71;1768:1;1757:9;1753:17;1744:6;1700:71;:::i;:::-;1556:222;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:474::-;5273:6;5281;5330:2;5318:9;5309:7;5305:23;5301:32;5298:119;;;5336:79;;:::i;:::-;5298:119;5456:1;5481:53;5526:7;5517:6;5506:9;5502:22;5481:53;:::i;:::-;5471:63;;5427:117;5583:2;5609:53;5654:7;5645:6;5634:9;5630:22;5609:53;:::i;:::-;5599:63;;5554:118;5205:474;;;;;:::o;5685:329::-;5744:6;5793:2;5781:9;5772:7;5768:23;5764:32;5761:119;;;5799:79;;:::i;:::-;5761:119;5919:1;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5890:117;5685:329;;;;:::o;6020:::-;6079:6;6128:2;6116:9;6107:7;6103:23;6099:32;6096:119;;;6134:79;;:::i;:::-;6096:119;6254:1;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6225:117;6020:329;;;;:::o;6355:116::-;6425:21;6440:5;6425:21;:::i;:::-;6418:5;6415:32;6405:60;;6461:1;6458;6451:12;6405:60;6355:116;:::o;6477:133::-;6520:5;6558:6;6545:20;6536:29;;6574:30;6598:5;6574:30;:::i;:::-;6477:133;;;;:::o;6616:468::-;6681:6;6689;6738:2;6726:9;6717:7;6713:23;6709:32;6706:119;;;6744:79;;:::i;:::-;6706:119;6864:1;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6835:117;6991:2;7017:50;7059:7;7050:6;7039:9;7035:22;7017:50;:::i;:::-;7007:60;;6962:115;6616:468;;;;;:::o;7090:474::-;7158:6;7166;7215:2;7203:9;7194:7;7190:23;7186:32;7183:119;;;7221:79;;:::i;:::-;7183:119;7341:1;7366:53;7411:7;7402:6;7391:9;7387:22;7366:53;:::i;:::-;7356:63;;7312:117;7468:2;7494:53;7539:7;7530:6;7519:9;7515:22;7494:53;:::i;:::-;7484:63;;7439:118;7090:474;;;;;:::o;7570:180::-;7618:77;7615:1;7608:88;7715:4;7712:1;7705:15;7739:4;7736:1;7729:15;7756:320;7800:6;7837:1;7831:4;7827:12;7817:22;;7884:1;7878:4;7874:12;7905:18;7895:81;;7961:4;7953:6;7949:17;7939:27;;7895:81;8023:2;8015:6;8012:14;7992:18;7989:38;7986:84;;8042:18;;:::i;:::-;7986:84;7807:269;7756:320;;;:::o;8082:180::-;8130:77;8127:1;8120:88;8227:4;8224:1;8217:15;8251:4;8248:1;8241:15;8268:191;8308:3;8327:20;8345:1;8327:20;:::i;:::-;8322:25;;8361:20;8379:1;8361:20;:::i;:::-;8356:25;;8404:1;8401;8397:9;8390:16;;8425:3;8422:1;8419:10;8416:36;;;8432:18;;:::i;:::-;8416:36;8268:191;;;;:::o;8465:102::-;8507:8;8554:5;8551:1;8547:13;8526:34;;8465:102;;;:::o;8573:848::-;8634:5;8641:4;8665:6;8656:15;;8689:5;8680:14;;8703:712;8724:1;8714:8;8711:15;8703:712;;;8819:4;8814:3;8810:14;8804:4;8801:24;8798:50;;;8828:18;;:::i;:::-;8798:50;8878:1;8868:8;8864:16;8861:451;;;9293:4;9286:5;9282:16;9273:25;;8861:451;9343:4;9337;9333:15;9325:23;;9373:32;9396:8;9373:32;:::i;:::-;9361:44;;8703:712;;;8573:848;;;;;;;:::o;9427:1073::-;9481:5;9672:8;9662:40;;9693:1;9684:10;;9695:5;;9662:40;9721:4;9711:36;;9738:1;9729:10;;9740:5;;9711:36;9807:4;9855:1;9850:27;;;;9891:1;9886:191;;;;9800:277;;9850:27;9868:1;9859:10;;9870:5;;;9886:191;9931:3;9921:8;9918:17;9915:43;;;9938:18;;:::i;:::-;9915:43;9987:8;9984:1;9980:16;9971:25;;10022:3;10015:5;10012:14;10009:40;;;10029:18;;:::i;:::-;10009:40;10062:5;;;9800:277;;10186:2;10176:8;10173:16;10167:3;10161:4;10158:13;10154:36;10136:2;10126:8;10123:16;10118:2;10112:4;10109:12;10105:35;10089:111;10086:246;;;10242:8;10236:4;10232:19;10223:28;;10277:3;10270:5;10267:14;10264:40;;;10284:18;;:::i;:::-;10264:40;10317:5;;10086:246;10357:42;10395:3;10385:8;10379:4;10376:1;10357:42;:::i;:::-;10342:57;;;;10431:4;10426:3;10422:14;10415:5;10412:25;10409:51;;;10440:18;;:::i;:::-;10409:51;10489:4;10482:5;10478:16;10469:25;;9427:1073;;;;;;:::o;10506:281::-;10564:5;10588:23;10606:4;10588:23;:::i;:::-;10580:31;;10632:25;10648:8;10632:25;:::i;:::-;10620:37;;10676:104;10713:66;10703:8;10697:4;10676:104;:::i;:::-;10667:113;;10506:281;;;;:::o;10793:180::-;10841:77;10838:1;10831:88;10938:4;10935:1;10928:15;10962:4;10959:1;10952:15;10979:185;11019:1;11036:20;11054:1;11036:20;:::i;:::-;11031:25;;11070:20;11088:1;11070:20;:::i;:::-;11065:25;;11109:1;11099:35;;11114:18;;:::i;:::-;11099:35;11156:1;11153;11149:9;11144:14;;10979:185;;;;:::o;11170:224::-;11310:34;11306:1;11298:6;11294:14;11287:58;11379:7;11374:2;11366:6;11362:15;11355:32;11170:224;:::o;11400:366::-;11542:3;11563:67;11627:2;11622:3;11563:67;:::i;:::-;11556:74;;11639:93;11728:3;11639:93;:::i;:::-;11757:2;11752:3;11748:12;11741:19;;11400:366;;;:::o;11772:419::-;11938:4;11976:2;11965:9;11961:18;11953:26;;12025:9;12019:4;12015:20;12011:1;12000:9;11996:17;11989:47;12053:131;12179:4;12053:131;:::i;:::-;12045:139;;11772:419;;;:::o;12197:410::-;12237:7;12260:20;12278:1;12260:20;:::i;:::-;12255:25;;12294:20;12312:1;12294:20;:::i;:::-;12289:25;;12349:1;12346;12342:9;12371:30;12389:11;12371:30;:::i;:::-;12360:41;;12550:1;12541:7;12537:15;12534:1;12531:22;12511:1;12504:9;12484:83;12461:139;;12580:18;;:::i;:::-;12461:139;12245:362;12197:410;;;;:::o;12613:225::-;12753:34;12749:1;12741:6;12737:14;12730:58;12822:8;12817:2;12809:6;12805:15;12798:33;12613:225;:::o;12844:366::-;12986:3;13007:67;13071:2;13066:3;13007:67;:::i;:::-;13000:74;;13083:93;13172:3;13083:93;:::i;:::-;13201:2;13196:3;13192:12;13185:19;;12844:366;;;:::o;13216:419::-;13382:4;13420:2;13409:9;13405:18;13397:26;;13469:9;13463:4;13459:20;13455:1;13444:9;13440:17;13433:47;13497:131;13623:4;13497:131;:::i;:::-;13489:139;;13216:419;;;:::o;13641:85::-;13686:7;13715:5;13704:16;;13641:85;;;:::o;13732:60::-;13760:3;13781:5;13774:12;;13732:60;;;:::o;13798:158::-;13856:9;13889:61;13907:42;13916:32;13942:5;13916:32;:::i;:::-;13907:42;:::i;:::-;13889:61;:::i;:::-;13876:74;;13798:158;;;:::o;13962:147::-;14057:45;14096:5;14057:45;:::i;:::-;14052:3;14045:58;13962:147;;:::o;14115:807::-;14364:4;14402:3;14391:9;14387:19;14379:27;;14416:71;14484:1;14473:9;14469:17;14460:6;14416:71;:::i;:::-;14497:72;14565:2;14554:9;14550:18;14541:6;14497:72;:::i;:::-;14579:80;14655:2;14644:9;14640:18;14631:6;14579:80;:::i;:::-;14669;14745:2;14734:9;14730:18;14721:6;14669:80;:::i;:::-;14759:73;14827:3;14816:9;14812:19;14803:6;14759:73;:::i;:::-;14842;14910:3;14899:9;14895:19;14886:6;14842:73;:::i;:::-;14115:807;;;;;;;;;:::o;14928:143::-;14985:5;15016:6;15010:13;15001:22;;15032:33;15059:5;15032:33;:::i;:::-;14928:143;;;;:::o;15077:663::-;15165:6;15173;15181;15230:2;15218:9;15209:7;15205:23;15201:32;15198:119;;;15236:79;;:::i;:::-;15198:119;15356:1;15381:64;15437:7;15428:6;15417:9;15413:22;15381:64;:::i;:::-;15371:74;;15327:128;15494:2;15520:64;15576:7;15567:6;15556:9;15552:22;15520:64;:::i;:::-;15510:74;;15465:129;15633:2;15659:64;15715:7;15706:6;15695:9;15691:22;15659:64;:::i;:::-;15649:74;;15604:129;15077:663;;;;;:::o;15746:182::-;15886:34;15882:1;15874:6;15870:14;15863:58;15746:182;:::o;15934:366::-;16076:3;16097:67;16161:2;16156:3;16097:67;:::i;:::-;16090:74;;16173:93;16262:3;16173:93;:::i;:::-;16291:2;16286:3;16282:12;16275:19;;15934:366;;;:::o;16306:419::-;16472:4;16510:2;16499:9;16495:18;16487:26;;16559:9;16553:4;16549:20;16545:1;16534:9;16530:17;16523:47;16587:131;16713:4;16587:131;:::i;:::-;16579:139;;16306:419;;;:::o;16731:223::-;16871:34;16867:1;16859:6;16855:14;16848:58;16940:6;16935:2;16927:6;16923:15;16916:31;16731:223;:::o;16960:366::-;17102:3;17123:67;17187:2;17182:3;17123:67;:::i;:::-;17116:74;;17199:93;17288:3;17199:93;:::i;:::-;17317:2;17312:3;17308:12;17301:19;;16960:366;;;:::o;17332:419::-;17498:4;17536:2;17525:9;17521:18;17513:26;;17585:9;17579:4;17575:20;17571:1;17560:9;17556:17;17549:47;17613:131;17739:4;17613:131;:::i;:::-;17605:139;;17332:419;;;:::o;17757:221::-;17897:34;17893:1;17885:6;17881:14;17874:58;17966:4;17961:2;17953:6;17949:15;17942:29;17757:221;:::o;17984:366::-;18126:3;18147:67;18211:2;18206:3;18147:67;:::i;:::-;18140:74;;18223:93;18312:3;18223:93;:::i;:::-;18341:2;18336:3;18332:12;18325:19;;17984:366;;;:::o;18356:419::-;18522:4;18560:2;18549:9;18545:18;18537:26;;18609:9;18603:4;18599:20;18595:1;18584:9;18580:17;18573:47;18637:131;18763:4;18637:131;:::i;:::-;18629:139;;18356:419;;;:::o;18781:179::-;18921:31;18917:1;18909:6;18905:14;18898:55;18781:179;:::o;18966:366::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;18966:366;;;:::o;19338:419::-;19504:4;19542:2;19531:9;19527:18;19519:26;;19591:9;19585:4;19581:20;19577:1;19566:9;19562:17;19555:47;19619:131;19745:4;19619:131;:::i;:::-;19611:139;;19338:419;;;:::o;19763:221::-;19903:34;19899:1;19891:6;19887:14;19880:58;19972:4;19967:2;19959:6;19955:15;19948:29;19763:221;:::o;19990:366::-;20132:3;20153:67;20217:2;20212:3;20153:67;:::i;:::-;20146:74;;20229:93;20318:3;20229:93;:::i;:::-;20347:2;20342:3;20338:12;20331:19;;19990:366;;;:::o;20362:419::-;20528:4;20566:2;20555:9;20551:18;20543:26;;20615:9;20609:4;20605:20;20601:1;20590:9;20586:17;20579:47;20643:131;20769:4;20643:131;:::i;:::-;20635:139;;20362:419;;;:::o;20787:224::-;20927:34;20923:1;20915:6;20911:14;20904:58;20996:7;20991:2;20983:6;20979:15;20972:32;20787:224;:::o;21017:366::-;21159:3;21180:67;21244:2;21239:3;21180:67;:::i;:::-;21173:74;;21256:93;21345:3;21256:93;:::i;:::-;21374:2;21369:3;21365:12;21358:19;;21017:366;;;:::o;21389:419::-;21555:4;21593:2;21582:9;21578:18;21570:26;;21642:9;21636:4;21632:20;21628:1;21617:9;21613:17;21606:47;21670:131;21796:4;21670:131;:::i;:::-;21662:139;;21389:419;;;:::o;21814:180::-;21954:32;21950:1;21942:6;21938:14;21931:56;21814:180;:::o;22000:366::-;22142:3;22163:67;22227:2;22222:3;22163:67;:::i;:::-;22156:74;;22239:93;22328:3;22239:93;:::i;:::-;22357:2;22352:3;22348:12;22341:19;;22000:366;;;:::o;22372:419::-;22538:4;22576:2;22565:9;22561:18;22553:26;;22625:9;22619:4;22615:20;22611:1;22600:9;22596:17;22589:47;22653:131;22779:4;22653:131;:::i;:::-;22645:139;;22372:419;;;:::o;22797:233::-;22836:3;22859:24;22877:5;22859:24;:::i;:::-;22850:33;;22905:66;22898:5;22895:77;22892:103;;22975:18;;:::i;:::-;22892:103;23022:1;23015:5;23011:13;23004:20;;22797:233;;;:::o;23036:228::-;23176:34;23172:1;23164:6;23160:14;23153:58;23245:11;23240:2;23232:6;23228:15;23221:36;23036:228;:::o;23270:366::-;23412:3;23433:67;23497:2;23492:3;23433:67;:::i;:::-;23426:74;;23509:93;23598:3;23509:93;:::i;:::-;23627:2;23622:3;23618:12;23611:19;;23270:366;;;:::o;23642:419::-;23808:4;23846:2;23835:9;23831:18;23823:26;;23895:9;23889:4;23885:20;23881:1;23870:9;23866:17;23859:47;23923:131;24049:4;23923:131;:::i;:::-;23915:139;;23642:419;;;:::o;24067:182::-;24207:34;24203:1;24195:6;24191:14;24184:58;24067:182;:::o;24255:366::-;24397:3;24418:67;24482:2;24477:3;24418:67;:::i;:::-;24411:74;;24494:93;24583:3;24494:93;:::i;:::-;24612:2;24607:3;24603:12;24596:19;;24255:366;;;:::o;24627:419::-;24793:4;24831:2;24820:9;24816:18;24808:26;;24880:9;24874:4;24870:20;24866:1;24855:9;24851:17;24844:47;24908:131;25034:4;24908:131;:::i;:::-;24900:139;;24627:419;;;:::o;25052:194::-;25092:4;25112:20;25130:1;25112:20;:::i;:::-;25107:25;;25146:20;25164:1;25146:20;:::i;:::-;25141:25;;25190:1;25187;25183:9;25175:17;;25214:1;25208:4;25205:11;25202:37;;;25219:18;;:::i;:::-;25202:37;25052:194;;;;:::o;25252:180::-;25300:77;25297:1;25290:88;25397:4;25394:1;25387:15;25421:4;25418:1;25411:15;25438:180;25486:77;25483:1;25476:88;25583:4;25580:1;25573:15;25607:4;25604:1;25597:15;25624:143;25681:5;25712:6;25706:13;25697:22;;25728:33;25755:5;25728:33;:::i;:::-;25624:143;;;;:::o;25773:351::-;25843:6;25892:2;25880:9;25871:7;25867:23;25863:32;25860:119;;;25898:79;;:::i;:::-;25860:119;26018:1;26043:64;26099:7;26090:6;26079:9;26075:22;26043:64;:::i;:::-;26033:74;;25989:128;25773:351;;;;:::o;26130:114::-;26197:6;26231:5;26225:12;26215:22;;26130:114;;;:::o;26250:184::-;26349:11;26383:6;26378:3;26371:19;26423:4;26418:3;26414:14;26399:29;;26250:184;;;;:::o;26440:132::-;26507:4;26530:3;26522:11;;26560:4;26555:3;26551:14;26543:22;;26440:132;;;:::o;26578:108::-;26655:24;26673:5;26655:24;:::i;:::-;26650:3;26643:37;26578:108;;:::o;26692:179::-;26761:10;26782:46;26824:3;26816:6;26782:46;:::i;:::-;26860:4;26855:3;26851:14;26837:28;;26692:179;;;;:::o;26877:113::-;26947:4;26979;26974:3;26970:14;26962:22;;26877:113;;;:::o;27026:732::-;27145:3;27174:54;27222:5;27174:54;:::i;:::-;27244:86;27323:6;27318:3;27244:86;:::i;:::-;27237:93;;27354:56;27404:5;27354:56;:::i;:::-;27433:7;27464:1;27449:284;27474:6;27471:1;27468:13;27449:284;;;27550:6;27544:13;27577:63;27636:3;27621:13;27577:63;:::i;:::-;27570:70;;27663:60;27716:6;27663:60;:::i;:::-;27653:70;;27509:224;27496:1;27493;27489:9;27484:14;;27449:284;;;27453:14;27749:3;27742:10;;27150:608;;;27026:732;;;;:::o;27764:831::-;28027:4;28065:3;28054:9;28050:19;28042:27;;28079:71;28147:1;28136:9;28132:17;28123:6;28079:71;:::i;:::-;28160:80;28236:2;28225:9;28221:18;28212:6;28160:80;:::i;:::-;28287:9;28281:4;28277:20;28272:2;28261:9;28257:18;28250:48;28315:108;28418:4;28409:6;28315:108;:::i;:::-;28307:116;;28433:72;28501:2;28490:9;28486:18;28477:6;28433:72;:::i;:::-;28515:73;28583:3;28572:9;28568:19;28559:6;28515:73;:::i;:::-;27764:831;;;;;;;;:::o;28601:224::-;28741:34;28737:1;28729:6;28725:14;28718:58;28810:7;28805:2;28797:6;28793:15;28786:32;28601:224;:::o;28831:366::-;28973:3;28994:67;29058:2;29053:3;28994:67;:::i;:::-;28987:74;;29070:93;29159:3;29070:93;:::i;:::-;29188:2;29183:3;29179:12;29172:19;;28831:366;;;:::o;29203:419::-;29369:4;29407:2;29396:9;29392:18;29384:26;;29456:9;29450:4;29446:20;29442:1;29431:9;29427:17;29420:47;29484:131;29610:4;29484:131;:::i;:::-;29476:139;;29203:419;;;:::o;29628:222::-;29768:34;29764:1;29756:6;29752:14;29745:58;29837:5;29832:2;29824:6;29820:15;29813:30;29628:222;:::o;29856:366::-;29998:3;30019:67;30083:2;30078:3;30019:67;:::i;:::-;30012:74;;30095:93;30184:3;30095:93;:::i;:::-;30213:2;30208:3;30204:12;30197:19;;29856:366;;;:::o;30228:419::-;30394:4;30432:2;30421:9;30417:18;30409:26;;30481:9;30475:4;30471:20;30467:1;30456:9;30452:17;30445:47;30509:131;30635:4;30509:131;:::i;:::-;30501:139;;30228:419;;;:::o;30653:225::-;30793:34;30789:1;30781:6;30777:14;30770:58;30862:8;30857:2;30849:6;30845:15;30838:33;30653:225;:::o;30884:366::-;31026:3;31047:67;31111:2;31106:3;31047:67;:::i;:::-;31040:74;;31123:93;31212:3;31123:93;:::i;:::-;31241:2;31236:3;31232:12;31225:19;;30884:366;;;:::o;31256:419::-;31422:4;31460:2;31449:9;31445:18;31437:26;;31509:9;31503:4;31499:20;31495:1;31484:9;31480:17;31473:47;31537:131;31663:4;31537:131;:::i;:::-;31529:139;;31256:419;;;:::o

Swarm Source

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