ETH Price: $3,451.79 (-0.83%)
Gas: 9 Gwei

Token

CrossBot Token (CBOT)
 

Overview

Max Total Supply

1,000,000 CBOT

Holders

228

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CBOT

Value
$0.00
0xbc37f6f23f709b93a775c5c321ea6dc7b73bad3d
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:
CBOT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-07
*/

/***

Official website: https://www.crossbot.app/
Linktree: https://linktr.ee/crossbot

💰 Early bird campaign. Check it out here: https://medium.com/@crossbot/earlybirdcampaign-ac921e130d9d

***/

// SPDX-License-Identifier: UNLICENSED
// Sources flattened with hardhat v2.17.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 {}
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File contracts/CBOT.sol


pragma solidity =0.8.19;





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

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

    bool private swapping;

    address public administrator;
    address public revShareWallet;
    address public teamWallet;
    address public liquidityWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event administratorUpdated(
        address indexed newAdministrator,
        address indexed oldAdministrator
    );

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

    modifier onlyAdmin() {
        require(administrator == _msgSender(), 'Only admin');
        _;
    }

    constructor(
        address _revShareWallet,
        address _liquidityWallet
    ) ERC20('CrossBot Token', 'CBOT') {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        administrator = owner();

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

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

        uint256 _buyRevShareFee = 1;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyTeamFee = 2;

        uint256 _sellRevShareFee = 1;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 30_000 * 1e18; // 3%
        maxWallet = 30_000 * 1e18; // 3%
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1%

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = _revShareWallet;
        liquidityWallet = _liquidityWallet;
        teamWallet = owner(); // set as team wallet

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

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

        preMigrationTransferrable[owner()] = true;

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyAdmin {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // remove limits after token is stable
    function removeLimits() external onlyAdmin returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyAdmin returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            'Swap amount cannot be lower than 0.001% total supply.'
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            'Swap amount cannot be higher than 0.5% total supply.'
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyAdmin {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            'Cannot set maxTransactionAmount lower than 0.5%'
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyAdmin {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            'Cannot set maxWallet lower than 1.0%'
        );
        maxWallet = newNum * (10 ** 18);
    }

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

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

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyAdmin {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, 'Buy fees must be <= 5.');
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyAdmin {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, 'Sell fees must be <= 5.');
    }

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

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyAdmin {
        require(
            pair != uniswapV2Pair,
            'The pair cannot be removed from automatedMarketMakerPairs'
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(
        address newRevShareWallet
    ) external onlyAdmin {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function transferRevShareWallet(address newWallet) external {
        require(
            msg.sender == revShareWallet,
            'Only revShare wallet can transfer.'
        );
        emit revShareWalletUpdated(newWallet, revShareWallet);
        revShareWallet = newWallet;
    }

    function updateTeamWallet(address newWallet) external onlyAdmin {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function transferTeamWallet(address newWallet) external {
        require(msg.sender == teamWallet, 'Only team wallet can transfer.');
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function updateLiquidityWallet(address newWallet) external onlyAdmin {
        emit liquidityWalletUpdated(newWallet, liquidityWallet);
        liquidityWallet = newWallet;
    }

    function transferLiquidityWallet(address newWallet) external {
        require(
            msg.sender == liquidityWallet,
            'Only liquidity wallet can transfer.'
        );
        emit liquidityWalletUpdated(newWallet, liquidityWallet);
        liquidityWallet = newWallet;
    }

    function setAdmin(address newAdmin) external onlyOwner {
        emit administratorUpdated(newAdmin, administrator);
        administrator = newAdmin;
    }

    function transferAdmin(address newAdmin) external onlyAdmin {
        emit administratorUpdated(newAdmin, administrator);
        administrator = newAdmin;
    }

    function renounceAdmin() external onlyAdmin {
        emit administratorUpdated(address(0), administrator);
        administrator = address(0);
    }

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

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

        if (preMigrationPhase) {
            require(
                preMigrationTransferrable[from],
                'Not authorized to transfer pre-migration.'
            );
        }

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(
            totalTokensToSwap - (tokensForLiquidity / 2)
        );

        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(
            totalTokensToSwap - (tokensForLiquidity / 2)
        );

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}('');

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

        (success, ) = address(revShareWallet).call{
            value: address(this).balance
        }('');
    }

    function withdrawStuckToken(
        address _token,
        address _to
    ) external onlyAdmin {
        require(_token != address(0), '_token address cannot be 0');
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyAdmin {
        (bool success, ) = toAddr.call{value: address(this).balance}('');
        require(success);
    }

    function setPreMigrationTransferable(
        address _addr,
        bool isAuthorized
    ) public onlyAdmin {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_revShareWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdministrator","type":"address"},{"indexed":true,"internalType":"address","name":"oldAdministrator","type":"address"}],"name":"administratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"administrator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"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":"newWallet","type":"address"}],"name":"transferLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"transferRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"transferTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600d805462ffffff19166001908117909155601c805460ff191690911790553480156200003057600080fd5b5060405162004c1f38038062004c1f833981016040819052620000539162000701565b6040518060400160405280600e81526020016d21b937b9b9a137ba102a37b5b2b760911b8152506040518060400160405280600481526020016310d093d560e21b8152508160039081620000a89190620007dd565b506004620000b78282620007dd565b505050620000d4620000ce6200045260201b60201c565b62000456565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000fc6005546001600160a01b031690565b600680546001600160a01b0319166001600160a01b039290921691909117905562000129816001620004a8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019a9190620008a9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020e9190620008a9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002829190620008a9565b6001600160a01b031660a08190526200029d906001620004a8565b60a051620002ad90600162000520565b69065a4da25d3016c00000600a818155600c91909155600190600290819083908290819069d3c21bcecceda10000009061271090620002ee908390620008e4565b620002fa919062000904565b600b55600f879055601086905560118590558462000319878962000927565b62000325919062000927565b600e556013849055601483905560158290558162000344848662000927565b62000350919062000927565b601255600780546001600160a01b038c81166001600160a01b031992831617909255600980548c84169083161790556005546008805491909316911681179091556200039e90600162000574565b620003ab30600162000574565b620003ba61dead600162000574565b620003d9620003d16005546001600160a01b031690565b6001620004a8565b620003e6306001620004a8565b620003f561dead6001620004a8565b6001601d60006200040e6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200044233826200061c565b505050505050505050506200093d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620004f55760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620005bd5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b6044820152606401620004ec565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006745760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ec565b806002600082825462000688919062000927565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b0381168114620006fc57600080fd5b919050565b600080604083850312156200071557600080fd5b6200072083620006e4565b91506200073060208401620006e4565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200076457607f821691505b6020821081036200078557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006df57600081815260208120601f850160051c81016020861015620007b45750805b601f850160051c820191505b81811015620007d557828155600101620007c0565b505050505050565b81516001600160401b03811115620007f957620007f962000739565b62000811816200080a84546200074f565b846200078b565b602080601f831160018114620008495760008415620008305750858301515b600019600386901b1c1916600185901b178555620007d5565b600085815260208120601f198616915b828110156200087a5788860151825594840194600190910190840162000859565b5085821015620008995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008bc57600080fd5b620008c782620006e4565b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008fe57620008fe620008ce565b92915050565b6000826200092257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008fe57620008fe620008ce565b60805160a0516142926200098d6000396000818161064801526119dc0152600081816104e401528181613b7601528181613c5601528181613cb801528181613d320152613dc001526142926000f3fe6080604052600436106103fd5760003560e01c80638a8c523c1161020d578063c17b5b8c11610128578063e2f45605116100bb578063f2fde38b1161008a578063f63743421161006f578063f637434214610c81578063f8b45b0514610c97578063fde83a3414610cad57600080fd5b8063f2fde38b14610c34578063f53d0a8e14610c5457600080fd5b8063e2f4560514610bc8578063e37ba8f914610bde578063e5f8291914610bfe578063f11a24d314610c1e57600080fd5b8063d4698016116100f7578063d469801614610b1c578063d729715f14610b49578063d85ba06314610b5f578063dd62ed3e14610b7557600080fd5b8063c17b5b8c14610aa6578063c18bc19514610ac6578063c8c8ebe414610ae6578063d257b34f14610afc57600080fd5b8063a457c2d7116101a0578063b62496f51161016f578063b62496f514610a17578063bbc0c74214610a47578063bc205ad314610a66578063c024666814610a8657600080fd5b8063a457c2d714610997578063a9059cbb146109b7578063aa0e4388146109d7578063adee28ff146109f757600080fd5b8063924de9b7116101dc578063924de9b71461092c57806395d89b411461094c5780639a7a23d6146109615780639c2e4ac61461098157600080fd5b80638a8c523c146108b75780638bad0c0a146108cc5780638cda4dc7146108e15780638da5cb5b1461090157600080fd5b806349bd5a5e1161031857806370a08231116102ab57806375829def1161027a5780637ca8448a1161025f5780637ca8448a146108575780637cb332bb146108775780638095d5641461089757600080fd5b806375829def1461080a578063782c4e991461082a57600080fd5b806370a082311461077d578063715018a6146107c0578063751039fc146107d55780637571336a146107ea57600080fd5b806359927044116102e757806359927044146106fa5780636a486a8e146107275780636ddd17131461073d578063704b6c021461075d57600080fd5b806349bd5a5e146106365780634a62bb651461066a5780634e29e523146106845780634fbee193146106b457600080fd5b80631a8145bb1161039057806327c8f8351161035f57806327c8f835146105c4578063313ce567146105da57806339509351146105f657806347075ba31461061657600080fd5b80631a8145bb14610556578063203e727e1461056c57806323b872dd1461058e57806324b9f3c1146105ae57600080fd5b8063156c2f35116103cc578063156c2f35146104ae5780631694505e146104d257806318160ddd1461052b57806319eab0421461054057600080fd5b806306fdde0314610409578063095ea7b3146104345780630e922ca71461046457806310d5de531461047e57600080fd5b3661040457005b600080fd5b34801561041557600080fd5b5061041e610cc3565b60405161042b9190613e38565b60405180910390f35b34801561044057600080fd5b5061045461044f366004613ec6565b610d55565b604051901515815260200161042b565b34801561047057600080fd5b50601c546104549060ff1681565b34801561048a57600080fd5b50610454610499366004613ef2565b601a6020526000908152604090205460ff1681565b3480156104ba57600080fd5b506104c4600f5481565b60405190815260200161042b565b3480156104de57600080fd5b506105067f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161042b565b34801561053757600080fd5b506002546104c4565b34801561054c57600080fd5b506104c460135481565b34801561056257600080fd5b506104c460175481565b34801561057857600080fd5b5061058c610587366004613f0f565b610d6f565b005b34801561059a57600080fd5b506104546105a9366004613f28565b610ed0565b3480156105ba57600080fd5b506104c460165481565b3480156105d057600080fd5b5061050661dead81565b3480156105e657600080fd5b506040516012815260200161042b565b34801561060257600080fd5b50610454610611366004613ec6565b610ef4565b34801561062257600080fd5b5061058c610631366004613ef2565b610f40565b34801561064257600080fd5b506105067f000000000000000000000000000000000000000000000000000000000000000081565b34801561067657600080fd5b50600d546104549060ff1681565b34801561069057600080fd5b5061045461069f366004613ef2565b601d6020526000908152604090205460ff1681565b3480156106c057600080fd5b506104546106cf366004613ef2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561070657600080fd5b506008546105069073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073357600080fd5b506104c460125481565b34801561074957600080fd5b50600d546104549062010000900460ff1681565b34801561076957600080fd5b5061058c610778366004613ef2565b611076565b34801561078957600080fd5b506104c4610798366004613ef2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107cc57600080fd5b5061058c61110d565b3480156107e157600080fd5b50610454611121565b3480156107f657600080fd5b5061058c610805366004613f77565b6111d3565b34801561081657600080fd5b5061058c610825366004613ef2565b6112aa565b34801561083657600080fd5b506007546105069073ffffffffffffffffffffffffffffffffffffffff1681565b34801561086357600080fd5b5061058c610872366004613ef2565b61132b565b34801561088357600080fd5b5061058c610892366004613ef2565b61141d565b3480156108a357600080fd5b5061058c6108b2366004613fb0565b61152d565b3480156108c357600080fd5b5061058c611646565b3480156108d857600080fd5b5061058c61171e565b3480156108ed57600080fd5b5061058c6108fc366004613ef2565b611810565b34801561090d57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610506565b34801561093857600080fd5b5061058c610947366004613fdc565b611891565b34801561095857600080fd5b5061041e61194a565b34801561096d57600080fd5b5061058c61097c366004613f77565b611959565b34801561098d57600080fd5b506104c460115481565b3480156109a357600080fd5b506104546109b2366004613ec6565b611abf565b3480156109c357600080fd5b506104546109d2366004613ec6565b611b90565b3480156109e357600080fd5b5061058c6109f2366004613f77565b611b9e565b348015610a0357600080fd5b5061058c610a12366004613ef2565b611c82565b348015610a2357600080fd5b50610454610a32366004613ef2565b601b6020526000908152604090205460ff1681565b348015610a5357600080fd5b50600d5461045490610100900460ff1681565b348015610a7257600080fd5b5061058c610a81366004613ff9565b611d03565b348015610a9257600080fd5b5061058c610aa1366004613f77565b611f35565b348015610ab257600080fd5b5061058c610ac1366004613fb0565b612040565b348015610ad257600080fd5b5061058c610ae1366004613f0f565b612154565b348015610af257600080fd5b506104c4600a5481565b348015610b0857600080fd5b50610454610b17366004613f0f565b6122af565b348015610b2857600080fd5b506009546105069073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b5557600080fd5b506104c460155481565b348015610b6b57600080fd5b506104c4600e5481565b348015610b8157600080fd5b506104c4610b90366004613ff9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610bd457600080fd5b506104c4600b5481565b348015610bea57600080fd5b5061058c610bf9366004613ef2565b61249d565b348015610c0a57600080fd5b5061058c610c19366004613ef2565b6125ad565b348015610c2a57600080fd5b506104c460105481565b348015610c4057600080fd5b5061058c610c4f366004613ef2565b612654565b348015610c6057600080fd5b506006546105069073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c8d57600080fd5b506104c460145481565b348015610ca357600080fd5b506104c4600c5481565b348015610cb957600080fd5b506104c460185481565b606060038054610cd290614027565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfe90614027565b8015610d4b5780601f10610d2057610100808354040283529160200191610d4b565b820191906000526020600020905b815481529060010190602001808311610d2e57829003601f168201915b5050505050905090565b600033610d6381858561270b565b60019150505b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610df5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e0000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b670de0b6b3a76400006103e8610e0a60025490565b610e159060056140a9565b610e1f91906140c0565b610e2991906140c0565b811015610eb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610dec565b610eca81670de0b6b3a76400006140a9565b600a5550565b600033610ede8582856128be565b610ee985858561298f565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d639082908690610f3b9087906140fb565b61270b565b60075473ffffffffffffffffffffffffffffffffffffffff163314610fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792072657653686172652077616c6c65742063616e207472616e73666560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610dec565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61107e61347e565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fb9dcbf31ad1d081284f2d678070b42fca449440e44bfa0427781985632ab954f90600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61111561347e565b61111f60006134ff565b565b60065460009073ffffffffffffffffffffffffffffffffffffffff1633146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b50600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60065473ffffffffffffffffffffffffffffffffffffffff163314611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff1633146113ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114611406576040519150601f19603f3d011682016040523d82523d6000602084013e61140b565b606091505b505090508061141957600080fd5b5050565b60065473ffffffffffffffffffffffffffffffffffffffff16331461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff1633146115ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600f83905560108290556011819055806115c883856140fb565b6115d291906140fb565b600e81905560051015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610dec565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146116c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065460405173ffffffffffffffffffffffffffffffffffffffff909116906000907fb9dcbf31ad1d081284f2d678070b42fca449440e44bfa0427781985632ab954f908290a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60085473ffffffffffffffffffffffffffffffffffffffff16331461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4f6e6c79207465616d2077616c6c65742063616e207472616e736665722e00006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff163314611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610cd290614027565b60065473ffffffffffffffffffffffffffffffffffffffff1633146119da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dec565b6114198282613576565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611b83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dec565b610ee9828686840361270b565b600033610d6381858561298f565b60065473ffffffffffffffffffffffffffffffffffffffff163314611c1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055611c788282611f35565b61141982826111d3565b60065473ffffffffffffffffffffffffffffffffffffffff163314610fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216611e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610dec565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e92919061410e565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2f9190614127565b50505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611fb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146120c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b601383905560148290556015819055806120db83856140fb565b6120e591906140fb565b601281905560051015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff1633146121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b670de0b6b3a76400006103e86121ea60025490565b6121f590600a6140a9565b6121ff91906140c0565b61220991906140c0565b811015612297576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610dec565b6122a981670de0b6b3a76400006140a9565b600c5550565b60065460009073ffffffffffffffffffffffffffffffffffffffff163314612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b620186a061234060025490565b61234b9060016140a9565b61235591906140c0565b8210156123e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dec565b6103e86123f060025490565b6123fb9060056140a9565b61240591906140c0565b821115612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dec565b50600b55600190565b60065473ffffffffffffffffffffffffffffffffffffffff16331461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60095473ffffffffffffffffffffffffffffffffffffffff16331461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4f6e6c79206c69717569646974792077616c6c65742063616e207472616e736660448201527f65722e00000000000000000000000000000000000000000000000000000000006064820152608401610dec565b61265c61347e565b73ffffffffffffffffffffffffffffffffffffffff81166126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dec565b612708816134ff565b50565b73ffffffffffffffffffffffffffffffffffffffff83166127ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f2f5781811015612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dec565b611f2f848484840361270b565b73ffffffffffffffffffffffffffffffffffffffff8316612a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216612ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dec565b601c5460ff1615612b955773ffffffffffffffffffffffffffffffffffffffff83166000908152601d602052604090205460ff16612b95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201527f6967726174696f6e2e00000000000000000000000000000000000000000000006064820152608401610dec565b80600003612ba957611641838360006135f5565b600d5460ff16156130855760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612bfa575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612c1b575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612c3f575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612c66575060055474010000000000000000000000000000000000000000900460ff16155b1561308557600d54610100900460ff16612d395773ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff1680612cd3575073ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff165b612d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601b602052604090205460ff168015612d94575073ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff16155b15612ecb57600a54811115612e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dec565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612e5e90836140fb565b1115612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dec565b613085565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604090205460ff168015612f26575073ffffffffffffffffffffffffffffffffffffffff83166000908152601a602052604090205460ff16155b15612fbd57600a54811115612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff1661308557600c5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461301d90836140fb565b1115613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dec565b30600090815260208190526040902054600b54811080159081906130b15750600d5462010000900460ff165b80156130d8575060055474010000000000000000000000000000000000000000900460ff16155b801561310a575073ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff16155b801561313c575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff16155b801561316e575073ffffffffffffffffffffffffffffffffffffffff841660009081526019602052604090205460ff16155b156131e357600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556131ba613864565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061325c575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff165b15613265575060005b6000811561346a5773ffffffffffffffffffffffffffffffffffffffff86166000908152601b602052604090205460ff1680156132a457506000601254115b15613362576132c960646132c360125488613ada90919063ffffffff16565b90613aed565b9050601254601454826132dc91906140a9565b6132e691906140c0565b601760008282546132f791906140fb565b909155505060125460155461330c90836140a9565b61331691906140c0565b6018600082825461332791906140fb565b909155505060125460135461333c90836140a9565b61334691906140c0565b6016600082825461335791906140fb565b9091555061344c9050565b73ffffffffffffffffffffffffffffffffffffffff87166000908152601b602052604090205460ff16801561339957506000600e54115b1561344c576133b860646132c3600e5488613ada90919063ffffffff16565b9050600e54601054826133cb91906140a9565b6133d591906140c0565b601760008282546133e691906140fb565b9091555050600e546011546133fb90836140a9565b61340591906140c0565b6018600082825461341691906140fb565b9091555050600e54600f5461342b90836140a9565b61343591906140c0565b6016600082825461344691906140fb565b90915550505b801561345d5761345d8730836135f5565b6134678186614144565b94505b6134758787876135f5565b50505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dec565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601b602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff821661373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156137f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611f2f565b306000908152602081905260408120549050600060185460165460175461388b91906140fb565b61389591906140fb565b905060008215806138a4575081155b156138ae57505050565b600b546138bc9060146140a9565b8311156138d457600b546138d19060146140a9565b92505b6000600283601754866138e791906140a9565b6138f191906140c0565b6138fb91906140c0565b905060006139098583613af9565b90504761391582613b05565b60006139214783613af9565b9050600061394f600260175461393791906140c0565b6139419089614144565b6016546132c3908590613ada565b9050600061397d600260175461396591906140c0565b61396f908a614144565b6018546132c3908690613ada565b905060008161398c8486614144565b6139969190614144565b600060178190556016819055601881905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613a00576040519150601f19603f3d011682016040523d82523d6000602084013e613a05565b606091505b50909850508615801590613a195750600081115b15613a6c57613a288782613d2c565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60075460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114613ac6576040519150601f19603f3d011682016040523d82523d6000602084013e613acb565b606091505b50505050505050505050505050565b6000613ae682846140a9565b9392505050565b6000613ae682846140c0565b6000613ae68284614144565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613b3a57613b3a614157565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c039190614186565b81600181518110613c1657613c16614157565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c7b307f00000000000000000000000000000000000000000000000000000000000000008461270b565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613cf69085906000908690309042906004016141a3565b600060405180830381600087803b158015613d1057600080fd5b505af1158015613d24573d6000803e3d6000fd5b505050505050565b613d57307f00000000000000000000000000000000000000000000000000000000000000008461270b565b6009546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015613e0c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e31919061422e565b5050505050565b600060208083528351808285015260005b81811015613e6557858101830151858201604001528201613e49565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461270857600080fd5b60008060408385031215613ed957600080fd5b8235613ee481613ea4565b946020939093013593505050565b600060208284031215613f0457600080fd5b8135613ae681613ea4565b600060208284031215613f2157600080fd5b5035919050565b600080600060608486031215613f3d57600080fd5b8335613f4881613ea4565b92506020840135613f5881613ea4565b929592945050506040919091013590565b801515811461270857600080fd5b60008060408385031215613f8a57600080fd5b8235613f9581613ea4565b91506020830135613fa581613f69565b809150509250929050565b600080600060608486031215613fc557600080fd5b505081359360208301359350604090920135919050565b600060208284031215613fee57600080fd5b8135613ae681613f69565b6000806040838503121561400c57600080fd5b823561401781613ea4565b91506020830135613fa581613ea4565b600181811c9082168061403b57607f821691505b602082108103614074577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610d6957610d6961407a565b6000826140f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610d6957610d6961407a565b60006020828403121561412057600080fd5b5051919050565b60006020828403121561413957600080fd5b8151613ae681613f69565b81810381811115610d6957610d6961407a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561419857600080fd5b8151613ae681613ea4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561420057845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016141ce565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561424357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220467120bd072d8fa203edb98fabf5dc1dbd88778592bc2b4dfc09304d493320b664736f6c63430008130033000000000000000000000000bd3e4bc74902f4ce98d69a66833ed2d8e5b2e89c0000000000000000000000000ee8ab2e272b9ce5cbe06274a8dd3e208575b44e

Deployed Bytecode

0x6080604052600436106103fd5760003560e01c80638a8c523c1161020d578063c17b5b8c11610128578063e2f45605116100bb578063f2fde38b1161008a578063f63743421161006f578063f637434214610c81578063f8b45b0514610c97578063fde83a3414610cad57600080fd5b8063f2fde38b14610c34578063f53d0a8e14610c5457600080fd5b8063e2f4560514610bc8578063e37ba8f914610bde578063e5f8291914610bfe578063f11a24d314610c1e57600080fd5b8063d4698016116100f7578063d469801614610b1c578063d729715f14610b49578063d85ba06314610b5f578063dd62ed3e14610b7557600080fd5b8063c17b5b8c14610aa6578063c18bc19514610ac6578063c8c8ebe414610ae6578063d257b34f14610afc57600080fd5b8063a457c2d7116101a0578063b62496f51161016f578063b62496f514610a17578063bbc0c74214610a47578063bc205ad314610a66578063c024666814610a8657600080fd5b8063a457c2d714610997578063a9059cbb146109b7578063aa0e4388146109d7578063adee28ff146109f757600080fd5b8063924de9b7116101dc578063924de9b71461092c57806395d89b411461094c5780639a7a23d6146109615780639c2e4ac61461098157600080fd5b80638a8c523c146108b75780638bad0c0a146108cc5780638cda4dc7146108e15780638da5cb5b1461090157600080fd5b806349bd5a5e1161031857806370a08231116102ab57806375829def1161027a5780637ca8448a1161025f5780637ca8448a146108575780637cb332bb146108775780638095d5641461089757600080fd5b806375829def1461080a578063782c4e991461082a57600080fd5b806370a082311461077d578063715018a6146107c0578063751039fc146107d55780637571336a146107ea57600080fd5b806359927044116102e757806359927044146106fa5780636a486a8e146107275780636ddd17131461073d578063704b6c021461075d57600080fd5b806349bd5a5e146106365780634a62bb651461066a5780634e29e523146106845780634fbee193146106b457600080fd5b80631a8145bb1161039057806327c8f8351161035f57806327c8f835146105c4578063313ce567146105da57806339509351146105f657806347075ba31461061657600080fd5b80631a8145bb14610556578063203e727e1461056c57806323b872dd1461058e57806324b9f3c1146105ae57600080fd5b8063156c2f35116103cc578063156c2f35146104ae5780631694505e146104d257806318160ddd1461052b57806319eab0421461054057600080fd5b806306fdde0314610409578063095ea7b3146104345780630e922ca71461046457806310d5de531461047e57600080fd5b3661040457005b600080fd5b34801561041557600080fd5b5061041e610cc3565b60405161042b9190613e38565b60405180910390f35b34801561044057600080fd5b5061045461044f366004613ec6565b610d55565b604051901515815260200161042b565b34801561047057600080fd5b50601c546104549060ff1681565b34801561048a57600080fd5b50610454610499366004613ef2565b601a6020526000908152604090205460ff1681565b3480156104ba57600080fd5b506104c4600f5481565b60405190815260200161042b565b3480156104de57600080fd5b506105067f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161042b565b34801561053757600080fd5b506002546104c4565b34801561054c57600080fd5b506104c460135481565b34801561056257600080fd5b506104c460175481565b34801561057857600080fd5b5061058c610587366004613f0f565b610d6f565b005b34801561059a57600080fd5b506104546105a9366004613f28565b610ed0565b3480156105ba57600080fd5b506104c460165481565b3480156105d057600080fd5b5061050661dead81565b3480156105e657600080fd5b506040516012815260200161042b565b34801561060257600080fd5b50610454610611366004613ec6565b610ef4565b34801561062257600080fd5b5061058c610631366004613ef2565b610f40565b34801561064257600080fd5b506105067f0000000000000000000000006780824a3ea68af62da0379e79a1ab8bd0112ab981565b34801561067657600080fd5b50600d546104549060ff1681565b34801561069057600080fd5b5061045461069f366004613ef2565b601d6020526000908152604090205460ff1681565b3480156106c057600080fd5b506104546106cf366004613ef2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561070657600080fd5b506008546105069073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073357600080fd5b506104c460125481565b34801561074957600080fd5b50600d546104549062010000900460ff1681565b34801561076957600080fd5b5061058c610778366004613ef2565b611076565b34801561078957600080fd5b506104c4610798366004613ef2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107cc57600080fd5b5061058c61110d565b3480156107e157600080fd5b50610454611121565b3480156107f657600080fd5b5061058c610805366004613f77565b6111d3565b34801561081657600080fd5b5061058c610825366004613ef2565b6112aa565b34801561083657600080fd5b506007546105069073ffffffffffffffffffffffffffffffffffffffff1681565b34801561086357600080fd5b5061058c610872366004613ef2565b61132b565b34801561088357600080fd5b5061058c610892366004613ef2565b61141d565b3480156108a357600080fd5b5061058c6108b2366004613fb0565b61152d565b3480156108c357600080fd5b5061058c611646565b3480156108d857600080fd5b5061058c61171e565b3480156108ed57600080fd5b5061058c6108fc366004613ef2565b611810565b34801561090d57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610506565b34801561093857600080fd5b5061058c610947366004613fdc565b611891565b34801561095857600080fd5b5061041e61194a565b34801561096d57600080fd5b5061058c61097c366004613f77565b611959565b34801561098d57600080fd5b506104c460115481565b3480156109a357600080fd5b506104546109b2366004613ec6565b611abf565b3480156109c357600080fd5b506104546109d2366004613ec6565b611b90565b3480156109e357600080fd5b5061058c6109f2366004613f77565b611b9e565b348015610a0357600080fd5b5061058c610a12366004613ef2565b611c82565b348015610a2357600080fd5b50610454610a32366004613ef2565b601b6020526000908152604090205460ff1681565b348015610a5357600080fd5b50600d5461045490610100900460ff1681565b348015610a7257600080fd5b5061058c610a81366004613ff9565b611d03565b348015610a9257600080fd5b5061058c610aa1366004613f77565b611f35565b348015610ab257600080fd5b5061058c610ac1366004613fb0565b612040565b348015610ad257600080fd5b5061058c610ae1366004613f0f565b612154565b348015610af257600080fd5b506104c4600a5481565b348015610b0857600080fd5b50610454610b17366004613f0f565b6122af565b348015610b2857600080fd5b506009546105069073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b5557600080fd5b506104c460155481565b348015610b6b57600080fd5b506104c4600e5481565b348015610b8157600080fd5b506104c4610b90366004613ff9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610bd457600080fd5b506104c4600b5481565b348015610bea57600080fd5b5061058c610bf9366004613ef2565b61249d565b348015610c0a57600080fd5b5061058c610c19366004613ef2565b6125ad565b348015610c2a57600080fd5b506104c460105481565b348015610c4057600080fd5b5061058c610c4f366004613ef2565b612654565b348015610c6057600080fd5b506006546105069073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c8d57600080fd5b506104c460145481565b348015610ca357600080fd5b506104c4600c5481565b348015610cb957600080fd5b506104c460185481565b606060038054610cd290614027565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfe90614027565b8015610d4b5780601f10610d2057610100808354040283529160200191610d4b565b820191906000526020600020905b815481529060010190602001808311610d2e57829003601f168201915b5050505050905090565b600033610d6381858561270b565b60019150505b92915050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610df5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e0000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b670de0b6b3a76400006103e8610e0a60025490565b610e159060056140a9565b610e1f91906140c0565b610e2991906140c0565b811015610eb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610dec565b610eca81670de0b6b3a76400006140a9565b600a5550565b600033610ede8582856128be565b610ee985858561298f565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d639082908690610f3b9087906140fb565b61270b565b60075473ffffffffffffffffffffffffffffffffffffffff163314610fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792072657653686172652077616c6c65742063616e207472616e73666560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610dec565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61107e61347e565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fb9dcbf31ad1d081284f2d678070b42fca449440e44bfa0427781985632ab954f90600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61111561347e565b61111f60006134ff565b565b60065460009073ffffffffffffffffffffffffffffffffffffffff1633146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b50600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60065473ffffffffffffffffffffffffffffffffffffffff163314611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff1633146113ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114611406576040519150601f19603f3d011682016040523d82523d6000602084013e61140b565b606091505b505090508061141957600080fd5b5050565b60065473ffffffffffffffffffffffffffffffffffffffff16331461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff1633146115ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600f83905560108290556011819055806115c883856140fb565b6115d291906140fb565b600e81905560051015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610dec565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146116c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065460405173ffffffffffffffffffffffffffffffffffffffff909116906000907fb9dcbf31ad1d081284f2d678070b42fca449440e44bfa0427781985632ab954f908290a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60085473ffffffffffffffffffffffffffffffffffffffff16331461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4f6e6c79207465616d2077616c6c65742063616e207472616e736665722e00006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff163314611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610cd290614027565b60065473ffffffffffffffffffffffffffffffffffffffff1633146119da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b7f0000000000000000000000006780824a3ea68af62da0379e79a1ab8bd0112ab973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dec565b6114198282613576565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611b83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dec565b610ee9828686840361270b565b600033610d6381858561298f565b60065473ffffffffffffffffffffffffffffffffffffffff163314611c1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055611c788282611f35565b61141982826111d3565b60065473ffffffffffffffffffffffffffffffffffffffff163314610fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216611e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610dec565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e92919061410e565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2f9190614127565b50505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611fb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146120c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b601383905560148290556015819055806120db83856140fb565b6120e591906140fb565b601281905560051015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610dec565b60065473ffffffffffffffffffffffffffffffffffffffff1633146121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b670de0b6b3a76400006103e86121ea60025490565b6121f590600a6140a9565b6121ff91906140c0565b61220991906140c0565b811015612297576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610dec565b6122a981670de0b6b3a76400006140a9565b600c5550565b60065460009073ffffffffffffffffffffffffffffffffffffffff163314612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b620186a061234060025490565b61234b9060016140a9565b61235591906140c0565b8210156123e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dec565b6103e86123f060025490565b6123fb9060056140a9565b61240591906140c0565b821115612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dec565b50600b55600190565b60065473ffffffffffffffffffffffffffffffffffffffff16331461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4f6e6c792061646d696e000000000000000000000000000000000000000000006044820152606401610dec565b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60095473ffffffffffffffffffffffffffffffffffffffff16331461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4f6e6c79206c69717569646974792077616c6c65742063616e207472616e736660448201527f65722e00000000000000000000000000000000000000000000000000000000006064820152608401610dec565b61265c61347e565b73ffffffffffffffffffffffffffffffffffffffff81166126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dec565b612708816134ff565b50565b73ffffffffffffffffffffffffffffffffffffffff83166127ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f2f5781811015612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dec565b611f2f848484840361270b565b73ffffffffffffffffffffffffffffffffffffffff8316612a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8216612ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dec565b601c5460ff1615612b955773ffffffffffffffffffffffffffffffffffffffff83166000908152601d602052604090205460ff16612b95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201527f6967726174696f6e2e00000000000000000000000000000000000000000000006064820152608401610dec565b80600003612ba957611641838360006135f5565b600d5460ff16156130855760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612bfa575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612c1b575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612c3f575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612c66575060055474010000000000000000000000000000000000000000900460ff16155b1561308557600d54610100900460ff16612d395773ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff1680612cd3575073ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff165b612d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dec565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601b602052604090205460ff168015612d94575073ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff16155b15612ecb57600a54811115612e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dec565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612e5e90836140fb565b1115612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dec565b613085565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604090205460ff168015612f26575073ffffffffffffffffffffffffffffffffffffffff83166000908152601a602052604090205460ff16155b15612fbd57600a54811115612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601a602052604090205460ff1661308557600c5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461301d90836140fb565b1115613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dec565b30600090815260208190526040902054600b54811080159081906130b15750600d5462010000900460ff165b80156130d8575060055474010000000000000000000000000000000000000000900460ff16155b801561310a575073ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff16155b801561313c575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff16155b801561316e575073ffffffffffffffffffffffffffffffffffffffff841660009081526019602052604090205460ff16155b156131e357600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556131ba613864565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061325c575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff165b15613265575060005b6000811561346a5773ffffffffffffffffffffffffffffffffffffffff86166000908152601b602052604090205460ff1680156132a457506000601254115b15613362576132c960646132c360125488613ada90919063ffffffff16565b90613aed565b9050601254601454826132dc91906140a9565b6132e691906140c0565b601760008282546132f791906140fb565b909155505060125460155461330c90836140a9565b61331691906140c0565b6018600082825461332791906140fb565b909155505060125460135461333c90836140a9565b61334691906140c0565b6016600082825461335791906140fb565b9091555061344c9050565b73ffffffffffffffffffffffffffffffffffffffff87166000908152601b602052604090205460ff16801561339957506000600e54115b1561344c576133b860646132c3600e5488613ada90919063ffffffff16565b9050600e54601054826133cb91906140a9565b6133d591906140c0565b601760008282546133e691906140fb565b9091555050600e546011546133fb90836140a9565b61340591906140c0565b6018600082825461341691906140fb565b9091555050600e54600f5461342b90836140a9565b61343591906140c0565b6016600082825461344691906140fb565b90915550505b801561345d5761345d8730836135f5565b6134678186614144565b94505b6134758787876135f5565b50505050505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dec565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601b602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff821661373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156137f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dec565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611f2f565b306000908152602081905260408120549050600060185460165460175461388b91906140fb565b61389591906140fb565b905060008215806138a4575081155b156138ae57505050565b600b546138bc9060146140a9565b8311156138d457600b546138d19060146140a9565b92505b6000600283601754866138e791906140a9565b6138f191906140c0565b6138fb91906140c0565b905060006139098583613af9565b90504761391582613b05565b60006139214783613af9565b9050600061394f600260175461393791906140c0565b6139419089614144565b6016546132c3908590613ada565b9050600061397d600260175461396591906140c0565b61396f908a614144565b6018546132c3908690613ada565b905060008161398c8486614144565b6139969190614144565b600060178190556016819055601881905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613a00576040519150601f19603f3d011682016040523d82523d6000602084013e613a05565b606091505b50909850508615801590613a195750600081115b15613a6c57613a288782613d2c565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60075460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114613ac6576040519150601f19603f3d011682016040523d82523d6000602084013e613acb565b606091505b50505050505050505050505050565b6000613ae682846140a9565b9392505050565b6000613ae682846140c0565b6000613ae68284614144565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613b3a57613b3a614157565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c039190614186565b81600181518110613c1657613c16614157565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c7b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461270b565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613cf69085906000908690309042906004016141a3565b600060405180830381600087803b158015613d1057600080fd5b505af1158015613d24573d6000803e3d6000fd5b505050505050565b613d57307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461270b565b6009546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015613e0c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e31919061422e565b5050505050565b600060208083528351808285015260005b81811015613e6557858101830151858201604001528201613e49565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461270857600080fd5b60008060408385031215613ed957600080fd5b8235613ee481613ea4565b946020939093013593505050565b600060208284031215613f0457600080fd5b8135613ae681613ea4565b600060208284031215613f2157600080fd5b5035919050565b600080600060608486031215613f3d57600080fd5b8335613f4881613ea4565b92506020840135613f5881613ea4565b929592945050506040919091013590565b801515811461270857600080fd5b60008060408385031215613f8a57600080fd5b8235613f9581613ea4565b91506020830135613fa581613f69565b809150509250929050565b600080600060608486031215613fc557600080fd5b505081359360208301359350604090920135919050565b600060208284031215613fee57600080fd5b8135613ae681613f69565b6000806040838503121561400c57600080fd5b823561401781613ea4565b91506020830135613fa581613ea4565b600181811c9082168061403b57607f821691505b602082108103614074577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610d6957610d6961407a565b6000826140f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610d6957610d6961407a565b60006020828403121561412057600080fd5b5051919050565b60006020828403121561413957600080fd5b8151613ae681613f69565b81810381811115610d6957610d6961407a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561419857600080fd5b8151613ae681613ea4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561420057845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016141ce565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561424357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220467120bd072d8fa203edb98fabf5dc1dbd88778592bc2b4dfc09304d493320b664736f6c63430008130033

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

000000000000000000000000bd3e4bc74902f4ce98d69a66833ed2d8e5b2e89c0000000000000000000000000ee8ab2e272b9ce5cbe06274a8dd3e208575b44e

-----Decoded View---------------
Arg [0] : _revShareWallet (address): 0xbd3e4Bc74902F4Ce98D69a66833Ed2D8e5B2E89C
Arg [1] : _liquidityWallet (address): 0x0EE8aB2e272b9cE5cbE06274a8dd3E208575b44e

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000bd3e4bc74902f4ce98d69a66833ed2d8e5b2e89c
Arg [1] : 0000000000000000000000000ee8ab2e272b9ce5cbe06274a8dd3e208575b44e


Deployed Bytecode Sourcemap

33521:18208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12010:201;;;;;;;;;;-1:-1:-1;12010:201:0;;;;;:::i;:::-;;:::i;:::-;;;1270:14:1;;1263:22;1245:41;;1233:2;1218:18;12010:201:0;1105:187:1;34968:36:0;;;;;;;;;;-1:-1:-1;34968:36:0;;;;;;;;34681:63;;;;;;;;;;-1:-1:-1;34681:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34201:29;;;;;;;;;;;;;;;;;;;1695:25:1;;;1683:2;1668:18;34201:29:0;1549:177:1;33595:51:0;;;;;;;;;;;;;;;;;;1934:42:1;1922:55;;;1904:74;;1892:2;1877:18;33595:51:0;1731:253:1;10779:108:0;;;;;;;;;;-1:-1:-1;10867:12:0;;10779:108;;34343:30;;;;;;;;;;;;;;;;34492:33;;;;;;;;;;;;;;;;39342:277;;;;;;;;;;-1:-1:-1;39342:277:0;;;;;:::i;:::-;;:::i;:::-;;12791:261;;;;;;;;;;-1:-1:-1;12791:261:0;;;;;:::i;:::-;;:::i;34453:32::-;;;;;;;;;;;;;;;;33698:53;;;;;;;;;;;;33744:6;33698:53;;10621:93;;;;;;;;;;-1:-1:-1;10621:93:0;;10704:2;3008:36:1;;2996:2;2981:18;10621:93:0;2866:184:1;13461:238:0;;;;;;;;;;-1:-1:-1;13461:238:0;;;;;:::i;:::-;;:::i;42008:292::-;;;;;;;;;;-1:-1:-1;42008:292:0;;;;;:::i;:::-;;:::i;33653:38::-;;;;;;;;;;;;;;;34047:33;;;;;;;;;;-1:-1:-1;34047:33:0;;;;;;;;35011:57;;;;;;;;;;-1:-1:-1;35011:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43710:126;;;;;;;;;;-1:-1:-1;43710:126:0;;;;;:::i;:::-;43800:28;;43776:4;43800:28;;;:19;:28;;;;;;;;;43710:126;33861:25;;;;;;;;;;-1:-1:-1;33861:25:0;;;;;;;;34308:28;;;;;;;;;;;;;;;;34127:31;;;;;;;;;;-1:-1:-1;34127:31:0;;;;;;;;;;;43211:159;;;;;;;;;;-1:-1:-1;43211:159:0;;;;;:::i;:::-;;:::i;10950:127::-;;;;;;;;;;-1:-1:-1;10950:127:0;;;;;:::i;:::-;11051:18;;11024:7;11051:18;;;;;;;;;;;;10950:127;3091:103;;;;;;;;;;;;;:::i;38662:121::-;;;;;;;;;;;;;:::i;39894:169::-;;;;;;;;;;-1:-1:-1;39894:169:0;;;;;:::i;:::-;;:::i;43378:164::-;;;;;;;;;;-1:-1:-1;43378:164:0;;;;;:::i;:::-;;:::i;33825:29::-;;;;;;;;;;-1:-1:-1;33825:29:0;;;;;;;;51264:171;;;;;;;;;;-1:-1:-1;51264:171:0;;;;;:::i;:::-;;:::i;42308:161::-;;;;;;;;;;-1:-1:-1;42308:161:0;;;;;:::i;:::-;;:::i;40267:395::-;;;;;;;;;;-1:-1:-1;40267:395:0;;;;;:::i;:::-;;:::i;38462:148::-;;;;;;;;;;;;;:::i;43550:152::-;;;;;;;;;;;;;:::i;42477:231::-;;;;;;;;;;-1:-1:-1;42477:231:0;;;;;:::i;:::-;;:::i;2450:87::-;;;;;;;;;;-1:-1:-1;2523:6:0;;;;2450:87;;40159:100;;;;;;;;;;-1:-1:-1;40159:100:0;;;;;:::i;:::-;;:::i;9869:104::-;;;;;;;;;;;;;:::i;41273:306::-;;;;;;;;;;-1:-1:-1;41273:306:0;;;;;:::i;:::-;;:::i;34274:25::-;;;;;;;;;;;;;;;;14202:436;;;;;;;;;;-1:-1:-1;14202:436:0;;;;;:::i;:::-;;:::i;11283:193::-;;;;;;;;;;-1:-1:-1;11283:193:0;;;;;:::i;:::-;;:::i;51443:283::-;;;;;;;;;;-1:-1:-1;51443:283:0;;;;;:::i;:::-;;:::i;41783:217::-;;;;;;;;;;-1:-1:-1;41783:217:0;;;;;:::i;:::-;;:::i;34902:57::-;;;;;;;;;;-1:-1:-1;34902:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34087:33;;;;;;;;;;-1:-1:-1;34087:33:0;;;;;;;;;;;50943:313;;;;;;;;;;-1:-1:-1;50943:313:0;;;;;:::i;:::-;;:::i;41083:182::-;;;;;;;;;;-1:-1:-1;41083:182:0;;;;;:::i;:::-;;:::i;40670:405::-;;;;;;;;;;-1:-1:-1;40670:405:0;;;;;:::i;:::-;;:::i;39627:259::-;;;;;;;;;;-1:-1:-1;39627:259:0;;;;;:::i;:::-;;:::i;33932:35::-;;;;;;;;;;;;;;;;38853:481;;;;;;;;;;-1:-1:-1;38853:481:0;;;;;:::i;:::-;;:::i;33893:30::-;;;;;;;;;;-1:-1:-1;33893:30:0;;;;;;;;34418:26;;;;;;;;;;;;;;;;34167:27;;;;;;;;;;;;;;;;11539:151;;;;;;;;;;-1:-1:-1;11539:151:0;;;;;:::i;:::-;11655:18;;;;11628:7;11655:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11539:151;33974:33;;;;;;;;;;;;;;;;42716:181;;;;;;;;;;-1:-1:-1;42716:181:0;;;;;:::i;:::-;;:::i;42905:298::-;;;;;;;;;;-1:-1:-1;42905:298:0;;;;;:::i;:::-;;:::i;34237:30::-;;;;;;;;;;;;;;;;3349:201;;;;;;;;;;-1:-1:-1;3349:201:0;;;;;:::i;:::-;;:::i;33790:28::-;;;;;;;;;;-1:-1:-1;33790:28:0;;;;;;;;34380:31;;;;;;;;;;;;;;;;34014:24;;;;;;;;;;;;;;;;34532:28;;;;;;;;;;;;;;;;9650:100;9704:13;9737:5;9730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9650:100;:::o;12010:201::-;12093:4;1077:10;12149:32;1077:10;12165:7;12174:6;12149:8;:32::i;:::-;12199:4;12192:11;;;12010:201;;;;;:::o;39342:277::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;;;;;;;;;39479:4:::1;39471;39450:13;10867:12:::0;;;10779:108;39450:13:::1;:17;::::0;39466:1:::1;39450:17;:::i;:::-;39449:26;;;;:::i;:::-;39448:35;;;;:::i;:::-;39438:6;:45;;39416:142;;;::::0;::::1;::::0;;6149:2:1;39416:142:0::1;::::0;::::1;6131:21:1::0;6188:2;6168:18;;;6161:30;6227:34;6207:18;;;6200:62;6298:17;6278:18;;;6271:45;6333:19;;39416:142:0::1;5947:411:1::0;39416:142:0::1;39592:19;:6:::0;39602:8:::1;39592:19;:::i;:::-;39569:20;:42:::0;-1:-1:-1;39342:277:0:o;12791:261::-;12888:4;1077:10;12946:38;12962:4;1077:10;12977:6;12946:15;:38::i;:::-;12995:27;13005:4;13011:2;13015:6;12995:9;:27::i;:::-;-1:-1:-1;13040:4:0;;12791:261;-1:-1:-1;;;;12791:261:0:o;13461:238::-;1077:10;13549:4;11655:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13549:4;;1077:10;13605:64;;1077:10;;11655:27;;13630:38;;13658:10;;13630:38;:::i;:::-;13605:8;:64::i;42008:292::-;42115:14;;;;42101:10;:28;42079:112;;;;;;;6695:2:1;42079:112:0;;;6677:21:1;6734:2;6714:18;;;6707:30;6773:34;6753:18;;;6746:62;6844:4;6824:18;;;6817:32;6866:19;;42079:112:0;6493:398:1;42079:112:0;42240:14;;42207:48;;42240:14;;;;;42207:48;;;;;42240:14;;42207:48;42266:14;:26;;;;;;;;;;;;;;;42008:292::o;43211:159::-;2336:13;:11;:13::i;:::-;43313::::1;::::0;43282:45:::1;::::0;43313:13:::1;::::0;;::::1;::::0;43282:45;::::1;::::0;::::1;::::0;43313:13:::1;::::0;43282:45:::1;43338:13;:24:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43211:159::o;3091:103::-;2336:13;:11;:13::i;:::-;3156:30:::1;3183:1;3156:18;:30::i;:::-;3091:103::o:0;38662:121::-;35996:13;;38714:4;;35996:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;-1:-1:-1;38731:14:0::1;:22:::0;;;::::1;::::0;;;38662:121;:::o;39894:169::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;40009:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39894:169::o;43378:164::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;51264:171:0;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;51337:12:::1;51355:6;:11;;51374:21;51355:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51336:64;;;51419:7;51411:16;;;::::0;::::1;;51325:110;51264:171:::0;:::o;42308:161::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;42417:10:::1;::::0;42388:40:::1;::::0;42417:10:::1;::::0;;::::1;::::0;42388:40;::::1;::::0;::::1;::::0;42417:10:::1;::::0;42388:40:::1;42439:10;:22:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42308:161::o;40267:395::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;40417:14:::1;:29:::0;;;40457:15:::1;:31:::0;;;40499:10:::1;:21:::0;;;40512:8;40546:32:::1;40475:13:::0;40434:12;40546:32:::1;:::i;:::-;:45;;;;:::i;:::-;40531:12;:60:::0;;;40626:1:::1;-1:-1:-1::0;40610:17:0::1;40602:52;;;::::0;::::1;::::0;;7308:2:1;40602:52:0::1;::::0;::::1;7290:21:1::0;7347:2;7327:18;;;7320:30;7386:24;7366:18;;;7359:52;7428:18;;40602:52:0::1;7106:346:1::0;40602:52:0::1;40267:395:::0;;;:::o;38462:148::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;38517:13:::1;:20:::0;;38548:18;;;;;;38577:17:::1;:25:::0;;;::::1;::::0;;38462:148::o;43550:152::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;43643:13:::1;::::0;43610:47:::1;::::0;43643:13:::1;::::0;;::::1;::::0;::::1;::::0;43610:47:::1;::::0;43643:13;;43610:47:::1;43668:13;:26:::0;;;::::1;::::0;;43550:152::o;42477:231::-;42566:10;;;;42552;:24;42544:67;;;;;;;7659:2:1;42544:67:0;;;7641:21:1;7698:2;7678:18;;;7671:30;7737:32;7717:18;;;7710:60;7787:18;;42544:67:0;7457:354:1;40159:100:0;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;40230:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;40159:100::o;9869:104::-;9925:13;9958:7;9951:14;;;;;:::i;41273:306::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;41419:13:::1;41411:21;;:4;:21;;::::0;41389:128:::1;;;::::0;::::1;::::0;;8018:2:1;41389:128:0::1;::::0;::::1;8000:21:1::0;8057:2;8037:18;;;8030:30;8096:34;8076:18;;;8069:62;8167:27;8147:18;;;8140:55;8212:19;;41389:128:0::1;7816:421:1::0;41389:128:0::1;41530:41;41559:4;41565:5;41530:28;:41::i;14202:436::-:0;1077:10;14295:4;11655:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;14295:4;;1077:10;14442:15;14422:16;:35;;14414:85;;;;;;;8444:2:1;14414:85:0;;;8426:21:1;8483:2;8463:18;;;8456:30;8522:34;8502:18;;;8495:62;8593:7;8573:18;;;8566:35;8618:19;;14414:85:0;8242:401:1;14414:85:0;14535:60;14544:5;14551:7;14579:15;14560:16;:34;14535:8;:60::i;11283:193::-;11362:4;1077:10;11418:28;1077:10;11435:2;11439:6;11418:9;:28::i;51443:283::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;51567:32:::1;::::0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;;::::1;::::0;::::1;;;::::0;;51625:36:::1;51567:32:::0;:47;51625:15:::1;:36::i;:::-;51672:46;51698:5;51705:12;51672:25;:46::i;41783:217::-:0;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;50943:313:0;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;51063:20:::1;::::0;::::1;51055:59;;;::::0;::::1;::::0;;8850:2:1;51055:59:0::1;::::0;::::1;8832:21:1::0;8889:2;8869:18;;;8862:30;8928:28;8908:18;;;8901:56;8974:18;;51055:59:0::1;8648:350:1::0;51055:59:0::1;51152:39;::::0;;;;51185:4:::1;51152:39;::::0;::::1;1904:74:1::0;51125:24:0::1;::::0;51152::::1;::::0;::::1;::::0;::::1;::::0;1877:18:1;;51152:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51202:46;::::0;;;;:23:::1;9384:55:1::0;;;51202:46:0::1;::::0;::::1;9366:74:1::0;9456:18;;;9449:34;;;51125:66:0;;-1:-1:-1;51202:23:0;;::::1;::::0;::::1;::::0;9339:18:1;;51202:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51044:212;50943:313:::0;;:::o;41083:182::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;41168:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;41223:34;;1245:41:1;;;41223:34:0::1;::::0;1218:18:1;41223:34:0::1;;;;;;;41083:182:::0;;:::o;40670:405::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;40821:15:::1;:30:::0;;;40862:16:::1;:32:::0;;;40905:11:::1;:22:::0;;;40919:8;40954:34:::1;40881:13:::0;40839:12;40954:34:::1;:::i;:::-;:48;;;;:::i;:::-;40938:13;:64:::0;;;41038:1:::1;-1:-1:-1::0;41021:18:0::1;41013:54;;;::::0;::::1;::::0;;9946:2:1;41013:54:0::1;::::0;::::1;9928:21:1::0;9985:2;9965:18;;;9958:30;10024:25;10004:18;;;9997:53;10067:18;;41013:54:0::1;9744:347:1::0;39627:259:0;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;39768:4:::1;39760;39738:13;10867:12:::0;;;10779:108;39738:13:::1;:18;::::0;39754:2:::1;39738:18;:::i;:::-;39737:27;;;;:::i;:::-;39736:36;;;;:::i;:::-;39726:6;:46;;39704:132;;;::::0;::::1;::::0;;10298:2:1;39704:132:0::1;::::0;::::1;10280:21:1::0;10337:2;10317:18;;;10310:30;10376:34;10356:18;;;10349:62;10447:6;10427:18;;;10420:34;10471:19;;39704:132:0::1;10096:400:1::0;39704:132:0::1;39859:19;:6:::0;39869:8:::1;39859:19;:::i;:::-;39847:9;:31:::0;-1:-1:-1;39627:259:0:o;38853:481::-;35996:13;;38950:4;;35996:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;39024:6:::1;39003:13;10867:12:::0;;;10779:108;39003:13:::1;:17;::::0;39019:1:::1;39003:17;:::i;:::-;39002:28;;;;:::i;:::-;38989:9;:41;;38967:144;;;::::0;::::1;::::0;;10703:2:1;38967:144:0::1;::::0;::::1;10685:21:1::0;10742:2;10722:18;;;10715:30;10781:34;10761:18;;;10754:62;10852:23;10832:18;;;10825:51;10893:19;;38967:144:0::1;10501:417:1::0;38967:144:0::1;39179:4;39158:13;10867:12:::0;;;10779:108;39158:13:::1;:17;::::0;39174:1:::1;39158:17;:::i;:::-;39157:26;;;;:::i;:::-;39144:9;:39;;39122:141;;;::::0;::::1;::::0;;11125:2:1;39122:141:0::1;::::0;::::1;11107:21:1::0;11164:2;11144:18;;;11137:30;11203:34;11183:18;;;11176:62;11274:22;11254:18;;;11247:50;11314:19;;39122:141:0::1;10923:416:1::0;39122:141:0::1;-1:-1:-1::0;39274:18:0::1;:30:::0;39322:4:::1;::::0;38853:481::o;42716:181::-;35996:13;;:29;:13;1077:10;35996:29;35988:52;;;;;;;5169:2:1;35988:52:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:12;5227:18;;;5220:40;5277:18;;35988:52:0;4967:334:1;35988:52:0;42835:15:::1;::::0;42801:50:::1;::::0;42835:15:::1;::::0;;::::1;::::0;42801:50;::::1;::::0;::::1;::::0;42835:15:::1;::::0;42801:50:::1;42862:15;:27:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42716:181::o;42905:298::-;43013:15;;;;42999:10;:29;42977:114;;;;;;;11546:2:1;42977:114:0;;;11528:21:1;11585:2;11565:18;;;11558:30;11624:34;11604:18;;;11597:62;11695:5;11675:18;;;11668:33;11718:19;;42977:114:0;11344:399:1;3349:201:0;2336:13;:11;:13::i;:::-;3438:22:::1;::::0;::::1;3430:73;;;::::0;::::1;::::0;;11950:2:1;3430:73:0::1;::::0;::::1;11932:21:1::0;11989:2;11969:18;;;11962:30;12028:34;12008:18;;;12001:62;12099:8;12079:18;;;12072:36;12125:19;;3430:73:0::1;11748:402:1::0;3430:73:0::1;3514:28;3533:8;3514:18;:28::i;:::-;3349:201:::0;:::o;18195:346::-;18297:19;;;18289:68;;;;;;;12357:2:1;18289:68:0;;;12339:21:1;12396:2;12376:18;;;12369:30;12435:34;12415:18;;;12408:62;12506:6;12486:18;;;12479:34;12530:19;;18289:68:0;12155:400:1;18289:68:0;18376:21;;;18368:68;;;;;;;12762:2:1;18368:68:0;;;12744:21:1;12801:2;12781:18;;;12774:30;12840:34;12820:18;;;12813:62;12911:4;12891:18;;;12884:32;12933:19;;18368:68:0;12560:398:1;18368:68:0;18449:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18501:32;;1695:25:1;;;18501:32:0;;1668:18:1;18501:32:0;;;;;;;18195:346;;;:::o;18832:419::-;11655:18;;;;18933:24;11655:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;19020:17;19000:37;;18996:248;;19082:6;19062:16;:26;;19054:68;;;;;;;13165:2:1;19054:68:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:31;13223:18;;;13216:59;13292:18;;19054:68:0;12963:353:1;19054:68:0;19166:51;19175:5;19182:7;19210:6;19191:16;:25;19166:8;:51::i;43844:4120::-;43976:18;;;43968:68;;;;;;;13523:2:1;43968:68:0;;;13505:21:1;13562:2;13542:18;;;13535:30;13601:34;13581:18;;;13574:62;13672:7;13652:18;;;13645:35;13697:19;;43968:68:0;13321:401:1;43968:68:0;44055:16;;;44047:64;;;;;;;13929:2:1;44047:64:0;;;13911:21:1;13968:2;13948:18;;;13941:30;14007:34;13987:18;;;13980:62;14078:5;14058:18;;;14051:33;14101:19;;44047:64:0;13727:399:1;44047:64:0;44128:17;;;;44124:184;;;44188:31;;;;;;;:25;:31;;;;;;;;44162:134;;;;;;;14333:2:1;44162:134:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;14482:11;14462:18;;;14455:39;14511:19;;44162:134:0;14131:405:1;44162:134:0;44324:6;44334:1;44324:11;44320:93;;44352:28;44368:4;44374:2;44378:1;44352:15;:28::i;44320:93::-;44429:14;;;;44425:1694;;;2523:6;;;44482:15;;;2523:6;;44482:15;;;;:49;;-1:-1:-1;2523:6:0;;;44518:13;;;2523:6;;44518:13;;44482:49;:86;;;;-1:-1:-1;44552:16:0;;;;;44482:86;:128;;;;-1:-1:-1;44589:21:0;;;44603:6;44589:21;;44482:128;:158;;;;-1:-1:-1;44632:8:0;;;;;;;44631:9;44482:158;44460:1648;;;44680:13;;;;;;;44675:223;;44752:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;44781:23:0;;;;;;;:19;:23;;;;;;;;44752:52;44718:160;;;;;;;14743:2:1;44718:160:0;;;14725:21:1;14782:2;14762:18;;;14755:30;14821:24;14801:18;;;14794:52;14863:18;;44718:160:0;14541:346:1;44718:160:0;44972:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;45029:35:0;;;;;;;:31;:35;;;;;;;;45028:36;44972:92;44946:1147;;;45151:20;;45141:6;:30;;45107:169;;;;;;;15094:2:1;45107:169:0;;;15076:21:1;15133:2;15113:18;;;15106:30;15172:34;15152:18;;;15145:62;15243:23;15223:18;;;15216:51;15284:19;;45107:169:0;14892:417:1;45107:169:0;45359:9;;11051:18;;;11024:7;11051:18;;;;;;;;;;;45333:22;;:6;:22;:::i;:::-;:35;;45299:140;;;;;;;15516:2:1;45299:140:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:21;15574:18;;;15567:49;15633:18;;45299:140:0;15314:343:1;45299:140:0;44946:1147;;;45537:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;45592:37:0;;;;;;;:31;:37;;;;;;;;45591:38;45537:92;45511:582;;;45716:20;;45706:6;:30;;45672:170;;;;;;;15864:2:1;45672:170:0;;;15846:21:1;15903:2;15883:18;;;15876:30;15942:34;15922:18;;;15915:62;16013:24;15993:18;;;15986:52;16055:19;;45672:170:0;15662:418:1;45511:582:0;45873:35;;;;;;;:31;:35;;;;;;;;45868:225;;45993:9;;11051:18;;;11024:7;11051:18;;;;;;;;;;;45967:22;;:6;:22;:::i;:::-;:35;;45933:140;;;;;;;15516:2:1;45933:140:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:21;15574:18;;;15567:49;15633:18;;45933:140:0;15314:343:1;45933:140:0;46180:4;46131:28;11051:18;;;;;;;;;;;46238;;46214:42;;;;;;;46287:35;;-1:-1:-1;46311:11:0;;;;;;;46287:35;:61;;;;-1:-1:-1;46340:8:0;;;;;;;46339:9;46287:61;:110;;;;-1:-1:-1;46366:31:0;;;;;;;:25;:31;;;;;;;;46365:32;46287:110;:153;;;;-1:-1:-1;46415:25:0;;;;;;;:19;:25;;;;;;;;46414:26;46287:153;:194;;;;-1:-1:-1;46458:23:0;;;;;;;:19;:23;;;;;;;;46457:24;46287:194;46269:326;;;46508:8;:15;;;;;;;;46540:10;:8;:10::i;:::-;46567:8;:16;;;;;;46269:326;46623:8;;46733:25;;;46607:12;46733:25;;;:19;:25;;;;;;46623:8;;;;;;;46622:9;;46733:25;;:52;;-1:-1:-1;46762:23:0;;;;;;;:19;:23;;;;;;;;46733:52;46729:100;;;-1:-1:-1;46812:5:0;46729:100;46841:12;46946:7;46942:969;;;46998:29;;;;;;;:25;:29;;;;;;;;:50;;;;;47047:1;47031:13;;:17;46998:50;46994:768;;;47076:34;47106:3;47076:25;47087:13;;47076:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;47069:41;;47179:13;;47159:16;;47152:4;:23;;;;:::i;:::-;47151:41;;;;:::i;:::-;47129:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;47251:13:0;;47236:11;;47229:18;;:4;:18;:::i;:::-;47228:36;;;;:::i;:::-;47211:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;47331:13:0;;47312:15;;47305:22;;:4;:22;:::i;:::-;47304:40;;;;:::i;:::-;47283:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;46994:768:0;;-1:-1:-1;46994:768:0;;47406:31;;;;;;;:25;:31;;;;;;;;:51;;;;;47456:1;47441:12;;:16;47406:51;47402:360;;;47485:33;47514:3;47485:24;47496:12;;47485:6;:10;;:24;;;;:::i;:33::-;47478:40;;47586:12;;47567:15;;47560:4;:22;;;;:::i;:::-;47559:39;;;;:::i;:::-;47537:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;47656:12:0;;47642:10;;47635:17;;:4;:17;:::i;:::-;47634:34;;;;:::i;:::-;47617:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;47734:12:0;;47716:14;;47709:21;;:4;:21;:::i;:::-;47708:38;;;;:::i;:::-;47687:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;47402:360:0;47782:8;;47778:91;;47811:42;47827:4;47841;47848;47811:15;:42::i;:::-;47885:14;47895:4;47885:14;;:::i;:::-;;;46942:969;47923:33;47939:4;47945:2;47949:6;47923:15;:33::i;:::-;43957:4007;;;;43844:4120;;;:::o;2615:132::-;2523:6;;2679:23;2523:6;1077:10;2679:23;2671:68;;;;;;;16420:2:1;2671:68:0;;;16402:21:1;;;16439:18;;;16432:30;16498:34;16478:18;;;16471:62;16550:18;;2671:68:0;16218:356:1;3710:191:0;3803:6;;;;3820:17;;;;;;;;;;;3853:40;;3803:6;;;3820:17;3803:6;;3853:40;;3784:16;;3853:40;3773:128;3710:191;:::o;41587:188::-;41670:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;41727:40;;41670:39;;:31;41727:40;;;41587:188;;:::o;15108:806::-;15205:18;;;15197:68;;;;;;;13523:2:1;15197:68:0;;;13505:21:1;13562:2;13542:18;;;13535:30;13601:34;13581:18;;;13574:62;13672:7;13652:18;;;13645:35;13697:19;;15197:68:0;13321:401:1;15197:68:0;15284:16;;;15276:64;;;;;;;13929:2:1;15276:64:0;;;13911:21:1;13968:2;13948:18;;;13941:30;14007:34;13987:18;;;13980:62;14078:5;14058:18;;;14051:33;14101:19;;15276:64:0;13727:399:1;15276:64:0;15426:15;;;15404:19;15426:15;;;;;;;;;;;15460:21;;;;15452:72;;;;;;;16781:2:1;15452:72:0;;;16763:21:1;16820:2;16800:18;;;16793:30;16859:34;16839:18;;;16832:62;16930:8;16910:18;;;16903:36;16956:19;;15452:72:0;16579:402:1;15452:72:0;15560:15;;;;:9;:15;;;;;;;;;;;15578:20;;;15560:38;;15778:13;;;;;;;;;;:23;;;;;;15830:26;;1695:25:1;;;15778:13:0;;15830:26;;1668:18:1;15830:26:0;;;;;;;15869:37;40267:395;49098:1837;49181:4;49137:23;11051:18;;;;;;;;;;;49137:50;;49198:25;49293:13;;49260:17;;49226:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;49198:108;-1:-1:-1;49317:12:0;49346:20;;;:46;;-1:-1:-1;49370:22:0;;49346:46;49342:85;;;49409:7;;;49098:1837::o;49342:85::-;49461:18;;:23;;49482:2;49461:23;:::i;:::-;49443:15;:41;49439:115;;;49519:18;;:23;;49540:2;49519:23;:::i;:::-;49501:41;;49439:115;49615:23;49728:1;49695:17;49660:18;;49642:15;:36;;;;:::i;:::-;49641:71;;;;:::i;:::-;:88;;;;:::i;:::-;49615:114;-1:-1:-1;49740:26:0;49769:36;:15;49615:114;49769:19;:36::i;:::-;49740:65;-1:-1:-1;49846:21:0;49880:36;49740:65;49880:16;:36::i;:::-;49929:18;49950:44;:21;49976:17;49950:25;:44::i;:::-;49929:65;;50007:22;50032:107;50126:1;50105:18;;:22;;;;:::i;:::-;50084:44;;:17;:44;:::i;:::-;50047:17;;50032:33;;:10;;:14;:33::i;:107::-;50007:132;;50152:18;50173:103;50263:1;50242:18;;:22;;;;:::i;:::-;50221:44;;:17;:44;:::i;:::-;50188:13;;50173:29;;:10;;:14;:29::i;:103::-;50152:124;-1:-1:-1;50289:23:0;50152:124;50315:27;50328:14;50315:10;:27;:::i;:::-;:40;;;;:::i;:::-;50389:1;50368:18;:22;;;50401:17;:21;;;50433:13;:17;;;50485:10;;50477:47;;50289:66;;-1:-1:-1;50485:10:0;;;50509;;50477:47;50389:1;50477:47;50509:10;50485;50477:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50463:61:0;;-1:-1:-1;;50541:19:0;;;;;:42;;;50582:1;50564:15;:19;50541:42;50537:278;;;50600:46;50613:15;50630;50600:12;:46::i;:::-;50770:18;;50666:137;;;17188:25:1;;;17244:2;17229:18;;17222:34;;;17272:18;;;17265:34;;;;50666:137:0;;;;;;17176:2:1;50666:137:0;;;50537:278;50849:14;;50841:86;;50849:14;;;;;50891:21;;50841:86;;;;50891:21;50849:14;50841:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;49098:1837:0:o;29366:98::-;29424:7;29451:5;29455:1;29451;:5;:::i;:::-;29444:12;29366:98;-1:-1:-1;;;29366:98:0:o;29765:::-;29823:7;29850:5;29854:1;29850;:5;:::i;29009:98::-;29067:7;29094:5;29098:1;29094;:5;:::i;47972:589::-;48122:16;;;48136:1;48122:16;;;;;;;;48098:21;;48122:16;;;;;;;;;;-1:-1:-1;48122:16:0;48098:40;;48167:4;48149;48154:1;48149:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;48193:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48183:4;48188:1;48183:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;48228:62;48245:4;48260:15;48278:11;48228:8;:62::i;:::-;48329:224;;;;;:66;:15;:66;;;;:224;;48410:11;;48436:1;;48480:4;;48507;;48527:15;;48329:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48027:534;47972:589;:::o;48569:521::-;48717:62;48734:4;48749:15;48767:11;48717:8;:62::i;:::-;49026:15;;48822:260;;;;;48894:4;48822:260;;;19339:34:1;19389:18;;;19382:34;;;48940:1:0;19432:18:1;;;19425:34;;;19475:18;;;19468:34;48822:31:0;49026:15;;;19518:19:1;;;19511:44;49056:15:0;19571:19:1;;;19564:35;48822:15:0;:31;;;;;;48861:9;;19250:19:1;;48822:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48569:521;;:::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;712:42;705:5;701:54;694:5;691:65;681:93;;770:1;767;760:12;785:315;853:6;861;914:2;902:9;893:7;889:23;885:32;882:52;;;930:1;927;920:12;882:52;969:9;956:23;988:31;1013:5;988:31;:::i;:::-;1038:5;1090:2;1075:18;;;;1062:32;;-1:-1:-1;;;785:315:1:o;1297:247::-;1356:6;1409:2;1397:9;1388:7;1384:23;1380:32;1377:52;;;1425:1;1422;1415:12;1377:52;1464:9;1451:23;1483:31;1508:5;1483:31;:::i;1989:180::-;2048:6;2101:2;2089:9;2080:7;2076:23;2072:32;2069:52;;;2117:1;2114;2107:12;2069:52;-1:-1:-1;2140:23:1;;1989:180;-1:-1:-1;1989:180:1:o;2174:456::-;2251:6;2259;2267;2320:2;2308:9;2299:7;2295:23;2291:32;2288:52;;;2336:1;2333;2326:12;2288:52;2375:9;2362:23;2394:31;2419:5;2394:31;:::i;:::-;2444:5;-1:-1:-1;2501:2:1;2486:18;;2473:32;2514:33;2473:32;2514:33;:::i;:::-;2174:456;;2566:7;;-1:-1:-1;;;2620:2:1;2605:18;;;;2592:32;;2174:456::o;3055:118::-;3141:5;3134:13;3127:21;3120:5;3117:32;3107:60;;3163:1;3160;3153:12;3178:382;3243:6;3251;3304:2;3292:9;3283:7;3279:23;3275:32;3272:52;;;3320:1;3317;3310:12;3272:52;3359:9;3346:23;3378:31;3403:5;3378:31;:::i;:::-;3428:5;-1:-1:-1;3485:2:1;3470:18;;3457:32;3498:30;3457:32;3498:30;:::i;:::-;3547:7;3537:17;;;3178:382;;;;;:::o;3565:316::-;3642:6;3650;3658;3711:2;3699:9;3690:7;3686:23;3682:32;3679:52;;;3727:1;3724;3717:12;3679:52;-1:-1:-1;;3750:23:1;;;3820:2;3805:18;;3792:32;;-1:-1:-1;3871:2:1;3856:18;;;3843:32;;3565:316;-1:-1:-1;3565:316:1:o;3886:241::-;3942:6;3995:2;3983:9;3974:7;3970:23;3966:32;3963:52;;;4011:1;4008;4001:12;3963:52;4050:9;4037:23;4069:28;4091:5;4069:28;:::i;4132:388::-;4200:6;4208;4261:2;4249:9;4240:7;4236:23;4232:32;4229:52;;;4277:1;4274;4267:12;4229:52;4316:9;4303:23;4335:31;4360:5;4335:31;:::i;:::-;4385:5;-1:-1:-1;4442:2:1;4427:18;;4414:32;4455:33;4414:32;4455:33;:::i;4525:437::-;4604:1;4600:12;;;;4647;;;4668:61;;4722:4;4714:6;4710:17;4700:27;;4668:61;4775:2;4767:6;4764:14;4744:18;4741:38;4738:218;;4812:77;4809:1;4802:88;4913:4;4910:1;4903:15;4941:4;4938:1;4931:15;4738:218;;4525:437;;;:::o;5306:184::-;5358:77;5355:1;5348:88;5455:4;5452:1;5445:15;5479:4;5476:1;5469:15;5495:168;5568:9;;;5599;;5616:15;;;5610:22;;5596:37;5586:71;;5637:18;;:::i;5668:274::-;5708:1;5734;5724:189;;5769:77;5766:1;5759:88;5870:4;5867:1;5860:15;5898:4;5895:1;5888:15;5724:189;-1:-1:-1;5927:9:1;;5668:274::o;6363:125::-;6428:9;;;6449:10;;;6446:36;;;6462:18;;:::i;9003:184::-;9073:6;9126:2;9114:9;9105:7;9101:23;9097:32;9094:52;;;9142:1;9139;9132:12;9094:52;-1:-1:-1;9165:16:1;;9003:184;-1:-1:-1;9003:184:1:o;9494:245::-;9561:6;9614:2;9602:9;9593:7;9589:23;9585:32;9582:52;;;9630:1;9627;9620:12;9582:52;9662:9;9656:16;9681:28;9703:5;9681:28;:::i;16085:128::-;16152:9;;;16173:11;;;16170:37;;;16187:18;;:::i;17499:184::-;17551:77;17548:1;17541:88;17648:4;17645:1;17638:15;17672:4;17669:1;17662:15;17688:251;17758:6;17811:2;17799:9;17790:7;17786:23;17782:32;17779:52;;;17827:1;17824;17817:12;17779:52;17859:9;17853:16;17878:31;17903:5;17878:31;:::i;17944:1026::-;18206:4;18254:3;18243:9;18239:19;18285:6;18274:9;18267:25;18311:2;18349:6;18344:2;18333:9;18329:18;18322:34;18392:3;18387:2;18376:9;18372:18;18365:31;18416:6;18451;18445:13;18482:6;18474;18467:22;18520:3;18509:9;18505:19;18498:26;;18559:2;18551:6;18547:15;18533:29;;18580:1;18590:218;18604:6;18601:1;18598:13;18590:218;;;18669:13;;18684:42;18665:62;18653:75;;18783:15;;;;18748:12;;;;18626:1;18619:9;18590:218;;;-1:-1:-1;;18876:42:1;18864:55;;;;18859:2;18844:18;;18837:83;-1:-1:-1;;;18951:3:1;18936:19;18929:35;18825:3;17944:1026;-1:-1:-1;;;17944:1026:1:o;19610:306::-;19698:6;19706;19714;19767:2;19755:9;19746:7;19742:23;19738:32;19735:52;;;19783:1;19780;19773:12;19735:52;19812:9;19806:16;19796:26;;19862:2;19851:9;19847:18;19841:25;19831:35;;19906:2;19895:9;19891:18;19885:25;19875:35;;19610:306;;;;;:::o

Swarm Source

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