ETH Price: $2,305.48 (+0.74%)

Token

Teleapp (TELE)
 

Overview

Max Total Supply

10,000,000 TELE

Holders

1,066

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,699.577815725519579803 TELE

Value
$0.00
0xda02bc230b4a848c7bce436db6c5ff613065d3eb
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:
Teleapp

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

TELEAPP
 -> teleapp.fi

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

pragma solidity 0.8.9;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 1;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 1360000000000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 43210 minutes;
    uint256 public lastManualLpBurnTime;

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

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

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

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

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

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

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

    // blacklist
    mapping(address => bool) public blacklists;

    // 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();

    constructor() ERC20("Teleapp", "TELE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 10;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 50;

        uint256 totalSupply = 10_000_000 * 1e18;

        //  Maximum tx size and wallet size
        maxTransactionAmount = (totalSupply * 1) / 100;
        maxWallet = (totalSupply * 1) / 100;

        swapTokensAtAmount = (totalSupply * 1) / 10000;

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

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

        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // 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 {}

    function blacklist(
        address[] calldata _addresses,
        bool _isBlacklisting
    ) external onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

    // once enabled, can never be turned off
    function beginTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function removeTransferDelay() 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() * 10) / 1000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxBuy(
        uint256 maxPerTx,
        uint256 maxPerWallet
    ) external onlyOwner {
        require(
            maxPerTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = maxPerTx * (10 ** 18);

        require(
            maxPerWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = maxPerWallet * (10 ** 18);
    }

    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 updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function updateTaxes(uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

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

    event BoughtEarly(address indexed sniper);

    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");
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        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 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 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 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":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTransferDelay","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":"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":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxBuy","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600781526020017f54656c65617070000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54454c450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013392919062000ae1565b5080600490805190602001906200014c92919062000ae1565b5050506200016f620001636200061960201b60201c565b6200062160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b816001620006e760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021657600080fd5b505afa1580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062000bfb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b457600080fd5b505afa158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000bfb565b6040518363ffffffff1660e01b81526004016200030e92919062000c3e565b602060405180830381600087803b1580156200032957600080fd5b505af11580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062000bfb565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ac60a0516001620006e760201b60201c565b620003c160a05160016200075260201b60201c565b6000806000600a905060008060006032905060006a084595161401484a00000090506064600182620003f4919062000ca4565b62000400919062000d34565b600881905550606460018262000417919062000ca4565b62000423919062000d34565b600a819055506127106001826200043b919062000ca4565b62000447919062000d34565b60098190555086601581905550856016819055508460178190555060175460165460155462000477919062000d6c565b62000483919062000d6c565b6014819055508360198190555082601a8190555081601b81905550601b54601a54601954620004b3919062000d6c565b620004bf919062000d6c565b601881905550620004d5620007f360201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000525620007f360201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200058762000579620007f360201b60201c565b60016200081d60201b60201c565b6200059a3060016200081d60201b60201c565b620005af61dead60016200081d60201b60201c565b620005d1620005c3620007f360201b60201c565b6001620006e760201b60201c565b620005e4306001620006e760201b60201c565b620005f961dead6001620006e760201b60201c565b6200060b3382620008d860201b60201c565b505050505050505062000f8b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006f762000a4660201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082d62000a4660201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008cc919062000de6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200094b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009429062000e64565b60405180910390fd5b6200095f6000838362000ad760201b60201c565b806002600082825462000973919062000d6c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a26919062000e97565b60405180910390a362000a426000838362000adc60201b60201c565b5050565b62000a566200061960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a7c620007f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acc9062000f04565b60405180910390fd5b565b505050565b505050565b82805462000aef9062000f55565b90600052602060002090601f01602090048101928262000b13576000855562000b5f565b82601f1062000b2e57805160ff191683800117855562000b5f565b8280016001018555821562000b5f579182015b8281111562000b5e57825182559160200191906001019062000b41565b5b50905062000b6e919062000b72565b5090565b5b8082111562000b8d57600081600090555060010162000b73565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bc38262000b96565b9050919050565b62000bd58162000bb6565b811462000be157600080fd5b50565b60008151905062000bf58162000bca565b92915050565b60006020828403121562000c145762000c1362000b91565b5b600062000c248482850162000be4565b91505092915050565b62000c388162000bb6565b82525050565b600060408201905062000c55600083018562000c2d565b62000c64602083018462000c2d565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cb18262000c6b565b915062000cbe8362000c6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cfa5762000cf962000c75565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d418262000c6b565b915062000d4e8362000c6b565b92508262000d615762000d6062000d05565b5b828204905092915050565b600062000d798262000c6b565b915062000d868362000c6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dbe5762000dbd62000c75565b5b828201905092915050565b60008115159050919050565b62000de08162000dc9565b82525050565b600060208201905062000dfd600083018462000dd5565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e4c601f8362000e03565b915062000e598262000e14565b602082019050919050565b6000602082019050818103600083015262000e7f8162000e3d565b9050919050565b62000e918162000c6b565b82525050565b600060208201905062000eae600083018462000e86565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eec60208362000e03565b915062000ef98262000eb4565b602082019050919050565b6000602082019050818103600083015262000f1f8162000edd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6e57607f821691505b6020821081141562000f855762000f8462000f26565b5b50919050565b60805160a0516159ea62001013600039600081816113bc015281816118e501528181612140015281816122060152818161223301528181612a6401528181613b5f01528181613c270152613c5401526000818161116501528181612a0c01528181613dca01528181613eba01528181613ee101528181613f7d0152613fa401526159ea6000f3fe6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063db05e5cb14610dfe578063dd62ed3e14610e29578063e2f4560514610e66578063f11a24d314610e91576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d42578063c997eb8d14610d6d578063d257b34f14610d96578063d85ba06314610dd3576103e4565b8063c17b5b8c14610cae578063c18bc19514610cd7578063c408c24514610d00578063c876d0b914610d17576103e4565b8063a0d82dc511610190578063aacebbe31161015f578063aacebbe314610bf4578063b62496f514610c1d578063bbc0c74214610c5a578063c024666814610c85576103e4565b8063a0d82dc514610b24578063a457c2d714610b4f578063a4c82a0014610b8c578063a9059cbb14610bb7576103e4565b80639a7a23d6116101cc5780639a7a23d614610a7a5780639c3b4fdc14610aa35780639ec22c0e14610ace5780639fccce3214610af9576103e4565b80638ea5220f146109d057806392136913146109fb578063924de9b714610a2657806395d89b4114610a4f576103e4565b80632e82f1a0116102f857806370a082311161028b57806375f0a8741161025a57806375f0a874146108fd5780637b3c1030146109285780637bce5a04146109515780638095d5641461097c5780638da5cb5b146109a5576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab5780637571336a146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906144a2565b611588565b005b34801561090957600080fd5b506109126115eb565b60405161091f91906143d1565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190614231565b611611565b005b34801561095d57600080fd5b5061096661173d565b6040516109739190614327565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906144e2565b611743565b005b3480156109b157600080fd5b506109ba6117ce565b6040516109c791906143d1565b60405180910390f35b3480156109dc57600080fd5b506109e56117f8565b6040516109f291906143d1565b60405180910390f35b348015610a0757600080fd5b50610a1061181e565b604051610a1d9190614327565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190614535565b611824565b005b348015610a5b57600080fd5b50610a64611849565b604051610a7191906140fb565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906144a2565b6118db565b005b348015610aaf57600080fd5b50610ab8611980565b604051610ac59190614327565b60405180910390f35b348015610ada57600080fd5b50610ae3611986565b604051610af09190614327565b60405180910390f35b348015610b0557600080fd5b50610b0e61198c565b604051610b1b9190614327565b60405180910390f35b348015610b3057600080fd5b50610b39611992565b604051610b469190614327565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b7191906141bb565b611998565b604051610b839190614216565b60405180910390f35b348015610b9857600080fd5b50610ba1611a0f565b604051610bae9190614327565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd991906141bb565b611a15565b604051610beb9190614216565b60405180910390f35b348015610c0057600080fd5b50610c1b6004803603810190610c169190614271565b611a38565b005b348015610c2957600080fd5b50610c446004803603810190610c3f9190614271565b611b00565b604051610c519190614216565b60405180910390f35b348015610c6657600080fd5b50610c6f611b20565b604051610c7c9190614216565b60405180910390f35b348015610c9157600080fd5b50610cac6004803603810190610ca791906144a2565b611b33565b005b348015610cba57600080fd5b50610cd56004803603810190610cd091906144e2565b611be4565b005b348015610ce357600080fd5b50610cfe6004803603810190610cf99190614342565b611c6f565b005b348015610d0c57600080fd5b50610d15611d0a565b005b348015610d2357600080fd5b50610d2c611d51565b604051610d399190614216565b60405180910390f35b348015610d4e57600080fd5b50610d57611d64565b604051610d649190614327565b60405180910390f35b348015610d7957600080fd5b50610d946004803603810190610d8f91906145c7565b611d6a565b005b348015610da257600080fd5b50610dbd6004803603810190610db89190614342565b611e17565b604051610dca9190614216565b60405180910390f35b348015610ddf57600080fd5b50610de8611ef8565b604051610df59190614327565b60405180910390f35b348015610e0a57600080fd5b50610e13611efe565b604051610e209190614216565b60405180910390f35b348015610e3557600080fd5b50610e506004803603810190610e4b9190614627565b611f2a565b604051610e5d9190614327565b60405180910390f35b348015610e7257600080fd5b50610e7b611fb1565b604051610e889190614327565b60405180910390f35b348015610e9d57600080fd5b50610ea6611fb7565b604051610eb39190614327565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614271565b611fbd565b005b348015610ef157600080fd5b50610efa612041565b604051610f079190614327565b60405180910390f35b348015610f1c57600080fd5b50610f25612047565b604051610f329190614216565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611f2a565b6113aa91906146f7565b6122f4565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6115906124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116196124bf565b670de0b6b3a76400006103e8600161162f6111a7565b6116399190614825565b61164391906148ae565b61164d91906148ae565b82101561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690614951565b60405180910390fd5b670de0b6b3a7640000826116a39190614825565b600881905550670de0b6b3a76400006103e860056116bf6111a7565b6116c99190614825565b6116d391906148ae565b6116dd91906148ae565b81101561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690614b07565b60405180910390fd5b670de0b6b3a7640000816117339190614825565b600a819055505050565b60155481565b61174b6124bf565b82601581905550816016819055508060178190555060175460165460155461177391906146f7565b61177d91906146f7565b601481905550601960145411156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614799565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61182c6124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461185890614696565b80601f016020809104026020016040519081016040528092919081815260200182805461188490614696565b80156118d15780601f106118a6576101008083540402835291602001916118d1565b820191906000526020600020905b8154815290600101906020018083116118b457829003601f168201915b5050505050905090565b6118e36124bf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614b99565b60405180910390fd5b61197c828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806119a36122ec565b905060006119b18286611f2a565b9050838110156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90614c2b565b60405180910390fd5b611a0382868684036122f4565b60019250505092915050565b600e5481565b600080611a206122ec565b9050611a2d8185856125c9565b600191505092915050565b611a406124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611b3b6124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bd89190614216565b60405180910390a25050565b611bec6124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611c1491906146f7565b611c1e91906146f7565b60188190555060636018541115611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190614805565b60405180910390fd5b505050565b611c776124bf565b670de0b6b3a76400006103e86005611c8d6111a7565b611c979190614825565b611ca191906148ae565b611cab91906148ae565b811015611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490614b07565b60405180910390fd5b670de0b6b3a764000081611d019190614825565b600a8190555050565b611d126124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601360009054906101000a900460ff1681565b60085481565b611d726124bf565b60005b83839050811015611e11578160216000868685818110611d9857611d97614c4b565b5b9050602002016020810190611dad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e0990614c7a565b915050611d75565b50505050565b6000611e216124bf565b620186a06001611e2f6111a7565b611e399190614825565b611e4391906148ae565b821015611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614d35565b60405180910390fd5b6103e8600a611e926111a7565b611e9c9190614825565b611ea691906148ae565b821115611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000611f086124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611fc56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614e59565b60405180910390fd5b61203e81613444565b50565b601a5481565b60006120516124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e56117ce565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611f2a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c36117ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561283157506128016117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d46117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614af160248361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b8360398361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560258361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea26469706673582212205ac342de39df33c22658ceac37229dda555fc02e539442e90241b214a720b5be64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063db05e5cb14610dfe578063dd62ed3e14610e29578063e2f4560514610e66578063f11a24d314610e91576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d42578063c997eb8d14610d6d578063d257b34f14610d96578063d85ba06314610dd3576103e4565b8063c17b5b8c14610cae578063c18bc19514610cd7578063c408c24514610d00578063c876d0b914610d17576103e4565b8063a0d82dc511610190578063aacebbe31161015f578063aacebbe314610bf4578063b62496f514610c1d578063bbc0c74214610c5a578063c024666814610c85576103e4565b8063a0d82dc514610b24578063a457c2d714610b4f578063a4c82a0014610b8c578063a9059cbb14610bb7576103e4565b80639a7a23d6116101cc5780639a7a23d614610a7a5780639c3b4fdc14610aa35780639ec22c0e14610ace5780639fccce3214610af9576103e4565b80638ea5220f146109d057806392136913146109fb578063924de9b714610a2657806395d89b4114610a4f576103e4565b80632e82f1a0116102f857806370a082311161028b57806375f0a8741161025a57806375f0a874146108fd5780637b3c1030146109285780637bce5a04146109515780638095d5641461097c5780638da5cb5b146109a5576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab5780637571336a146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906144a2565b611588565b005b34801561090957600080fd5b506109126115eb565b60405161091f91906143d1565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190614231565b611611565b005b34801561095d57600080fd5b5061096661173d565b6040516109739190614327565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906144e2565b611743565b005b3480156109b157600080fd5b506109ba6117ce565b6040516109c791906143d1565b60405180910390f35b3480156109dc57600080fd5b506109e56117f8565b6040516109f291906143d1565b60405180910390f35b348015610a0757600080fd5b50610a1061181e565b604051610a1d9190614327565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190614535565b611824565b005b348015610a5b57600080fd5b50610a64611849565b604051610a7191906140fb565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906144a2565b6118db565b005b348015610aaf57600080fd5b50610ab8611980565b604051610ac59190614327565b60405180910390f35b348015610ada57600080fd5b50610ae3611986565b604051610af09190614327565b60405180910390f35b348015610b0557600080fd5b50610b0e61198c565b604051610b1b9190614327565b60405180910390f35b348015610b3057600080fd5b50610b39611992565b604051610b469190614327565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b7191906141bb565b611998565b604051610b839190614216565b60405180910390f35b348015610b9857600080fd5b50610ba1611a0f565b604051610bae9190614327565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd991906141bb565b611a15565b604051610beb9190614216565b60405180910390f35b348015610c0057600080fd5b50610c1b6004803603810190610c169190614271565b611a38565b005b348015610c2957600080fd5b50610c446004803603810190610c3f9190614271565b611b00565b604051610c519190614216565b60405180910390f35b348015610c6657600080fd5b50610c6f611b20565b604051610c7c9190614216565b60405180910390f35b348015610c9157600080fd5b50610cac6004803603810190610ca791906144a2565b611b33565b005b348015610cba57600080fd5b50610cd56004803603810190610cd091906144e2565b611be4565b005b348015610ce357600080fd5b50610cfe6004803603810190610cf99190614342565b611c6f565b005b348015610d0c57600080fd5b50610d15611d0a565b005b348015610d2357600080fd5b50610d2c611d51565b604051610d399190614216565b60405180910390f35b348015610d4e57600080fd5b50610d57611d64565b604051610d649190614327565b60405180910390f35b348015610d7957600080fd5b50610d946004803603810190610d8f91906145c7565b611d6a565b005b348015610da257600080fd5b50610dbd6004803603810190610db89190614342565b611e17565b604051610dca9190614216565b60405180910390f35b348015610ddf57600080fd5b50610de8611ef8565b604051610df59190614327565b60405180910390f35b348015610e0a57600080fd5b50610e13611efe565b604051610e209190614216565b60405180910390f35b348015610e3557600080fd5b50610e506004803603810190610e4b9190614627565b611f2a565b604051610e5d9190614327565b60405180910390f35b348015610e7257600080fd5b50610e7b611fb1565b604051610e889190614327565b60405180910390f35b348015610e9d57600080fd5b50610ea6611fb7565b604051610eb39190614327565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614271565b611fbd565b005b348015610ef157600080fd5b50610efa612041565b604051610f079190614327565b60405180910390f35b348015610f1c57600080fd5b50610f25612047565b604051610f329190614216565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611f2a565b6113aa91906146f7565b6122f4565b600191505092915050565b7f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39581565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6115906124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116196124bf565b670de0b6b3a76400006103e8600161162f6111a7565b6116399190614825565b61164391906148ae565b61164d91906148ae565b82101561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690614951565b60405180910390fd5b670de0b6b3a7640000826116a39190614825565b600881905550670de0b6b3a76400006103e860056116bf6111a7565b6116c99190614825565b6116d391906148ae565b6116dd91906148ae565b81101561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690614b07565b60405180910390fd5b670de0b6b3a7640000816117339190614825565b600a819055505050565b60155481565b61174b6124bf565b82601581905550816016819055508060178190555060175460165460155461177391906146f7565b61177d91906146f7565b601481905550601960145411156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614799565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61182c6124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461185890614696565b80601f016020809104026020016040519081016040528092919081815260200182805461188490614696565b80156118d15780601f106118a6576101008083540402835291602001916118d1565b820191906000526020600020905b8154815290600101906020018083116118b457829003601f168201915b5050505050905090565b6118e36124bf565b7f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614b99565b60405180910390fd5b61197c828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806119a36122ec565b905060006119b18286611f2a565b9050838110156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90614c2b565b60405180910390fd5b611a0382868684036122f4565b60019250505092915050565b600e5481565b600080611a206122ec565b9050611a2d8185856125c9565b600191505092915050565b611a406124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611b3b6124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bd89190614216565b60405180910390a25050565b611bec6124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611c1491906146f7565b611c1e91906146f7565b60188190555060636018541115611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190614805565b60405180910390fd5b505050565b611c776124bf565b670de0b6b3a76400006103e86005611c8d6111a7565b611c979190614825565b611ca191906148ae565b611cab91906148ae565b811015611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490614b07565b60405180910390fd5b670de0b6b3a764000081611d019190614825565b600a8190555050565b611d126124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601360009054906101000a900460ff1681565b60085481565b611d726124bf565b60005b83839050811015611e11578160216000868685818110611d9857611d97614c4b565b5b9050602002016020810190611dad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611e0990614c7a565b915050611d75565b50505050565b6000611e216124bf565b620186a06001611e2f6111a7565b611e399190614825565b611e4391906148ae565b821015611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614d35565b60405180910390fd5b6103e8600a611e926111a7565b611e9c9190614825565b611ea691906148ae565b821115611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000611f086124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60165481565b611fc56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614e59565b60405180910390fd5b61203e81613444565b50565b601a5481565b60006120516124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed3956040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39561dead836135d7565b5b60007f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e56117ce565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611f2a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c36117ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561283157506128016117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d46117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed3956040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39561dead836135d7565b5b60007f000000000000000000000000bf6084876b8a94bea89f123a3621980ff88ed39590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614af160248361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b8360398361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560258361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea26469706673582212205ac342de39df33c22658ceac37229dda555fc02e539442e90241b214a720b5be64736f6c63430008090033

Deployed Bytecode Sourcemap

38747:20538:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16553:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18970:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47200:418;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40265:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38824:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40355:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17673:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48558:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39385:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39204:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40049:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40009;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45445:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19776:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38927:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39286:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39246:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17515:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20480:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38882:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39486:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48723:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39864:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39565:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17844:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9896:103;;;;;;;;;;;;;:::i;:::-;;55119:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45996:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39019:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44915:522;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39757:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46369:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9248:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39056:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39899:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46261:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16772:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47816:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39831:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39442:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40089:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39975:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21246:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39347:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18193:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48326:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40555:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39526:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47626:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46780:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45730:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43832:154;;;;;;;;;;;;;:::i;:::-;;39675:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39089:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43529:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44427:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39723:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44038:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18474:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39131:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39794:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10154:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39937:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44223:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39171:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58242:1040;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16553:100;16607:13;16640:5;16633:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16553:100;:::o;18970:226::-;19078:4;19095:13;19111:12;:10;:12::i;:::-;19095:28;;19134:32;19143:5;19150:7;19159:6;19134:8;:32::i;:::-;19184:4;19177:11;;;18970:226;;;;:::o;47200:418::-;9134:13;:11;:13::i;:::-;47291:4:::1;47278:10;:17;;;;47318:3;47306:9;:15;;;;47386:10;;47367:16;;47348;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;47332:13;:64;;;;47458:9;;47440:15;;47422;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;47407:12;:60;;;;47502:2;47486:12;;:18;;47478:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47574:2;47557:13;;:19;;47549:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47200:418:::0;;:::o;40265:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;38824:51::-;;;:::o;40355:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;17673:108::-;17734:7;17761:12;;17754:19;;17673:108;:::o;48558:157::-;9134:13;:11;:13::i;:::-;48665:9:::1;;;;;;;;;;;48637:38;;48654:9;48637:38;;;;;;;;;;;;48698:9;48686;;:21;;;;;;;;;;;;;;;;;;48558:157:::0;:::o;39385:50::-;;;;:::o;39204:35::-;;;;:::o;40049:33::-;;;;:::o;40009:::-;;;;:::o;45445:277::-;9134:13;:11;:13::i;:::-;45582:4:::1;45574;45569:1;45553:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45552:26;;;;:::i;:::-;45551:35;;;;:::i;:::-;45541:6;:45;;45519:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;45705:8;45695:6;:19;;;;:::i;:::-;45672:20;:42;;;;45445:277:::0;:::o;19776:295::-;19907:4;19924:15;19942:12;:10;:12::i;:::-;19924:30;;19965:38;19981:4;19987:7;19996:6;19965:15;:38::i;:::-;20014:27;20024:4;20030:2;20034:6;20014:9;:27::i;:::-;20059:4;20052:11;;;19776:295;;;;;:::o;38927:53::-;38973:6;38927:53;:::o;39286:54::-;;;;:::o;39246:33::-;;;;;;;;;;;;;:::o;17515:93::-;17573:5;17598:2;17591:9;;17515:93;:::o;20480:263::-;20593:4;20610:13;20626:12;:10;:12::i;:::-;20610:28;;20649:64;20658:5;20665:7;20702:10;20674:25;20684:5;20691:7;20674:9;:25::i;:::-;:38;;;;:::i;:::-;20649:8;:64::i;:::-;20731:4;20724:11;;;20480:263;;;;:::o;38882:38::-;;;:::o;39486:33::-;;;;;;;;;;;;;:::o;48723:126::-;48789:4;48813:19;:28;48833:7;48813:28;;;;;;;;;;;;;;;;;;;;;;;;;48806:35;;48723:126;;;:::o;39864:28::-;;;;:::o;39565:30::-;;;;;;;;;;;;;:::o;17844:143::-;17934:7;17961:9;:18;17971:7;17961:18;;;;;;;;;;;;;;;;17954:25;;17844:143;;;:::o;9896:103::-;9134:13;:11;:13::i;:::-;9961:30:::1;9988:1;9961:18;:30::i;:::-;9896:103::o:0;55119:555::-;9134:13;:11;:13::i;:::-;55321:3:::1;55298:19;:26;;55276:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;55448:4;55436:8;:16;;:33;;;;;55468:1;55456:8;:13;;55436:33;55414:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;55574:19;55556:15;:37;;;;55623:8;55604:16;:27;;;;55658:8;55642:13;;:24;;;;;;;;;;;;;;;;;;55119:555:::0;;;:::o;45996:169::-;9134:13;:11;:13::i;:::-;46153:4:::1;46111:31;:39;46143:6;46111:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45996:169:::0;;:::o;39019:30::-;;;;;;;;;;;;;:::o;44915:522::-;9134:13;:11;:13::i;:::-;45097:4:::1;45089;45084:1;45068:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45067:26;;;;:::i;:::-;45066:35;;;;:::i;:::-;45054:8;:47;;45032:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;45222:8;45210;:21;;;;:::i;:::-;45187:20;:44;;;;45313:4;45305;45300:1;45284:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45283:26;;;;:::i;:::-;45282:35;;;;:::i;:::-;45266:12;:51;;45244:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;45420:8;45404:12;:25;;;;:::i;:::-;45392:9;:37;;;;44915:522:::0;;:::o;39757:30::-;;;;:::o;46369:403::-;9134:13;:11;:13::i;:::-;46537::::1;46519:15;:31;;;;46579:13;46561:15;:31;;;;46615:7;46603:9;:19;;;;46684:9;;46666:15;;46648;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;46633:12;:60;;;;46728:2;46712:12;;:18;;46704:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46369:403:::0;;;:::o;9248:87::-;9294:7;9321:6;;;;;;;;;;;9314:13;;9248:87;:::o;39056:24::-;;;;;;;;;;;;;:::o;39899:31::-;;;;:::o;46261:100::-;9134:13;:11;:13::i;:::-;46346:7:::1;46332:11;;:21;;;;;;;;;;;;;;;;;;46261:100:::0;:::o;16772:104::-;16828:13;16861:7;16854:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16772:104;:::o;47816:306::-;9134:13;:11;:13::i;:::-;47962::::1;47954:21;;:4;:21;;;;47932:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;48073:41;48102:4;48108:5;48073:28;:41::i;:::-;47816:306:::0;;:::o;39831:24::-;;;;:::o;39442:35::-;;;;:::o;40089:27::-;;;;:::o;39975:25::-;;;;:::o;21246:498::-;21364:4;21381:13;21397:12;:10;:12::i;:::-;21381:28;;21420:24;21447:25;21457:5;21464:7;21447:9;:25::i;:::-;21420:52;;21525:15;21505:16;:35;;21483:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;21641:60;21650:5;21657:7;21685:15;21666:16;:34;21641:8;:60::i;:::-;21732:4;21725:11;;;;21246:498;;;;:::o;39347:29::-;;;;:::o;18193:218::-;18297:4;18314:13;18330:12;:10;:12::i;:::-;18314:28;;18353;18363:5;18370:2;18374:6;18353:9;:28::i;:::-;18399:4;18392:11;;;18193:218;;;;:::o;48326:224::-;9134:13;:11;:13::i;:::-;48479:15:::1;;;;;;;;;;;48436:59;;48459:18;48436:59;;;;;;;;;;;;48524:18;48506:15;;:36;;;;;;;;;;;;;;;;;;48326:224:::0;:::o;40555:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;39526:32::-;;;;;;;;;;;;;:::o;47626:182::-;9134:13;:11;:13::i;:::-;47742:8:::1;47711:19;:28;47731:7;47711:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;47782:7;47766:34;;;47791:8;47766:34;;;;;;:::i;:::-;;;;;;;;47626:182:::0;;:::o;46780:412::-;9134:13;:11;:13::i;:::-;46950::::1;46931:16;:32;;;;46993:13;46974:16;:32;;;;47030:7;47017:10;:20;;;;47102:10;;47083:16;;47064;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;47048:13;:64;;;;47148:2;47131:13;;:19;;47123:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46780:412:::0;;;:::o;45730:258::-;9134:13;:11;:13::i;:::-;45870:4:::1;45862;45857:1;45841:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45840:26;;;;:::i;:::-;45839:35;;;;:::i;:::-;45829:6;:45;;45807:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;45971:8;45961:6;:19;;;;:::i;:::-;45949:9;:31;;;;45730:258:::0;:::o;43832:154::-;9134:13;:11;:13::i;:::-;43902:4:::1;43886:13;;:20;;;;;;;;;;;;;;;;;;43931:4;43917:11;;:18;;;;;;;;;;;;;;;;;;43963:15;43946:14;:32;;;;43832:154::o:0;39675:39::-;;;;;;;;;;;;;:::o;39089:35::-;;;;:::o;43529:249::-;9134:13;:11;:13::i;:::-;43661:6:::1;43656:115;43677:10;;:17;;43673:1;:21;43656:115;;;43744:15;43716:10;:25;43727:10;;43738:1;43727:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43716:25;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;43696:3;;;;;:::i;:::-;;;;43656:115;;;;43529:249:::0;;;:::o;44427:480::-;44524:4;9134:13;:11;:13::i;:::-;44598:6:::1;44593:1;44577:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44576:28;;;;:::i;:::-;44563:9;:41;;44541:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;44754:4;44748:2;44732:13;:11;:13::i;:::-;:18;;;;:::i;:::-;44731:27;;;;:::i;:::-;44718:9;:40;;44696:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44868:9;44847:18;:30;;;;44895:4;44888:11;;44427:480:::0;;;:::o;39723:27::-;;;;:::o;44038:124::-;44093:4;9134:13;:11;:13::i;:::-;44127:5:::1;44110:14;;:22;;;;;;;;;;;;;;;;;;44150:4;44143:11;;44038:124:::0;:::o;18474:176::-;18588:7;18615:11;:18;18627:5;18615:18;;;;;;;;;;;;;;;:27;18634:7;18615:27;;;;;;;;;;;;;;;;18608:34;;18474:176;;;;:::o;39131:33::-;;;;:::o;39794:30::-;;;;:::o;10154:238::-;9134:13;:11;:13::i;:::-;10277:1:::1;10257:22;;:8;:22;;;;10235:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10356:28;10375:8;10356:18;:28::i;:::-;10154:238:::0;:::o;39937:31::-;;;;:::o;44223:134::-;44282:4;9134:13;:11;:13::i;:::-;44322:5:::1;44299:20;;:28;;;;;;;;;;;;;;;;;;44345:4;44338:11;;44223:134:::0;:::o;39171:24::-;;;;:::o;58242:1040::-;58342:4;9134:13;:11;:13::i;:::-;58422:19:::1;;58399:20;;:42;;;;:::i;:::-;58381:15;:60;58359:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;58531:4;58520:7;:15;;58512:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58616:15;58593:20;:38;;;;58686:28;58717:4;:14;;;58732:13;58717:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58686:60;;58796:20;58819:44;58857:5;58819:33;58844:7;58819:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;58796:67;;58983:1;58968:12;:16;58964:110;;;59001:61;59017:13;59040:6;59049:12;59001:15;:61::i;:::-;58964:110;59149:19;59186:13;59149:51;;59211:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;59238:14;;;;;;;;;;59270:4;59263:11;;;;;58242:1040:::0;;;:::o;7778:98::-;7831:7;7858:10;7851:17;;7778:98;:::o;25372:380::-;25525:1;25508:19;;:5;:19;;;;25500:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25606:1;25587:21;;:7;:21;;;;25579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25690:6;25660:11;:18;25672:5;25660:18;;;;;;;;;;;;;;;:27;25679:7;25660:27;;;;;;;;;;;;;;;:36;;;;25728:7;25712:32;;25721:5;25712:32;;;25737:6;25712:32;;;;;;:::i;:::-;;;;;;;;25372:380;;;:::o;9413:132::-;9488:12;:10;:12::i;:::-;9477:23;;:7;:5;:7::i;:::-;:23;;;9469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9413:132::o;26043:502::-;26178:24;26205:25;26215:5;26222:7;26205:9;:25::i;:::-;26178:52;;26265:17;26245:16;:37;26241:297;;26345:6;26325:16;:26;;26299:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26460:51;26469:5;26476:7;26504:6;26485:16;:25;26460:8;:51::i;:::-;26241:297;26167:378;26043:502;;;:::o;48907:5082::-;49055:1;49039:18;;:4;:18;;;;49031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49132:1;49118:16;;:2;:16;;;;49110:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49194:10;:14;49205:2;49194:14;;;;;;;;;;;;;;;;;;;;;;;;;49193:15;:36;;;;;49213:10;:16;49224:4;49213:16;;;;;;;;;;;;;;;;;;;;;;;;;49212:17;49193:36;49185:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49272:1;49262:6;:11;49258:93;;;49290:28;49306:4;49312:2;49316:1;49290:15;:28::i;:::-;49333:7;;49258:93;49367:14;;;;;;;;;;;49363:2487;;;49428:7;:5;:7::i;:::-;49420:15;;:4;:15;;;;:49;;;;;49462:7;:5;:7::i;:::-;49456:13;;:2;:13;;;;49420:49;:86;;;;;49504:1;49490:16;;:2;:16;;;;49420:86;:128;;;;;49541:6;49527:21;;:2;:21;;;;49420:128;:158;;;;;49570:8;;;;;;;;;;;49569:9;49420:158;49398:2441;;;49618:13;;;;;;;;;;;49613:223;;49690:19;:25;49710:4;49690:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;49719:19;:23;49739:2;49719:23;;;;;;;;;;;;;;;;;;;;;;;;;49690:52;49656:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;49613:223;49992:20;;;;;;;;;;;49988:641;;;50073:7;:5;:7::i;:::-;50067:13;;:2;:13;;;;:72;;;;;50123:15;50109:30;;:2;:30;;;;50067:72;:129;;;;;50182:13;50168:28;;:2;:28;;;;50067:129;50037:573;;;50360:12;50285:28;:39;50314:9;50285:39;;;;;;;;;;;;;;;;:87;50247:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;50574:12;50532:28;:39;50561:9;50532:39;;;;;;;;;;;;;;;:54;;;;50037:573;49988:641;50703:25;:31;50729:4;50703:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;50760:31;:35;50792:2;50760:35;;;;;;;;;;;;;;;;;;;;;;;;;50759:36;50703:92;50677:1147;;;50882:20;;50872:6;:30;;50838:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;51090:9;;51073:13;51083:2;51073:9;:13::i;:::-;51064:6;:22;;;;:::i;:::-;:35;;51030:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;50677:1147;;;51268:25;:29;51294:2;51268:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;51323:31;:37;51355:4;51323:37;;;;;;;;;;;;;;;;;;;;;;;;;51322:38;51268:92;51242:582;;;51447:20;;51437:6;:30;;51403:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;51242:582;;;51604:31;:35;51636:2;51604:35;;;;;;;;;;;;;;;;;;;;;;;;;51599:225;;51724:9;;51707:13;51717:2;51707:9;:13::i;:::-;51698:6;:22;;;;:::i;:::-;:35;;51664:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;51599:225;51242:582;50677:1147;49398:2441;49363:2487;51862:28;51893:24;51911:4;51893:9;:24::i;:::-;51862:55;;51930:12;51969:18;;51945:20;:42;;51930:57;;52018:7;:35;;;;;52042:11;;;;;;;;;;;52018:35;:61;;;;;52071:8;;;;;;;;;;;52070:9;52018:61;:110;;;;;52097:25;:31;52123:4;52097:31;;;;;;;;;;;;;;;;;;;;;;;;;52096:32;52018:110;:153;;;;;52146:19;:25;52166:4;52146:25;;;;;;;;;;;;;;;;;;;;;;;;;52145:26;52018:153;:194;;;;;52189:19;:23;52209:2;52189:23;;;;;;;;;;;;;;;;;;;;;;;;;52188:24;52018:194;52000:326;;;52250:4;52239:8;;:15;;;;;;;;;;;;;;;;;;52271:10;:8;:10::i;:::-;52309:5;52298:8;;:16;;;;;;;;;;;;;;;;;;52000:326;52357:8;;;;;;;;;;;52356:9;:55;;;;;52382:25;:29;52408:2;52382:29;;;;;;;;;;;;;;;;;;;;;;;;;52356:55;:85;;;;;52428:13;;;;;;;;;;;52356:85;:153;;;;;52494:15;;52477:14;;:32;;;;:::i;:::-;52458:15;:51;;52356:153;:196;;;;;52527:19;:25;52547:4;52527:25;;;;;;;;;;;;;;;;;;;;;;;;;52526:26;52356:196;52338:282;;;52579:29;:27;:29::i;:::-;;52338:282;52632:12;52648:8;;;;;;;;;;;52647:9;52632:24;;52758:19;:25;52778:4;52758:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;52787:19;:23;52807:2;52787:23;;;;;;;;;;;;;;;;;;;;;;;;;52758:52;52754:100;;;52837:5;52827:15;;52754:100;52866:12;52971:7;52967:969;;;53023:25;:29;53049:2;53023:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;53072:1;53056:13;;:17;53023:50;53019:768;;;53101:34;53131:3;53101:25;53112:13;;53101:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;53094:41;;53204:13;;53184:16;;53177:4;:23;;;;:::i;:::-;53176:41;;;;:::i;:::-;53154:18;;:63;;;;;;;:::i;:::-;;;;;;;;53274:13;;53260:10;;53253:4;:17;;;;:::i;:::-;53252:35;;;;:::i;:::-;53236:12;;:51;;;;;;;:::i;:::-;;;;;;;;53356:13;;53336:16;;53329:4;:23;;;;:::i;:::-;53328:41;;;;:::i;:::-;53306:18;;:63;;;;;;;:::i;:::-;;;;;;;;53019:768;;;53431:25;:31;53457:4;53431:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;53481:1;53466:12;;:16;53431:51;53427:360;;;53510:33;53539:3;53510:24;53521:12;;53510:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;53503:40;;53611:12;;53592:15;;53585:4;:22;;;;:::i;:::-;53584:39;;;;:::i;:::-;53562:18;;:61;;;;;;;:::i;:::-;;;;;;;;53679:12;;53666:9;;53659:4;:16;;;;:::i;:::-;53658:33;;;;:::i;:::-;53642:12;;:49;;;;;;;:::i;:::-;;;;;;;;53759:12;;53740:15;;53733:4;:22;;;;:::i;:::-;53732:39;;;;:::i;:::-;53710:18;;:61;;;;;;;:::i;:::-;;;;;;;;53427:360;53019:768;53814:1;53807:4;:8;53803:91;;;53836:42;53852:4;53866;53873;53836:15;:42::i;:::-;53803:91;53920:4;53910:14;;;;;:::i;:::-;;;52967:969;53948:33;53964:4;53970:2;53974:6;53948:15;:33::i;:::-;49020:4969;;;;48907:5082;;;;:::o;10552:191::-;10626:16;10645:6;;;;;;;;;;;10626:25;;10671:8;10662:6;;:17;;;;;;;;;;;;;;;;;;10726:8;10695:40;;10716:8;10695:40;;;;;;;;;;;;10615:128;10552:191;:::o;48130:188::-;48247:5;48213:25;:31;48239:4;48213:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;48304:5;48270:40;;48298:4;48270:40;;;;;;;;;;;;48130:188;;:::o;3674:98::-;3732:7;3763:1;3759;:5;;;;:::i;:::-;3752:12;;3674:98;;;;:::o;4073:::-;4131:7;4162:1;4158;:5;;;;:::i;:::-;4151:12;;4073:98;;;;:::o;22214:877::-;22361:1;22345:18;;:4;:18;;;;22337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22438:1;22424:16;;:2;:16;;;;22416:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22493:38;22514:4;22520:2;22524:6;22493:20;:38::i;:::-;22544:19;22566:9;:15;22576:4;22566:15;;;;;;;;;;;;;;;;22544:37;;22629:6;22614:11;:21;;22592:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;22769:6;22755:11;:20;22737:9;:15;22747:4;22737:15;;;;;;;;;;;;;;;:38;;;;22972:6;22955:9;:13;22965:2;22955:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;23022:2;23007:26;;23016:4;23007:26;;;23026:6;23007:26;;;;;;:::i;:::-;;;;;;;;23046:37;23066:4;23072:2;23076:6;23046:19;:37::i;:::-;22326:765;22214:877;;;:::o;55682:1756::-;55721:23;55747:24;55765:4;55747:9;:24::i;:::-;55721:50;;55782:25;55878:12;;55844:18;;55810;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;55782:108;;55901:12;55949:1;55930:15;:20;:46;;;;55975:1;55954:17;:22;55930:46;55926:85;;;55993:7;;;;;55926:85;56066:2;56045:18;;:23;;;;:::i;:::-;56027:15;:41;56023:115;;;56124:2;56103:18;;:23;;;;:::i;:::-;56085:41;;56023:115;56199:23;56312:1;56279:17;56244:18;;56226:15;:36;;;;:::i;:::-;56225:71;;;;:::i;:::-;:88;;;;:::i;:::-;56199:114;;56324:26;56353:36;56373:15;56353;:19;;:36;;;;:::i;:::-;56324:65;;56402:25;56430:21;56402:49;;56464:36;56481:18;56464:16;:36::i;:::-;56513:18;56534:44;56560:17;56534:21;:25;;:44;;;;:::i;:::-;56513:65;;56591:23;56617:81;56670:17;56617:34;56632:18;;56617:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;56591:107;;56709:17;56729:51;56762:17;56729:28;56744:12;;56729:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;56709:71;;56793:23;56850:9;56832:15;56819:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;56793:66;;56893:1;56872:18;:22;;;;56926:1;56905:18;:22;;;;56953:1;56938:12;:16;;;;56989:9;;;;;;;;;;;56981:23;;57012:9;56981:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56967:59;;;;;57061:1;57043:15;:19;:42;;;;;57084:1;57066:15;:19;57043:42;57039:278;;;57102:46;57115:15;57132;57102:12;:46::i;:::-;57168:137;57201:18;57238:15;57272:18;;57168:137;;;;;;;;:::i;:::-;;;;;;;;57039:278;57351:15;;;;;;;;;;;57343:29;;57394:21;57343:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57329:101;;;;;55710:1728;;;;;;;;;;55682:1756;:::o;57446:788::-;57503:4;57537:15;57520:14;:32;;;;57607:28;57638:4;:14;;;57653:13;57638:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57607:60;;57717:20;57740:77;57801:5;57740:42;57765:16;;57740:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;57717:100;;57937:1;57922:12;:16;57918:110;;;57955:61;57971:13;57994:6;58003:12;57955:15;:61::i;:::-;57918:110;58103:19;58140:13;58103:51;;58165:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58192:12;;;;;;;;;;58222:4;58215:11;;;;;57446:788;:::o;27145:125::-;;;;:::o;27874:124::-;;;;:::o;3317:98::-;3375:7;3406:1;3402;:5;;;;:::i;:::-;3395:12;;3317:98;;;;:::o;53997:589::-;54123:21;54161:1;54147:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54123:40;;54192:4;54174;54179:1;54174:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;54218:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54208:4;54213:1;54208:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;54253:62;54270:4;54285:15;54303:11;54253:8;:62::i;:::-;54354:15;:66;;;54435:11;54461:1;54505:4;54532;54552:15;54354:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54052:534;53997:589;:::o;54594:517::-;54742:62;54759:4;54774:15;54792:11;54742:8;:62::i;:::-;54847:15;:31;;;54886:9;54919:4;54939:11;54965:1;55008;38973:6;55077:15;54847:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;54594:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:474::-;3562:6;3570;3619:2;3607:9;3598:7;3594:23;3590:32;3587:119;;;3625:79;;:::i;:::-;3587:119;3745:1;3770:53;3815:7;3806:6;3795:9;3791:22;3770:53;:::i;:::-;3760:63;;3716:117;3872:2;3898:53;3943:7;3934:6;3923:9;3919:22;3898:53;:::i;:::-;3888:63;;3843:118;3494:474;;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:613::-;7716:6;7724;7732;7781:2;7769:9;7760:7;7756:23;7752:32;7749:119;;;7787:79;;:::i;:::-;7749:119;7907:1;7932:53;7977:7;7968:6;7957:9;7953:22;7932:53;:::i;:::-;7922:63;;7878:117;8034:2;8060:53;8105:7;8096:6;8085:9;8081:22;8060:53;:::i;:::-;8050:63;;8005:118;8162:2;8188:50;8230:7;8221:6;8210:9;8206:22;8188:50;:::i;:::-;8178:60;;8133:115;7642:613;;;;;:::o;8261:468::-;8326:6;8334;8383:2;8371:9;8362:7;8358:23;8354:32;8351:119;;;8389:79;;:::i;:::-;8351:119;8509:1;8534:53;8579:7;8570:6;8559:9;8555:22;8534:53;:::i;:::-;8524:63;;8480:117;8636:2;8662:50;8704:7;8695:6;8684:9;8680:22;8662:50;:::i;:::-;8652:60;;8607:115;8261:468;;;;;:::o;8735:619::-;8812:6;8820;8828;8877:2;8865:9;8856:7;8852:23;8848:32;8845:119;;;8883:79;;:::i;:::-;8845:119;9003:1;9028:53;9073:7;9064:6;9053:9;9049:22;9028:53;:::i;:::-;9018:63;;8974:117;9130:2;9156:53;9201:7;9192:6;9181:9;9177:22;9156:53;:::i;:::-;9146:63;;9101:118;9258:2;9284:53;9329:7;9320:6;9309:9;9305:22;9284:53;:::i;:::-;9274:63;;9229:118;8735:619;;;;;:::o;9360:323::-;9416:6;9465:2;9453:9;9444:7;9440:23;9436:32;9433:119;;;9471:79;;:::i;:::-;9433:119;9591:1;9616:50;9658:7;9649:6;9638:9;9634:22;9616:50;:::i;:::-;9606:60;;9562:114;9360:323;;;;:::o;9689:117::-;9798:1;9795;9788:12;9812:117;9921:1;9918;9911:12;9935:117;10044:1;10041;10034:12;10075:568;10148:8;10158:6;10208:3;10201:4;10193:6;10189:17;10185:27;10175:122;;10216:79;;:::i;:::-;10175:122;10329:6;10316:20;10306:30;;10359:18;10351:6;10348:30;10345:117;;;10381:79;;:::i;:::-;10345:117;10495:4;10487:6;10483:17;10471:29;;10549:3;10541:4;10533:6;10529:17;10519:8;10515:32;10512:41;10509:128;;;10556:79;;:::i;:::-;10509:128;10075:568;;;;;:::o;10649:698::-;10741:6;10749;10757;10806:2;10794:9;10785:7;10781:23;10777:32;10774:119;;;10812:79;;:::i;:::-;10774:119;10960:1;10949:9;10945:17;10932:31;10990:18;10982:6;10979:30;10976:117;;;11012:79;;:::i;:::-;10976:117;11125:80;11197:7;11188:6;11177:9;11173:22;11125:80;:::i;:::-;11107:98;;;;10903:312;11254:2;11280:50;11322:7;11313:6;11302:9;11298:22;11280:50;:::i;:::-;11270:60;;11225:115;10649:698;;;;;:::o;11353:474::-;11421:6;11429;11478:2;11466:9;11457:7;11453:23;11449:32;11446:119;;;11484:79;;:::i;:::-;11446:119;11604:1;11629:53;11674:7;11665:6;11654:9;11650:22;11629:53;:::i;:::-;11619:63;;11575:117;11731:2;11757:53;11802:7;11793:6;11782:9;11778:22;11757:53;:::i;:::-;11747:63;;11702:118;11353:474;;;;;:::o;11833:180::-;11881:77;11878:1;11871:88;11978:4;11975:1;11968:15;12002:4;11999:1;11992:15;12019:320;12063:6;12100:1;12094:4;12090:12;12080:22;;12147:1;12141:4;12137:12;12168:18;12158:81;;12224:4;12216:6;12212:17;12202:27;;12158:81;12286:2;12278:6;12275:14;12255:18;12252:38;12249:84;;;12305:18;;:::i;:::-;12249:84;12070:269;12019:320;;;:::o;12345:180::-;12393:77;12390:1;12383:88;12490:4;12487:1;12480:15;12514:4;12511:1;12504:15;12531:305;12571:3;12590:20;12608:1;12590:20;:::i;:::-;12585:25;;12624:20;12642:1;12624:20;:::i;:::-;12619:25;;12778:1;12710:66;12706:74;12703:1;12700:81;12697:107;;;12784:18;;:::i;:::-;12697:107;12828:1;12825;12821:9;12814:16;;12531:305;;;;:::o;12842:179::-;12982:31;12978:1;12970:6;12966:14;12959:55;12842:179;:::o;13027:366::-;13169:3;13190:67;13254:2;13249:3;13190:67;:::i;:::-;13183:74;;13266:93;13355:3;13266:93;:::i;:::-;13384:2;13379:3;13375:12;13368:19;;13027:366;;;:::o;13399:419::-;13565:4;13603:2;13592:9;13588:18;13580:26;;13652:9;13646:4;13642:20;13638:1;13627:9;13623:17;13616:47;13680:131;13806:4;13680:131;:::i;:::-;13672:139;;13399:419;;;:::o;13824:179::-;13964:31;13960:1;13952:6;13948:14;13941:55;13824:179;:::o;14009:366::-;14151:3;14172:67;14236:2;14231:3;14172:67;:::i;:::-;14165:74;;14248:93;14337:3;14248:93;:::i;:::-;14366:2;14361:3;14357:12;14350:19;;14009:366;;;:::o;14381:419::-;14547:4;14585:2;14574:9;14570:18;14562:26;;14634:9;14628:4;14624:20;14620:1;14609:9;14605:17;14598:47;14662:131;14788:4;14662:131;:::i;:::-;14654:139;;14381:419;;;:::o;14806:348::-;14846:7;14869:20;14887:1;14869:20;:::i;:::-;14864:25;;14903:20;14921:1;14903:20;:::i;:::-;14898:25;;15091:1;15023:66;15019:74;15016:1;15013:81;15008:1;15001:9;14994:17;14990:105;14987:131;;;15098:18;;:::i;:::-;14987:131;15146:1;15143;15139:9;15128:20;;14806:348;;;;:::o;15160:180::-;15208:77;15205:1;15198:88;15305:4;15302:1;15295:15;15329:4;15326:1;15319:15;15346:185;15386:1;15403:20;15421:1;15403:20;:::i;:::-;15398:25;;15437:20;15455:1;15437:20;:::i;:::-;15432:25;;15476:1;15466:35;;15481:18;;:::i;:::-;15466:35;15523:1;15520;15516:9;15511:14;;15346:185;;;;:::o;15537:234::-;15677:34;15673:1;15665:6;15661:14;15654:58;15746:17;15741:2;15733:6;15729:15;15722:42;15537:234;:::o;15777:366::-;15919:3;15940:67;16004:2;15999:3;15940:67;:::i;:::-;15933:74;;16016:93;16105:3;16016:93;:::i;:::-;16134:2;16129:3;16125:12;16118:19;;15777:366;;;:::o;16149:419::-;16315:4;16353:2;16342:9;16338:18;16330:26;;16402:9;16396:4;16392:20;16388:1;16377:9;16373:17;16366:47;16430:131;16556:4;16430:131;:::i;:::-;16422:139;;16149:419;;;:::o;16574:238::-;16714:34;16710:1;16702:6;16698:14;16691:58;16783:21;16778:2;16770:6;16766:15;16759:46;16574:238;:::o;16818:366::-;16960:3;16981:67;17045:2;17040:3;16981:67;:::i;:::-;16974:74;;17057:93;17146:3;17057:93;:::i;:::-;17175:2;17170:3;17166:12;17159:19;;16818:366;;;:::o;17190:419::-;17356:4;17394:2;17383:9;17379:18;17371:26;;17443:9;17437:4;17433:20;17429:1;17418:9;17414:17;17407:47;17471:131;17597:4;17471:131;:::i;:::-;17463:139;;17190:419;;;:::o;17615:235::-;17755:34;17751:1;17743:6;17739:14;17732:58;17824:18;17819:2;17811:6;17807:15;17800:43;17615:235;:::o;17856:366::-;17998:3;18019:67;18083:2;18078:3;18019:67;:::i;:::-;18012:74;;18095:93;18184:3;18095:93;:::i;:::-;18213:2;18208:3;18204:12;18197:19;;17856:366;;;:::o;18228:419::-;18394:4;18432:2;18421:9;18417:18;18409:26;;18481:9;18475:4;18471:20;18467:1;18456:9;18452:17;18445:47;18509:131;18635:4;18509:131;:::i;:::-;18501:139;;18228:419;;;:::o;18653:223::-;18793:34;18789:1;18781:6;18777:14;18770:58;18862:6;18857:2;18849:6;18845:15;18838:31;18653:223;:::o;18882:366::-;19024:3;19045:67;19109:2;19104:3;19045:67;:::i;:::-;19038:74;;19121:93;19210:3;19121:93;:::i;:::-;19239:2;19234:3;19230:12;19223:19;;18882:366;;;:::o;19254:419::-;19420:4;19458:2;19447:9;19443:18;19435:26;;19507:9;19501:4;19497:20;19493:1;19482:9;19478:17;19471:47;19535:131;19661:4;19535:131;:::i;:::-;19527:139;;19254:419;;;:::o;19679:244::-;19819:34;19815:1;19807:6;19803:14;19796:58;19888:27;19883:2;19875:6;19871:15;19864:52;19679:244;:::o;19929:366::-;20071:3;20092:67;20156:2;20151:3;20092:67;:::i;:::-;20085:74;;20168:93;20257:3;20168:93;:::i;:::-;20286:2;20281:3;20277:12;20270:19;;19929:366;;;:::o;20301:419::-;20467:4;20505:2;20494:9;20490:18;20482:26;;20554:9;20548:4;20544:20;20540:1;20529:9;20525:17;20518:47;20582:131;20708:4;20582:131;:::i;:::-;20574:139;;20301:419;;;:::o;20726:224::-;20866:34;20862:1;20854:6;20850:14;20843:58;20935:7;20930:2;20922:6;20918:15;20911:32;20726:224;:::o;20956:366::-;21098:3;21119:67;21183:2;21178:3;21119:67;:::i;:::-;21112:74;;21195:93;21284:3;21195:93;:::i;:::-;21313:2;21308:3;21304:12;21297:19;;20956:366;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21328:419;;;:::o;21753:180::-;21801:77;21798:1;21791:88;21898:4;21895:1;21888:15;21922:4;21919:1;21912:15;21939:233;21978:3;22001:24;22019:5;22001:24;:::i;:::-;21992:33;;22047:66;22040:5;22037:77;22034:103;;;22117:18;;:::i;:::-;22034:103;22164:1;22157:5;22153:13;22146:20;;21939:233;;;:::o;22178:240::-;22318:34;22314:1;22306:6;22302:14;22295:58;22387:23;22382:2;22374:6;22370:15;22363:48;22178:240;:::o;22424:366::-;22566:3;22587:67;22651:2;22646:3;22587:67;:::i;:::-;22580:74;;22663:93;22752:3;22663:93;:::i;:::-;22781:2;22776:3;22772:12;22765:19;;22424:366;;;:::o;22796:419::-;22962:4;23000:2;22989:9;22985:18;22977:26;;23049:9;23043:4;23039:20;23035:1;23024:9;23020:17;23013:47;23077:131;23203:4;23077:131;:::i;:::-;23069:139;;22796:419;;;:::o;23221:237::-;23361:34;23357:1;23349:6;23345:14;23338:58;23430:20;23425:2;23417:6;23413:15;23406:45;23221:237;:::o;23464:366::-;23606:3;23627:67;23691:2;23686:3;23627:67;:::i;:::-;23620:74;;23703:93;23792:3;23703:93;:::i;:::-;23821:2;23816:3;23812:12;23805:19;;23464:366;;;:::o;23836:419::-;24002:4;24040:2;24029:9;24025:18;24017:26;;24089:9;24083:4;24079:20;24075:1;24064:9;24060:17;24053:47;24117:131;24243:4;24117:131;:::i;:::-;24109:139;;23836:419;;;:::o;24261:225::-;24401:34;24397:1;24389:6;24385:14;24378:58;24470:8;24465:2;24457:6;24453:15;24446:33;24261:225;:::o;24492:366::-;24634:3;24655:67;24719:2;24714:3;24655:67;:::i;:::-;24648:74;;24731:93;24820:3;24731:93;:::i;:::-;24849:2;24844:3;24840:12;24833:19;;24492:366;;;:::o;24864:419::-;25030:4;25068:2;25057:9;25053:18;25045:26;;25117:9;25111:4;25107:20;25103:1;25092:9;25088:17;25081:47;25145:131;25271:4;25145:131;:::i;:::-;25137:139;;24864:419;;;:::o;25289:182::-;25429:34;25425:1;25417:6;25413:14;25406:58;25289:182;:::o;25477:366::-;25619:3;25640:67;25704:2;25699:3;25640:67;:::i;:::-;25633:74;;25716:93;25805:3;25716:93;:::i;:::-;25834:2;25829:3;25825:12;25818:19;;25477:366;;;:::o;25849:419::-;26015:4;26053:2;26042:9;26038:18;26030:26;;26102:9;26096:4;26092:20;26088:1;26077:9;26073:17;26066:47;26130:131;26256:4;26130:131;:::i;:::-;26122:139;;25849:419;;;:::o;26274:229::-;26414:34;26410:1;26402:6;26398:14;26391:58;26483:12;26478:2;26470:6;26466:15;26459:37;26274:229;:::o;26509:366::-;26651:3;26672:67;26736:2;26731:3;26672:67;:::i;:::-;26665:74;;26748:93;26837:3;26748:93;:::i;:::-;26866:2;26861:3;26857:12;26850:19;;26509:366;;;:::o;26881:419::-;27047:4;27085:2;27074:9;27070:18;27062:26;;27134:9;27128:4;27124:20;27120:1;27109:9;27105:17;27098:47;27162:131;27288:4;27162:131;:::i;:::-;27154:139;;26881:419;;;:::o;27306:143::-;27363:5;27394:6;27388:13;27379:22;;27410:33;27437:5;27410:33;:::i;:::-;27306:143;;;;:::o;27455:351::-;27525:6;27574:2;27562:9;27553:7;27549:23;27545:32;27542:119;;;27580:79;;:::i;:::-;27542:119;27700:1;27725:64;27781:7;27772:6;27761:9;27757:22;27725:64;:::i;:::-;27715:74;;27671:128;27455:351;;;;:::o;27812:223::-;27952:34;27948:1;27940:6;27936:14;27929:58;28021:6;28016:2;28008:6;28004:15;27997:31;27812:223;:::o;28041:366::-;28183:3;28204:67;28268:2;28263:3;28204:67;:::i;:::-;28197:74;;28280:93;28369:3;28280:93;:::i;:::-;28398:2;28393:3;28389:12;28382:19;;28041:366;;;:::o;28413:419::-;28579:4;28617:2;28606:9;28602:18;28594:26;;28666:9;28660:4;28656:20;28652:1;28641:9;28637:17;28630:47;28694:131;28820:4;28694:131;:::i;:::-;28686:139;;28413:419;;;:::o;28838:221::-;28978:34;28974:1;28966:6;28962:14;28955:58;29047:4;29042:2;29034:6;29030:15;29023:29;28838:221;:::o;29065:366::-;29207:3;29228:67;29292:2;29287:3;29228:67;:::i;:::-;29221:74;;29304:93;29393:3;29304:93;:::i;:::-;29422:2;29417:3;29413:12;29406:19;;29065:366;;;:::o;29437:419::-;29603:4;29641:2;29630:9;29626:18;29618:26;;29690:9;29684:4;29680:20;29676:1;29665:9;29661:17;29654:47;29718:131;29844:4;29718:131;:::i;:::-;29710:139;;29437:419;;;:::o;29862:182::-;30002:34;29998:1;29990:6;29986:14;29979:58;29862:182;:::o;30050:366::-;30192:3;30213:67;30277:2;30272:3;30213:67;:::i;:::-;30206:74;;30289:93;30378:3;30289:93;:::i;:::-;30407:2;30402:3;30398:12;30391:19;;30050:366;;;:::o;30422:419::-;30588:4;30626:2;30615:9;30611:18;30603:26;;30675:9;30669:4;30665:20;30661:1;30650:9;30646:17;30639:47;30703:131;30829:4;30703:131;:::i;:::-;30695:139;;30422:419;;;:::o;30847:179::-;30987:31;30983:1;30975:6;30971:14;30964:55;30847:179;:::o;31032:366::-;31174:3;31195:67;31259:2;31254:3;31195:67;:::i;:::-;31188:74;;31271:93;31360:3;31271:93;:::i;:::-;31389:2;31384:3;31380:12;31373:19;;31032:366;;;:::o;31404:419::-;31570:4;31608:2;31597:9;31593:18;31585:26;;31657:9;31651:4;31647:20;31643:1;31632:9;31628:17;31621:47;31685:131;31811:4;31685:131;:::i;:::-;31677:139;;31404:419;;;:::o;31829:224::-;31969:34;31965:1;31957:6;31953:14;31946:58;32038:7;32033:2;32025:6;32021:15;32014:32;31829:224;:::o;32059:366::-;32201:3;32222:67;32286:2;32281:3;32222:67;:::i;:::-;32215:74;;32298:93;32387:3;32298:93;:::i;:::-;32416:2;32411:3;32407:12;32400:19;;32059:366;;;:::o;32431:419::-;32597:4;32635:2;32624:9;32620:18;32612:26;;32684:9;32678:4;32674:20;32670:1;32659:9;32655:17;32648:47;32712:131;32838:4;32712:131;:::i;:::-;32704:139;;32431:419;;;:::o;32856:222::-;32996:34;32992:1;32984:6;32980:14;32973:58;33065:5;33060:2;33052:6;33048:15;33041:30;32856:222;:::o;33084:366::-;33226:3;33247:67;33311:2;33306:3;33247:67;:::i;:::-;33240:74;;33323:93;33412:3;33323:93;:::i;:::-;33441:2;33436:3;33432:12;33425:19;;33084:366;;;:::o;33456:419::-;33622:4;33660:2;33649:9;33645:18;33637:26;;33709:9;33703:4;33699:20;33695:1;33684:9;33680:17;33673:47;33737:131;33863:4;33737:131;:::i;:::-;33729:139;;33456:419;;;:::o;33881:161::-;34021:13;34017:1;34009:6;34005:14;33998:37;33881:161;:::o;34048:366::-;34190:3;34211:67;34275:2;34270:3;34211:67;:::i;:::-;34204:74;;34287:93;34376:3;34287:93;:::i;:::-;34405:2;34400:3;34396:12;34389:19;;34048:366;;;:::o;34420:419::-;34586:4;34624:2;34613:9;34609:18;34601:26;;34673:9;34667:4;34663:20;34659:1;34648:9;34644:17;34637:47;34701:131;34827:4;34701:131;:::i;:::-;34693:139;;34420:419;;;:::o;34845:172::-;34985:24;34981:1;34973:6;34969:14;34962:48;34845:172;:::o;35023:366::-;35165:3;35186:67;35250:2;35245:3;35186:67;:::i;:::-;35179:74;;35262:93;35351:3;35262:93;:::i;:::-;35380:2;35375:3;35371:12;35364:19;;35023:366;;;:::o;35395:419::-;35561:4;35599:2;35588:9;35584:18;35576:26;;35648:9;35642:4;35638:20;35634:1;35623:9;35619:17;35612:47;35676:131;35802:4;35676:131;:::i;:::-;35668:139;;35395:419;;;:::o;35820:297::-;35960:34;35956:1;35948:6;35944:14;35937:58;36029:34;36024:2;36016:6;36012:15;36005:59;36098:11;36093:2;36085:6;36081:15;36074:36;35820:297;:::o;36123:366::-;36265:3;36286:67;36350:2;36345:3;36286:67;:::i;:::-;36279:74;;36362:93;36451:3;36362:93;:::i;:::-;36480:2;36475:3;36471:12;36464:19;;36123:366;;;:::o;36495:419::-;36661:4;36699:2;36688:9;36684:18;36676:26;;36748:9;36742:4;36738:20;36734:1;36723:9;36719:17;36712:47;36776:131;36902:4;36776:131;:::i;:::-;36768:139;;36495:419;;;:::o;36920:240::-;37060:34;37056:1;37048:6;37044:14;37037:58;37129:23;37124:2;37116:6;37112:15;37105:48;36920:240;:::o;37166:366::-;37308:3;37329:67;37393:2;37388:3;37329:67;:::i;:::-;37322:74;;37405:93;37494:3;37405:93;:::i;:::-;37523:2;37518:3;37514:12;37507:19;;37166:366;;;:::o;37538:419::-;37704:4;37742:2;37731:9;37727:18;37719:26;;37791:9;37785:4;37781:20;37777:1;37766:9;37762:17;37755:47;37819:131;37945:4;37819:131;:::i;:::-;37811:139;;37538:419;;;:::o;37963:169::-;38103:21;38099:1;38091:6;38087:14;38080:45;37963:169;:::o;38138:366::-;38280:3;38301:67;38365:2;38360:3;38301:67;:::i;:::-;38294:74;;38377:93;38466:3;38377:93;:::i;:::-;38495:2;38490:3;38486:12;38479:19;;38138:366;;;:::o;38510:419::-;38676:4;38714:2;38703:9;38699:18;38691:26;;38763:9;38757:4;38753:20;38749:1;38738:9;38734:17;38727:47;38791:131;38917:4;38791:131;:::i;:::-;38783:139;;38510:419;;;:::o;38935:241::-;39075:34;39071:1;39063:6;39059:14;39052:58;39144:24;39139:2;39131:6;39127:15;39120:49;38935:241;:::o;39182:366::-;39324:3;39345:67;39409:2;39404:3;39345:67;:::i;:::-;39338:74;;39421:93;39510:3;39421:93;:::i;:::-;39539:2;39534:3;39530:12;39523:19;;39182:366;;;:::o;39554:419::-;39720:4;39758:2;39747:9;39743:18;39735:26;;39807:9;39801:4;39797:20;39793:1;39782:9;39778:17;39771:47;39835:131;39961:4;39835:131;:::i;:::-;39827:139;;39554:419;;;:::o;39979:191::-;40019:4;40039:20;40057:1;40039:20;:::i;:::-;40034:25;;40073:20;40091:1;40073:20;:::i;:::-;40068:25;;40112:1;40109;40106:8;40103:34;;;40117:18;;:::i;:::-;40103:34;40162:1;40159;40155:9;40147:17;;39979:191;;;;:::o;40176:225::-;40316:34;40312:1;40304:6;40300:14;40293:58;40385:8;40380:2;40372:6;40368:15;40361:33;40176:225;:::o;40407:366::-;40549:3;40570:67;40634:2;40629:3;40570:67;:::i;:::-;40563:74;;40646:93;40735:3;40646:93;:::i;:::-;40764:2;40759:3;40755:12;40748:19;;40407:366;;;:::o;40779:419::-;40945:4;40983:2;40972:9;40968:18;40960:26;;41032:9;41026:4;41022:20;41018:1;41007:9;41003:17;40996:47;41060:131;41186:4;41060:131;:::i;:::-;41052:139;;40779:419;;;:::o;41204:147::-;41305:11;41342:3;41327:18;;41204:147;;;;:::o;41357:114::-;;:::o;41477:398::-;41636:3;41657:83;41738:1;41733:3;41657:83;:::i;:::-;41650:90;;41749:93;41838:3;41749:93;:::i;:::-;41867:1;41862:3;41858:11;41851:18;;41477:398;;;:::o;41881:379::-;42065:3;42087:147;42230:3;42087:147;:::i;:::-;42080:154;;42251:3;42244:10;;41881:379;;;:::o;42266:442::-;42415:4;42453:2;42442:9;42438:18;42430:26;;42466:71;42534:1;42523:9;42519:17;42510:6;42466:71;:::i;:::-;42547:72;42615:2;42604:9;42600:18;42591:6;42547:72;:::i;:::-;42629;42697:2;42686:9;42682:18;42673:6;42629:72;:::i;:::-;42266:442;;;;;;:::o;42714:180::-;42762:77;42759:1;42752:88;42859:4;42856:1;42849:15;42883:4;42880:1;42873:15;42900:143;42957:5;42988:6;42982:13;42973:22;;43004:33;43031:5;43004:33;:::i;:::-;42900:143;;;;:::o;43049:351::-;43119:6;43168:2;43156:9;43147:7;43143:23;43139:32;43136:119;;;43174:79;;:::i;:::-;43136:119;43294:1;43319:64;43375:7;43366:6;43355:9;43351:22;43319:64;:::i;:::-;43309:74;;43265:128;43049:351;;;;:::o;43406:85::-;43451:7;43480:5;43469:16;;43406:85;;;:::o;43497:158::-;43555:9;43588:61;43606:42;43615:32;43641:5;43615:32;:::i;:::-;43606:42;:::i;:::-;43588:61;:::i;:::-;43575:74;;43497:158;;;:::o;43661:147::-;43756:45;43795:5;43756:45;:::i;:::-;43751:3;43744:58;43661:147;;:::o;43814:114::-;43881:6;43915:5;43909:12;43899:22;;43814:114;;;:::o;43934:184::-;44033:11;44067:6;44062:3;44055:19;44107:4;44102:3;44098:14;44083:29;;43934:184;;;;:::o;44124:132::-;44191:4;44214:3;44206:11;;44244:4;44239:3;44235:14;44227:22;;44124:132;;;:::o;44262:108::-;44339:24;44357:5;44339:24;:::i;:::-;44334:3;44327:37;44262:108;;:::o;44376:179::-;44445:10;44466:46;44508:3;44500:6;44466:46;:::i;:::-;44544:4;44539:3;44535:14;44521:28;;44376:179;;;;:::o;44561:113::-;44631:4;44663;44658:3;44654:14;44646:22;;44561:113;;;:::o;44710:732::-;44829:3;44858:54;44906:5;44858:54;:::i;:::-;44928:86;45007:6;45002:3;44928:86;:::i;:::-;44921:93;;45038:56;45088:5;45038:56;:::i;:::-;45117:7;45148:1;45133:284;45158:6;45155:1;45152:13;45133:284;;;45234:6;45228:13;45261:63;45320:3;45305:13;45261:63;:::i;:::-;45254:70;;45347:60;45400:6;45347:60;:::i;:::-;45337:70;;45193:224;45180:1;45177;45173:9;45168:14;;45133:284;;;45137:14;45433:3;45426:10;;44834:608;;;44710:732;;;;:::o;45448:831::-;45711:4;45749:3;45738:9;45734:19;45726:27;;45763:71;45831:1;45820:9;45816:17;45807:6;45763:71;:::i;:::-;45844:80;45920:2;45909:9;45905:18;45896:6;45844:80;:::i;:::-;45971:9;45965:4;45961:20;45956:2;45945:9;45941:18;45934:48;45999:108;46102:4;46093:6;45999:108;:::i;:::-;45991:116;;46117:72;46185:2;46174:9;46170:18;46161:6;46117:72;:::i;:::-;46199:73;46267:3;46256:9;46252:19;46243:6;46199:73;:::i;:::-;45448:831;;;;;;;;:::o;46285:807::-;46534:4;46572:3;46561:9;46557:19;46549:27;;46586:71;46654:1;46643:9;46639:17;46630:6;46586:71;:::i;:::-;46667:72;46735:2;46724:9;46720:18;46711:6;46667:72;:::i;:::-;46749:80;46825:2;46814:9;46810:18;46801:6;46749:80;:::i;:::-;46839;46915:2;46904:9;46900:18;46891:6;46839:80;:::i;:::-;46929:73;46997:3;46986:9;46982:19;46973:6;46929:73;:::i;:::-;47012;47080:3;47069:9;47065:19;47056:6;47012:73;:::i;:::-;46285:807;;;;;;;;;:::o;47098:663::-;47186:6;47194;47202;47251:2;47239:9;47230:7;47226:23;47222:32;47219:119;;;47257:79;;:::i;:::-;47219:119;47377:1;47402:64;47458:7;47449:6;47438:9;47434:22;47402:64;:::i;:::-;47392:74;;47348:128;47515:2;47541:64;47597:7;47588:6;47577:9;47573:22;47541:64;:::i;:::-;47531:74;;47486:129;47654:2;47680:64;47736:7;47727:6;47716:9;47712:22;47680:64;:::i;:::-;47670:74;;47625:129;47098:663;;;;;:::o

Swarm Source

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