ETH Price: $3,476.70 (+2.02%)
Gas: 8 Gwei

Token

Lenny Face (( ͡° ͜ʖ ͡°))
 

Overview

Max Total Supply

1,000,000,000 ( ͡° ͜ʖ ͡°)

Holders

689 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+7.99%)

Onchain Market Cap

$98,080.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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:
LennyFaceCoin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

/**


Website: https://www.lenny-coin.com/

Twitter: https://twitter.com/Lennyface_coin

Telegram: https://t.me/LennyFaceCoin


*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

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

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract LennyFaceCoin 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 = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public 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;

    // 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("Lenny Face", unicode"( ͡° ͜ʖ ͡°)") {
        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 = 1;
        uint256 _buyDevFee = 19;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 49;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        marketingWallet = address(0x94be3cB0b1BD900Fa44F62f3c5733d5587571683); // set as marketing wallet
        devWallet = address(0x94be3cB0b1BD900Fa44F62f3c5733d5587571683); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function 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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 11, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 11, "Must keep fees at 11% 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");

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f4c656e6e792046616365000000000000000000000000000000000000000000008152506040518060400160405280601181526020017f2820cda1c2b020cd9cca9620cda1c2b029000000000000000000000000000000815250816003908162000127919062000d80565b50806004908162000139919062000d80565b5050506200015c62000150620005c760201b60201c565b620005cf60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ed1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ed1565b6040518363ffffffff1660e01b8152600401620002db92919062000f14565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ed1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069560201b60201c565b6200037e60a05160016200077f60201b60201c565b600080600190506000601390506000806001905060006031905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003df919062000f70565b620003eb919062000fea565b6009819055508660158190555085601681905550846017819055506017546016546015546200041b919062001022565b62000427919062001022565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000457919062001022565b62000463919062001022565b6018819055507394be3cb0b1bd900fa44f62f3c5733d5587571683600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507394be3cb0b1bd900fa44f62f3c5733d5587571683600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000535620005276200082060201b60201c565b60016200084a60201b60201c565b620005483060016200084a60201b60201c565b6200055d61dead60016200084a60201b60201c565b6200057f620005716200082060201b60201c565b60016200069560201b60201c565b620005923060016200069560201b60201c565b620005a761dead60016200069560201b60201c565b620005b933826200098460201b60201c565b5050505050505050620011ba565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a5620005c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cb6200082060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000724576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071b90620010be565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085a620005c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008806200082060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d090620010be565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009789190620010fd565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ed906200116a565b60405180910390fd5b62000a0a6000838362000afc60201b60201c565b806002600082825462000a1e919062001022565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a75919062001022565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000adc91906200119d565b60405180910390a362000af86000838362000b0160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8857607f821691505b60208210810362000b9e5762000b9d62000b40565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc9565b62000c14868362000bc9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c6162000c5b62000c558462000c2c565b62000c36565b62000c2c565b9050919050565b6000819050919050565b62000c7d8362000c40565b62000c9562000c8c8262000c68565b84845462000bd6565b825550505050565b600090565b62000cac62000c9d565b62000cb981848462000c72565b505050565b5b8181101562000ce15762000cd560008262000ca2565b60018101905062000cbf565b5050565b601f82111562000d305762000cfa8162000ba4565b62000d058462000bb9565b8101602085101562000d15578190505b62000d2d62000d248562000bb9565b83018262000cbe565b50505b505050565b600082821c905092915050565b600062000d556000198460080262000d35565b1980831691505092915050565b600062000d70838362000d42565b9150826002028217905092915050565b62000d8b8262000b06565b67ffffffffffffffff81111562000da75762000da662000b11565b5b62000db3825462000b6f565b62000dc082828562000ce5565b600060209050601f83116001811462000df8576000841562000de3578287015190505b62000def858262000d62565b86555062000e5f565b601f19841662000e088662000ba4565b60005b8281101562000e325784890151825560018201915060208501945060208101905062000e0b565b8683101562000e52578489015162000e4e601f89168262000d42565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e998262000e6c565b9050919050565b62000eab8162000e8c565b811462000eb757600080fd5b50565b60008151905062000ecb8162000ea0565b92915050565b60006020828403121562000eea5762000ee962000e67565b5b600062000efa8482850162000eba565b91505092915050565b62000f0e8162000e8c565b82525050565b600060408201905062000f2b600083018562000f03565b62000f3a602083018462000f03565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f7d8262000c2c565b915062000f8a8362000c2c565b925082820262000f9a8162000c2c565b9150828204841483151762000fb45762000fb362000f41565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff78262000c2c565b9150620010048362000c2c565b92508262001017576200101662000fbb565b5b828204905092915050565b60006200102f8262000c2c565b91506200103c8362000c2c565b925082820190508082111562001057576200105662000f41565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010a66020836200105d565b9150620010b3826200106e565b602082019050919050565b60006020820190508181036000830152620010d98162001097565b9050919050565b60008115159050919050565b620010f781620010e0565b82525050565b6000602082019050620011146000830184620010ec565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001152601f836200105d565b91506200115f826200111a565b602082019050919050565b60006020820190508181036000830152620011858162001143565b9050919050565b620011978162000c2c565b82525050565b6000602082019050620011b460008301846200118c565b92915050565b60805160a051615b7f62001242600039600081816113ed01528181611bfd01528181612745015281816127fc0152818161282901528181612e6801528181613f6a015281816140230152614050015260008181610f9001528181612e10015281816141c6015281816142a7015281816142ce0152818161436a01526143910152615b7f6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b601481905550600b601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b601881905550600b601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d81601d8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220a902499078dd35458a8472d7e3100a3de767ff6f13e2d31920c66120e8bdccd064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b601481905550600b601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b601881905550600b601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d6040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d61dead836139db565b5b60007f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d6040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d61dead836139db565b5b60007f0000000000000000000000004b82e8a0eccbdb0e8247f121f6b1ddc4f759522d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d81601d8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220a902499078dd35458a8472d7e3100a3de767ff6f13e2d31920c66120e8bdccd064736f6c63430008110033

Deployed Bytecode Sourcemap

32845:19472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11840:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34479:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32928:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10793:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41645:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33493:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33308:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34263:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34223;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12491:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33031:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33403:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33364:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10635:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13392:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32986:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33591:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41810:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34078:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33671:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10964:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2908:103;;;;;;;;;;;;;:::i;:::-;;49899:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38067:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39506:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33123:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33971;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39877:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37860:155;;;;;;;;;;;;;:::i;:::-;;2257:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34113:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39769:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9892:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40898:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34045:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33547:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34303:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34189:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14110:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33455:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11304:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41406:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34700:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33631:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40708:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40288:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39242:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33889:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33193:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38454:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33937:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11542:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33235:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38249:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34008:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3166:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34151:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33275:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51258:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9673:100;9727:13;9760:5;9753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673:100;:::o;11840:169::-;11923:4;11940:39;11949:12;:10;:12::i;:::-;11963:7;11972:6;11940:8;:39::i;:::-;11997:4;11990:11;;11840:169;;;;:::o;34479:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32928:51::-;;;:::o;10793:108::-;10854:7;10881:12;;10874:19;;10793:108;:::o;41645:157::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41752:9:::1;;;;;;;;;;;41724:38;;41741:9;41724:38;;;;;;;;;;;;41785:9;41773;;:21;;;;;;;;;;;;;;;;;;41645:157:::0;:::o;33493:47::-;;;;:::o;33308:36::-;;;;:::o;34263:33::-;;;;:::o;34223:::-;;;;:::o;38959:275::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:4:::1;39088;39083:1;39067:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39066:26;;;;:::i;:::-;39065:35;;;;:::i;:::-;39055:6;:45;;39033:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39219:6;39209;:17;;;;:::i;:::-;39186:20;:40;;;;38959:275:::0;:::o;12491:492::-;12631:4;12648:36;12658:6;12666:9;12677:6;12648:9;:36::i;:::-;12697:24;12724:11;:19;12736:6;12724:19;;;;;;;;;;;;;;;:33;12744:12;:10;:12::i;:::-;12724:33;;;;;;;;;;;;;;;;12697:60;;12796:6;12776:16;:26;;12768:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12883:57;12892:6;12900:12;:10;:12::i;:::-;12933:6;12914:16;:25;12883:8;:57::i;:::-;12971:4;12964:11;;;12491:492;;;;;:::o;33031:53::-;33077:6;33031:53;:::o;33403:45::-;;;;:::o;33364:32::-;;;;;;;;;;;;;:::o;10635:93::-;10693:5;10718:2;10711:9;;10635:93;:::o;13392:215::-;13480:4;13497:80;13506:12;:10;:12::i;:::-;13520:7;13566:10;13529:11;:25;13541:12;:10;:12::i;:::-;13529:25;;;;;;;;;;;;;;;:34;13555:7;13529:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13497:8;:80::i;:::-;13595:4;13588:11;;13392:215;;;;:::o;32986:38::-;;;:::o;33591:33::-;;;;;;;;;;;;;:::o;41810:126::-;41876:4;41900:19;:28;41920:7;41900:28;;;;;;;;;;;;;;;;;;;;;;;;;41893:35;;41810:126;;;:::o;34078:28::-;;;;:::o;33671:31::-;;;;;;;;;;;;;:::o;10964:127::-;11038:7;11065:9;:18;11075:7;11065:18;;;;;;;;;;;;;;;;11058:25;;10964:127;;;:::o;2908:103::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:30:::1;3000:1;2973:18;:30::i;:::-;2908:103::o:0;49899:555::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50101:3:::1;50078:19;:26;;50056:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50228:4;50216:8;:16;;:33;;;;;50248:1;50236:8;:13;;50216:33;50194:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50354:19;50336:15;:37;;;;50403:8;50384:16;:27;;;;50438:8;50422:13;;:24;;;;;;;;;;;;;;;;;;49899:555:::0;;;:::o;38067:121::-;38119:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38153:5:::1;38136:14;;:22;;;;;;;;;;;;;;;;;;38176:4;38169:11;;38067:121:::0;:::o;39506:167::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39661:4:::1;39619:31;:39;39651:6;39619:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39506:167:::0;;:::o;33123:30::-;;;;;;;;;;;;;:::o;33971:::-;;;;:::o;39877:403::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40045:13:::1;40027:15;:31;;;;40087:13;40069:15;:31;;;;40123:7;40111:9;:19;;;;40192:9;;40174:15;;40156;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40141:12;:60;;;;40236:2;40220:12;;:18;;40212:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39877:403:::0;;;:::o;37860:155::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37931:4:::1;37915:13;;:20;;;;;;;;;;;;;;;;;;37960:4;37946:11;;:18;;;;;;;;;;;;;;;;;;37992:15;37975:14;:32;;;;37860:155::o:0;2257:87::-;2303:7;2330:6;;;;;;;;;;;2323:13;;2257:87;:::o;33160:24::-;;;;;;;;;;;;;:::o;34113:31::-;;;;:::o;39769:100::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39854:7:::1;39840:11;;:21;;;;;;;;;;;;;;;;;;39769:100:::0;:::o;9892:104::-;9948:13;9981:7;9974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9892:104;:::o;40898:304::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41042:13:::1;41034:21;;:4;:21;;::::0;41012:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41153:41;41182:4;41188:5;41153:28;:41::i;:::-;40898:304:::0;;:::o;34045:24::-;;;;:::o;33547:35::-;;;;:::o;34303:27::-;;;;:::o;34189:25::-;;;;:::o;14110:413::-;14203:4;14220:24;14247:11;:25;14259:12;:10;:12::i;:::-;14247:25;;;;;;;;;;;;;;;:34;14273:7;14247:34;;;;;;;;;;;;;;;;14220:61;;14320:15;14300:16;:35;;14292:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14413:67;14422:12;:10;:12::i;:::-;14436:7;14464:15;14445:16;:34;14413:8;:67::i;:::-;14511:4;14504:11;;;14110:413;;;;:::o;33455:29::-;;;;:::o;11304:175::-;11390:4;11407:42;11417:12;:10;:12::i;:::-;11431:9;11442:6;11407:9;:42::i;:::-;11467:4;11460:11;;11304:175;;;;:::o;41406:231::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41566:15:::1;;;;;;;;;;;41523:59;;41546:18;41523:59;;;;;;;;;;;;41611:18;41593:15;;:36;;;;;;;;;;;;;;;;;;41406:231:::0;:::o;34700:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33631:33::-;;;;;;;;;;;;;:::o;40708:182::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40824:8:::1;40793:19;:28;40813:7;40793:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40864:7;40848:34;;;40873:8;40848:34;;;;;;:::i;:::-;;;;;;;;40708:182:::0;;:::o;40288:412::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40458:13:::1;40439:16;:32;;;;40501:13;40482:16;:32;;;;40538:7;40525:10;:20;;;;40610:10;;40591:16;;40572;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40556:13;:64;;;;40656:2;40639:13;;:19;;40631:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40288:412:::0;;;:::o;39242:256::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39382:4:::1;39374;39369:1;39353:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39352:26;;;;:::i;:::-;39351:35;;;;:::i;:::-;39341:6;:45;;39319:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39483:6;39473;:17;;;;:::i;:::-;39461:9;:29;;;;39242:256:::0;:::o;33889:39::-;;;;;;;;;;;;;:::o;33193:35::-;;;;:::o;38454:497::-;38562:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:6:::1;38636:1;38620:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38619:28;;;;:::i;:::-;38606:9;:41;;38584:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:4;38791:1;38775:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38774:26;;;;:::i;:::-;38761:9;:39;;38739:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38912:9;38891:18;:30;;;;38939:4;38932:11;;38454:497:::0;;;:::o;33937:27::-;;;;:::o;11542:151::-;11631:7;11658:11;:18;11670:5;11658:18;;;;;;;;;;;;;;;:27;11677:7;11658:27;;;;;;;;;;;;;;;;11651:34;;11542:151;;;;:::o;33235:33::-;;;;:::o;38249:135::-;38309:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38349:5:::1;38326:20;;:28;;;;;;;;;;;;;;;;;;38372:4;38365:11;;38249:135:::0;:::o;34008:30::-;;;;:::o;3166:201::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3275:1:::1;3255:22;;:8;:22;;::::0;3247:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3331:28;3350:8;3331:18;:28::i;:::-;3166:201:::0;:::o;34151:31::-;;;;:::o;33275:24::-;;;;:::o;51258:1056::-;51369:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51454:19:::1;;51431:20;;:42;;;;:::i;:::-;51413:15;:60;51391:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51563:4;51552:7;:15;;51544:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51648:15;51625:20;:38;;;;51718:28;51749:4;:14;;;51764:13;51749:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51718:60;;51828:20;51851:44;51889:5;51851:33;51876:7;51851:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51828:67;;52015:1;52000:12;:16;51996:110;;;52033:61;52049:13;52072:6;52081:12;52033:15;:61::i;:::-;51996:110;52181:19;52218:13;52181:51;;52243:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52270:14;;;;;;;;;;52302:4;52295:11;;;;;51258:1056:::0;;;:::o;930:98::-;983:7;1010:10;1003:17;;930:98;:::o;17794:380::-;17947:1;17930:19;;:5;:19;;;17922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18028:1;18009:21;;:7;:21;;;18001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18112:6;18082:11;:18;18094:5;18082:18;;;;;;;;;;;;;;;:27;18101:7;18082:27;;;;;;;;;;;;;;;:36;;;;18150:7;18134:32;;18143:5;18134:32;;;18159:6;18134:32;;;;;;:::i;:::-;;;;;;;;17794:380;;;:::o;41994:5011::-;42142:1;42126:18;;:4;:18;;;42118:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42219:1;42205:16;;:2;:16;;;42197:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42288:1;42278:6;:11;42274:93;;42306:28;42322:4;42328:2;42332:1;42306:15;:28::i;:::-;42349:7;;42274:93;42383:14;;;;;;;;;;;42379:2487;;;42444:7;:5;:7::i;:::-;42436:15;;:4;:15;;;;:49;;;;;42478:7;:5;:7::i;:::-;42472:13;;:2;:13;;;;42436:49;:86;;;;;42520:1;42506:16;;:2;:16;;;;42436:86;:128;;;;;42557:6;42543:21;;:2;:21;;;;42436:128;:158;;;;;42586:8;;;;;;;;;;;42585:9;42436:158;42414:2441;;;42634:13;;;;;;;;;;;42629:223;;42706:19;:25;42726:4;42706:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42735:19;:23;42755:2;42735:23;;;;;;;;;;;;;;;;;;;;;;;;;42706:52;42672:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42629:223;43008:20;;;;;;;;;;;43004:641;;;43089:7;:5;:7::i;:::-;43083:13;;:2;:13;;;;:72;;;;;43139:15;43125:30;;:2;:30;;;;43083:72;:129;;;;;43198:13;43184:28;;:2;:28;;;;43083:129;43053:573;;;43376:12;43301:28;:39;43330:9;43301:39;;;;;;;;;;;;;;;;:87;43263:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43590:12;43548:28;:39;43577:9;43548:39;;;;;;;;;;;;;;;:54;;;;43053:573;43004:641;43719:25;:31;43745:4;43719:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43776:31;:35;43808:2;43776:35;;;;;;;;;;;;;;;;;;;;;;;;;43775:36;43719:92;43693:1147;;;43898:20;;43888:6;:30;;43854:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44106:9;;44089:13;44099:2;44089:9;:13::i;:::-;44080:6;:22;;;;:::i;:::-;:35;;44046:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43693:1147;;;44284:25;:29;44310:2;44284:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44339:31;:37;44371:4;44339:37;;;;;;;;;;;;;;;;;;;;;;;;;44338:38;44284:92;44258:582;;;44463:20;;44453:6;:30;;44419:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44258:582;;;44620:31;:35;44652:2;44620:35;;;;;;;;;;;;;;;;;;;;;;;;;44615:225;;44740:9;;44723:13;44733:2;44723:9;:13::i;:::-;44714:6;:22;;;;:::i;:::-;:35;;44680:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44615:225;44258:582;43693:1147;42414:2441;42379:2487;44878:28;44909:24;44927:4;44909:9;:24::i;:::-;44878:55;;44946:12;44985:18;;44961:20;:42;;44946:57;;45034:7;:35;;;;;45058:11;;;;;;;;;;;45034:35;:61;;;;;45087:8;;;;;;;;;;;45086:9;45034:61;:110;;;;;45113:25;:31;45139:4;45113:31;;;;;;;;;;;;;;;;;;;;;;;;;45112:32;45034:110;:153;;;;;45162:19;:25;45182:4;45162:25;;;;;;;;;;;;;;;;;;;;;;;;;45161:26;45034:153;:194;;;;;45205:19;:23;45225:2;45205:23;;;;;;;;;;;;;;;;;;;;;;;;;45204:24;45034:194;45016:326;;;45266:4;45255:8;;:15;;;;;;;;;;;;;;;;;;45287:10;:8;:10::i;:::-;45325:5;45314:8;;:16;;;;;;;;;;;;;;;;;;45016:326;45373:8;;;;;;;;;;;45372:9;:55;;;;;45398:25;:29;45424:2;45398:29;;;;;;;;;;;;;;;;;;;;;;;;;45372:55;:85;;;;;45444:13;;;;;;;;;;;45372:85;:153;;;;;45510:15;;45493:14;;:32;;;;:::i;:::-;45474:15;:51;;45372:153;:196;;;;;45543:19;:25;45563:4;45543:25;;;;;;;;;;;;;;;;;;;;;;;;;45542:26;45372:196;45354:282;;;45595:29;:27;:29::i;:::-;;45354:282;45648:12;45664:8;;;;;;;;;;;45663:9;45648:24;;45774:19;:25;45794:4;45774:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45803:19;:23;45823:2;45803:23;;;;;;;;;;;;;;;;;;;;;;;;;45774:52;45770:100;;;45853:5;45843:15;;45770:100;45882:12;45987:7;45983:969;;;46039:25;:29;46065:2;46039:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46088:1;46072:13;;:17;46039:50;46035:768;;;46117:34;46147:3;46117:25;46128:13;;46117:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46110:41;;46220:13;;46200:16;;46193:4;:23;;;;:::i;:::-;46192:41;;;;:::i;:::-;46170:18;;:63;;;;;;;:::i;:::-;;;;;;;;46290:13;;46276:10;;46269:4;:17;;;;:::i;:::-;46268:35;;;;:::i;:::-;46252:12;;:51;;;;;;;:::i;:::-;;;;;;;;46372:13;;46352:16;;46345:4;:23;;;;:::i;:::-;46344:41;;;;:::i;:::-;46322:18;;:63;;;;;;;:::i;:::-;;;;;;;;46035:768;;;46447:25;:31;46473:4;46447:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46497:1;46482:12;;:16;46447:51;46443:360;;;46526:33;46555:3;46526:24;46537:12;;46526:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46519:40;;46627:12;;46608:15;;46601:4;:22;;;;:::i;:::-;46600:39;;;;:::i;:::-;46578:18;;:61;;;;;;;:::i;:::-;;;;;;;;46695:12;;46682:9;;46675:4;:16;;;;:::i;:::-;46674:33;;;;:::i;:::-;46658:12;;:49;;;;;;;:::i;:::-;;;;;;;;46775:12;;46756:15;;46749:4;:22;;;;:::i;:::-;46748:39;;;;:::i;:::-;46726:18;;:61;;;;;;;:::i;:::-;;;;;;;;46443:360;46035:768;46830:1;46823:4;:8;46819:91;;;46852:42;46868:4;46882;46889;46852:15;:42::i;:::-;46819:91;46936:4;46926:14;;;;;:::i;:::-;;;45983:969;46964:33;46980:4;46986:2;46990:6;46964:15;:33::i;:::-;42107:4898;;;;41994:5011;;;;:::o;3527:191::-;3601:16;3620:6;;;;;;;;;;;3601:25;;3646:8;3637:6;;:17;;;;;;;;;;;;;;;;;;3701:8;3670:40;;3691:8;3670:40;;;;;;;;;;;;3590:128;3527:191;:::o;41210:188::-;41327:5;41293:25;:31;41319:4;41293:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41384:5;41350:40;;41378:4;41350:40;;;;;;;;;;;;41210:188;;:::o;23247:98::-;23305:7;23336:1;23332;:5;;;;:::i;:::-;23325:12;;23247:98;;;;:::o;23646:::-;23704:7;23735:1;23731;:5;;;;:::i;:::-;23724:12;;23646:98;;;;:::o;15013:733::-;15171:1;15153:20;;:6;:20;;;15145:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15255:1;15234:23;;:9;:23;;;15226:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15310:47;15331:6;15339:9;15350:6;15310:20;:47::i;:::-;15370:21;15394:9;:17;15404:6;15394:17;;;;;;;;;;;;;;;;15370:41;;15447:6;15430:13;:23;;15422:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15568:6;15552:13;:22;15532:9;:17;15542:6;15532:17;;;;;;;;;;;;;;;:42;;;;15620:6;15596:9;:20;15606:9;15596:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15661:9;15644:35;;15653:6;15644:35;;;15672:6;15644:35;;;;;;:::i;:::-;;;;;;;;15692:46;15712:6;15720:9;15731:6;15692:19;:46::i;:::-;15134:612;15013:733;;;:::o;48135:1756::-;48174:23;48200:24;48218:4;48200:9;:24::i;:::-;48174:50;;48235:25;48331:12;;48297:18;;48263;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48235:108;;48354:12;48402:1;48383:15;:20;:46;;;;48428:1;48407:17;:22;48383:46;48379:85;;;48446:7;;;;;48379:85;48519:2;48498:18;;:23;;;;:::i;:::-;48480:15;:41;48476:115;;;48577:2;48556:18;;:23;;;;:::i;:::-;48538:41;;48476:115;48652:23;48765:1;48732:17;48697:18;;48679:15;:36;;;;:::i;:::-;48678:71;;;;:::i;:::-;:88;;;;:::i;:::-;48652:114;;48777:26;48806:36;48826:15;48806;:19;;:36;;;;:::i;:::-;48777:65;;48855:25;48883:21;48855:49;;48917:36;48934:18;48917:16;:36::i;:::-;48966:18;48987:44;49013:17;48987:21;:25;;:44;;;;:::i;:::-;48966:65;;49044:23;49070:81;49123:17;49070:34;49085:18;;49070:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49044:107;;49162:17;49182:51;49215:17;49182:28;49197:12;;49182:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49162:71;;49246:23;49303:9;49285:15;49272:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49246:66;;49346:1;49325:18;:22;;;;49379:1;49358:18;:22;;;;49406:1;49391:12;:16;;;;49442:9;;;;;;;;;;;49434:23;;49465:9;49434:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49420:59;;;;;49514:1;49496:15;:19;:42;;;;;49537:1;49519:15;:19;49496:42;49492:278;;;49555:46;49568:15;49585;49555:12;:46::i;:::-;49621:137;49654:18;49691:15;49725:18;;49621:137;;;;;;;;:::i;:::-;;;;;;;;49492:278;49804:15;;;;;;;;;;;49796:29;;49847:21;49796:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49782:101;;;;;48163:1728;;;;;;;;;;48135:1756;:::o;50462:788::-;50519:4;50553:15;50536:14;:32;;;;50623:28;50654:4;:14;;;50669:13;50654:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50623:60;;50733:20;50756:77;50817:5;50756:42;50781:16;;50756:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50733:100;;50953:1;50938:12;:16;50934:110;;;50971:61;50987:13;51010:6;51019:12;50971:15;:61::i;:::-;50934:110;51119:19;51156:13;51119:51;;51181:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51208:12;;;;;;;;;;51238:4;51231:11;;;;;50462:788;:::o;18774:125::-;;;;:::o;19503:124::-;;;;:::o;22890:98::-;22948:7;22979:1;22975;:5;;;;:::i;:::-;22968:12;;22890:98;;;;:::o;47013:589::-;47139:21;47177:1;47163:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47139:40;;47208:4;47190;47195:1;47190:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47234:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47224:4;47229:1;47224:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47269:62;47286:4;47301:15;47319:11;47269:8;:62::i;:::-;47370:15;:66;;;47451:11;47477:1;47521:4;47548;47568:15;47370:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47068:534;47013:589;:::o;47610:517::-;47758:62;47775:4;47790:15;47808:11;47758:8;:62::i;:::-;47863:15;:31;;;47902:9;47935:4;47955:11;47981:1;48024;33077:6;48093:15;47863:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47610: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:179::-;16600:31;16596:1;16588:6;16584:14;16577:55;16460:179;:::o;16645:366::-;16787:3;16808:67;16872:2;16867:3;16808:67;:::i;:::-;16801:74;;16884:93;16973:3;16884:93;:::i;:::-;17002:2;16997:3;16993:12;16986:19;;16645:366;;;:::o;17017:419::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:244::-;17582:34;17578:1;17570:6;17566:14;17559:58;17651:27;17646:2;17638:6;17634:15;17627:52;17442:244;:::o;17692:366::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:419::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18317:9;18311:4;18307:20;18303:1;18292:9;18288:17;18281:47;18345:131;18471:4;18345:131;:::i;:::-;18337:139;;18064:419;;;:::o;18489:224::-;18629:34;18625:1;18617:6;18613:14;18606:58;18698:7;18693:2;18685:6;18681:15;18674:32;18489:224;:::o;18719:366::-;18861:3;18882:67;18946:2;18941:3;18882:67;:::i;:::-;18875:74;;18958:93;19047:3;18958:93;:::i;:::-;19076:2;19071:3;19067:12;19060:19;;18719:366;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:223::-;19656:34;19652:1;19644:6;19640:14;19633:58;19725:6;19720:2;19712:6;19708:15;19701:31;19516:223;:::o;19745:366::-;19887:3;19908:67;19972:2;19967:3;19908:67;:::i;:::-;19901:74;;19984:93;20073:3;19984:93;:::i;:::-;20102:2;20097:3;20093:12;20086:19;;19745:366;;;:::o;20117:419::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20370:9;20364:4;20360:20;20356:1;20345:9;20341:17;20334:47;20398:131;20524:4;20398:131;:::i;:::-;20390:139;;20117:419;;;:::o;20542:240::-;20682:34;20678:1;20670:6;20666:14;20659:58;20751:23;20746:2;20738:6;20734:15;20727:48;20542:240;:::o;20788:366::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20788:366;;;:::o;21160:419::-;21326:4;21364:2;21353:9;21349:18;21341:26;;21413:9;21407:4;21403:20;21399:1;21388:9;21384:17;21377:47;21441:131;21567:4;21441:131;:::i;:::-;21433:139;;21160:419;;;:::o;21585:239::-;21725:34;21721:1;21713:6;21709:14;21702:58;21794:22;21789:2;21781:6;21777:15;21770:47;21585:239;:::o;21830:366::-;21972:3;21993:67;22057:2;22052:3;21993:67;:::i;:::-;21986:74;;22069:93;22158:3;22069:93;:::i;:::-;22187:2;22182:3;22178:12;22171:19;;21830:366;;;:::o;22202:419::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:225::-;22767:34;22763:1;22755:6;22751:14;22744:58;22836:8;22831:2;22823:6;22819:15;22812:33;22627:225;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:182::-;23795:34;23791:1;23783:6;23779:14;23772:58;23655:182;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:229::-;24780:34;24776:1;24768:6;24764:14;24757:58;24849:12;24844:2;24836:6;24832:15;24825:37;24640:229;:::o;24875:366::-;25017:3;25038:67;25102:2;25097:3;25038:67;:::i;:::-;25031:74;;25114:93;25203:3;25114:93;:::i;:::-;25232:2;25227:3;25223:12;25216:19;;24875:366;;;:::o;25247:419::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:143::-;25729:5;25760:6;25754:13;25745:22;;25776:33;25803:5;25776:33;:::i;:::-;25672:143;;;;:::o;25821:351::-;25891:6;25940:2;25928:9;25919:7;25915:23;25911:32;25908:119;;;25946:79;;:::i;:::-;25908:119;26066:1;26091:64;26147:7;26138:6;26127:9;26123:22;26091:64;:::i;:::-;26081:74;;26037:128;25821:351;;;;:::o;26178:223::-;26318:34;26314:1;26306:6;26302:14;26295:58;26387:6;26382:2;26374:6;26370:15;26363:31;26178:223;:::o;26407:366::-;26549:3;26570:67;26634:2;26629:3;26570:67;:::i;:::-;26563:74;;26646:93;26735:3;26646:93;:::i;:::-;26764:2;26759:3;26755:12;26748:19;;26407:366;;;:::o;26779:419::-;26945:4;26983:2;26972:9;26968:18;26960:26;;27032:9;27026:4;27022:20;27018:1;27007:9;27003:17;26996:47;27060:131;27186:4;27060:131;:::i;:::-;27052:139;;26779:419;;;:::o;27204:221::-;27344:34;27340:1;27332:6;27328:14;27321:58;27413:4;27408:2;27400:6;27396:15;27389:29;27204:221;:::o;27431:366::-;27573:3;27594:67;27658:2;27653:3;27594:67;:::i;:::-;27587:74;;27670:93;27759:3;27670:93;:::i;:::-;27788:2;27783:3;27779:12;27772:19;;27431:366;;;:::o;27803:419::-;27969:4;28007:2;27996:9;27992:18;27984:26;;28056:9;28050:4;28046:20;28042:1;28031:9;28027:17;28020:47;28084:131;28210:4;28084:131;:::i;:::-;28076:139;;27803:419;;;:::o;28228:224::-;28368:34;28364:1;28356:6;28352:14;28345:58;28437:7;28432:2;28424:6;28420:15;28413:32;28228:224;:::o;28458:366::-;28600:3;28621:67;28685:2;28680:3;28621:67;:::i;:::-;28614:74;;28697:93;28786:3;28697:93;:::i;:::-;28815:2;28810:3;28806:12;28799:19;;28458:366;;;:::o;28830:419::-;28996:4;29034:2;29023:9;29019:18;29011:26;;29083:9;29077:4;29073:20;29069:1;29058:9;29054:17;29047:47;29111:131;29237:4;29111:131;:::i;:::-;29103:139;;28830:419;;;:::o;29255:222::-;29395:34;29391:1;29383:6;29379:14;29372:58;29464:5;29459:2;29451:6;29447:15;29440:30;29255:222;:::o;29483:366::-;29625:3;29646:67;29710:2;29705:3;29646:67;:::i;:::-;29639:74;;29722:93;29811:3;29722:93;:::i;:::-;29840:2;29835:3;29831:12;29824:19;;29483:366;;;:::o;29855:419::-;30021:4;30059:2;30048:9;30044:18;30036:26;;30108:9;30102:4;30098:20;30094:1;30083:9;30079:17;30072:47;30136:131;30262:4;30136:131;:::i;:::-;30128:139;;29855:419;;;:::o;30280:172::-;30420:24;30416:1;30408:6;30404:14;30397:48;30280:172;:::o;30458:366::-;30600:3;30621:67;30685:2;30680:3;30621:67;:::i;:::-;30614:74;;30697:93;30786:3;30697:93;:::i;:::-;30815:2;30810:3;30806:12;30799:19;;30458:366;;;:::o;30830:419::-;30996:4;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;30830:419;;;:::o;31255:297::-;31395:34;31391:1;31383:6;31379:14;31372:58;31464:34;31459:2;31451:6;31447:15;31440:59;31533:11;31528:2;31520:6;31516:15;31509:36;31255:297;:::o;31558:366::-;31700:3;31721:67;31785:2;31780:3;31721:67;:::i;:::-;31714:74;;31797:93;31886:3;31797:93;:::i;:::-;31915:2;31910:3;31906:12;31899:19;;31558:366;;;:::o;31930:419::-;32096:4;32134:2;32123:9;32119:18;32111:26;;32183:9;32177:4;32173:20;32169:1;32158:9;32154:17;32147:47;32211:131;32337:4;32211:131;:::i;:::-;32203:139;;31930:419;;;:::o;32355:240::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:23;32559:2;32551:6;32547:15;32540:48;32355:240;:::o;32601:366::-;32743:3;32764:67;32828:2;32823:3;32764:67;:::i;:::-;32757:74;;32840:93;32929:3;32840:93;:::i;:::-;32958:2;32953:3;32949:12;32942:19;;32601:366;;;:::o;32973:419::-;33139:4;33177:2;33166:9;33162:18;33154:26;;33226:9;33220:4;33216:20;33212:1;33201:9;33197:17;33190:47;33254:131;33380:4;33254:131;:::i;:::-;33246:139;;32973:419;;;:::o;33398:169::-;33538:21;33534:1;33526:6;33522:14;33515:45;33398:169;:::o;33573:366::-;33715:3;33736:67;33800:2;33795:3;33736:67;:::i;:::-;33729:74;;33812:93;33901:3;33812:93;:::i;:::-;33930:2;33925:3;33921:12;33914:19;;33573:366;;;:::o;33945:419::-;34111:4;34149:2;34138:9;34134:18;34126:26;;34198:9;34192:4;34188:20;34184:1;34173:9;34169:17;34162:47;34226:131;34352:4;34226:131;:::i;:::-;34218:139;;33945:419;;;:::o;34370:241::-;34510:34;34506:1;34498:6;34494:14;34487:58;34579:24;34574:2;34566:6;34562:15;34555:49;34370:241;:::o;34617:366::-;34759:3;34780:67;34844:2;34839:3;34780:67;:::i;:::-;34773:74;;34856:93;34945:3;34856:93;:::i;:::-;34974:2;34969:3;34965:12;34958:19;;34617:366;;;:::o;34989:419::-;35155:4;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;34989:419;;;:::o;35414:194::-;35454:4;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35552:1;35549;35545:9;35537:17;;35576:1;35570:4;35567:11;35564:37;;;35581:18;;:::i;:::-;35564:37;35414:194;;;;:::o;35614:225::-;35754:34;35750:1;35742:6;35738:14;35731:58;35823:8;35818:2;35810:6;35806:15;35799:33;35614:225;:::o;35845:366::-;35987:3;36008:67;36072:2;36067:3;36008:67;:::i;:::-;36001:74;;36084:93;36173:3;36084:93;:::i;:::-;36202:2;36197:3;36193:12;36186:19;;35845:366;;;:::o;36217:419::-;36383:4;36421:2;36410:9;36406:18;36398:26;;36470:9;36464:4;36460:20;36456:1;36445:9;36441:17;36434:47;36498:131;36624:4;36498:131;:::i;:::-;36490:139;;36217:419;;;:::o;36642:147::-;36743:11;36780:3;36765:18;;36642:147;;;;:::o;36795:114::-;;:::o;36915:398::-;37074:3;37095:83;37176:1;37171:3;37095:83;:::i;:::-;37088:90;;37187:93;37276:3;37187:93;:::i;:::-;37305:1;37300:3;37296:11;37289:18;;36915:398;;;:::o;37319:379::-;37503:3;37525:147;37668:3;37525:147;:::i;:::-;37518:154;;37689:3;37682:10;;37319:379;;;:::o;37704:442::-;37853:4;37891:2;37880:9;37876:18;37868:26;;37904:71;37972:1;37961:9;37957:17;37948:6;37904:71;:::i;:::-;37985:72;38053:2;38042:9;38038:18;38029:6;37985:72;:::i;:::-;38067;38135:2;38124:9;38120:18;38111:6;38067:72;:::i;:::-;37704:442;;;;;;:::o;38152:180::-;38200:77;38197:1;38190:88;38297:4;38294:1;38287:15;38321:4;38318:1;38311:15;38338:180;38386:77;38383:1;38376:88;38483:4;38480:1;38473:15;38507:4;38504:1;38497:15;38524:143;38581:5;38612:6;38606:13;38597:22;;38628:33;38655:5;38628:33;:::i;:::-;38524:143;;;;:::o;38673:351::-;38743:6;38792:2;38780:9;38771:7;38767:23;38763:32;38760:119;;;38798:79;;:::i;:::-;38760:119;38918:1;38943:64;38999:7;38990:6;38979:9;38975:22;38943:64;:::i;:::-;38933:74;;38889:128;38673:351;;;;:::o;39030:85::-;39075:7;39104:5;39093:16;;39030:85;;;:::o;39121:158::-;39179:9;39212:61;39230:42;39239:32;39265:5;39239:32;:::i;:::-;39230:42;:::i;:::-;39212:61;:::i;:::-;39199:74;;39121:158;;;:::o;39285:147::-;39380:45;39419:5;39380:45;:::i;:::-;39375:3;39368:58;39285:147;;:::o;39438:114::-;39505:6;39539:5;39533:12;39523:22;;39438:114;;;:::o;39558:184::-;39657:11;39691:6;39686:3;39679:19;39731:4;39726:3;39722:14;39707:29;;39558:184;;;;:::o;39748:132::-;39815:4;39838:3;39830:11;;39868:4;39863:3;39859:14;39851:22;;39748:132;;;:::o;39886:108::-;39963:24;39981:5;39963:24;:::i;:::-;39958:3;39951:37;39886:108;;:::o;40000:179::-;40069:10;40090:46;40132:3;40124:6;40090:46;:::i;:::-;40168:4;40163:3;40159:14;40145:28;;40000:179;;;;:::o;40185:113::-;40255:4;40287;40282:3;40278:14;40270:22;;40185:113;;;:::o;40334:732::-;40453:3;40482:54;40530:5;40482:54;:::i;:::-;40552:86;40631:6;40626:3;40552:86;:::i;:::-;40545:93;;40662:56;40712:5;40662:56;:::i;:::-;40741:7;40772:1;40757:284;40782:6;40779:1;40776:13;40757:284;;;40858:6;40852:13;40885:63;40944:3;40929:13;40885:63;:::i;:::-;40878:70;;40971:60;41024:6;40971:60;:::i;:::-;40961:70;;40817:224;40804:1;40801;40797:9;40792:14;;40757:284;;;40761:14;41057:3;41050:10;;40458:608;;;40334:732;;;;:::o;41072:831::-;41335:4;41373:3;41362:9;41358:19;41350:27;;41387:71;41455:1;41444:9;41440:17;41431:6;41387:71;:::i;:::-;41468:80;41544:2;41533:9;41529:18;41520:6;41468:80;:::i;:::-;41595:9;41589:4;41585:20;41580:2;41569:9;41565:18;41558:48;41623:108;41726:4;41717:6;41623:108;:::i;:::-;41615:116;;41741:72;41809:2;41798:9;41794:18;41785:6;41741:72;:::i;:::-;41823:73;41891:3;41880:9;41876:19;41867:6;41823:73;:::i;:::-;41072:831;;;;;;;;:::o;41909:807::-;42158:4;42196:3;42185:9;42181:19;42173:27;;42210:71;42278:1;42267:9;42263:17;42254:6;42210:71;:::i;:::-;42291:72;42359:2;42348:9;42344:18;42335:6;42291:72;:::i;:::-;42373:80;42449:2;42438:9;42434:18;42425:6;42373:80;:::i;:::-;42463;42539:2;42528:9;42524:18;42515:6;42463:80;:::i;:::-;42553:73;42621:3;42610:9;42606:19;42597:6;42553:73;:::i;:::-;42636;42704:3;42693:9;42689:19;42680:6;42636:73;:::i;:::-;41909:807;;;;;;;;;:::o;42722:663::-;42810:6;42818;42826;42875:2;42863:9;42854:7;42850:23;42846:32;42843:119;;;42881:79;;:::i;:::-;42843:119;43001:1;43026:64;43082:7;43073:6;43062:9;43058:22;43026:64;:::i;:::-;43016:74;;42972:128;43139:2;43165:64;43221:7;43212:6;43201:9;43197:22;43165:64;:::i;:::-;43155:74;;43110:129;43278:2;43304:64;43360:7;43351:6;43340:9;43336:22;43304:64;:::i;:::-;43294:74;;43249:129;42722:663;;;;;:::o

Swarm Source

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