ETH Price: $2,521.64 (-5.84%)
Gas: 2 Gwei

Token

KSI Inu (KSI)
 

Overview

Max Total Supply

1,000,000,000 KSI

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
275,235.712310184209472964 KSI

Value
$0.00
0x19ce9b1b9db57fce6e5057230ba105e499ad6a00
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:
KSI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

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

 __    __   ______   ______        ______  __    __  __    __ 
|  \  /  \ /      \ |      \      |      \|  \  |  \|  \  |  \
| $$ /  $$|  $$$$$$\ \$$$$$$       \$$$$$$| $$\ | $$| $$  | $$
| $$/  $$ | $$___\$$  | $$          | $$  | $$$\| $$| $$  | $$
| $$  $$   \$$    \   | $$          | $$  | $$$$\ $$| $$  | $$
| $$$$$\   _\$$$$$$\  | $$          | $$  | $$\$$ $$| $$  | $$
| $$ \$$\ |  \__| $$ _| $$_        _| $$_ | $$ \$$$$| $$__/ $$
| $$  \$$\ \$$    $$|   $$ \      |   $$ \| $$  \$$$ \$$    $$
 \$$   \$$  \$$$$$$  \$$$$$$       \$$$$$$ \$$   \$$  \$$$$$$ 
                                                                                                                                                                                  
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

/*
 * https://t.me/KSI_INU
 * https://twitter.com/KSI_INU
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    function WETH() external pure returns (address);

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

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

interface IUniswapV2Pair {
    function sync() external;
}

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public constant buyMarketingFee = 4;
    uint256 public constant buyLiquidityFee = 1;
    uint256 public constant buyDevFee = 0;

    uint256 public sellTotalFees;
    uint256 public constant sellMarketingFee = 5;
    uint256 public constant sellLiquidityFee = 1;
    uint256 public constant sellDevFee = 0;

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("KSI Inu", "KSI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 totalSupply = 1_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 15_000_000 * 1e18; // 1.5% from total supply maxTransactionAmountTxn
        maxWallet = 30_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xB14eb2fC69c34eE95C96B0a43Fc6Cca9A4E7bFdB); // set as marketing wallet
        devWallet = address(0x4E2dCe9629CAe6e7576C8F3933d47CbD15D3306D); // set as dev 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);

        /*
            _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 startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        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 onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

        if (contractBalance > 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","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":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526014600c556001600d60006101000a81548160ff021916908315150217905550610e10600e556107086010556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600781526020017f4b534920496e75000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b5349000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b45565b5080600490805190602001906200014792919062000b45565b5050506200016a6200015e6200060560201b60201c565b6200060d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006d360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021457600080fd5b505afa15801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f919062000c0c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b257600080fd5b505afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000c0c565b6040518363ffffffff1660e01b81526004016200030c92919062000cef565b602060405180830381600087803b1580156200032757600080fd5b505af11580156200033c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000362919062000c0c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d360201b60201c565b6200040c600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007bd60201b60201c565b60006b033b2e3c9fd0803ce800000090506a0c685fa11e01ec6f0000006009819055506a18d0bf423c03d8de000000600b8190555061271060038262000453919062000e40565b6200045f919062000e08565b600a8190555060006001600462000477919062000dab565b62000483919062000dab565b6015819055506000600160056200049b919062000dab565b620004a7919062000dab565b60168190555073b14eb2fc69c34ee95c96b0a43fc6cca9a4e7bfdb600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734e2dce9629cae6e7576c8f3933d47cbd15d3306d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005796200056b6200085e60201b60201c565b60016200088860201b60201c565b6200058c3060016200088860201b60201c565b620005a161dead60016200088860201b60201c565b620005c3620005b56200085e60201b60201c565b6001620006d360201b60201c565b620005d6306001620006d360201b60201c565b620005eb61dead6001620006d360201b60201c565b620005fd3382620009c260201b60201c565b505062000fc8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e36200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007096200085e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007599062000d39565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008986200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008be6200085e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000917576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090e9062000d39565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b6919062000d1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2c9062000d5b565b60405180910390fd5b62000a496000838362000b3b60201b60201c565b806002600082825462000a5d919062000dab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab4919062000dab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1b919062000d7d565b60405180910390a362000b376000838362000b4060201b60201c565b5050565b505050565b505050565b82805462000b539062000eeb565b90600052602060002090601f01602090048101928262000b77576000855562000bc3565b82601f1062000b9257805160ff191683800117855562000bc3565b8280016001018555821562000bc3579182015b8281111562000bc257825182559160200191906001019062000ba5565b5b50905062000bd2919062000bd6565b5090565b5b8082111562000bf157600081600090555060010162000bd7565b5090565b60008151905062000c068162000fae565b92915050565b60006020828403121562000c1f57600080fd5b600062000c2f8482850162000bf5565b91505092915050565b62000c438162000ea1565b82525050565b62000c548162000eb5565b82525050565b600062000c6960208362000d9a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000cab601f8362000d9a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000ce98162000ee1565b82525050565b600060408201905062000d06600083018562000c38565b62000d15602083018462000c38565b9392505050565b600060208201905062000d33600083018462000c49565b92915050565b6000602082019050818103600083015262000d548162000c5a565b9050919050565b6000602082019050818103600083015262000d768162000c9c565b9050919050565b600060208201905062000d94600083018462000cde565b92915050565b600082825260208201905092915050565b600062000db88262000ee1565b915062000dc58362000ee1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfd5762000dfc62000f21565b5b828201905092915050565b600062000e158262000ee1565b915062000e228362000ee1565b92508262000e355762000e3462000f50565b5b828204905092915050565b600062000e4d8262000ee1565b915062000e5a8362000ee1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e965762000e9562000f21565b5b828202905092915050565b600062000eae8262000ec1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000f0457607f821691505b6020821081141562000f1b5762000f1a62000f7f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000fb98162000ea1565b811462000fc557600080fd5b50565b60805160601c6157676200101160003960008181610f2901528181612bc501528181613fda015281816140f001528181614117015281816141b301526141da01526157676000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600181565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600181565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460018261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460058261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460018261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460048261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea264697066735822122039b704d1ddaf8e0d5ce0df2b86993c21abf73c57870da8c02dce86284179b6d264736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600181565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600181565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460018261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460058261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460018261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460048261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea264697066735822122039b704d1ddaf8e0d5ce0df2b86993c21abf73c57870da8c02dce86284179b6d264736f6c63430008000033

Deployed Bytecode Sourcemap

28113:18217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13017:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29805:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28186:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11829:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35708:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28741:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28556:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29589:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29549;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33853:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13709:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28279:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32755:154;;;;;;;;;;;;;:::i;:::-;;28651:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28612:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11671:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14647:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28244:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28839:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35873:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29365:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28919:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12000:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4505:103;;;;;;;;;;;;;:::i;:::-;;43912:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32961:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34400:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29219:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3854:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28408:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29400:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34663:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10928:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34961:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29319:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28795:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29629:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29502:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15447:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28703:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12390:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35469:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30026:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28879:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34771:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34136:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29137:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28441:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33348:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29185:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12669:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28483:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33143:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29269:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29451:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28523:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45271:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10709:100;10763:13;10796:5;10789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10709:100;:::o;13017:210::-;13136:4;13158:39;13167:12;:10;:12::i;:::-;13181:7;13190:6;13158:8;:39::i;:::-;13215:4;13208:11;;13017:210;;;;:::o;29805:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28186:51::-;;;:::o;11829:108::-;11890:7;11917:12;;11910:19;;11829:108;:::o;35708:157::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35815:9:::1;;;;;;;;;;;35787:38;;35804:9;35787:38;;;;;;;;;;;;35848:9;35836;;:21;;;;;;;;;;;;;;;;;;35708:157:::0;:::o;28741:47::-;;;;:::o;28556:36::-;;;;:::o;29589:33::-;;;;:::o;29549:::-;;;;:::o;33853:275::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33990:4:::1;33982;33977:1;33961:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33960:26;;;;:::i;:::-;33959:35;;;;:::i;:::-;33949:6;:45;;33927:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34113:6;34103;:17;;;;:::i;:::-;34080:20;:40;;;;33853:275:::0;:::o;13709:529::-;13849:4;13866:36;13876:6;13884:9;13895:6;13866:9;:36::i;:::-;13915:24;13942:11;:19;13954:6;13942:19;;;;;;;;;;;;;;;:33;13962:12;:10;:12::i;:::-;13942:33;;;;;;;;;;;;;;;;13915:60;;14028:6;14008:16;:26;;13986:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14138:57;14147:6;14155:12;:10;:12::i;:::-;14188:6;14169:16;:25;14138:8;:57::i;:::-;14226:4;14219:11;;;13709:529;;;;;:::o;28279:53::-;28325:6;28279:53;:::o;32755:154::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32825:4:::1;32809:13;;:20;;;;;;;;;;;;;;;;;;32854:4;32840:11;;:18;;;;;;;;;;;;;;;;;;32886:15;32869:14;:32;;;;32755:154::o:0;28651:45::-;;;;:::o;28612:32::-;;;;;;;;;;;;;:::o;11671:93::-;11729:5;11754:2;11747:9;;11671:93;:::o;14647:297::-;14762:4;14784:130;14807:12;:10;:12::i;:::-;14834:7;14893:10;14856:11;:25;14868:12;:10;:12::i;:::-;14856:25;;;;;;;;;;;;;;;:34;14882:7;14856:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14784:8;:130::i;:::-;14932:4;14925:11;;14647:297;;;;:::o;28244:28::-;;;;;;;;;;;;;:::o;28839:33::-;;;;;;;;;;;;;:::o;35873:126::-;35939:4;35963:19;:28;35983:7;35963:28;;;;;;;;;;;;;;;;;;;;;;;;;35956:35;;35873:126;;;:::o;29365:28::-;;;;:::o;28919:31::-;;;;;;;;;;;;;:::o;12000:177::-;12119:7;12151:9;:18;12161:7;12151:18;;;;;;;;;;;;;;;;12144:25;;12000:177;;;:::o;4505:103::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4570:30:::1;4597:1;4570:18;:30::i;:::-;4505:103::o:0;43912:555::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44114:3:::1;44091:19;:26;;44069:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;44241:4;44229:8;:16;;:33;;;;;44261:1;44249:8;:13;;44229:33;44207:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44367:19;44349:15;:37;;;;44416:8;44397:16;:27;;;;44451:8;44435:13;;:24;;;;;;;;;;;;;;;;;;43912:555:::0;;;:::o;32961:121::-;33013:4;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33047:5:::1;33030:14;;:22;;;;;;;;;;;;;;;;;;33070:4;33063:11;;32961:121:::0;:::o;34400:167::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34555:4:::1;34513:31;:39;34545:6;34513:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34400:167:::0;;:::o;28371:30::-;;;;;;;;;;;;;:::o;29219:43::-;29261:1;29219:43;:::o;3854:87::-;3900:7;3927:6;;;;;;;;;;;3920:13;;3854:87;:::o;28408:24::-;;;;;;;;;;;;;:::o;29400:44::-;29443:1;29400:44;:::o;34663:100::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34748:7:::1;34734:11;;:21;;;;;;;;;;;;;;;;;;34663:100:::0;:::o;10928:104::-;10984:13;11017:7;11010:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10928:104;:::o;34961:304::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35105:13:::1;;;;;;;;;;;35097:21;;:4;:21;;;;35075:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;35216:41;35245:4;35251:5;35216:28;:41::i;:::-;34961:304:::0;;:::o;29319:37::-;29355:1;29319:37;:::o;28795:35::-;;;;:::o;29629:27::-;;;;:::o;29502:38::-;29539:1;29502:38;:::o;15447:482::-;15567:4;15589:24;15616:11;:25;15628:12;:10;:12::i;:::-;15616:25;;;;;;;;;;;;;;;:34;15642:7;15616:34;;;;;;;;;;;;;;;;15589:61;;15703:15;15683:16;:35;;15661:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15819:67;15828:12;:10;:12::i;:::-;15842:7;15870:15;15851:16;:34;15819:8;:67::i;:::-;15917:4;15910:11;;;15447:482;;;;:::o;28703:29::-;;;;:::o;12390:216::-;12512:4;12534:42;12544:12;:10;:12::i;:::-;12558:9;12569:6;12534:9;:42::i;:::-;12594:4;12587:11;;12390:216;;;;:::o;35469:231::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35629:15:::1;;;;;;;;;;;35586:59;;35609:18;35586:59;;;;;;;;;;;;35674:18;35656:15;;:36;;;;;;;;;;;;;;;;;;35469:231:::0;:::o;30026:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28879:33::-;;;;;;;;;;;;;:::o;34771:182::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34887:8:::1;34856:19;:28;34876:7;34856:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34927:7;34911:34;;;34936:8;34911:34;;;;;;:::i;:::-;;;;;;;;34771:182:::0;;:::o;34136:256::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34276:4:::1;34268;34263:1;34247:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34246:26;;;;:::i;:::-;34245:35;;;;:::i;:::-;34235:6;:45;;34213:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;34377:6;34367;:17;;;;:::i;:::-;34355:9;:29;;;;34136:256:::0;:::o;29137:39::-;;;;;;;;;;;;;:::o;28441:35::-;;;;:::o;33348:497::-;33456:4;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33535:6:::1;33530:1;33514:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33513:28;;;;:::i;:::-;33500:9;:41;;33478:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;33690:4;33685:1;33669:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33668:26;;;;:::i;:::-;33655:9;:39;;33633:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;33806:9;33785:18;:30;;;;33833:4;33826:11;;33348:497:::0;;;:::o;29185:27::-;;;;:::o;12669:201::-;12803:7;12835:11;:18;12847:5;12835:18;;;;;;;;;;;;;;;:27;12854:7;12835:27;;;;;;;;;;;;;;;;12828:34;;12669:201;;;;:::o;28483:33::-;;;;:::o;33143:135::-;33203:4;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33243:5:::1;33220:20;;:28;;;;;;;;;;;;;;;;;;33266:4;33259:11;;33143:135:::0;:::o;29269:43::-;29311:1;29269:43;:::o;4763:238::-;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4886:1:::1;4866:22;;:8;:22;;;;4844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4965:28;4984:8;4965:18;:28::i;:::-;4763:238:::0;:::o;29451:44::-;29494:1;29451:44;:::o;28523:24::-;;;;:::o;45271:1056::-;45382:4;4085:12;:10;:12::i;:::-;4074:23;;:7;:5;:7::i;:::-;:23;;;4066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45467:19:::1;;45444:20;;:42;;;;:::i;:::-;45426:15;:60;45404:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;45576:4;45565:7;:15;;45557:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45661:15;45638:20;:38;;;;45731:28;45762:4;:14;;;45777:13;;;;;;;;;;;45762:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45731:60;;45841:20;45864:44;45902:5;45864:33;45889:7;45864:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;45841:67;;46028:1;46013:12;:16;46009:110;;;46046:61;46062:13;;;;;;;;;;;46085:6;46094:12;46046:15;:61::i;:::-;46009:110;46194:19;46231:13;;;;;;;;;;;46194:51;;46256:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46283:14;;;;;;;;;;46315:4;46308:11;;;;;45271:1056:::0;;;:::o;2696:98::-;2749:7;2776:10;2769:17;;2696:98;:::o;19237:380::-;19390:1;19373:19;;:5;:19;;;;19365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19471:1;19452:21;;:7;:21;;;;19444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19555:6;19525:11;:18;19537:5;19525:18;;;;;;;;;;;;;;;:27;19544:7;19525:27;;;;;;;;;;;;;;;:36;;;;19593:7;19577:32;;19586:5;19577:32;;;19602:6;19577:32;;;;;;:::i;:::-;;;;;;;;19237:380;;;:::o;36007:5011::-;36155:1;36139:18;;:4;:18;;;;36131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36232:1;36218:16;;:2;:16;;;;36210:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36301:1;36291:6;:11;36287:93;;;36319:28;36335:4;36341:2;36345:1;36319:15;:28::i;:::-;36362:7;;36287:93;36396:14;;;;;;;;;;;36392:2487;;;36457:7;:5;:7::i;:::-;36449:15;;:4;:15;;;;:49;;;;;36491:7;:5;:7::i;:::-;36485:13;;:2;:13;;;;36449:49;:86;;;;;36533:1;36519:16;;:2;:16;;;;36449:86;:128;;;;;36570:6;36556:21;;:2;:21;;;;36449:128;:158;;;;;36599:8;;;;;;;;;;;36598:9;36449:158;36427:2441;;;36647:13;;;;;;;;;;;36642:223;;36719:19;:25;36739:4;36719:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36748:19;:23;36768:2;36748:23;;;;;;;;;;;;;;;;;;;;;;;;;36719:52;36685:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;36642:223;37021:20;;;;;;;;;;;37017:641;;;37102:7;:5;:7::i;:::-;37096:13;;:2;:13;;;;:72;;;;;37152:15;37138:30;;:2;:30;;;;37096:72;:129;;;;;37211:13;;;;;;;;;;;37197:28;;:2;:28;;;;37096:129;37066:573;;;37389:12;37314:28;:39;37343:9;37314:39;;;;;;;;;;;;;;;;:87;37276:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;37603:12;37561:28;:39;37590:9;37561:39;;;;;;;;;;;;;;;:54;;;;37066:573;37017:641;37732:25;:31;37758:4;37732:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37789:31;:35;37821:2;37789:35;;;;;;;;;;;;;;;;;;;;;;;;;37788:36;37732:92;37706:1147;;;37911:20;;37901:6;:30;;37867:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38119:9;;38102:13;38112:2;38102:9;:13::i;:::-;38093:6;:22;;;;:::i;:::-;:35;;38059:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37706:1147;;;38297:25;:29;38323:2;38297:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38352:31;:37;38384:4;38352:37;;;;;;;;;;;;;;;;;;;;;;;;;38351:38;38297:92;38271:582;;;38476:20;;38466:6;:30;;38432:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;38271:582;;;38633:31;:35;38665:2;38633:35;;;;;;;;;;;;;;;;;;;;;;;;;38628:225;;38753:9;;38736:13;38746:2;38736:9;:13::i;:::-;38727:6;:22;;;;:::i;:::-;:35;;38693:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38628:225;38271:582;37706:1147;36427:2441;36392:2487;38891:28;38922:24;38940:4;38922:9;:24::i;:::-;38891:55;;38959:12;38998:18;;38974:20;:42;;38959:57;;39047:7;:35;;;;;39071:11;;;;;;;;;;;39047:35;:61;;;;;39100:8;;;;;;;;;;;39099:9;39047:61;:110;;;;;39126:25;:31;39152:4;39126:31;;;;;;;;;;;;;;;;;;;;;;;;;39125:32;39047:110;:153;;;;;39175:19;:25;39195:4;39175:25;;;;;;;;;;;;;;;;;;;;;;;;;39174:26;39047:153;:194;;;;;39218:19;:23;39238:2;39218:23;;;;;;;;;;;;;;;;;;;;;;;;;39217:24;39047:194;39029:326;;;39279:4;39268:8;;:15;;;;;;;;;;;;;;;;;;39300:10;:8;:10::i;:::-;39338:5;39327:8;;:16;;;;;;;;;;;;;;;;;;39029:326;39386:8;;;;;;;;;;;39385:9;:55;;;;;39411:25;:29;39437:2;39411:29;;;;;;;;;;;;;;;;;;;;;;;;;39385:55;:85;;;;;39457:13;;;;;;;;;;;39385:85;:153;;;;;39523:15;;39506:14;;:32;;;;:::i;:::-;39487:15;:51;;39385:153;:196;;;;;39556:19;:25;39576:4;39556:25;;;;;;;;;;;;;;;;;;;;;;;;;39555:26;39385:196;39367:282;;;39608:29;:27;:29::i;:::-;;39367:282;39661:12;39677:8;;;;;;;;;;;39676:9;39661:24;;39787:19;:25;39807:4;39787:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39816:19;:23;39836:2;39816:23;;;;;;;;;;;;;;;;;;;;;;;;;39787:52;39783:100;;;39866:5;39856:15;;39783:100;39895:12;40000:7;39996:969;;;40052:25;:29;40078:2;40052:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40101:1;40085:13;;:17;40052:50;40048:768;;;40130:34;40160:3;40130:25;40141:13;;40130:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40123:41;;40233:13;;29494:1;40206:4;:23;;;;:::i;:::-;40205:41;;;;:::i;:::-;40183:18;;:63;;;;;;;:::i;:::-;;;;;;;;40303:13;;29539:1;40282:4;:17;;;;:::i;:::-;40281:35;;;;:::i;:::-;40265:12;;:51;;;;;;;:::i;:::-;;;;;;;;40385:13;;29443:1;40358:4;:23;;;;:::i;:::-;40357:41;;;;:::i;:::-;40335:18;;:63;;;;;;;:::i;:::-;;;;;;;;40048:768;;;40460:25;:31;40486:4;40460:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40510:1;40495:12;;:16;40460:51;40456:360;;;40539:33;40568:3;40539:24;40550:12;;40539:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40532:40;;40640:12;;29311:1;40614:4;:22;;;;:::i;:::-;40613:39;;;;:::i;:::-;40591:18;;:61;;;;;;;:::i;:::-;;;;;;;;40708:12;;29355:1;40688:4;:16;;;;:::i;:::-;40687:33;;;;:::i;:::-;40671:12;;:49;;;;;;;:::i;:::-;;;;;;;;40788:12;;29261:1;40762:4;:22;;;;:::i;:::-;40761:39;;;;:::i;:::-;40739:18;;:61;;;;;;;:::i;:::-;;;;;;;;40456:360;40048:768;40843:1;40836:4;:8;40832:91;;;40865:42;40881:4;40895;40902;40865:15;:42::i;:::-;40832:91;40949:4;40939:14;;;;;:::i;:::-;;;39996:969;40977:33;40993:4;40999:2;41003:6;40977:15;:33::i;:::-;36007:5011;;;;;;;;:::o;5161:191::-;5235:16;5254:6;;;;;;;;;;;5235:25;;5280:8;5271:6;;:17;;;;;;;;;;;;;;;;;;5335:8;5304:40;;5325:8;5304:40;;;;;;;;;;;;5161:191;;:::o;35273:188::-;35390:5;35356:25;:31;35382:4;35356:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35447:5;35413:40;;35441:4;35413:40;;;;;;;;;;;;35273:188;;:::o;24686:98::-;24744:7;24775:1;24771;:5;;;;:::i;:::-;24764:12;;24686:98;;;;:::o;25085:::-;25143:7;25174:1;25170;:5;;;;:::i;:::-;25163:12;;25085:98;;;;:::o;16419:770::-;16577:1;16559:20;;:6;:20;;;;16551:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16661:1;16640:23;;:9;:23;;;;16632:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16716:47;16737:6;16745:9;16756:6;16716:20;:47::i;:::-;16776:21;16800:9;:17;16810:6;16800:17;;;;;;;;;;;;;;;;16776:41;;16867:6;16850:13;:23;;16828:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17011:6;16995:13;:22;16975:9;:17;16985:6;16975:17;;;;;;;;;;;;;;;:42;;;;17063:6;17039:9;:20;17049:9;17039:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17104:9;17087:35;;17096:6;17087:35;;;17115:6;17087:35;;;;;;:::i;:::-;;;;;;;;17135:46;17155:6;17163:9;17174:6;17135:19;:46::i;:::-;16419:770;;;;:::o;42148:1756::-;42187:23;42213:24;42231:4;42213:9;:24::i;:::-;42187:50;;42248:25;42344:12;;42310:18;;42276;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42248:108;;42367:12;42415:1;42396:15;:20;:46;;;;42441:1;42420:17;:22;42396:46;42392:85;;;42459:7;;;;;42392:85;42532:2;42511:18;;:23;;;;:::i;:::-;42493:15;:41;42489:115;;;42590:2;42569:18;;:23;;;;:::i;:::-;42551:41;;42489:115;42665:23;42778:1;42745:17;42710:18;;42692:15;:36;;;;:::i;:::-;42691:71;;;;:::i;:::-;:88;;;;:::i;:::-;42665:114;;42790:26;42819:36;42839:15;42819;:19;;:36;;;;:::i;:::-;42790:65;;42868:25;42896:21;42868:49;;42930:36;42947:18;42930:16;:36::i;:::-;42979:18;43000:44;43026:17;43000:21;:25;;:44;;;;:::i;:::-;42979:65;;43057:23;43083:81;43136:17;43083:34;43098:18;;43083:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43057:107;;43175:17;43195:51;43228:17;43195:28;43210:12;;43195:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43175:71;;43259:23;43316:9;43298:15;43285:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43259:66;;43359:1;43338:18;:22;;;;43392:1;43371:18;:22;;;;43419:1;43404:12;:16;;;;43455:9;;;;;;;;;;;43447:23;;43478:9;43447:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43433:59;;;;;43527:1;43509:15;:19;:42;;;;;43550:1;43532:15;:19;43509:42;43505:278;;;43568:46;43581:15;43598;43568:12;:46::i;:::-;43634:137;43667:18;43704:15;43738:18;;43634:137;;;;;;;;:::i;:::-;;;;;;;;43505:278;43817:15;;;;;;;;;;;43809:29;;43860:21;43809:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43795:101;;;;;42148:1756;;;;;;;;;;;:::o;44475:788::-;44532:4;44566:15;44549:14;:32;;;;44636:28;44667:4;:14;;;44682:13;;;;;;;;;;;44667:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44636:60;;44746:20;44769:77;44830:5;44769:42;44794:16;;44769:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;44746:100;;44966:1;44951:12;:16;44947:110;;;44984:61;45000:13;;;;;;;;;;;45023:6;45032:12;44984:15;:61::i;:::-;44947:110;45132:19;45169:13;;;;;;;;;;;45132:51;;45194:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45221:12;;;;;;;;;;45251:4;45244:11;;;;;44475:788;:::o;20217:125::-;;;;:::o;20946:124::-;;;;:::o;24329:98::-;24387:7;24418:1;24414;:5;;;;:::i;:::-;24407:12;;24329:98;;;;:::o;41026:589::-;41152:21;41190:1;41176:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41152:40;;41221:4;41203;41208:1;41203:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41247:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41237:4;41242:1;41237:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;41282:62;41299:4;41314:15;41332:11;41282:8;:62::i;:::-;41383:15;:66;;;41464:11;41490:1;41534:4;41561;41581:15;41383:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41026:589;;:::o;41623:517::-;41771:62;41788:4;41803:15;41821:11;41771:8;:62::i;:::-;41876:15;:31;;;41915:9;41948:4;41968:11;41994:1;42037;28325:6;42106:15;41876:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41623:517;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:143::-;;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;648:80;;;;:::o;734:262::-;;842:2;830:9;821:7;817:23;813:32;810:2;;;858:1;855;848:12;810:2;901:1;926:53;971:7;962:6;951:9;947:22;926:53;:::i;:::-;916:63;;872:117;800:196;;;;:::o;1002:284::-;;1121:2;1109:9;1100:7;1096:23;1092:32;1089:2;;;1137:1;1134;1127:12;1089:2;1180:1;1205:64;1261:7;1252:6;1241:9;1237:22;1205:64;:::i;:::-;1195:74;;1151:128;1079:207;;;;:::o;1292:407::-;;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1433:1;1430;1423:12;1385:2;1476:1;1501:53;1546:7;1537:6;1526:9;1522:22;1501:53;:::i;:::-;1491:63;;1447:117;1603:2;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1574:118;1375:324;;;;;:::o;1705:552::-;;;;1847:2;1835:9;1826:7;1822:23;1818:32;1815:2;;;1863:1;1860;1853:12;1815:2;1906:1;1931:53;1976:7;1967:6;1956:9;1952:22;1931:53;:::i;:::-;1921:63;;1877:117;2033:2;2059:53;2104:7;2095:6;2084:9;2080:22;2059:53;:::i;:::-;2049:63;;2004:118;2161:2;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2132:118;1805:452;;;;;:::o;2263:401::-;;;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2401:1;2398;2391:12;2353:2;2444:1;2469:53;2514:7;2505:6;2494:9;2490:22;2469:53;:::i;:::-;2459:63;;2415:117;2571:2;2597:50;2639:7;2630:6;2619:9;2615:22;2597:50;:::i;:::-;2587:60;;2542:115;2343:321;;;;;:::o;2670:407::-;;;2795:2;2783:9;2774:7;2770:23;2766:32;2763:2;;;2811:1;2808;2801:12;2763:2;2854:1;2879:53;2924:7;2915:6;2904:9;2900:22;2879:53;:::i;:::-;2869:63;;2825:117;2981:2;3007:53;3052:7;3043:6;3032:9;3028:22;3007:53;:::i;:::-;2997:63;;2952:118;2753:324;;;;;:::o;3083:256::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3204:1;3201;3194:12;3156:2;3247:1;3272:50;3314:7;3305:6;3294:9;3290:22;3272:50;:::i;:::-;3262:60;;3218:114;3146:193;;;;:::o;3345:262::-;;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3469:1;3466;3459:12;3421:2;3512:1;3537:53;3582:7;3573:6;3562:9;3558:22;3537:53;:::i;:::-;3527:63;;3483:117;3411:196;;;;:::o;3613:284::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3748:1;3745;3738:12;3700:2;3791:1;3816:64;3872:7;3863:6;3852:9;3848:22;3816:64;:::i;:::-;3806:74;;3762:128;3690:207;;;;:::o;3903:546::-;;;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4058:1;4055;4048:12;4010:2;4101:1;4126:53;4171:7;4162:6;4151:9;4147:22;4126:53;:::i;:::-;4116:63;;4072:117;4228:2;4254:53;4299:7;4290:6;4279:9;4275:22;4254:53;:::i;:::-;4244:63;;4199:118;4356:2;4382:50;4424:7;4415:6;4404:9;4400:22;4382:50;:::i;:::-;4372:60;;4327:115;4000:449;;;;;:::o;4455:596::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4624:1;4621;4614:12;4576:2;4667:1;4692:64;4748:7;4739:6;4728:9;4724:22;4692:64;:::i;:::-;4682:74;;4638:128;4805:2;4831:64;4887:7;4878:6;4867:9;4863:22;4831:64;:::i;:::-;4821:74;;4776:129;4944:2;4970:64;5026:7;5017:6;5006:9;5002:22;4970:64;:::i;:::-;4960:74;;4915:129;4566:485;;;;;:::o;5057:179::-;;5147:46;5189:3;5181:6;5147:46;:::i;:::-;5225:4;5220:3;5216:14;5202:28;;5137:99;;;;:::o;5242:108::-;5319:24;5337:5;5319:24;:::i;:::-;5314:3;5307:37;5297:53;;:::o;5356:118::-;5443:24;5461:5;5443:24;:::i;:::-;5438:3;5431:37;5421:53;;:::o;5510:732::-;;5658:54;5706:5;5658:54;:::i;:::-;5728:86;5807:6;5802:3;5728:86;:::i;:::-;5721:93;;5838:56;5888:5;5838:56;:::i;:::-;5917:7;5948:1;5933:284;5958:6;5955:1;5952:13;5933:284;;;6034:6;6028:13;6061:63;6120:3;6105:13;6061:63;:::i;:::-;6054:70;;6147:60;6200:6;6147:60;:::i;:::-;6137:70;;5993:224;5980:1;5977;5973:9;5968:14;;5933:284;;;5937:14;6233:3;6226:10;;5634:608;;;;;;;:::o;6248:109::-;6329:21;6344:5;6329:21;:::i;:::-;6324:3;6317:34;6307:50;;:::o;6363:181::-;6475:62;6531:5;6475:62;:::i;:::-;6470:3;6463:75;6453:91;;:::o;6550:147::-;6645:45;6684:5;6645:45;:::i;:::-;6640:3;6633:58;6623:74;;:::o;6703:364::-;;6819:39;6852:5;6819:39;:::i;:::-;6874:71;6938:6;6933:3;6874:71;:::i;:::-;6867:78;;6954:52;6999:6;6994:3;6987:4;6980:5;6976:16;6954:52;:::i;:::-;7031:29;7053:6;7031:29;:::i;:::-;7026:3;7022:39;7015:46;;6795:272;;;;;:::o;7073:367::-;;7236:67;7300:2;7295:3;7236:67;:::i;:::-;7229:74;;7333:34;7329:1;7324:3;7320:11;7313:55;7399:5;7394:2;7389:3;7385:12;7378:27;7431:2;7426:3;7422:12;7415:19;;7219:221;;;:::o;7446:320::-;;7609:67;7673:2;7668:3;7609:67;:::i;:::-;7602:74;;7706:24;7702:1;7697:3;7693:11;7686:45;7757:2;7752:3;7748:12;7741:19;;7592:174;;;:::o;7772:370::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:8;8093:2;8088:3;8084:12;8077:30;8133:2;8128:3;8124:12;8117:19;;7918:224;;;:::o;8148:366::-;;8311:67;8375:2;8370:3;8311:67;:::i;:::-;8304:74;;8408:34;8404:1;8399:3;8395:11;8388:55;8474:4;8469:2;8464:3;8460:12;8453:26;8505:2;8500:3;8496:12;8489:19;;8294:220;;;:::o;8520:383::-;;8683:67;8747:2;8742:3;8683:67;:::i;:::-;8676:74;;8780:34;8776:1;8771:3;8767:11;8760:55;8846:21;8841:2;8836:3;8832:12;8825:43;8894:2;8889:3;8885:12;8878:19;;8666:237;;;:::o;8909:368::-;;9072:67;9136:2;9131:3;9072:67;:::i;:::-;9065:74;;9169:34;9165:1;9160:3;9156:11;9149:55;9235:6;9230:2;9225:3;9221:12;9214:28;9268:2;9263:3;9259:12;9252:19;;9055:222;;;:::o;9283:389::-;;9446:67;9510:2;9505:3;9446:67;:::i;:::-;9439:74;;9543:34;9539:1;9534:3;9530:11;9523:55;9609:27;9604:2;9599:3;9595:12;9588:49;9663:2;9658:3;9654:12;9647:19;;9429:243;;;:::o;9678:370::-;;9841:67;9905:2;9900:3;9841:67;:::i;:::-;9834:74;;9938:34;9934:1;9929:3;9925:11;9918:55;10004:8;9999:2;9994:3;9990:12;9983:30;10039:2;10034:3;10030:12;10023:19;;9824:224;;;:::o;10054:386::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:34;10310:1;10305:3;10301:11;10294:55;10380:24;10375:2;10370:3;10366:12;10359:46;10431:2;10426:3;10422:12;10415:19;;10200:240;;;:::o;10446:380::-;;10609:67;10673:2;10668:3;10609:67;:::i;:::-;10602:74;;10706:34;10702:1;10697:3;10693:11;10686:55;10772:18;10767:2;10762:3;10758:12;10751:40;10817:2;10812:3;10808:12;10801:19;;10592:234;;;:::o;10832:385::-;;10995:67;11059:2;11054:3;10995:67;:::i;:::-;10988:74;;11092:34;11088:1;11083:3;11079:11;11072:55;11158:23;11153:2;11148:3;11144:12;11137:45;11208:2;11203:3;11199:12;11192:19;;10978:239;;;:::o;11223:384::-;;11386:67;11450:2;11445:3;11386:67;:::i;:::-;11379:74;;11483:34;11479:1;11474:3;11470:11;11463:55;11549:22;11544:2;11539:3;11535:12;11528:44;11598:2;11593:3;11589:12;11582:19;;11369:238;;;:::o;11613:385::-;;11776:67;11840:2;11835:3;11776:67;:::i;:::-;11769:74;;11873:34;11869:1;11864:3;11860:11;11853:55;11939:23;11934:2;11929:3;11925:12;11918:45;11989:2;11984:3;11980:12;11973:19;;11759:239;;;:::o;12004:439::-;;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12264:34;12260:1;12255:3;12251:11;12244:55;12330:34;12325:2;12320:3;12316:12;12309:56;12396:11;12391:2;12386:3;12382:12;12375:33;12434:2;12429:3;12425:12;12418:19;;12150:293;;;:::o;12449:372::-;;12612:67;12676:2;12671:3;12612:67;:::i;:::-;12605:74;;12709:34;12705:1;12700:3;12696:11;12689:55;12775:10;12770:2;12765:3;12761:12;12754:32;12812:2;12807:3;12803:12;12796:19;;12595:226;;;:::o;12827:330::-;;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13087:34;13083:1;13078:3;13074:11;13067:55;13148:2;13143:3;13139:12;13132:19;;12973:184;;;:::o;13163:374::-;;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13423:34;13419:1;13414:3;13410:11;13403:55;13489:12;13484:2;13479:3;13475:12;13468:34;13528:2;13523:3;13519:12;13512:19;;13309:228;;;:::o;13543:369::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:7;13864:2;13859:3;13855:12;13848:29;13903:2;13898:3;13894:12;13887:19;;13689:223;;;:::o;13918:330::-;;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14178:34;14174:1;14169:3;14165:11;14158:55;14239:2;14234:3;14230:12;14223:19;;14064:184;;;:::o;14254:297::-;;14434:83;14515:1;14510:3;14434:83;:::i;:::-;14427:90;;14543:1;14538:3;14534:11;14527:18;;14417:134;;;:::o;14557:368::-;;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14817:34;14813:1;14808:3;14804:11;14797:55;14883:6;14878:2;14873:3;14869:12;14862:28;14916:2;14911:3;14907:12;14900:19;;14703:222;;;:::o;14931:317::-;;15094:67;15158:2;15153:3;15094:67;:::i;:::-;15087:74;;15191:21;15187:1;15182:3;15178:11;15171:42;15239:2;15234:3;15230:12;15223:19;;15077:171;;;:::o;15254:369::-;;15417:67;15481:2;15476:3;15417:67;:::i;:::-;15410:74;;15514:34;15510:1;15505:3;15501:11;15494:55;15580:7;15575:2;15570:3;15566:12;15559:29;15614:2;15609:3;15605:12;15598:19;;15400:223;;;:::o;15629:379::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:17;15950:2;15945:3;15941:12;15934:39;15999:2;15994:3;15990:12;15983:19;;15775:233;;;:::o;16014:118::-;16101:24;16119:5;16101:24;:::i;:::-;16096:3;16089:37;16079:53;;:::o;16138:112::-;16221:22;16237:5;16221:22;:::i;:::-;16216:3;16209:35;16199:51;;:::o;16256:379::-;;16462:147;16605:3;16462:147;:::i;:::-;16455:154;;16626:3;16619:10;;16444:191;;;:::o;16641:222::-;;16772:2;16761:9;16757:18;16749:26;;16785:71;16853:1;16842:9;16838:17;16829:6;16785:71;:::i;:::-;16739:124;;;;:::o;16869:807::-;;17156:3;17145:9;17141:19;17133:27;;17170:71;17238:1;17227:9;17223:17;17214:6;17170:71;:::i;:::-;17251:72;17319:2;17308:9;17304:18;17295:6;17251:72;:::i;:::-;17333:80;17409:2;17398:9;17394:18;17385:6;17333:80;:::i;:::-;17423;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17513:73;17581:3;17570:9;17566:19;17557:6;17513:73;:::i;:::-;17596;17664:3;17653:9;17649:19;17640:6;17596:73;:::i;:::-;17123:553;;;;;;;;;:::o;17682:210::-;;17807:2;17796:9;17792:18;17784:26;;17820:65;17882:1;17871:9;17867:17;17858:6;17820:65;:::i;:::-;17774:118;;;;:::o;17898:272::-;;18054:2;18043:9;18039:18;18031:26;;18067:96;18160:1;18149:9;18145:17;18136:6;18067:96;:::i;:::-;18021:149;;;;:::o;18176:313::-;;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:78;18477:4;18468:6;18404:78;:::i;:::-;18396:86;;18294:195;;;;:::o;18495:419::-;;18699:2;18688:9;18684:18;18676:26;;18748:9;18742:4;18738:20;18734:1;18723:9;18719:17;18712:47;18776:131;18902:4;18776:131;:::i;:::-;18768:139;;18666:248;;;:::o;18920:419::-;;19124:2;19113:9;19109:18;19101:26;;19173:9;19167:4;19163:20;19159:1;19148:9;19144:17;19137:47;19201:131;19327:4;19201:131;:::i;:::-;19193:139;;19091:248;;;:::o;19345:419::-;;19549:2;19538:9;19534:18;19526:26;;19598:9;19592:4;19588:20;19584:1;19573:9;19569:17;19562:47;19626:131;19752:4;19626:131;:::i;:::-;19618:139;;19516:248;;;:::o;19770:419::-;;19974:2;19963:9;19959:18;19951:26;;20023:9;20017:4;20013:20;20009:1;19998:9;19994:17;19987:47;20051:131;20177:4;20051:131;:::i;:::-;20043:139;;19941:248;;;:::o;20195:419::-;;20399:2;20388:9;20384:18;20376:26;;20448:9;20442:4;20438:20;20434:1;20423:9;20419:17;20412:47;20476:131;20602:4;20476:131;:::i;:::-;20468:139;;20366:248;;;:::o;20620:419::-;;20824:2;20813:9;20809:18;20801:26;;20873:9;20867:4;20863:20;20859:1;20848:9;20844:17;20837:47;20901:131;21027:4;20901:131;:::i;:::-;20893:139;;20791:248;;;:::o;21045:419::-;;21249:2;21238:9;21234:18;21226:26;;21298:9;21292:4;21288:20;21284:1;21273:9;21269:17;21262:47;21326:131;21452:4;21326:131;:::i;:::-;21318:139;;21216:248;;;:::o;21470:419::-;;21674:2;21663:9;21659:18;21651:26;;21723:9;21717:4;21713:20;21709:1;21698:9;21694:17;21687:47;21751:131;21877:4;21751:131;:::i;:::-;21743:139;;21641:248;;;:::o;21895:419::-;;22099:2;22088:9;22084:18;22076:26;;22148:9;22142:4;22138:20;22134:1;22123:9;22119:17;22112:47;22176:131;22302:4;22176:131;:::i;:::-;22168:139;;22066:248;;;:::o;22320:419::-;;22524:2;22513:9;22509:18;22501:26;;22573:9;22567:4;22563:20;22559:1;22548:9;22544:17;22537:47;22601:131;22727:4;22601:131;:::i;:::-;22593:139;;22491:248;;;:::o;22745:419::-;;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22916:248;;;:::o;23170:419::-;;23374:2;23363:9;23359:18;23351:26;;23423:9;23417:4;23413:20;23409:1;23398:9;23394:17;23387:47;23451:131;23577:4;23451:131;:::i;:::-;23443:139;;23341:248;;;:::o;23595:419::-;;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23766:248;;;:::o;24020:419::-;;24224:2;24213:9;24209:18;24201:26;;24273:9;24267:4;24263:20;24259:1;24248:9;24244:17;24237:47;24301:131;24427:4;24301:131;:::i;:::-;24293:139;;24191:248;;;:::o;24445:419::-;;24649:2;24638:9;24634:18;24626:26;;24698:9;24692:4;24688:20;24684:1;24673:9;24669:17;24662:47;24726:131;24852:4;24726:131;:::i;:::-;24718:139;;24616:248;;;:::o;24870:419::-;;25074:2;25063:9;25059:18;25051:26;;25123:9;25117:4;25113:20;25109:1;25098:9;25094:17;25087:47;25151:131;25277:4;25151:131;:::i;:::-;25143:139;;25041:248;;;:::o;25295:419::-;;25499:2;25488:9;25484:18;25476:26;;25548:9;25542:4;25538:20;25534:1;25523:9;25519:17;25512:47;25576:131;25702:4;25576:131;:::i;:::-;25568:139;;25466:248;;;:::o;25720:419::-;;25924:2;25913:9;25909:18;25901:26;;25973:9;25967:4;25963:20;25959:1;25948:9;25944:17;25937:47;26001:131;26127:4;26001:131;:::i;:::-;25993:139;;25891:248;;;:::o;26145:419::-;;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26316:248;;;:::o;26570:419::-;;26774:2;26763:9;26759:18;26751:26;;26823:9;26817:4;26813:20;26809:1;26798:9;26794:17;26787:47;26851:131;26977:4;26851:131;:::i;:::-;26843:139;;26741:248;;;:::o;26995:419::-;;27199:2;27188:9;27184:18;27176:26;;27248:9;27242:4;27238:20;27234:1;27223:9;27219:17;27212:47;27276:131;27402:4;27276:131;:::i;:::-;27268:139;;27166:248;;;:::o;27420:419::-;;27624:2;27613:9;27609:18;27601:26;;27673:9;27667:4;27663:20;27659:1;27648:9;27644:17;27637:47;27701:131;27827:4;27701:131;:::i;:::-;27693:139;;27591:248;;;:::o;27845:419::-;;28049:2;28038:9;28034:18;28026:26;;28098:9;28092:4;28088:20;28084:1;28073:9;28069:17;28062:47;28126:131;28252:4;28126:131;:::i;:::-;28118:139;;28016:248;;;:::o;28270:222::-;;28401:2;28390:9;28386:18;28378:26;;28414:71;28482:1;28471:9;28467:17;28458:6;28414:71;:::i;:::-;28368:124;;;;:::o;28498:831::-;;28799:3;28788:9;28784:19;28776:27;;28813:71;28881:1;28870:9;28866:17;28857:6;28813:71;:::i;:::-;28894:80;28970:2;28959:9;28955:18;28946:6;28894:80;:::i;:::-;29021:9;29015:4;29011:20;29006:2;28995:9;28991:18;28984:48;29049:108;29152:4;29143:6;29049:108;:::i;:::-;29041:116;;29167:72;29235:2;29224:9;29220:18;29211:6;29167:72;:::i;:::-;29249:73;29317:3;29306:9;29302:19;29293:6;29249:73;:::i;:::-;28766:563;;;;;;;;:::o;29335:442::-;;29522:2;29511:9;29507:18;29499:26;;29535:71;29603:1;29592:9;29588:17;29579:6;29535:71;:::i;:::-;29616:72;29684:2;29673:9;29669:18;29660:6;29616:72;:::i;:::-;29698;29766:2;29755:9;29751:18;29742:6;29698:72;:::i;:::-;29489:288;;;;;;:::o;29783:214::-;;29910:2;29899:9;29895:18;29887:26;;29923:67;29987:1;29976:9;29972:17;29963:6;29923:67;:::i;:::-;29877:120;;;;:::o;30003:132::-;;30093:3;30085:11;;30123:4;30118:3;30114:14;30106:22;;30075:60;;;:::o;30141:114::-;;30242:5;30236:12;30226:22;;30215:40;;;:::o;30261:99::-;;30347:5;30341:12;30331:22;;30320:40;;;:::o;30366:113::-;;30468:4;30463:3;30459:14;30451:22;;30441:38;;;:::o;30485:184::-;;30618:6;30613:3;30606:19;30658:4;30653:3;30649:14;30634:29;;30596:73;;;;:::o;30675:147::-;;30813:3;30798:18;;30788:34;;;;:::o;30828:169::-;;30946:6;30941:3;30934:19;30986:4;30981:3;30977:14;30962:29;;30924:73;;;;:::o;31003:305::-;;31062:20;31080:1;31062:20;:::i;:::-;31057:25;;31096:20;31114:1;31096:20;:::i;:::-;31091:25;;31250:1;31182:66;31178:74;31175:1;31172:81;31169:2;;;31256:18;;:::i;:::-;31169:2;31300:1;31297;31293:9;31286:16;;31047:261;;;;:::o;31314:185::-;;31371:20;31389:1;31371:20;:::i;:::-;31366:25;;31405:20;31423:1;31405:20;:::i;:::-;31400:25;;31444:1;31434:2;;31449:18;;:::i;:::-;31434:2;31491:1;31488;31484:9;31479:14;;31356:143;;;;:::o;31505:348::-;;31568:20;31586:1;31568:20;:::i;:::-;31563:25;;31602:20;31620:1;31602:20;:::i;:::-;31597:25;;31790:1;31722:66;31718:74;31715:1;31712:81;31707:1;31700:9;31693:17;31689:105;31686:2;;;31797:18;;:::i;:::-;31686:2;31845:1;31842;31838:9;31827:20;;31553:300;;;;:::o;31859:191::-;;31919:20;31937:1;31919:20;:::i;:::-;31914:25;;31953:20;31971:1;31953:20;:::i;:::-;31948:25;;31992:1;31989;31986:8;31983:2;;;31997:18;;:::i;:::-;31983:2;32042:1;32039;32035:9;32027:17;;31904:146;;;;:::o;32056:96::-;;32122:24;32140:5;32122:24;:::i;:::-;32111:35;;32101:51;;;:::o;32158:90::-;;32235:5;32228:13;32221:21;32210:32;;32200:48;;;:::o;32254:126::-;;32331:42;32324:5;32320:54;32309:65;;32299:81;;;:::o;32386:77::-;;32452:5;32441:16;;32431:32;;;:::o;32469:86::-;;32544:4;32537:5;32533:16;32522:27;;32512:43;;;:::o;32561:176::-;;32669:62;32725:5;32669:62;:::i;:::-;32656:75;;32646:91;;;:::o;32743:138::-;;32851:24;32869:5;32851:24;:::i;:::-;32838:37;;32828:53;;;:::o;32887:121::-;;32978:24;32996:5;32978:24;:::i;:::-;32965:37;;32955:53;;;:::o;33014:307::-;33082:1;33092:113;33106:6;33103:1;33100:13;33092:113;;;33191:1;33186:3;33182:11;33176:18;33172:1;33167:3;33163:11;33156:39;33128:2;33125:1;33121:10;33116:15;;33092:113;;;33223:6;33220:1;33217:13;33214:2;;;33303:1;33294:6;33289:3;33285:16;33278:27;33214:2;33063:258;;;;:::o;33327:320::-;;33408:1;33402:4;33398:12;33388:22;;33455:1;33449:4;33445:12;33476:18;33466:2;;33532:4;33524:6;33520:17;33510:27;;33466:2;33594;33586:6;33583:14;33563:18;33560:38;33557:2;;;33613:18;;:::i;:::-;33557:2;33378:269;;;;:::o;33653:180::-;33701:77;33698:1;33691:88;33798:4;33795:1;33788:15;33822:4;33819:1;33812:15;33839:180;33887:77;33884:1;33877:88;33984:4;33981:1;33974:15;34008:4;34005:1;33998:15;34025:180;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:102;;34303:2;34299:7;34294:2;34287:5;34283:14;34279:28;34269:38;;34259:54;;;:::o;34319:122::-;34392:24;34410:5;34392:24;:::i;:::-;34385:5;34382:35;34372:2;;34431:1;34428;34421:12;34372:2;34362:79;:::o;34447:116::-;34517:21;34532:5;34517:21;:::i;:::-;34510:5;34507:32;34497:2;;34553:1;34550;34543:12;34497:2;34487:76;:::o;34569:122::-;34642:24;34660:5;34642:24;:::i;:::-;34635:5;34632:35;34622:2;;34681:1;34678;34671:12;34622:2;34612:79;:::o

Swarm Source

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