ETH Price: $2,522.54 (+2.79%)
Gas: 0.66 Gwei

Token

Meow (MEOW)
 

Overview

Max Total Supply

100,000,000 MEOW

Holders

170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.749477914010332993 MEOW

Value
$0.00
0xa730feb3628c441e78a3b1dda12b4b9535bd48c0
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:
MEOW

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.13;

//  /\_/\
// ( o.o )
//  > ^ <
//
// ,---.    ,---.    .-''-.      ,-----.    .--.      .--. 
// |    \  /    |  .'_ _   \   .'  .-,  '.  |  |_     |  | 
// |  ,  \/  ,  | / ( ` )   ' / ,-.|  \ _ \ | _( )_   |  | 
// |  |\_   /|  |. (_ o _)  |;  \  '_ /  | :|(_ o _)  |  | 
// |  _( )_/ |  ||  (_,_)___||  _`,/ \ _/  || (_,_) \ |  | 
// | (_ o _) |  |'  \   .---.: (  '\_/ \   ;|  |/    \|  | 
// |  (_,_)  |  | \  `-'    / \ `"/  \  ) / |  '  /\  `  | 
// |  |      |  |  \       /   '. \_/``".'  |    /  \    | 
// '--'      '--'   `'-..-'      '-----'    `---'    `---` 
                                                        

//   [Website]         https://thetickerismeow.com/
//   [Twitter (x?)]    https://twitter.com/thetickerismeow
//   [Telegram]        https://t.me/thetickerismeow


// 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.13;

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


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

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


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




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


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 MEOW 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; // 25 = .25%
    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; // go live after adding LP
    bool public swapEnabled = true;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    
    /******************/

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

    // 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("Meow", "MEOW") {
        
        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 = 5;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 5;
        
        uint256 totalSupply = 100_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 enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    function updateMaxLimits(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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
    
    function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }
    
    function autoBurnLiquidityPairTokens() internal returns (bool){
        
        lastLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"updateMaxLimits","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"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600481526020017f4d656f77000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454f570000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013392919062000ab0565b5080600490805190602001906200014c92919062000ab0565b5050506200016f62000163620005e960201b60201c565b620005f160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b816001620006b760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000bca565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cf919062000bca565b6040518363ffffffff1660e01b8152600401620002ee92919062000c0d565b6020604051808303816000875af11580156200030e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000334919062000bca565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037c60a0516001620006b760201b60201c565b6200039160a05160016200072260201b60201c565b60008060006005905060008060006005905060006a52b7d2dcc80cd2e400000090506064600182620003c4919062000c73565b620003d0919062000d03565b6008819055506064600182620003e7919062000c73565b620003f3919062000d03565b600a819055506127106001826200040b919062000c73565b62000417919062000d03565b60098190555086601581905550856016819055508460178190555060175460165460155462000447919062000d3b565b62000453919062000d3b565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000483919062000d3b565b6200048f919062000d3b565b601881905550620004a5620007c360201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f5620007c360201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200055762000549620007c360201b60201c565b6001620007ed60201b60201c565b6200056a306001620007ed60201b60201c565b6200057f61dead6001620007ed60201b60201c565b620005a162000593620007c360201b60201c565b6001620006b760201b60201c565b620005b4306001620006b760201b60201c565b620005c961dead6001620006b760201b60201c565b620005db3382620008a860201b60201c565b505050505050505062000f59565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006c762000a1560201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007fd62000a1560201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200089c919062000db5565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200091a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009119062000e33565b60405180910390fd5b6200092e6000838362000aa660201b60201c565b806002600082825462000942919062000d3b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009f5919062000e66565b60405180910390a362000a116000838362000aab60201b60201c565b5050565b62000a25620005e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a4b620007c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000aa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9b9062000ed3565b60405180910390fd5b565b505050565b505050565b82805462000abe9062000f24565b90600052602060002090601f01602090048101928262000ae2576000855562000b2e565b82601f1062000afd57805160ff191683800117855562000b2e565b8280016001018555821562000b2e579182015b8281111562000b2d57825182559160200191906001019062000b10565b5b50905062000b3d919062000b41565b5090565b5b8082111562000b5c57600081600090555060010162000b42565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b928262000b65565b9050919050565b62000ba48162000b85565b811462000bb057600080fd5b50565b60008151905062000bc48162000b99565b92915050565b60006020828403121562000be35762000be262000b60565b5b600062000bf38482850162000bb3565b91505092915050565b62000c078162000b85565b82525050565b600060408201905062000c24600083018562000bfc565b62000c33602083018462000bfc565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c808262000c3a565b915062000c8d8362000c3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cc95762000cc862000c44565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d108262000c3a565b915062000d1d8362000c3a565b92508262000d305762000d2f62000cd4565b5b828204905092915050565b600062000d488262000c3a565b915062000d558362000c3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d8d5762000d8c62000c44565b5b828201905092915050565b60008115159050919050565b62000daf8162000d98565b82525050565b600060208201905062000dcc600083018462000da4565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e1b601f8362000dd2565b915062000e288262000de3565b602082019050919050565b6000602082019050818103600083015262000e4e8162000e0c565b9050919050565b62000e608162000c3a565b82525050565b600060208201905062000e7d600083018462000e55565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ebb60208362000dd2565b915062000ec88262000e83565b602082019050919050565b6000602082019050818103600083015262000eee8162000eac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f3d57607f821691505b60208210810362000f535762000f5262000ef5565b5b50919050565b60805160a0516159a362000fe1600039600081816113bc0152818161182c0152818161213e015281816121f50152818161222201528181612a4e01528181613b4701528181613c000152613c2d015260008181611165015281816129f601528181613da301528181613e8401528181613eab01528181613f470152613f6e01526159a36000f3fe6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140b6565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190614176565b611035565b60405161044891906141d1565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906141ec565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c919061422c565b611144565b6040516104ae91906141d1565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142b8565b60405180910390f35b3480156104ee57600080fd5b506105096004803603810190610504919061422c565b611187565b60405161051691906141d1565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b60405161054191906142e2565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c919061422c565b6111b1565b005b34801561057f57600080fd5b50610588611279565b60405161059591906142e2565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c091906142e2565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb91906142e2565b60405180910390f35b34801561060057600080fd5b5061060961128b565b60405161061691906142e2565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906142fd565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061432a565b61132c565b60405161067c91906141d1565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a7919061438c565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d291906142e2565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd91906141d1565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b60405161072891906143c3565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190614176565b611383565b60405161076591906141d1565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b604051610790919061438c565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb91906141d1565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e6919061422c565b6113f1565b6040516107f891906141d1565b60405180910390f35b34801561080d57600080fd5b50610816611447565b60405161082391906142e2565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e91906141d1565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061422c565b611460565b60405161088b91906142e2565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061440a565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f691906141d1565b60405180910390f35b34801561090b57600080fd5b506109266004803603810190610921919061445d565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a919061438c565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b60405161097591906142e2565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061449d565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e0919061438c565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b919061438c565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a3691906142e2565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a6191906144f0565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140b6565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab5919061445d565b611822565b005b348015610ac857600080fd5b50610ad16118c6565b604051610ade91906142e2565b60405180910390f35b348015610af357600080fd5b50610afc6118cc565b604051610b0991906142e2565b60405180910390f35b348015610b1e57600080fd5b50610b276118d2565b604051610b3491906142e2565b60405180910390f35b348015610b4957600080fd5b50610b526118d8565b604051610b5f91906142e2565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190614176565b6118de565b604051610b9c91906141d1565b60405180910390f35b348015610bb157600080fd5b50610bba611955565b604051610bc791906142e2565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf29190614176565b61195b565b604051610c0491906141d1565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f919061422c565b61197e565b005b348015610c4257600080fd5b50610c5d6004803603810190610c58919061422c565b611a46565b604051610c6a91906141d1565b60405180910390f35b348015610c7f57600080fd5b50610c88611a66565b604051610c9591906141d1565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061445d565b611a79565b005b348015610cd357600080fd5b50610cee6004803603810190610ce9919061449d565b611b2a565b005b348015610cfc57600080fd5b50610d176004803603810190610d1291906142fd565b611bb5565b005b348015610d2557600080fd5b50610d2e611c50565b604051610d3b91906141d1565b60405180910390f35b348015610d5057600080fd5b50610d59611c63565b604051610d6691906142e2565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d919190614582565b611c69565b005b348015610da457600080fd5b50610dbf6004803603810190610dba91906142fd565b611d16565b604051610dcc91906141d1565b60405180910390f35b348015610de157600080fd5b50610dea611df7565b604051610df791906142e2565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e2291906145e2565b611dfd565b604051610e3491906142e2565b60405180910390f35b348015610e4957600080fd5b50610e52611e84565b604051610e5f91906142e2565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8a565b604051610e8a91906141d1565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb6565b604051610eb591906142e2565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee0919061422c565b611ebc565b005b348015610ef357600080fd5b50610f0e6004803603810190610f0991906141ec565b611f3f565b005b348015610f1c57600080fd5b50610f2561206b565b604051610f3291906142e2565b60405180910390f35b348015610f4757600080fd5b50610f50612071565b604051610f5d91906142e2565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f8891906142fd565b612077565b604051610f9a91906141d1565b60405180910390f35b606060038054610fb290614651565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614651565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122db565b905061104d8185856122e3565b600191505092915050565b6110606124ac565b80601b8190555081601781905550601b54601a5460195461108191906146b1565b61108b91906146b1565b6018819055506017546016546015546110a491906146b1565b6110ae91906146b1565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614753565b60405180910390fd5b60636018541115611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906147bf565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124ac565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124ac565b670de0b6b3a76400006103e860016112af6111a7565b6112b991906147df565b6112c39190614868565b6112cd9190614868565b81101561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061490b565b60405180910390fd5b670de0b6b3a76400008161132391906147df565b60088190555050565b6000806113376122db565b905061134485828561252a565b61134f8585856125b6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122db565b90506113af8185856113a08589611dfd565b6113aa91906146b1565b6122e3565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124ac565b6114ba600061342e565b565b6114c46124ac565b610258831015611509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115009061499d565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a2f565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124ac565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124ac565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124ac565b82601581905550816016819055508060178190555060175460165460155461167391906146b1565b61167d91906146b1565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614753565b60405180910390fd5b505050565b6116d66124ac565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124ac565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614651565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614651565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124ac565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614ac1565b60405180910390fd5b6118c282826134f4565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118e96122db565b905060006118f78286611dfd565b90508381101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614b53565b60405180910390fd5b61194982868684036122e3565b60019250505092915050565b600e5481565b6000806119666122db565b90506119738185856125b6565b600191505092915050565b6119866124ac565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a816124ac565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1e91906141d1565b60405180910390a25050565b611b326124ac565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5a91906146b1565b611b6491906146b1565b60188190555060636018541115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906147bf565b60405180910390fd5b505050565b611bbd6124ac565b670de0b6b3a76400006103e86005611bd36111a7565b611bdd91906147df565b611be79190614868565b611bf19190614868565b811015611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614be5565b60405180910390fd5b670de0b6b3a764000081611c4791906147df565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c716124ac565b60005b83839050811015611d10578160216000868685818110611c9757611c96614c05565b5b9050602002016020810190611cac919061422c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0890614c34565b915050611c74565b50505050565b6000611d206124ac565b620186a06001611d2e6111a7565b611d3891906147df565b611d429190614868565b821015611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90614cee565b60405180910390fd5b6103e8600a611d916111a7565b611d9b91906147df565b611da59190614868565b821115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614d80565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e946124ac565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec46124ac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614e12565b60405180910390fd5b611f3c8161342e565b50565b611f476124ac565b670de0b6b3a76400006103e86001611f5d6111a7565b611f6791906147df565b611f719190614868565b611f7b9190614868565b821015611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb49061490b565b60405180910390fd5b670de0b6b3a764000082611fd191906147df565b600881905550670de0b6b3a76400006103e86005611fed6111a7565b611ff791906147df565b6120019190614868565b61200b9190614868565b81101561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614be5565b60405180910390fd5b670de0b6b3a76400008161206191906147df565b600a819055505050565b601a5481565b600a5481565b60006120816124ac565b600f5460105461209191906146b1565b42116120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990614e7e565b60405180910390fd5b6103e8821115612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90614f10565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401612179919061438c565b602060405180830381865afa158015612196573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ba9190614f45565b905060006121e56127106121d7868561359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600081111561221e5761221d7f000000000000000000000000000000000000000000000000000000000000000061dead836135c1565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561228b57600080fd5b505af115801561229f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b890615076565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161249f91906142e2565b60405180910390a3505050565b6124b46122db565b73ffffffffffffffffffffffffffffffffffffffff166124d2611715565b73ffffffffffffffffffffffffffffffffffffffff1614612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f906150e2565b60405180910390fd5b565b60006125368484611dfd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125b057818110156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061514e565b60405180910390fd5b6125af84848484036122e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906151e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90615272565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156127385750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e906152de565b60405180910390fd5b600081036127905761278b838360006135c1565b613429565b601160009054906101000a900460ff1615612e53576127ad611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561281b57506127eb611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128545750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a75750600560149054906101000a900460ff16155b15612e5257601160019054906101000a900460ff166129a157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129615750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129979061534a565b60405180910390fd5b5b601360009054906101000a900460ff1615612b69576129be611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a4557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a9d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b685743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90615402565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c0c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cb357600854811115612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90615494565b60405180910390fd5b600a54612c6283611460565b82612c6d91906146b1565b1115612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca590615500565b60405180910390fd5b612e51565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d565750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da557600854811115612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790615592565b60405180910390fd5b612e50565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e4f57600a54612e0283611460565b82612e0d91906146b1565b1115612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4590615500565b60405180910390fd5b5b5b5b5b5b6000612e5e30611460565b905060006009548210159050808015612e835750601160029054906101000a900460ff165b8015612e9c5750600560149054906101000a900460ff16155b8015612ef25750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f485750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f9e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe2576001600560146101000a81548160ff021916908315150217905550612fc6613837565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156130485750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130605750600c60009054906101000a900460ff165b801561307b5750600d54600e5461307791906146b1565b4210155b80156130d15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130e0576130de613b1e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131965750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131a057600090505b6000811561341957602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561320357506000601854115b156132d05761323060646132226018548861359590919063ffffffff16565b6135ab90919063ffffffff16565b9050601854601a548261324391906147df565b61324d9190614868565b601d600082825461325e91906146b1565b92505081905550601854601b548261327691906147df565b6132809190614868565b601e600082825461329191906146b1565b92505081905550601854601954826132a991906147df565b6132b39190614868565b601c60008282546132c491906146b1565b925050819055506133f5565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332b57506000601454115b156133f457613358606461334a6014548861359590919063ffffffff16565b6135ab90919063ffffffff16565b90506014546016548261336b91906147df565b6133759190614868565b601d600082825461338691906146b1565b925050819055506014546017548261339e91906147df565b6133a89190614868565b601e60008282546133b991906146b1565b92505081905550601454601554826133d191906147df565b6133db9190614868565b601c60008282546133ec91906146b1565b925050819055505b5b600081111561340a576134098730836135c1565b5b808561341691906155b2565b94505b6134248787876135c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135a391906147df565b905092915050565b600081836135b99190614868565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613627906151e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361369f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369690615272565b60405180910390fd5b6136aa838383613ce4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372790615658565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161381e91906142e2565b60405180910390a3613831848484613ce9565b50505050565b600061384230611460565b90506000601e54601c54601d5461385991906146b1565b61386391906146b1565b90506000808314806138755750600082145b1561388257505050613b1c565b601460095461389191906147df565b8311156138aa5760146009546138a791906147df565b92505b6000600283601d54866138bd91906147df565b6138c79190614868565b6138d19190614868565b905060006138e88286613cee90919063ffffffff16565b905060004790506138f882613d04565b600061390d8247613cee90919063ffffffff16565b905060006139388761392a601c548561359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600061396388613955601e548661359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600081838561397491906155b2565b61397e91906155b2565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139de906156a9565b60006040518083038185875af1925050503d8060008114613a1b576040519150601f19603f3d011682016040523d82523d6000602084013e613a20565b606091505b505080985050600087118015613a365750600081115b15613a8357613a458782613f41565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a7a939291906156be565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ac9906156a9565b60006040518083038185875af1925050503d8060008114613b06576040519150601f19603f3d011682016040523d82523d6000602084013e613b0b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613b82919061438c565b602060405180830381865afa158015613b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc39190614f45565b90506000613bf0612710613be2600b548561359590919063ffffffff16565b6135ab90919063ffffffff16565b90506000811115613c2957613c287f000000000000000000000000000000000000000000000000000000000000000061dead836135c1565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613c9657600080fd5b505af1158015613caa573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613cfc91906155b2565b905092915050565b6000600267ffffffffffffffff811115613d2157613d206156f5565b5b604051908082528060200260200182016040528015613d4f5781602001602082028036833780820191505090505b5090503081600081518110613d6757613d66614c05565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e309190615739565b81600181518110613e4457613e43614c05565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea9307f0000000000000000000000000000000000000000000000000000000000000000846122e3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0b95949392919061585f565b600060405180830381600087803b158015613f2557600080fd5b505af1158015613f39573d6000803e3d6000fd5b505050505050565b613f6c307f0000000000000000000000000000000000000000000000000000000000000000846122e3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613fd3969594939291906158b9565b60606040518083038185885af1158015613ff1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614016919061591a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561405757808201518184015260208101905061403c565b83811115614066576000848401525b50505050565b6000601f19601f8301169050919050565b60006140888261401d565b6140928185614028565b93506140a2818560208601614039565b6140ab8161406c565b840191505092915050565b600060208201905081810360008301526140d0818461407d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061410d826140e2565b9050919050565b61411d81614102565b811461412857600080fd5b50565b60008135905061413a81614114565b92915050565b6000819050919050565b61415381614140565b811461415e57600080fd5b50565b6000813590506141708161414a565b92915050565b6000806040838503121561418d5761418c6140d8565b5b600061419b8582860161412b565b92505060206141ac85828601614161565b9150509250929050565b60008115159050919050565b6141cb816141b6565b82525050565b60006020820190506141e660008301846141c2565b92915050565b60008060408385031215614203576142026140d8565b5b600061421185828601614161565b925050602061422285828601614161565b9150509250929050565b600060208284031215614242576142416140d8565b5b60006142508482850161412b565b91505092915050565b6000819050919050565b600061427e614279614274846140e2565b614259565b6140e2565b9050919050565b600061429082614263565b9050919050565b60006142a282614285565b9050919050565b6142b281614297565b82525050565b60006020820190506142cd60008301846142a9565b92915050565b6142dc81614140565b82525050565b60006020820190506142f760008301846142d3565b92915050565b600060208284031215614313576143126140d8565b5b600061432184828501614161565b91505092915050565b600080600060608486031215614343576143426140d8565b5b60006143518682870161412b565b93505060206143628682870161412b565b925050604061437386828701614161565b9150509250925092565b61438681614102565b82525050565b60006020820190506143a1600083018461437d565b92915050565b600060ff82169050919050565b6143bd816143a7565b82525050565b60006020820190506143d860008301846143b4565b92915050565b6143e7816141b6565b81146143f257600080fd5b50565b600081359050614404816143de565b92915050565b600080600060608486031215614423576144226140d8565b5b600061443186828701614161565b935050602061444286828701614161565b9250506040614453868287016143f5565b9150509250925092565b60008060408385031215614474576144736140d8565b5b60006144828582860161412b565b9250506020614493858286016143f5565b9150509250929050565b6000806000606084860312156144b6576144b56140d8565b5b60006144c486828701614161565b93505060206144d586828701614161565b92505060406144e686828701614161565b9150509250925092565b600060208284031215614506576145056140d8565b5b6000614514848285016143f5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145425761454161451d565b5b8235905067ffffffffffffffff81111561455f5761455e614522565b5b60208301915083602082028301111561457b5761457a614527565b5b9250929050565b60008060006040848603121561459b5761459a6140d8565b5b600084013567ffffffffffffffff8111156145b9576145b86140dd565b5b6145c58682870161452c565b935093505060206145d8868287016143f5565b9150509250925092565b600080604083850312156145f9576145f86140d8565b5b60006146078582860161412b565b92505060206146188582860161412b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061466957607f821691505b60208210810361467c5761467b614622565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146bc82614140565b91506146c783614140565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146fc576146fb614682565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061473d601d83614028565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147a9601d83614028565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b60006147ea82614140565b91506147f583614140565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561482e5761482d614682565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061487382614140565b915061487e83614140565b92508261488e5761488d614839565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148f5602f83614028565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614987603383614028565b91506149928261492b565b604082019050919050565b600060208201905081810360008301526149b68161497a565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a19603083614028565b9150614a24826149bd565b604082019050919050565b60006020820190508181036000830152614a4881614a0c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614aab603983614028565b9150614ab682614a4f565b604082019050919050565b60006020820190508181036000830152614ada81614a9e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b3d602583614028565b9150614b4882614ae1565b604082019050919050565b60006020820190508181036000830152614b6c81614b30565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614bcf602483614028565b9150614bda82614b73565b604082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c3f82614140565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c7157614c70614682565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614cd8603583614028565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614d6a603283614028565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602683614028565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614e68602083614028565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614efa602a83614028565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b600081519050614f3f8161414a565b92915050565b600060208284031215614f5b57614f5a6140d8565b5b6000614f6984828501614f30565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fce602483614028565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615060602283614028565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150cc602083614028565b91506150d782615096565b602082019050919050565b600060208201905081810360008301526150fb816150bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615138601d83614028565b915061514382615102565b602082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151ca602583614028565b91506151d58261516e565b604082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061525c602383614028565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006152c8600b83614028565b91506152d382615292565b602082019050919050565b600060208201905081810360008301526152f7816152bb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615334601683614028565b915061533f826152fe565b602082019050919050565b6000602082019050818103600083015261536381615327565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153ec604983614028565b91506153f78261536a565b606082019050919050565b6000602082019050818103600083015261541b816153df565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061547e603583614028565b915061548982615422565b604082019050919050565b600060208201905081810360008301526154ad81615471565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154ea601383614028565b91506154f5826154b4565b602082019050919050565b60006020820190508181036000830152615519816154dd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061557c603683614028565b915061558782615520565b604082019050919050565b600060208201905081810360008301526155ab8161556f565b9050919050565b60006155bd82614140565b91506155c883614140565b9250828210156155db576155da614682565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615642602683614028565b915061564d826155e6565b604082019050919050565b6000602082019050818103600083015261567181615635565b9050919050565b600081905092915050565b50565b6000615693600083615678565b915061569e82615683565b600082019050919050565b60006156b482615686565b9150819050919050565b60006060820190506156d360008301866142d3565b6156e060208301856142d3565b6156ed60408301846142d3565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061573381614114565b92915050565b60006020828403121561574f5761574e6140d8565b5b600061575d84828501615724565b91505092915050565b6000819050919050565b600061578b61578661578184615766565b614259565b614140565b9050919050565b61579b81615770565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157d681614102565b82525050565b60006157e883836157cd565b60208301905092915050565b6000602082019050919050565b600061580c826157a1565b61581681856157ac565b9350615821836157bd565b8060005b8381101561585257815161583988826157dc565b9750615844836157f4565b925050600181019050615825565b5085935050505092915050565b600060a08201905061587460008301886142d3565b6158816020830187615792565b81810360408301526158938186615801565b90506158a2606083018561437d565b6158af60808301846142d3565b9695505050505050565b600060c0820190506158ce600083018961437d565b6158db60208301886142d3565b6158e86040830187615792565b6158f56060830186615792565b615902608083018561437d565b61590f60a08301846142d3565b979650505050505050565b600080600060608486031215615933576159326140d8565b5b600061594186828701614f30565b935050602061595286828701614f30565b925050604061596386828701614f30565b915050925092509256fea2646970667358221220ac539737487495bfb355178c7c583bcd430ff8ea690279ee1ca38d94a4c147f664736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140b6565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190614176565b611035565b60405161044891906141d1565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906141ec565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c919061422c565b611144565b6040516104ae91906141d1565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142b8565b60405180910390f35b3480156104ee57600080fd5b506105096004803603810190610504919061422c565b611187565b60405161051691906141d1565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b60405161054191906142e2565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c919061422c565b6111b1565b005b34801561057f57600080fd5b50610588611279565b60405161059591906142e2565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c091906142e2565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb91906142e2565b60405180910390f35b34801561060057600080fd5b5061060961128b565b60405161061691906142e2565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906142fd565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061432a565b61132c565b60405161067c91906141d1565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a7919061438c565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d291906142e2565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd91906141d1565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b60405161072891906143c3565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190614176565b611383565b60405161076591906141d1565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b604051610790919061438c565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb91906141d1565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e6919061422c565b6113f1565b6040516107f891906141d1565b60405180910390f35b34801561080d57600080fd5b50610816611447565b60405161082391906142e2565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e91906141d1565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061422c565b611460565b60405161088b91906142e2565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061440a565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f691906141d1565b60405180910390f35b34801561090b57600080fd5b506109266004803603810190610921919061445d565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a919061438c565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b60405161097591906142e2565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061449d565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e0919061438c565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b919061438c565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a3691906142e2565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a6191906144f0565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140b6565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab5919061445d565b611822565b005b348015610ac857600080fd5b50610ad16118c6565b604051610ade91906142e2565b60405180910390f35b348015610af357600080fd5b50610afc6118cc565b604051610b0991906142e2565b60405180910390f35b348015610b1e57600080fd5b50610b276118d2565b604051610b3491906142e2565b60405180910390f35b348015610b4957600080fd5b50610b526118d8565b604051610b5f91906142e2565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190614176565b6118de565b604051610b9c91906141d1565b60405180910390f35b348015610bb157600080fd5b50610bba611955565b604051610bc791906142e2565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf29190614176565b61195b565b604051610c0491906141d1565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f919061422c565b61197e565b005b348015610c4257600080fd5b50610c5d6004803603810190610c58919061422c565b611a46565b604051610c6a91906141d1565b60405180910390f35b348015610c7f57600080fd5b50610c88611a66565b604051610c9591906141d1565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061445d565b611a79565b005b348015610cd357600080fd5b50610cee6004803603810190610ce9919061449d565b611b2a565b005b348015610cfc57600080fd5b50610d176004803603810190610d1291906142fd565b611bb5565b005b348015610d2557600080fd5b50610d2e611c50565b604051610d3b91906141d1565b60405180910390f35b348015610d5057600080fd5b50610d59611c63565b604051610d6691906142e2565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d919190614582565b611c69565b005b348015610da457600080fd5b50610dbf6004803603810190610dba91906142fd565b611d16565b604051610dcc91906141d1565b60405180910390f35b348015610de157600080fd5b50610dea611df7565b604051610df791906142e2565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e2291906145e2565b611dfd565b604051610e3491906142e2565b60405180910390f35b348015610e4957600080fd5b50610e52611e84565b604051610e5f91906142e2565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8a565b604051610e8a91906141d1565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb6565b604051610eb591906142e2565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee0919061422c565b611ebc565b005b348015610ef357600080fd5b50610f0e6004803603810190610f0991906141ec565b611f3f565b005b348015610f1c57600080fd5b50610f2561206b565b604051610f3291906142e2565b60405180910390f35b348015610f4757600080fd5b50610f50612071565b604051610f5d91906142e2565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f8891906142fd565b612077565b604051610f9a91906141d1565b60405180910390f35b606060038054610fb290614651565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614651565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122db565b905061104d8185856122e3565b600191505092915050565b6110606124ac565b80601b8190555081601781905550601b54601a5460195461108191906146b1565b61108b91906146b1565b6018819055506017546016546015546110a491906146b1565b6110ae91906146b1565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614753565b60405180910390fd5b60636018541115611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906147bf565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124ac565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124ac565b670de0b6b3a76400006103e860016112af6111a7565b6112b991906147df565b6112c39190614868565b6112cd9190614868565b81101561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061490b565b60405180910390fd5b670de0b6b3a76400008161132391906147df565b60088190555050565b6000806113376122db565b905061134485828561252a565b61134f8585856125b6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122db565b90506113af8185856113a08589611dfd565b6113aa91906146b1565b6122e3565b600191505092915050565b7f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260781565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124ac565b6114ba600061342e565b565b6114c46124ac565b610258831015611509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115009061499d565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a2f565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124ac565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124ac565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124ac565b82601581905550816016819055508060178190555060175460165460155461167391906146b1565b61167d91906146b1565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614753565b60405180910390fd5b505050565b6116d66124ac565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124ac565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614651565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614651565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124ac565b7f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614ac1565b60405180910390fd5b6118c282826134f4565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118e96122db565b905060006118f78286611dfd565b90508381101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614b53565b60405180910390fd5b61194982868684036122e3565b60019250505092915050565b600e5481565b6000806119666122db565b90506119738185856125b6565b600191505092915050565b6119866124ac565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a816124ac565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1e91906141d1565b60405180910390a25050565b611b326124ac565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5a91906146b1565b611b6491906146b1565b60188190555060636018541115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906147bf565b60405180910390fd5b505050565b611bbd6124ac565b670de0b6b3a76400006103e86005611bd36111a7565b611bdd91906147df565b611be79190614868565b611bf19190614868565b811015611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614be5565b60405180910390fd5b670de0b6b3a764000081611c4791906147df565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c716124ac565b60005b83839050811015611d10578160216000868685818110611c9757611c96614c05565b5b9050602002016020810190611cac919061422c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0890614c34565b915050611c74565b50505050565b6000611d206124ac565b620186a06001611d2e6111a7565b611d3891906147df565b611d429190614868565b821015611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90614cee565b60405180910390fd5b6103e8600a611d916111a7565b611d9b91906147df565b611da59190614868565b821115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614d80565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e946124ac565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec46124ac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614e12565b60405180910390fd5b611f3c8161342e565b50565b611f476124ac565b670de0b6b3a76400006103e86001611f5d6111a7565b611f6791906147df565b611f719190614868565b611f7b9190614868565b821015611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb49061490b565b60405180910390fd5b670de0b6b3a764000082611fd191906147df565b600881905550670de0b6b3a76400006103e86005611fed6111a7565b611ff791906147df565b6120019190614868565b61200b9190614868565b81101561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614be5565b60405180910390fd5b670de0b6b3a76400008161206191906147df565b600a819055505050565b601a5481565b600a5481565b60006120816124ac565b600f5460105461209191906146b1565b42116120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990614e7e565b60405180910390fd5b6103e8821115612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90614f10565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f2826076040518263ffffffff1660e01b8152600401612179919061438c565b602060405180830381865afa158015612196573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ba9190614f45565b905060006121e56127106121d7868561359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600081111561221e5761221d7f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260761dead836135c1565b5b60007f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561228b57600080fd5b505af115801561229f573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b890615076565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161249f91906142e2565b60405180910390a3505050565b6124b46122db565b73ffffffffffffffffffffffffffffffffffffffff166124d2611715565b73ffffffffffffffffffffffffffffffffffffffff1614612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f906150e2565b60405180910390fd5b565b60006125368484611dfd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125b057818110156125a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125999061514e565b60405180910390fd5b6125af84848484036122e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906151e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90615272565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156127385750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e906152de565b60405180910390fd5b600081036127905761278b838360006135c1565b613429565b601160009054906101000a900460ff1615612e53576127ad611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561281b57506127eb611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128545750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a75750600560149054906101000a900460ff16155b15612e5257601160019054906101000a900460ff166129a157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129615750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129979061534a565b60405180910390fd5b5b601360009054906101000a900460ff1615612b69576129be611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a4557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a9d57507f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b685743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90615402565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c0c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cb357600854811115612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90615494565b60405180910390fd5b600a54612c6283611460565b82612c6d91906146b1565b1115612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca590615500565b60405180910390fd5b612e51565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d565750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da557600854811115612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790615592565b60405180910390fd5b612e50565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e4f57600a54612e0283611460565b82612e0d91906146b1565b1115612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4590615500565b60405180910390fd5b5b5b5b5b5b6000612e5e30611460565b905060006009548210159050808015612e835750601160029054906101000a900460ff165b8015612e9c5750600560149054906101000a900460ff16155b8015612ef25750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f485750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f9e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe2576001600560146101000a81548160ff021916908315150217905550612fc6613837565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156130485750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130605750600c60009054906101000a900460ff165b801561307b5750600d54600e5461307791906146b1565b4210155b80156130d15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130e0576130de613b1e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131965750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131a057600090505b6000811561341957602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561320357506000601854115b156132d05761323060646132226018548861359590919063ffffffff16565b6135ab90919063ffffffff16565b9050601854601a548261324391906147df565b61324d9190614868565b601d600082825461325e91906146b1565b92505081905550601854601b548261327691906147df565b6132809190614868565b601e600082825461329191906146b1565b92505081905550601854601954826132a991906147df565b6132b39190614868565b601c60008282546132c491906146b1565b925050819055506133f5565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332b57506000601454115b156133f457613358606461334a6014548861359590919063ffffffff16565b6135ab90919063ffffffff16565b90506014546016548261336b91906147df565b6133759190614868565b601d600082825461338691906146b1565b925050819055506014546017548261339e91906147df565b6133a89190614868565b601e60008282546133b991906146b1565b92505081905550601454601554826133d191906147df565b6133db9190614868565b601c60008282546133ec91906146b1565b925050819055505b5b600081111561340a576134098730836135c1565b5b808561341691906155b2565b94505b6134248787876135c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135a391906147df565b905092915050565b600081836135b99190614868565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613627906151e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361369f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369690615272565b60405180910390fd5b6136aa838383613ce4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372790615658565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161381e91906142e2565b60405180910390a3613831848484613ce9565b50505050565b600061384230611460565b90506000601e54601c54601d5461385991906146b1565b61386391906146b1565b90506000808314806138755750600082145b1561388257505050613b1c565b601460095461389191906147df565b8311156138aa5760146009546138a791906147df565b92505b6000600283601d54866138bd91906147df565b6138c79190614868565b6138d19190614868565b905060006138e88286613cee90919063ffffffff16565b905060004790506138f882613d04565b600061390d8247613cee90919063ffffffff16565b905060006139388761392a601c548561359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600061396388613955601e548661359590919063ffffffff16565b6135ab90919063ffffffff16565b9050600081838561397491906155b2565b61397e91906155b2565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139de906156a9565b60006040518083038185875af1925050503d8060008114613a1b576040519150601f19603f3d011682016040523d82523d6000602084013e613a20565b606091505b505080985050600087118015613a365750600081115b15613a8357613a458782613f41565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a7a939291906156be565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ac9906156a9565b60006040518083038185875af1925050503d8060008114613b06576040519150601f19603f3d011682016040523d82523d6000602084013e613b0b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f2826076040518263ffffffff1660e01b8152600401613b82919061438c565b602060405180830381865afa158015613b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc39190614f45565b90506000613bf0612710613be2600b548561359590919063ffffffff16565b6135ab90919063ffffffff16565b90506000811115613c2957613c287f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260761dead836135c1565b5b60007f0000000000000000000000006ea6de616a73e1f4f18fdbe0ea28e1041f28260790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613c9657600080fd5b505af1158015613caa573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613cfc91906155b2565b905092915050565b6000600267ffffffffffffffff811115613d2157613d206156f5565b5b604051908082528060200260200182016040528015613d4f5781602001602082028036833780820191505090505b5090503081600081518110613d6757613d66614c05565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e309190615739565b81600181518110613e4457613e43614c05565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122e3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0b95949392919061585f565b600060405180830381600087803b158015613f2557600080fd5b505af1158015613f39573d6000803e3d6000fd5b505050505050565b613f6c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122e3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613fd3969594939291906158b9565b60606040518083038185885af1158015613ff1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614016919061591a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561405757808201518184015260208101905061403c565b83811115614066576000848401525b50505050565b6000601f19601f8301169050919050565b60006140888261401d565b6140928185614028565b93506140a2818560208601614039565b6140ab8161406c565b840191505092915050565b600060208201905081810360008301526140d0818461407d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061410d826140e2565b9050919050565b61411d81614102565b811461412857600080fd5b50565b60008135905061413a81614114565b92915050565b6000819050919050565b61415381614140565b811461415e57600080fd5b50565b6000813590506141708161414a565b92915050565b6000806040838503121561418d5761418c6140d8565b5b600061419b8582860161412b565b92505060206141ac85828601614161565b9150509250929050565b60008115159050919050565b6141cb816141b6565b82525050565b60006020820190506141e660008301846141c2565b92915050565b60008060408385031215614203576142026140d8565b5b600061421185828601614161565b925050602061422285828601614161565b9150509250929050565b600060208284031215614242576142416140d8565b5b60006142508482850161412b565b91505092915050565b6000819050919050565b600061427e614279614274846140e2565b614259565b6140e2565b9050919050565b600061429082614263565b9050919050565b60006142a282614285565b9050919050565b6142b281614297565b82525050565b60006020820190506142cd60008301846142a9565b92915050565b6142dc81614140565b82525050565b60006020820190506142f760008301846142d3565b92915050565b600060208284031215614313576143126140d8565b5b600061432184828501614161565b91505092915050565b600080600060608486031215614343576143426140d8565b5b60006143518682870161412b565b93505060206143628682870161412b565b925050604061437386828701614161565b9150509250925092565b61438681614102565b82525050565b60006020820190506143a1600083018461437d565b92915050565b600060ff82169050919050565b6143bd816143a7565b82525050565b60006020820190506143d860008301846143b4565b92915050565b6143e7816141b6565b81146143f257600080fd5b50565b600081359050614404816143de565b92915050565b600080600060608486031215614423576144226140d8565b5b600061443186828701614161565b935050602061444286828701614161565b9250506040614453868287016143f5565b9150509250925092565b60008060408385031215614474576144736140d8565b5b60006144828582860161412b565b9250506020614493858286016143f5565b9150509250929050565b6000806000606084860312156144b6576144b56140d8565b5b60006144c486828701614161565b93505060206144d586828701614161565b92505060406144e686828701614161565b9150509250925092565b600060208284031215614506576145056140d8565b5b6000614514848285016143f5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145425761454161451d565b5b8235905067ffffffffffffffff81111561455f5761455e614522565b5b60208301915083602082028301111561457b5761457a614527565b5b9250929050565b60008060006040848603121561459b5761459a6140d8565b5b600084013567ffffffffffffffff8111156145b9576145b86140dd565b5b6145c58682870161452c565b935093505060206145d8868287016143f5565b9150509250925092565b600080604083850312156145f9576145f86140d8565b5b60006146078582860161412b565b92505060206146188582860161412b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061466957607f821691505b60208210810361467c5761467b614622565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146bc82614140565b91506146c783614140565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146fc576146fb614682565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061473d601d83614028565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147a9601d83614028565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b60006147ea82614140565b91506147f583614140565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561482e5761482d614682565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061487382614140565b915061487e83614140565b92508261488e5761488d614839565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148f5602f83614028565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614987603383614028565b91506149928261492b565b604082019050919050565b600060208201905081810360008301526149b68161497a565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a19603083614028565b9150614a24826149bd565b604082019050919050565b60006020820190508181036000830152614a4881614a0c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614aab603983614028565b9150614ab682614a4f565b604082019050919050565b60006020820190508181036000830152614ada81614a9e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b3d602583614028565b9150614b4882614ae1565b604082019050919050565b60006020820190508181036000830152614b6c81614b30565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614bcf602483614028565b9150614bda82614b73565b604082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c3f82614140565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c7157614c70614682565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614cd8603583614028565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614d6a603283614028565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602683614028565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614e68602083614028565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614efa602a83614028565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b600081519050614f3f8161414a565b92915050565b600060208284031215614f5b57614f5a6140d8565b5b6000614f6984828501614f30565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fce602483614028565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615060602283614028565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150cc602083614028565b91506150d782615096565b602082019050919050565b600060208201905081810360008301526150fb816150bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615138601d83614028565b915061514382615102565b602082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151ca602583614028565b91506151d58261516e565b604082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061525c602383614028565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006152c8600b83614028565b91506152d382615292565b602082019050919050565b600060208201905081810360008301526152f7816152bb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615334601683614028565b915061533f826152fe565b602082019050919050565b6000602082019050818103600083015261536381615327565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153ec604983614028565b91506153f78261536a565b606082019050919050565b6000602082019050818103600083015261541b816153df565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061547e603583614028565b915061548982615422565b604082019050919050565b600060208201905081810360008301526154ad81615471565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154ea601383614028565b91506154f5826154b4565b602082019050919050565b60006020820190508181036000830152615519816154dd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061557c603683614028565b915061558782615520565b604082019050919050565b600060208201905081810360008301526155ab8161556f565b9050919050565b60006155bd82614140565b91506155c883614140565b9250828210156155db576155da614682565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615642602683614028565b915061564d826155e6565b604082019050919050565b6000602082019050818103600083015261567181615635565b9050919050565b600081905092915050565b50565b6000615693600083615678565b915061569e82615683565b600082019050919050565b60006156b482615686565b9150819050919050565b60006060820190506156d360008301866142d3565b6156e060208301856142d3565b6156ed60408301846142d3565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061573381614114565b92915050565b60006020828403121561574f5761574e6140d8565b5b600061575d84828501615724565b91505092915050565b6000819050919050565b600061578b61578661578184615766565b614259565b614140565b9050919050565b61579b81615770565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157d681614102565b82525050565b60006157e883836157cd565b60208301905092915050565b6000602082019050919050565b600061580c826157a1565b61581681856157ac565b9350615821836157bd565b8060005b8381101561585257815161583988826157dc565b9750615844836157f4565b925050600181019050615825565b5085935050505092915050565b600060a08201905061587460008301886142d3565b6158816020830187615792565b81810360408301526158938186615801565b90506158a2606083018561437d565b6158af60808301846142d3565b9695505050505050565b600060c0820190506158ce600083018961437d565b6158db60208301886142d3565b6158e86040830187615792565b6158f56060830186615792565b615902608083018561437d565b61590f60a08301846142d3565b979650505050505050565b600080600060608486031215615933576159326140d8565b5b600061594186828701614f30565b935050602061595286828701614f30565b925050604061596386828701614f30565b915050925092509256fea2646970667358221220ac539737487495bfb355178c7c583bcd430ff8ea690279ee1ca38d94a4c147f664736f6c634300080d0033

Deployed Bytecode Sourcemap

38223:19429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17076:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19427:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46456:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39916:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38298:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40007:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18196:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47741:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38884:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38686:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39695:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39655;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44863:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20208:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38401:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38781:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38741:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18038:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20912:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38356:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38985:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47912:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39506:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39091:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18367:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10498:103;;;;;;;;;;;;;:::i;:::-;;55360:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43646:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45332:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38493:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39395;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45689:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43435:155;;;;;;;;;;;;;:::i;:::-;;9850:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38530:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39541:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45576:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17295:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47073:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39469:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38941:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39735:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39617:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21653:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38842:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18700:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47521:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40207:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39025:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46883:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46070:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45105:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39313:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38567:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43161:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44040:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39361:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18956:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38609:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43831:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39432:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10756:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44437:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39579:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38649:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56631:1018;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17076:100;17130:13;17163:5;17156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17076:100;:::o;19427:201::-;19510:4;19527:13;19543:12;:10;:12::i;:::-;19527:28;;19566:32;19575:5;19582:7;19591:6;19566:8;:32::i;:::-;19616:4;19609:11;;;19427:201;;;;:::o;46456:419::-;9736:13;:11;:13::i;:::-;46548:4:::1;46535:10;:17;;;;46575:3;46563:9;:15;;;;46643:10;;46624:16;;46605;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;46589:13;:64;;;;46715:9;;46697:15;;46679;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;46664:12;:60;;;;46759:2;46743:12;;:18;;46735:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46831:2;46814:13;;:19;;46806:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46456:419:::0;;:::o;39916:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;38298:51::-;;;:::o;40007:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;18196:108::-;18257:7;18284:12;;18277:19;;18196:108;:::o;47741:157::-;9736:13;:11;:13::i;:::-;47848:9:::1;;;;;;;;;;;47820:38;;47837:9;47820:38;;;;;;;;;;;;47881:9;47869;;:21;;;;;;;;;;;;;;;;;;47741:157:::0;:::o;38884:50::-;;;;:::o;38686:35::-;;;;:::o;39695:33::-;;;;:::o;39655:::-;;;;:::o;44863:234::-;9736:13;:11;:13::i;:::-;44982:4:::1;44976;44972:1;44956:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44955:31;;;;:::i;:::-;44945:6;:41;;44937:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45082:6;45072;:17;;;;:::i;:::-;45049:20;:40;;;;44863:234:::0;:::o;20208:295::-;20339:4;20356:15;20374:12;:10;:12::i;:::-;20356:30;;20397:38;20413:4;20419:7;20428:6;20397:15;:38::i;:::-;20446:27;20456:4;20462:2;20466:6;20446:9;:27::i;:::-;20491:4;20484:11;;;20208:295;;;;;:::o;38401:53::-;38447:6;38401:53;:::o;38781:54::-;;;;:::o;38741:33::-;;;;;;;;;;;;;:::o;18038:93::-;18096:5;18121:2;18114:9;;18038:93;:::o;20912:238::-;21000:4;21017:13;21033:12;:10;:12::i;:::-;21017:28;;21056:64;21065:5;21072:7;21109:10;21081:25;21091:5;21098:7;21081:9;:25::i;:::-;:38;;;;:::i;:::-;21056:8;:64::i;:::-;21138:4;21131:11;;;20912:238;;;;:::o;38356:38::-;;;:::o;38985:33::-;;;;;;;;;;;;;:::o;47912:125::-;47977:4;48001:19;:28;48021:7;48001:28;;;;;;;;;;;;;;;;;;;;;;;;;47994:35;;47912:125;;;:::o;39506:28::-;;;;:::o;39091:30::-;;;;;;;;;;;;;:::o;18367:127::-;18441:7;18468:9;:18;18478:7;18468:18;;;;;;;;;;;;;;;;18461:25;;18367:127;;;:::o;10498:103::-;9736:13;:11;:13::i;:::-;10563:30:::1;10590:1;10563:18;:30::i;:::-;10498:103::o:0;55360:447::-;9736:13;:11;:13::i;:::-;55514:3:::1;55491:19;:26;;55483:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;55604:4;55592:8;:16;;:33;;;;;55624:1;55612:8;:13;;55592:33;55584:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55707:19;55689:15;:37;;;;55756:8;55737:16;:27;;;;55791:8;55775:13;;:24;;;;;;;;;;;;;;;;;;55360:447:::0;;;:::o;43646:120::-;43698:4;9736:13;:11;:13::i;:::-;43731:5:::1;43714:14;;:22;;;;;;;;;;;;;;;;;;43754:4;43747:11;;43646:120:::0;:::o;45332:144::-;9736:13;:11;:13::i;:::-;45464:4:::1;45422:31;:39;45454:6;45422:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45332:144:::0;;:::o;38493:30::-;;;;;;;;;;;;;:::o;39395:::-;;;;:::o;45689:369::-;9736:13;:11;:13::i;:::-;45823::::1;45805:15;:31;;;;45865:13;45847:15;:31;;;;45901:7;45889:9;:19;;;;45970:9;;45952:15;;45934;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;45919:12;:60;;;;46014:2;45998:12;;:18;;45990:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45689:369:::0;;;:::o;43435:155::-;9736:13;:11;:13::i;:::-;43506:4:::1;43490:13;;:20;;;;;;;;;;;;;;;;;;43535:4;43521:11;;:18;;;;;;;;;;;;;;;;;;43567:15;43550:14;:32;;;;43435:155::o:0;9850:87::-;9896:7;9923:6;;;;;;;;;;;9916:13;;9850:87;:::o;38530:24::-;;;;;;;;;;;;;:::o;39541:31::-;;;;:::o;45576:101::-;9736:13;:11;:13::i;:::-;45662:7:::1;45648:11;;:21;;;;;;;;;;;;;;;;;;45576:101:::0;:::o;17295:104::-;17351:13;17384:7;17377:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17295:104;:::o;47073:244::-;9736:13;:11;:13::i;:::-;47180::::1;47172:21;;:4;:21;;::::0;47164:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47268:41;47297:4;47303:5;47268:28;:41::i;:::-;47073:244:::0;;:::o;39469:24::-;;;;:::o;38941:35::-;;;;:::o;39735:27::-;;;;:::o;39617:25::-;;;;:::o;21653:436::-;21746:4;21763:13;21779:12;:10;:12::i;:::-;21763:28;;21802:24;21829:25;21839:5;21846:7;21829:9;:25::i;:::-;21802:52;;21893:15;21873:16;:35;;21865:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21986:60;21995:5;22002:7;22030:15;22011:16;:34;21986:8;:60::i;:::-;22077:4;22070:11;;;;21653:436;;;;:::o;38842:29::-;;;;:::o;18700:193::-;18779:4;18796:13;18812:12;:10;:12::i;:::-;18796:28;;18835;18845:5;18852:2;18856:6;18835:9;:28::i;:::-;18881:4;18874:11;;;18700:193;;;;:::o;47521:208::-;9736:13;:11;:13::i;:::-;47658:15:::1;;;;;;;;;;;47615:59;;47638:18;47615:59;;;;;;;;;;;;47703:18;47685:15;;:36;;;;;;;;;;;;;;;;;;47521:208:::0;:::o;40207:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;39025:32::-;;;;;;;;;;;;;:::o;46883:182::-;9736:13;:11;:13::i;:::-;46999:8:::1;46968:19;:28;46988:7;46968:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;47039:7;47023:34;;;47048:8;47023:34;;;;;;:::i;:::-;;;;;;;;46883:182:::0;;:::o;46070:378::-;9736:13;:11;:13::i;:::-;46206::::1;46187:16;:32;;;;46249:13;46230:16;:32;;;;46286:7;46273:10;:20;;;;46358:10;;46339:16;;46320;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;46304:13;:64;;;;46404:2;46387:13;;:19;;46379:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46070:378:::0;;;:::o;45105:215::-;9736:13;:11;:13::i;:::-;45227:4:::1;45221;45217:1;45201:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;45200:31;;;;:::i;:::-;45190:6;:41;;45182:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;45305:6;45295;:17;;;;:::i;:::-;45283:9;:29;;;;45105:215:::0;:::o;39313:39::-;;;;;;;;;;;;;:::o;38567:35::-;;;;:::o;43161:220::-;9736:13;:11;:13::i;:::-;43268:6:::1;43263:111;43280:10;;:17;;43278:1;:19;43263:111;;;43347:15;43319:10;:25;43330:10;;43341:1;43330:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43319:25;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;43299:3;;;;;:::i;:::-;;;;43263:111;;;;43161:220:::0;;;:::o;44040:385::-;44121:4;9736:13;:11;:13::i;:::-;44178:6:::1;44174:1;44158:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;44145:9;:39;;44137:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;44295:4;44290:2;44274:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;44261:9;:38;;44253:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;44386:9;44365:18;:30;;;;44413:4;44406:11;;44040:385:::0;;;:::o;39361:27::-;;;;:::o;18956:151::-;19045:7;19072:11;:18;19084:5;19072:18;;;;;;;;;;;;;;;:27;19091:7;19072:27;;;;;;;;;;;;;;;;19065:34;;18956:151;;;;:::o;38609:33::-;;;;:::o;43831:134::-;43891:4;9736:13;:11;:13::i;:::-;43930:5:::1;43907:20;;:28;;;;;;;;;;;;;;;;;;43953:4;43946:11;;43831:134:::0;:::o;39432:30::-;;;;:::o;10756:201::-;9736:13;:11;:13::i;:::-;10865:1:::1;10845:22;;:8;:22;;::::0;10837:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10921:28;10940:8;10921:18;:28::i;:::-;10756:201:::0;:::o;44437:414::-;9736:13;:11;:13::i;:::-;44579:4:::1;44573;44569:1;44553:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44552:31;;;;:::i;:::-;44540:8;:43;;44532:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44681:6;44669:8;:19;;;;:::i;:::-;44646:20;:42;;;;44752:4;44746;44742:1;44726:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44725:31;;;;:::i;:::-;44709:12;:47;;44701:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;44836:6;44820:12;:23;;;;:::i;:::-;44808:9;:35;;;;44437:414:::0;;:::o;39579:31::-;;;;:::o;38649:24::-;;;;:::o;56631:1018::-;56715:4;9736:13;:11;:13::i;:::-;56780:19:::1;;56757:20;;:42;;;;:::i;:::-;56739:15;:60;56731:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;56867:4;56856:7;:15;;56848:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56952:15;56929:20;:38;;;;57030:28;57061:4;:14;;;57076:13;57061:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57030:60;;57148:20;57171:44;57209:5;57171:33;57196:7;57171:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;57148:67;;57343:1;57328:12;:16;57324:109;;;57360:61;57376:13;57399:6;57408:12;57360:15;:61::i;:::-;57324:109;57516:19;57553:13;57516:51;;57578:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;57605:14;;;;;;;;;;57637:4;57630:11;;;;;56631:1018:::0;;;:::o;8400:98::-;8453:7;8480:10;8473:17;;8400:98;:::o;25680:380::-;25833:1;25816:19;;:5;:19;;;25808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25914:1;25895:21;;:7;:21;;;25887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25998:6;25968:11;:18;25980:5;25968:18;;;;;;;;;;;;;;;:27;25987:7;25968:27;;;;;;;;;;;;;;;:36;;;;26036:7;26020:32;;26029:5;26020:32;;;26045:6;26020:32;;;;;;:::i;:::-;;;;;;;;25680:380;;;:::o;10015:132::-;10090:12;:10;:12::i;:::-;10079:23;;:7;:5;:7::i;:::-;:23;;;10071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10015:132::o;26351:453::-;26486:24;26513:25;26523:5;26530:7;26513:9;:25::i;:::-;26486:52;;26573:17;26553:16;:37;26549:248;;26635:6;26615:16;:26;;26607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26719:51;26728:5;26735:7;26763:6;26744:16;:25;26719:8;:51::i;:::-;26549:248;26475:329;26351:453;;;:::o;48099:4437::-;48247:1;48231:18;;:4;:18;;;48223:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48324:1;48310:16;;:2;:16;;;48302:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48386:10;:14;48397:2;48386:14;;;;;;;;;;;;;;;;;;;;;;;;;48385:15;:36;;;;;48405:10;:16;48416:4;48405:16;;;;;;;;;;;;;;;;;;;;;;;;;48404:17;48385:36;48377:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:1;48462:6;:11;48459:92;;48490:28;48506:4;48512:2;48516:1;48490:15;:28::i;:::-;48533:7;;48459:92;48574:14;;;;;;;;;;;48571:1841;;;48634:7;:5;:7::i;:::-;48626:15;;:4;:15;;;;:49;;;;;48668:7;:5;:7::i;:::-;48662:13;;:2;:13;;;;48626:49;:86;;;;;48710:1;48696:16;;:2;:16;;;;48626:86;:128;;;;;48747:6;48733:21;;:2;:21;;;;48626:128;:158;;;;;48776:8;;;;;;;;;;;48775:9;48626:158;48604:1797;;;48822:13;;;;;;;;;;;48818:148;;48867:19;:25;48887:4;48867:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;48896:19;:23;48916:2;48896:23;;;;;;;;;;;;;;;;;;;;;;;;;48867:52;48859:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;48818:148;49124:20;;;;;;;;;;;49120:423;;;49178:7;:5;:7::i;:::-;49172:13;;:2;:13;;;;:47;;;;;49203:15;49189:30;;:2;:30;;;;49172:47;:79;;;;;49237:13;49223:28;;:2;:28;;;;49172:79;49168:356;;;49329:12;49287:28;:39;49316:9;49287:39;;;;;;;;;;;;;;;;:54;49279:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;49488:12;49446:28;:39;49475:9;49446:39;;;;;;;;;;;;;;;:54;;;;49168:356;49120:423;49612:25;:31;49638:4;49612:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;49648:31;:35;49680:2;49648:35;;;;;;;;;;;;;;;;;;;;;;;;;49647:36;49612:71;49608:778;;;49730:20;;49720:6;:30;;49712:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;49869:9;;49852:13;49862:2;49852:9;:13::i;:::-;49843:6;:22;;;;:::i;:::-;:35;;49835:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49608:778;;;49996:25;:29;50022:2;49996:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;50030:31;:37;50062:4;50030:37;;;;;;;;;;;;;;;;;;;;;;;;;50029:38;49996:71;49992:394;;;50114:20;;50104:6;:30;;50096:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;49992:394;;;50240:31;:35;50272:2;50240:35;;;;;;;;;;;;;;;;;;;;;;;;;50236:150;;50333:9;;50316:13;50326:2;50316:9;:13::i;:::-;50307:6;:22;;;;:::i;:::-;:35;;50299:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;50236:150;49992:394;49608:778;48604:1797;48571:1841;50442:28;50473:24;50491:4;50473:9;:24::i;:::-;50442:55;;50518:12;50557:18;;50533:20;:42;;50518:57;;50606:7;:35;;;;;50630:11;;;;;;;;;;;50606:35;:61;;;;;50659:8;;;;;;;;;;;50658:9;50606:61;:110;;;;;50685:25;:31;50711:4;50685:31;;;;;;;;;;;;;;;;;;;;;;;;;50684:32;50606:110;:153;;;;;50734:19;:25;50754:4;50734:25;;;;;;;;;;;;;;;;;;;;;;;;;50733:26;50606:153;:194;;;;;50777:19;:23;50797:2;50777:23;;;;;;;;;;;;;;;;;;;;;;;;;50776:24;50606:194;50588:338;;;50838:4;50827:8;;:15;;;;;;;;;;;;;;;;;;50871:10;:8;:10::i;:::-;50909:5;50898:8;;:16;;;;;;;;;;;;;;;;;;50588:338;50950:8;;;;;;;;;;;50949:9;:42;;;;;50962:25;:29;50988:2;50962:29;;;;;;;;;;;;;;;;;;;;;;;;;50949:42;:59;;;;;50995:13;;;;;;;;;;;50949:59;:114;;;;;51048:15;;51031:14;;:32;;;;:::i;:::-;51012:15;:51;;50949:114;:144;;;;;51068:19;:25;51088:4;51068:25;;;;;;;;;;;;;;;;;;;;;;;;;51067:26;50949:144;50946:204;;;51109:29;:27;:29::i;:::-;;50946:204;51162:12;51178:8;;;;;;;;;;;51177:9;51162:24;;51287:19;:25;51307:4;51287:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;51316:19;:23;51336:2;51316:23;;;;;;;;;;;;;;;;;;;;;;;;;51287:52;51284:99;;;51366:5;51356:15;;51284:99;51403:12;51507:7;51504:979;;;51558:25;:29;51584:2;51558:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;51607:1;51591:13;;:17;51558:50;51554:754;;;51635:34;51665:3;51635:25;51646:13;;51635:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;51628:41;;51736:13;;51717:16;;51710:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;51688:18;;:61;;;;;;;:::i;:::-;;;;;;;;51804:13;;51791:10;;51784:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;51768:12;;:49;;;;;;;:::i;:::-;;;;;;;;51884:13;;51865:16;;51858:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;51836:18;;:61;;;;;;;:::i;:::-;;;;;;;;51554:754;;;51958:25;:31;51984:4;51958:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;52008:1;51993:12;;:16;51958:51;51955:353;;;52037:33;52066:3;52037:24;52048:12;;52037:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;52030:40;;52136:12;;52118:15;;52111:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;52089:18;;:59;;;;;;;:::i;:::-;;;;;;;;52202:12;;52190:9;;52183:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;52167:12;;:47;;;;;;;:::i;:::-;;;;;;;;52280:12;;52262:15;;52255:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;52233:18;;:59;;;;;;;:::i;:::-;;;;;;;;51955:353;51554:754;52346:1;52339:4;:8;52336:93;;;52371:42;52387:4;52401;52408;52371:15;:42::i;:::-;52336:93;52467:4;52457:14;;;;;:::i;:::-;;;51504:979;52495:33;52511:4;52517:2;52521:6;52495:15;:33::i;:::-;48212:4324;;;;48099:4437;;;;:::o;11117:191::-;11191:16;11210:6;;;;;;;;;;;11191:25;;11236:8;11227:6;;:17;;;;;;;;;;;;;;;;;;11291:8;11260:40;;11281:8;11260:40;;;;;;;;;;;;11180:128;11117:191;:::o;47325:188::-;47442:5;47408:25;:31;47434:4;47408:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;47499:5;47465:40;;47493:4;47465:40;;;;;;;;;;;;47325:188;;:::o;4293:98::-;4351:7;4382:1;4378;:5;;;;:::i;:::-;4371:12;;4293:98;;;;:::o;4692:::-;4750:7;4781:1;4777;:5;;;;:::i;:::-;4770:12;;4692:98;;;;:::o;22559:840::-;22706:1;22690:18;;:4;:18;;;22682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22783:1;22769:16;;:2;:16;;;22761:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22838:38;22859:4;22865:2;22869:6;22838:20;:38::i;:::-;22889:19;22911:9;:15;22921:4;22911:15;;;;;;;;;;;;;;;;22889:37;;22960:6;22945:11;:21;;22937:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23077:6;23063:11;:20;23045:9;:15;23055:4;23045:15;;;;;;;;;;;;;;;:38;;;;23280:6;23263:9;:13;23273:2;23263:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;23330:2;23315:26;;23324:4;23315:26;;;23334:6;23315:26;;;;;;:::i;:::-;;;;;;;;23354:37;23374:4;23380:2;23384:6;23354:19;:37::i;:::-;22671:728;22559:840;;;:::o;53682:1666::-;53721:23;53747:24;53765:4;53747:9;:24::i;:::-;53721:50;;53782:25;53852:12;;53831:18;;53810;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;53782:82;;53875:12;53930:1;53911:15;:20;:46;;;;53956:1;53935:17;:22;53911:46;53908:60;;;53960:7;;;;;53908:60;54022:2;54001:18;;:23;;;;:::i;:::-;53983:15;:41;53980:111;;;54077:2;54056:18;;:23;;;;:::i;:::-;54038:41;;53980:111;54160:23;54245:1;54225:17;54204:18;;54186:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;54160:86;;54257:26;54286:36;54306:15;54286;:19;;:36;;;;:::i;:::-;54257:65;;54343:25;54371:21;54343:49;;54405:36;54422:18;54405:16;:36::i;:::-;54463:18;54484:44;54510:17;54484:21;:25;;:44;;;;:::i;:::-;54463:65;;54549:23;54575:57;54614:17;54575:34;54590:18;;54575:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;54549:83;;54643:17;54663:51;54696:17;54663:28;54678:12;;54663:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;54643:71;;54745:23;54802:9;54784:15;54771:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;54745:66;;54863:1;54842:18;:22;;;;54896:1;54875:18;:22;;;;54923:1;54908:12;:16;;;;54966:9;;;;;;;;;;;54958:23;;54989:9;54958:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54945:58;;;;;55045:1;55027:15;:19;:42;;;;;55068:1;55050:15;:19;55027:42;55024:210;;;55085:46;55098:15;55115;55085:12;:46::i;:::-;55151:71;55166:18;55186:15;55203:18;;55151:71;;;;;;;;:::i;:::-;;;;;;;;55024:210;55285:15;;;;;;;;;;;55277:29;;55314:21;55277:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55264:76;;;;;53710:1638;;;;;;;;;;53682:1666;:::o;55819:804::-;55876:4;55919:15;55902:14;:32;;;;55997:28;56028:4;:14;;;56043:13;56028:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55997:60;;56115:20;56138:53;56185:5;56138:42;56163:16;;56138:20;:24;;:42;;;;:::i;:::-;:46;;:53;;;;:::i;:::-;56115:76;;56319:1;56304:12;:16;56300:109;;;56336:61;56352:13;56375:6;56384:12;56336:15;:61::i;:::-;56300:109;56492:19;56529:13;56492:51;;56554:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56581:12;;;;;;;;;;56611:4;56604:11;;;;;55819:804;:::o;27404:125::-;;;;:::o;28133:124::-;;;;:::o;3936:98::-;3994:7;4025:1;4021;:5;;;;:::i;:::-;4014:12;;3936:98;;;;:::o;52544:601::-;52672:21;52710:1;52696:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52672:40;;52741:4;52723;52728:1;52723:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;52767:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52757:4;52762:1;52757:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;52802:62;52819:4;52834:15;52852:11;52802:8;:62::i;:::-;52903:15;:66;;;52984:11;53010:1;53054:4;53081;53101:15;52903:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52599:546;52544:601;:::o;53157:517::-;53305:62;53322:4;53337:15;53355:11;53305:8;:62::i;:::-;53410:15;:31;;;53449:9;53482:4;53502:11;53528:1;53571;38447:6;53640:15;53410:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;53157: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:244::-;18793:34;18789:1;18781:6;18777:14;18770:58;18862:27;18857:2;18849:6;18845:15;18838:52;18653:244;:::o;18903:366::-;19045:3;19066:67;19130:2;19125:3;19066:67;:::i;:::-;19059:74;;19142:93;19231:3;19142:93;:::i;:::-;19260:2;19255:3;19251:12;19244:19;;18903:366;;;:::o;19275:419::-;19441:4;19479:2;19468:9;19464:18;19456:26;;19528:9;19522:4;19518:20;19514:1;19503:9;19499:17;19492:47;19556:131;19682:4;19556:131;:::i;:::-;19548:139;;19275:419;;;:::o;19700:224::-;19840:34;19836:1;19828:6;19824:14;19817:58;19909:7;19904:2;19896:6;19892:15;19885:32;19700:224;:::o;19930:366::-;20072:3;20093:67;20157:2;20152:3;20093:67;:::i;:::-;20086:74;;20169:93;20258:3;20169:93;:::i;:::-;20287:2;20282:3;20278:12;20271:19;;19930:366;;;:::o;20302:419::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:223::-;20867:34;20863:1;20855:6;20851:14;20844:58;20936:6;20931:2;20923:6;20919:15;20912:31;20727:223;:::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://ac539737487495bfb355178c7c583bcd430ff8ea690279ee1ca38d94a4c147f6
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.