ETH Price: $2,627.66 (+1.18%)

Token

Earth Inu (EINU)
 

Overview

Max Total Supply

100,000,000 EINU

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
314,942.187437061866202823 EINU

Value
$0.00
0xc52bc7313dfbd0cedb330befcd1a3ba514c4a248
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:
EarthInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-16
*/

/* 
Earth Inu - Guardian of the Environment

"We have only one Earth and I will do anything in my power to protect it."

Donates 4% to #TeamTrees with a hardcoded wallet address per swap. 
Verify total donations at https://www.every.org/@earth.inu

Website:  http://earthinu.org
Twitter:  https://twitter.com/Earth_Inu
Telegram: https://t.me/earth_inu
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
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 EarthInu 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 charityWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    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 buyCharityFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellCharityFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForCharity;

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

    // 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 charityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Earth Inu", "EINU") {
        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 _buyCharityFee = 4;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 13;
        uint256 _sellCharityFee = 10;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyCharityFee = _buyCharityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyCharityFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellCharityFee = _sellCharityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCharityFee;

        marketingWallet = address(0x27cF59AEa05b520f28D4905B4589B89591ECFFCF); // set as marketing wallet
        charityWallet = address(0x27cF59AEa05b520f28D4905B4589B89591ECFFCF); // set as charity 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 _charityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyCharityFee = _charityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyCharityFee;
        require(buyTotalFees <= 11, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _charityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellCharityFee = _charityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellCharityFee;
        require(sellTotalFees <= 30, "Must keep fees at 30% 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 updateCharityWallet(address newWallet) external onlyOwner {
        emit charityWalletUpdated(newWallet, charityWallet);
        charityWallet = 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;
                tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForCharity += (fees * buyCharityFee) / 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 +
            tokensForCharity;
        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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForCharity;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForCharity = 0;

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

        (success, ) = address(charityWallet).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":"charityWalletUpdated","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":"buyCharityFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"sellCharityFee","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":"tokensForCharity","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":"_charityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCharityWallet","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":"_charityFee","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"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600981526020017f456172746820496e7500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f45494e550000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b14565b5080600490805190602001906200014792919062000b14565b5050506200016a6200015e620005d460201b60201c565b620005dc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2e565b6040518363ffffffff1660e01b8152600401620002e992919062000c71565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a260201b60201c565b6200038c60a05160016200078c60201b60201c565b60008060019050600060049050600080600d90506000600a905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550612710600582620003ec919062000cd7565b620003f8919062000d67565b60098190555086601581905550856016819055508460178190555060175460165460155462000428919062000d9f565b62000434919062000d9f565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000464919062000d9f565b62000470919062000d9f565b6018819055507327cf59aea05b520f28d4905b4589b89591ecffcf600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507327cf59aea05b520f28d4905b4589b89591ecffcf600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000542620005346200082d60201b60201c565b60016200085760201b60201c565b620005553060016200085760201b60201c565b6200056a61dead60016200085760201b60201c565b6200058c6200057e6200082d60201b60201c565b6001620006a260201b60201c565b6200059f306001620006a260201b60201c565b620005b461dead6001620006a260201b60201c565b620005c633826200099160201b60201c565b505050505050505062000fbe565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b2620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d86200082d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007289062000e5d565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000867620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088d6200082d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008dd9062000e5d565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000985919062000e9c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fb9062000f09565b60405180910390fd5b62000a186000838362000b0a60201b60201c565b806002600082825462000a2c919062000d9f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a83919062000d9f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aea919062000f3c565b60405180910390a362000b066000838362000b0f60201b60201c565b5050565b505050565b505050565b82805462000b229062000f88565b90600052602060002090601f01602090048101928262000b46576000855562000b92565b82601f1062000b6157805160ff191683800117855562000b92565b8280016001018555821562000b92579182015b8281111562000b9157825182559160200191906001019062000b74565b5b50905062000ba1919062000ba5565b5090565b5b8082111562000bc057600081600090555060010162000ba6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf68262000bc9565b9050919050565b62000c088162000be9565b811462000c1457600080fd5b50565b60008151905062000c288162000bfd565b92915050565b60006020828403121562000c475762000c4662000bc4565b5b600062000c578482850162000c17565b91505092915050565b62000c6b8162000be9565b82525050565b600060408201905062000c88600083018562000c60565b62000c97602083018462000c60565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce48262000c9e565b915062000cf18362000c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2d5762000d2c62000ca8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d748262000c9e565b915062000d818362000c9e565b92508262000d945762000d9362000d38565b5b828204905092915050565b600062000dac8262000c9e565b915062000db98362000c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df15762000df062000ca8565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4560208362000dfc565b915062000e528262000e0d565b602082019050919050565b6000602082019050818103600083015262000e788162000e36565b9050919050565b60008115159050919050565b62000e968162000e7f565b82525050565b600060208201905062000eb3600083018462000e8b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef1601f8362000dfc565b915062000efe8262000eb9565b602082019050919050565b6000602082019050818103600083015262000f248162000ee2565b9050919050565b62000f368162000c9e565b82525050565b600060208201905062000f53600083018462000f2b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa157607f821691505b6020821081141562000fb85762000fb762000f59565b5b50919050565b60805160a051615baa62001046600039600081816113f901528181611c0901528181612747015281816127fe0152818161282b01528181612e6f01528181613ee501528181613f9e0152613fcb015260008181610f9601528181612e17015281816141410152818161422201528181614249015281816142e5015261430c0152615baa6000f3fe6080604052600436106103b15760003560e01c80637bce5a04116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a80578063a1dc92bc14610aab578063a457c2d714610ad6576103b8565b80638da5cb5b116101c15780638da5cb5b146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80637bce5a04146109425780638095d5641461096d5780638a8c523c14610996576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637b20876914610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b806349bd5a5e116102a657806349bd5a5e146107325780634a62bb651461075d5780634fbee193146107885780636a486a8e146107c5576103b8565b8063313ce5671461067657806339509351146106a15780633e65d4aa146106de57806344249f0414610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b857806327c8f835146105f55780632c3e486c146106205780632e82f1a01461064b576103b8565b8063199ffc721461050e5780631a8145bb146105395780631f3fed8f14610564578063203e727e1461058f576103b8565b806310d5de531161038b57806310d5de53146104505780631694505e1461048d57806318160ddd146104b8578063184c16c5146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e85780630d7f144114610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614454565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061450f565b610f51565b60405161041c919061456a565b60405180910390f35b34801561043157600080fd5b5061043a610f6f565b6040516104479190614594565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906145af565b610f75565b604051610484919061456a565b60405180910390f35b34801561049957600080fd5b506104a2610f94565b6040516104af919061463b565b60405180910390f35b3480156104c457600080fd5b506104cd610fb8565b6040516104da9190614594565b60405180910390f35b3480156104ef57600080fd5b506104f8610fc2565b6040516105059190614594565b60405180910390f35b34801561051a57600080fd5b50610523610fc8565b6040516105309190614594565b60405180910390f35b34801561054557600080fd5b5061054e610fce565b60405161055b9190614594565b60405180910390f35b34801561057057600080fd5b50610579610fd4565b6040516105869190614594565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190614656565b610fda565b005b3480156105c457600080fd5b506105df60048036038101906105da9190614683565b6110e9565b6040516105ec919061456a565b60405180910390f35b34801561060157600080fd5b5061060a6111e1565b60405161061791906146e5565b60405180910390f35b34801561062c57600080fd5b506106356111e7565b6040516106429190614594565b60405180910390f35b34801561065757600080fd5b506106606111ed565b60405161066d919061456a565b60405180910390f35b34801561068257600080fd5b5061068b611200565b604051610698919061471c565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061450f565b611209565b6040516106d5919061456a565b60405180910390f35b3480156106ea57600080fd5b50610705600480360381019061070091906145af565b6112b5565b005b34801561071357600080fd5b5061071c6113f1565b6040516107299190614594565b60405180910390f35b34801561073e57600080fd5b506107476113f7565b60405161075491906146e5565b60405180910390f35b34801561076957600080fd5b5061077261141b565b60405161077f919061456a565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906145af565b61142e565b6040516107bc919061456a565b60405180910390f35b3480156107d157600080fd5b506107da611484565b6040516107e79190614594565b60405180910390f35b3480156107fc57600080fd5b5061080561148a565b604051610812919061456a565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906145af565b61149d565b60405161084f9190614594565b60405180910390f35b34801561086457600080fd5b5061086d6114e5565b005b34801561087b57600080fd5b5061089660048036038101906108919190614763565b61156d565b005b3480156108a457600080fd5b506108ad6116ad565b6040516108ba919061456a565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e591906147b6565b61174d565b005b3480156108f857600080fd5b50610901611824565b60405161090e91906146e5565b60405180910390f35b34801561092357600080fd5b5061092c61184a565b60405161093991906146e5565b60405180910390f35b34801561094e57600080fd5b50610957611870565b6040516109649190614594565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f91906147f6565b611876565b005b3480156109a257600080fd5b506109ab611975565b005b3480156109b957600080fd5b506109c2611a30565b6040516109cf91906146e5565b60405180910390f35b3480156109e457600080fd5b506109ed611a5a565b6040516109fa9190614594565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614849565b611a60565b005b348015610a3857600080fd5b50610a41611af9565b604051610a4e9190614454565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a7991906147b6565b611b8b565b005b348015610a8c57600080fd5b50610a95611ca4565b604051610aa29190614594565b60405180910390f35b348015610ab757600080fd5b50610ac0611caa565b604051610acd9190614594565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061450f565b611cb0565b604051610b0a919061456a565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9b565b604051610b359190614594565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061450f565b611da1565b604051610b72919061456a565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145af565b611dbf565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145af565b611efb565b604051610bd8919061456a565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1b565b604051610c03919061456a565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147b6565b611f2e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c5791906147f6565b612053565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614656565b612152565b005b348015610c9357600080fd5b50610c9c612261565b604051610ca9919061456a565b60405180910390f35b348015610cbe57600080fd5b50610cc7612274565b604051610cd49190614594565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614656565b61227a565b604051610d11919061456a565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cf565b604051610d3c9190614594565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614876565b6123d5565b604051610d799190614594565b60405180910390f35b348015610d8e57600080fd5b50610d9761245c565b604051610da49190614594565b60405180910390f35b348015610db957600080fd5b50610dc2612462565b604051610dcf919061456a565b60405180910390f35b348015610de457600080fd5b50610ded612502565b604051610dfa9190614594565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145af565b612508565b005b348015610e3857600080fd5b50610e41612600565b604051610e4e9190614594565b60405180910390f35b348015610e6357600080fd5b50610e6c612606565b604051610e799190614594565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614656565b61260c565b604051610eb6919061456a565b60405180910390f35b606060038054610ece906148e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148e5565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b601b5481565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610fe26128e4565b73ffffffffffffffffffffffffffffffffffffffff16611000611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90614963565b60405180910390fd5b670de0b6b3a76400006103e8600161106c610fb8565b61107691906149b2565b6110809190614a3b565b61108a9190614a3b565b8110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614ade565b60405180910390fd5b670de0b6b3a7640000816110e091906149b2565b60088190555050565b60006110f6848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111416128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614b70565b60405180910390fd5b6111d5856111cd6128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112ab6112166128e4565b8484600160006112246128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a69190614b90565b6128ec565b6001905092915050565b6112bd6128e4565b73ffffffffffffffffffffffffffffffffffffffff166112db611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614963565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ed6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661150b611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614963565b60405180910390fd5b61156b600061384f565b565b6115756128e4565b73ffffffffffffffffffffffffffffffffffffffff16611593611a30565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614963565b60405180910390fd5b61025883101561162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590614c58565b60405180910390fd5b6103e88211158015611641575060008210155b611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614cea565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116b76128e4565b73ffffffffffffffffffffffffffffffffffffffff166116d5611a30565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290614963565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117556128e4565b73ffffffffffffffffffffffffffffffffffffffff16611773611a30565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614963565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61187e6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661189c611a30565b73ffffffffffffffffffffffffffffffffffffffff16146118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990614963565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191a9190614b90565b6119249190614b90565b601481905550600b6014541115611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790614d56565b60405180910390fd5b505050565b61197d6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661199b611a30565b73ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e890614963565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60195481565b611a686128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614963565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b08906148e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b34906148e5565b8015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b611b936128e4565b73ffffffffffffffffffffffffffffffffffffffff16611bb1611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614963565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614de8565b60405180910390fd5b611ca08282613915565b5050565b60105481565b60175481565b60008060016000611cbf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614e7a565b60405180910390fd5b611d90611d876128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611db5611dae6128e4565b8484612ab7565b6001905092915050565b611dc76128e4565b73ffffffffffffffffffffffffffffffffffffffff16611de5611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614963565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f366128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f54611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190614963565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612047919061456a565b60405180910390a25050565b61205b6128e4565b73ffffffffffffffffffffffffffffffffffffffff16612079611a30565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614963565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f79190614b90565b6121019190614b90565b601881905550601e601854111561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490614ee6565b60405180910390fd5b505050565b61215a6128e4565b73ffffffffffffffffffffffffffffffffffffffff16612178611a30565b73ffffffffffffffffffffffffffffffffffffffff16146121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614963565b60405180910390fd5b670de0b6b3a76400006103e860056121e4610fb8565b6121ee91906149b2565b6121f89190614a3b565b6122029190614a3b565b811015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614f78565b60405180910390fd5b670de0b6b3a76400008161225891906149b2565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122846128e4565b73ffffffffffffffffffffffffffffffffffffffff166122a2611a30565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90614963565b60405180910390fd5b620186a06001612306610fb8565b61231091906149b2565b61231a9190614a3b565b82101561235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061500a565b60405180910390fd5b6103e86005612369610fb8565b61237391906149b2565b61237d9190614a3b565b8211156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b69061509c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661248a611a30565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790614963565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125106128e4565b73ffffffffffffffffffffffffffffffffffffffff1661252e611a30565b73ffffffffffffffffffffffffffffffffffffffff1614612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90614963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb9061512e565b60405180910390fd5b6125fd8161384f565b50565b601a5481565b600a5481565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff16612634611a30565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614963565b60405180910390fd5b600f5460105461269a9190614b90565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061519a565b60405180910390fd5b6103e8821115612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061522c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161278291906146e5565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c39190615261565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390615300565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390615392565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa9190614594565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90615424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e906154b6565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce611a30565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c611a30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890615522565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf611a30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b906155da565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e9061566c565b60405180910390fd5b600a546130838361149d565b8261308e9190614b90565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c6906156d8565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061576a565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a546132238361149d565b8261322e9190614b90565b111561326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156d8565b60405180910390fd5b5b5b5b5b5b600061327f3061149d565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614b90565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613ebc565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a548261366491906149b2565b61366e9190614a3b565b601d600082825461367f9190614b90565b92505081905550601854601b548261369791906149b2565b6136a19190614a3b565b601e60008282546136b29190614b90565b92505081905550601854601954826136ca91906149b2565b6136d49190614a3b565b601c60008282546136e59190614b90565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c91906149b2565b6137969190614a3b565b601d60008282546137a79190614b90565b92505081905550601454601754826137bf91906149b2565b6137c99190614a3b565b601e60008282546137da9190614b90565b92505081905550601454601554826137f291906149b2565b6137fc9190614a3b565b601c600082825461380d9190614b90565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b8085613837919061578a565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c491906149b2565b905092915050565b600081836139da9190614a3b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4990615424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab9906154b6565b60405180910390fd5b613acd838383614082565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90615830565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614b90565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a9190614594565b60405180910390a3613c5d848484614087565b50505050565b6000613c6e3061149d565b90506000601e54601c54601d54613c859190614b90565b613c8f9190614b90565b9050600080831480613ca15750600082145b15613cae57505050613eba565b6014600954613cbd91906149b2565b831115613cd6576014600954613cd391906149b2565b92505b6000600283601d5486613ce991906149b2565b613cf39190614a3b565b613cfd9190614a3b565b90506000613d14828661408c90919063ffffffff16565b90506000479050613d24826140a2565b6000613d39824761408c90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da0919061578a565b613daa919061578a565b90506000601d819055506000601c819055506000601e81905550600087118015613dd45750600081115b15613e2157613de387826142df565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e1893929190615850565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e67906158b8565b60006040518083038185875af1925050503d8060008114613ea4576040519150601f19603f3d011682016040523d82523d6000602084013e613ea9565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f2091906146e5565b602060405180830381865afa158015613f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f619190615261565b90506000613f8e612710613f80600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115613fc757613fc67f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561403457600080fd5b505af1158015614048573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361409a919061578a565b905092915050565b6000600267ffffffffffffffff8111156140bf576140be6158cd565b5b6040519080825280602002602001820160405280156140ed5781602001602082028036833780820191505090505b5090503081600081518110614105576141046158fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141ce9190615940565b816001815181106141e2576141e16158fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614247307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142a9959493929190615a66565b600060405180830381600087803b1580156142c357600080fd5b505af11580156142d7573d6000803e3d6000fd5b505050505050565b61430a307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161437196959493929190615ac0565b60606040518083038185885af115801561438f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143b49190615b21565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143f55780820151818401526020810190506143da565b83811115614404576000848401525b50505050565b6000601f19601f8301169050919050565b6000614426826143bb565b61443081856143c6565b93506144408185602086016143d7565b6144498161440a565b840191505092915050565b6000602082019050818103600083015261446e818461441b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144a68261447b565b9050919050565b6144b68161449b565b81146144c157600080fd5b50565b6000813590506144d3816144ad565b92915050565b6000819050919050565b6144ec816144d9565b81146144f757600080fd5b50565b600081359050614509816144e3565b92915050565b6000806040838503121561452657614525614476565b5b6000614534858286016144c4565b9250506020614545858286016144fa565b9150509250929050565b60008115159050919050565b6145648161454f565b82525050565b600060208201905061457f600083018461455b565b92915050565b61458e816144d9565b82525050565b60006020820190506145a96000830184614585565b92915050565b6000602082840312156145c5576145c4614476565b5b60006145d3848285016144c4565b91505092915050565b6000819050919050565b60006146016145fc6145f78461447b565b6145dc565b61447b565b9050919050565b6000614613826145e6565b9050919050565b600061462582614608565b9050919050565b6146358161461a565b82525050565b6000602082019050614650600083018461462c565b92915050565b60006020828403121561466c5761466b614476565b5b600061467a848285016144fa565b91505092915050565b60008060006060848603121561469c5761469b614476565b5b60006146aa868287016144c4565b93505060206146bb868287016144c4565b92505060406146cc868287016144fa565b9150509250925092565b6146df8161449b565b82525050565b60006020820190506146fa60008301846146d6565b92915050565b600060ff82169050919050565b61471681614700565b82525050565b6000602082019050614731600083018461470d565b92915050565b6147408161454f565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b60008060006060848603121561477c5761477b614476565b5b600061478a868287016144fa565b935050602061479b868287016144fa565b92505060406147ac8682870161474e565b9150509250925092565b600080604083850312156147cd576147cc614476565b5b60006147db858286016144c4565b92505060206147ec8582860161474e565b9150509250929050565b60008060006060848603121561480f5761480e614476565b5b600061481d868287016144fa565b935050602061482e868287016144fa565b925050604061483f868287016144fa565b9150509250925092565b60006020828403121561485f5761485e614476565b5b600061486d8482850161474e565b91505092915050565b6000806040838503121561488d5761488c614476565b5b600061489b858286016144c4565b92505060206148ac858286016144c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148fd57607f821691505b60208210811415614911576149106148b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061494d6020836143c6565b915061495882614917565b602082019050919050565b6000602082019050818103600083015261497c81614940565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149bd826144d9565b91506149c8836144d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0157614a00614983565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a46826144d9565b9150614a51836144d9565b925082614a6157614a60614a0c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ac8602f836143c6565b9150614ad382614a6c565b604082019050919050565b60006020820190508181036000830152614af781614abb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b5a6028836143c6565b9150614b6582614afe565b604082019050919050565b60006020820190508181036000830152614b8981614b4d565b9050919050565b6000614b9b826144d9565b9150614ba6836144d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bdb57614bda614983565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c426033836143c6565b9150614c4d82614be6565b604082019050919050565b60006020820190508181036000830152614c7181614c35565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cd46030836143c6565b9150614cdf82614c78565b604082019050919050565b60006020820190508181036000830152614d0381614cc7565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d40601d836143c6565b9150614d4b82614d0a565b602082019050919050565b60006020820190508181036000830152614d6f81614d33565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614dd26039836143c6565b9150614ddd82614d76565b604082019050919050565b60006020820190508181036000830152614e0181614dc5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e646025836143c6565b9150614e6f82614e08565b604082019050919050565b60006020820190508181036000830152614e9381614e57565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000614ed0601d836143c6565b9150614edb82614e9a565b602082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f626024836143c6565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ff46035836143c6565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150866034836143c6565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151186026836143c6565b9150615123826150bc565b604082019050919050565b600060208201905081810360008301526151478161510b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151846020836143c6565b915061518f8261514e565b602082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615216602a836143c6565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b60008151905061525b816144e3565b92915050565b60006020828403121561527757615276614476565b5b60006152858482850161524c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152ea6024836143c6565b91506152f58261528e565b604082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061537c6022836143c6565b915061538782615320565b604082019050919050565b600060208201905081810360008301526153ab8161536f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061540e6025836143c6565b9150615419826153b2565b604082019050919050565b6000602082019050818103600083015261543d81615401565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154a06023836143c6565b91506154ab82615444565b604082019050919050565b600060208201905081810360008301526154cf81615493565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061550c6016836143c6565b9150615517826154d6565b602082019050919050565b6000602082019050818103600083015261553b816154ff565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155c46049836143c6565b91506155cf82615542565b606082019050919050565b600060208201905081810360008301526155f3816155b7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156566035836143c6565b9150615661826155fa565b604082019050919050565b6000602082019050818103600083015261568581615649565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156c26013836143c6565b91506156cd8261568c565b602082019050919050565b600060208201905081810360008301526156f1816156b5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157546036836143c6565b915061575f826156f8565b604082019050919050565b6000602082019050818103600083015261578381615747565b9050919050565b6000615795826144d9565b91506157a0836144d9565b9250828210156157b3576157b2614983565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061581a6026836143c6565b9150615825826157be565b604082019050919050565b600060208201905081810360008301526158498161580d565b9050919050565b60006060820190506158656000830186614585565b6158726020830185614585565b61587f6040830184614585565b949350505050565b600081905092915050565b50565b60006158a2600083615887565b91506158ad82615892565b600082019050919050565b60006158c382615895565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061593a816144ad565b92915050565b60006020828403121561595657615955614476565b5b60006159648482850161592b565b91505092915050565b6000819050919050565b600061599261598d6159888461596d565b6145dc565b6144d9565b9050919050565b6159a281615977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159dd8161449b565b82525050565b60006159ef83836159d4565b60208301905092915050565b6000602082019050919050565b6000615a13826159a8565b615a1d81856159b3565b9350615a28836159c4565b8060005b83811015615a59578151615a4088826159e3565b9750615a4b836159fb565b925050600181019050615a2c565b5085935050505092915050565b600060a082019050615a7b6000830188614585565b615a886020830187615999565b8181036040830152615a9a8186615a08565b9050615aa960608301856146d6565b615ab66080830184614585565b9695505050505050565b600060c082019050615ad560008301896146d6565b615ae26020830188614585565b615aef6040830187615999565b615afc6060830186615999565b615b0960808301856146d6565b615b1660a0830184614585565b979650505050505050565b600080600060608486031215615b3a57615b39614476565b5b6000615b488682870161524c565b9350506020615b598682870161524c565b9250506040615b6a8682870161524c565b915050925092509256fea2646970667358221220243130ab1587e2294c8fa4348df384c0db0cc4d6dbae28a0db5585be5455b06d64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80637bce5a04116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a80578063a1dc92bc14610aab578063a457c2d714610ad6576103b8565b80638da5cb5b116101c15780638da5cb5b146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80637bce5a04146109425780638095d5641461096d5780638a8c523c14610996576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637b20876914610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b806349bd5a5e116102a657806349bd5a5e146107325780634a62bb651461075d5780634fbee193146107885780636a486a8e146107c5576103b8565b8063313ce5671461067657806339509351146106a15780633e65d4aa146106de57806344249f0414610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b857806327c8f835146105f55780632c3e486c146106205780632e82f1a01461064b576103b8565b8063199ffc721461050e5780631a8145bb146105395780631f3fed8f14610564578063203e727e1461058f576103b8565b806310d5de531161038b57806310d5de53146104505780631694505e1461048d57806318160ddd146104b8578063184c16c5146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e85780630d7f144114610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614454565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061450f565b610f51565b60405161041c919061456a565b60405180910390f35b34801561043157600080fd5b5061043a610f6f565b6040516104479190614594565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906145af565b610f75565b604051610484919061456a565b60405180910390f35b34801561049957600080fd5b506104a2610f94565b6040516104af919061463b565b60405180910390f35b3480156104c457600080fd5b506104cd610fb8565b6040516104da9190614594565b60405180910390f35b3480156104ef57600080fd5b506104f8610fc2565b6040516105059190614594565b60405180910390f35b34801561051a57600080fd5b50610523610fc8565b6040516105309190614594565b60405180910390f35b34801561054557600080fd5b5061054e610fce565b60405161055b9190614594565b60405180910390f35b34801561057057600080fd5b50610579610fd4565b6040516105869190614594565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190614656565b610fda565b005b3480156105c457600080fd5b506105df60048036038101906105da9190614683565b6110e9565b6040516105ec919061456a565b60405180910390f35b34801561060157600080fd5b5061060a6111e1565b60405161061791906146e5565b60405180910390f35b34801561062c57600080fd5b506106356111e7565b6040516106429190614594565b60405180910390f35b34801561065757600080fd5b506106606111ed565b60405161066d919061456a565b60405180910390f35b34801561068257600080fd5b5061068b611200565b604051610698919061471c565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061450f565b611209565b6040516106d5919061456a565b60405180910390f35b3480156106ea57600080fd5b50610705600480360381019061070091906145af565b6112b5565b005b34801561071357600080fd5b5061071c6113f1565b6040516107299190614594565b60405180910390f35b34801561073e57600080fd5b506107476113f7565b60405161075491906146e5565b60405180910390f35b34801561076957600080fd5b5061077261141b565b60405161077f919061456a565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906145af565b61142e565b6040516107bc919061456a565b60405180910390f35b3480156107d157600080fd5b506107da611484565b6040516107e79190614594565b60405180910390f35b3480156107fc57600080fd5b5061080561148a565b604051610812919061456a565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906145af565b61149d565b60405161084f9190614594565b60405180910390f35b34801561086457600080fd5b5061086d6114e5565b005b34801561087b57600080fd5b5061089660048036038101906108919190614763565b61156d565b005b3480156108a457600080fd5b506108ad6116ad565b6040516108ba919061456a565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e591906147b6565b61174d565b005b3480156108f857600080fd5b50610901611824565b60405161090e91906146e5565b60405180910390f35b34801561092357600080fd5b5061092c61184a565b60405161093991906146e5565b60405180910390f35b34801561094e57600080fd5b50610957611870565b6040516109649190614594565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f91906147f6565b611876565b005b3480156109a257600080fd5b506109ab611975565b005b3480156109b957600080fd5b506109c2611a30565b6040516109cf91906146e5565b60405180910390f35b3480156109e457600080fd5b506109ed611a5a565b6040516109fa9190614594565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614849565b611a60565b005b348015610a3857600080fd5b50610a41611af9565b604051610a4e9190614454565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a7991906147b6565b611b8b565b005b348015610a8c57600080fd5b50610a95611ca4565b604051610aa29190614594565b60405180910390f35b348015610ab757600080fd5b50610ac0611caa565b604051610acd9190614594565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061450f565b611cb0565b604051610b0a919061456a565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9b565b604051610b359190614594565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061450f565b611da1565b604051610b72919061456a565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145af565b611dbf565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145af565b611efb565b604051610bd8919061456a565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1b565b604051610c03919061456a565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147b6565b611f2e565b005b348015610c4157600080fd5b50610c5c6004803603810190610c5791906147f6565b612053565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614656565b612152565b005b348015610c9357600080fd5b50610c9c612261565b604051610ca9919061456a565b60405180910390f35b348015610cbe57600080fd5b50610cc7612274565b604051610cd49190614594565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614656565b61227a565b604051610d11919061456a565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cf565b604051610d3c9190614594565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614876565b6123d5565b604051610d799190614594565b60405180910390f35b348015610d8e57600080fd5b50610d9761245c565b604051610da49190614594565b60405180910390f35b348015610db957600080fd5b50610dc2612462565b604051610dcf919061456a565b60405180910390f35b348015610de457600080fd5b50610ded612502565b604051610dfa9190614594565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145af565b612508565b005b348015610e3857600080fd5b50610e41612600565b604051610e4e9190614594565b60405180910390f35b348015610e6357600080fd5b50610e6c612606565b604051610e799190614594565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614656565b61260c565b604051610eb6919061456a565b60405180910390f35b606060038054610ece906148e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148e5565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b601b5481565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610fe26128e4565b73ffffffffffffffffffffffffffffffffffffffff16611000611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90614963565b60405180910390fd5b670de0b6b3a76400006103e8600161106c610fb8565b61107691906149b2565b6110809190614a3b565b61108a9190614a3b565b8110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614ade565b60405180910390fd5b670de0b6b3a7640000816110e091906149b2565b60088190555050565b60006110f6848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111416128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614b70565b60405180910390fd5b6111d5856111cd6128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112ab6112166128e4565b8484600160006112246128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a69190614b90565b6128ec565b6001905092915050565b6112bd6128e4565b73ffffffffffffffffffffffffffffffffffffffff166112db611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614963565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e5481565b7f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ed6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661150b611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614963565b60405180910390fd5b61156b600061384f565b565b6115756128e4565b73ffffffffffffffffffffffffffffffffffffffff16611593611a30565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614963565b60405180910390fd5b61025883101561162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590614c58565b60405180910390fd5b6103e88211158015611641575060008210155b611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614cea565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116b76128e4565b73ffffffffffffffffffffffffffffffffffffffff166116d5611a30565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290614963565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117556128e4565b73ffffffffffffffffffffffffffffffffffffffff16611773611a30565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614963565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61187e6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661189c611a30565b73ffffffffffffffffffffffffffffffffffffffff16146118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990614963565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191a9190614b90565b6119249190614b90565b601481905550600b6014541115611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790614d56565b60405180910390fd5b505050565b61197d6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661199b611a30565b73ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e890614963565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60195481565b611a686128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614963565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b08906148e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b34906148e5565b8015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b611b936128e4565b73ffffffffffffffffffffffffffffffffffffffff16611bb1611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614963565b60405180910390fd5b7f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614de8565b60405180910390fd5b611ca08282613915565b5050565b60105481565b60175481565b60008060016000611cbf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390614e7a565b60405180910390fd5b611d90611d876128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611db5611dae6128e4565b8484612ab7565b6001905092915050565b611dc76128e4565b73ffffffffffffffffffffffffffffffffffffffff16611de5611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614963565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f366128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f54611a30565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190614963565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612047919061456a565b60405180910390a25050565b61205b6128e4565b73ffffffffffffffffffffffffffffffffffffffff16612079611a30565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614963565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f79190614b90565b6121019190614b90565b601881905550601e601854111561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490614ee6565b60405180910390fd5b505050565b61215a6128e4565b73ffffffffffffffffffffffffffffffffffffffff16612178611a30565b73ffffffffffffffffffffffffffffffffffffffff16146121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614963565b60405180910390fd5b670de0b6b3a76400006103e860056121e4610fb8565b6121ee91906149b2565b6121f89190614a3b565b6122029190614a3b565b811015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614f78565b60405180910390fd5b670de0b6b3a76400008161225891906149b2565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122846128e4565b73ffffffffffffffffffffffffffffffffffffffff166122a2611a30565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90614963565b60405180910390fd5b620186a06001612306610fb8565b61231091906149b2565b61231a9190614a3b565b82101561235c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123539061500a565b60405180910390fd5b6103e86005612369610fb8565b61237391906149b2565b61237d9190614a3b565b8211156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b69061509c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246c6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661248a611a30565b73ffffffffffffffffffffffffffffffffffffffff16146124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790614963565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125106128e4565b73ffffffffffffffffffffffffffffffffffffffff1661252e611a30565b73ffffffffffffffffffffffffffffffffffffffff1614612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90614963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb9061512e565b60405180910390fd5b6125fd8161384f565b50565b601a5481565b600a5481565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff16612634611a30565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614963565b60405180910390fd5b600f5460105461269a9190614b90565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061519a565b60405180910390fd5b6103e8821115612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061522c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca6040518263ffffffff1660e01b815260040161278291906146e5565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c39190615261565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca61dead836139e2565b5b60007f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390615300565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390615392565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa9190614594565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90615424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e906154b6565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce611a30565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c611a30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890615522565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf611a30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b906155da565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e9061566c565b60405180910390fd5b600a546130838361149d565b8261308e9190614b90565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c6906156d8565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061576a565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a546132238361149d565b8261322e9190614b90565b111561326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156d8565b60405180910390fd5b5b5b5b5b5b600061327f3061149d565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614b90565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613ebc565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a548261366491906149b2565b61366e9190614a3b565b601d600082825461367f9190614b90565b92505081905550601854601b548261369791906149b2565b6136a19190614a3b565b601e60008282546136b29190614b90565b92505081905550601854601954826136ca91906149b2565b6136d49190614a3b565b601c60008282546136e59190614b90565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c91906149b2565b6137969190614a3b565b601d60008282546137a79190614b90565b92505081905550601454601754826137bf91906149b2565b6137c99190614a3b565b601e60008282546137da9190614b90565b92505081905550601454601554826137f291906149b2565b6137fc9190614a3b565b601c600082825461380d9190614b90565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b8085613837919061578a565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c491906149b2565b905092915050565b600081836139da9190614a3b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4990615424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab9906154b6565b60405180910390fd5b613acd838383614082565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90615830565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614b90565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a9190614594565b60405180910390a3613c5d848484614087565b50505050565b6000613c6e3061149d565b90506000601e54601c54601d54613c859190614b90565b613c8f9190614b90565b9050600080831480613ca15750600082145b15613cae57505050613eba565b6014600954613cbd91906149b2565b831115613cd6576014600954613cd391906149b2565b92505b6000600283601d5486613ce991906149b2565b613cf39190614a3b565b613cfd9190614a3b565b90506000613d14828661408c90919063ffffffff16565b90506000479050613d24826140a2565b6000613d39824761408c90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da0919061578a565b613daa919061578a565b90506000601d819055506000601c819055506000601e81905550600087118015613dd45750600081115b15613e2157613de387826142df565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e1893929190615850565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e67906158b8565b60006040518083038185875af1925050503d8060008114613ea4576040519150601f19603f3d011682016040523d82523d6000602084013e613ea9565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca6040518263ffffffff1660e01b8152600401613f2091906146e5565b602060405180830381865afa158015613f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f619190615261565b90506000613f8e612710613f80600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115613fc757613fc67f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca61dead836139e2565b5b60007f0000000000000000000000005e030f1cba3bc3dead01c9930068b27213e553ca90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561403457600080fd5b505af1158015614048573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361409a919061578a565b905092915050565b6000600267ffffffffffffffff8111156140bf576140be6158cd565b5b6040519080825280602002602001820160405280156140ed5781602001602082028036833780820191505090505b5090503081600081518110614105576141046158fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141ce9190615940565b816001815181106141e2576141e16158fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614247307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142a9959493929190615a66565b600060405180830381600087803b1580156142c357600080fd5b505af11580156142d7573d6000803e3d6000fd5b505050505050565b61430a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161437196959493929190615ac0565b60606040518083038185885af115801561438f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143b49190615b21565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143f55780820151818401526020810190506143da565b83811115614404576000848401525b50505050565b6000601f19601f8301169050919050565b6000614426826143bb565b61443081856143c6565b93506144408185602086016143d7565b6144498161440a565b840191505092915050565b6000602082019050818103600083015261446e818461441b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144a68261447b565b9050919050565b6144b68161449b565b81146144c157600080fd5b50565b6000813590506144d3816144ad565b92915050565b6000819050919050565b6144ec816144d9565b81146144f757600080fd5b50565b600081359050614509816144e3565b92915050565b6000806040838503121561452657614525614476565b5b6000614534858286016144c4565b9250506020614545858286016144fa565b9150509250929050565b60008115159050919050565b6145648161454f565b82525050565b600060208201905061457f600083018461455b565b92915050565b61458e816144d9565b82525050565b60006020820190506145a96000830184614585565b92915050565b6000602082840312156145c5576145c4614476565b5b60006145d3848285016144c4565b91505092915050565b6000819050919050565b60006146016145fc6145f78461447b565b6145dc565b61447b565b9050919050565b6000614613826145e6565b9050919050565b600061462582614608565b9050919050565b6146358161461a565b82525050565b6000602082019050614650600083018461462c565b92915050565b60006020828403121561466c5761466b614476565b5b600061467a848285016144fa565b91505092915050565b60008060006060848603121561469c5761469b614476565b5b60006146aa868287016144c4565b93505060206146bb868287016144c4565b92505060406146cc868287016144fa565b9150509250925092565b6146df8161449b565b82525050565b60006020820190506146fa60008301846146d6565b92915050565b600060ff82169050919050565b61471681614700565b82525050565b6000602082019050614731600083018461470d565b92915050565b6147408161454f565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b60008060006060848603121561477c5761477b614476565b5b600061478a868287016144fa565b935050602061479b868287016144fa565b92505060406147ac8682870161474e565b9150509250925092565b600080604083850312156147cd576147cc614476565b5b60006147db858286016144c4565b92505060206147ec8582860161474e565b9150509250929050565b60008060006060848603121561480f5761480e614476565b5b600061481d868287016144fa565b935050602061482e868287016144fa565b925050604061483f868287016144fa565b9150509250925092565b60006020828403121561485f5761485e614476565b5b600061486d8482850161474e565b91505092915050565b6000806040838503121561488d5761488c614476565b5b600061489b858286016144c4565b92505060206148ac858286016144c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148fd57607f821691505b60208210811415614911576149106148b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061494d6020836143c6565b915061495882614917565b602082019050919050565b6000602082019050818103600083015261497c81614940565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149bd826144d9565b91506149c8836144d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0157614a00614983565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a46826144d9565b9150614a51836144d9565b925082614a6157614a60614a0c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ac8602f836143c6565b9150614ad382614a6c565b604082019050919050565b60006020820190508181036000830152614af781614abb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b5a6028836143c6565b9150614b6582614afe565b604082019050919050565b60006020820190508181036000830152614b8981614b4d565b9050919050565b6000614b9b826144d9565b9150614ba6836144d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bdb57614bda614983565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c426033836143c6565b9150614c4d82614be6565b604082019050919050565b60006020820190508181036000830152614c7181614c35565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cd46030836143c6565b9150614cdf82614c78565b604082019050919050565b60006020820190508181036000830152614d0381614cc7565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614d40601d836143c6565b9150614d4b82614d0a565b602082019050919050565b60006020820190508181036000830152614d6f81614d33565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614dd26039836143c6565b9150614ddd82614d76565b604082019050919050565b60006020820190508181036000830152614e0181614dc5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e646025836143c6565b9150614e6f82614e08565b604082019050919050565b60006020820190508181036000830152614e9381614e57565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000614ed0601d836143c6565b9150614edb82614e9a565b602082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f626024836143c6565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ff46035836143c6565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150866034836143c6565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151186026836143c6565b9150615123826150bc565b604082019050919050565b600060208201905081810360008301526151478161510b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151846020836143c6565b915061518f8261514e565b602082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615216602a836143c6565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b60008151905061525b816144e3565b92915050565b60006020828403121561527757615276614476565b5b60006152858482850161524c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152ea6024836143c6565b91506152f58261528e565b604082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061537c6022836143c6565b915061538782615320565b604082019050919050565b600060208201905081810360008301526153ab8161536f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061540e6025836143c6565b9150615419826153b2565b604082019050919050565b6000602082019050818103600083015261543d81615401565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154a06023836143c6565b91506154ab82615444565b604082019050919050565b600060208201905081810360008301526154cf81615493565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061550c6016836143c6565b9150615517826154d6565b602082019050919050565b6000602082019050818103600083015261553b816154ff565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155c46049836143c6565b91506155cf82615542565b606082019050919050565b600060208201905081810360008301526155f3816155b7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156566035836143c6565b9150615661826155fa565b604082019050919050565b6000602082019050818103600083015261568581615649565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156c26013836143c6565b91506156cd8261568c565b602082019050919050565b600060208201905081810360008301526156f1816156b5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157546036836143c6565b915061575f826156f8565b604082019050919050565b6000602082019050818103600083015261578381615747565b9050919050565b6000615795826144d9565b91506157a0836144d9565b9250828210156157b3576157b2614983565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061581a6026836143c6565b9150615825826157be565b604082019050919050565b600060208201905081810360008301526158498161580d565b9050919050565b60006060820190506158656000830186614585565b6158726020830185614585565b61587f6040830184614585565b949350505050565b600081905092915050565b50565b60006158a2600083615887565b91506158ad82615892565b600082019050919050565b60006158c382615895565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061593a816144ad565b92915050565b60006020828403121561595657615955614476565b5b60006159648482850161592b565b91505092915050565b6000819050919050565b600061599261598d6159888461596d565b6145dc565b6144d9565b9050919050565b6159a281615977565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159dd8161449b565b82525050565b60006159ef83836159d4565b60208301905092915050565b6000602082019050919050565b6000615a13826159a8565b615a1d81856159b3565b9350615a28836159c4565b8060005b83811015615a59578151615a4088826159e3565b9750615a4b836159fb565b925050600181019050615a2c565b5085935050505092915050565b600060a082019050615a7b6000830188614585565b615a886020830187615999565b8181036040830152615a9a8186615a08565b9050615aa960608301856146d6565b615ab66080830184614585565b9695505050505050565b600060c082019050615ad560008301896146d6565b615ae26020830188614585565b615aef6040830187615999565b615afc6060830186615999565b615b0960808301856146d6565b615b1660a0830184614585565b979650505050505050565b600080600060608486031215615b3a57615b39614476565b5b6000615b488682870161524c565b9350506020615b598682870161524c565b9250506040615b6a8682870161524c565b915050925092509256fea2646970667358221220243130ab1587e2294c8fa4348df384c0db0cc4d6dbae28a0db5585be5455b06d64736f6c634300080a0033

Deployed Bytecode Sourcemap

33096:19513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12091:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34444:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34742:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33174:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11044:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33744:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33558:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34522:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34482;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39241:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12742:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33277:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33654:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33614:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10886:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13643:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41959:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34562:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33232:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33842:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42140:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34333:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33922:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11215:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3159:103;;;;;;;;;;;;;:::i;:::-;;50191:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38349:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39788:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33369:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33406:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34222:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40159:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38142:155;;;;;;;;;;;;;:::i;:::-;;2508:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34368:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40051:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10143:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41212:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33798:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34296:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14361:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33706:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11555:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41720:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34963:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33882:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41022:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40586:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39524:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34140:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33443:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38736:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34188:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11793:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33485:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38531:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34259:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3417:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34406:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33525:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51550:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9924:100;9978:13;10011:5;10004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9924:100;:::o;12091:169::-;12174:4;12191:39;12200:12;:10;:12::i;:::-;12214:7;12223:6;12191:8;:39::i;:::-;12248:4;12241:11;;12091:169;;;;:::o;34444:29::-;;;;:::o;34742:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33174:51::-;;;:::o;11044:108::-;11105:7;11132:12;;11125:19;;11044:108;:::o;33744:47::-;;;;:::o;33558:36::-;;;;:::o;34522:33::-;;;;:::o;34482:::-;;;;:::o;39241:275::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39378:4:::1;39370;39365:1;39349:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39348:26;;;;:::i;:::-;39347:35;;;;:::i;:::-;39337:6;:45;;39315:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39501:6;39491;:17;;;;:::i;:::-;39468:20;:40;;;;39241:275:::0;:::o;12742:492::-;12882:4;12899:36;12909:6;12917:9;12928:6;12899:9;:36::i;:::-;12948:24;12975:11;:19;12987:6;12975:19;;;;;;;;;;;;;;;:33;12995:12;:10;:12::i;:::-;12975:33;;;;;;;;;;;;;;;;12948:60;;13047:6;13027:16;:26;;13019:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13134:57;13143:6;13151:12;:10;:12::i;:::-;13184:6;13165:16;:25;13134:8;:57::i;:::-;13222:4;13215:11;;;12742:492;;;;;:::o;33277:53::-;33323:6;33277:53;:::o;33654:45::-;;;;:::o;33614:33::-;;;;;;;;;;;;;:::o;10886:93::-;10944:5;10969:2;10962:9;;10886:93;:::o;13643:215::-;13731:4;13748:80;13757:12;:10;:12::i;:::-;13771:7;13817:10;13780:11;:25;13792:12;:10;:12::i;:::-;13780:25;;;;;;;;;;;;;;;:34;13806:7;13780:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13748:8;:80::i;:::-;13846:4;13839:11;;13643:215;;;;:::o;41959:173::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42074:13:::1;;;;;;;;;;;42042:46;;42063:9;42042:46;;;;;;;;;;;;42115:9;42099:13;;:25;;;;;;;;;;;;;;;;;;41959:173:::0;:::o;34562:31::-;;;;:::o;33232:38::-;;;:::o;33842:33::-;;;;;;;;;;;;;:::o;42140:126::-;42206:4;42230:19;:28;42250:7;42230:28;;;;;;;;;;;;;;;;;;;;;;;;;42223:35;;42140:126;;;:::o;34333:28::-;;;;:::o;33922:31::-;;;;;;;;;;;;;:::o;11215:127::-;11289:7;11316:9;:18;11326:7;11316:18;;;;;;;;;;;;;;;;11309:25;;11215:127;;;:::o;3159:103::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3224:30:::1;3251:1;3224:18;:30::i;:::-;3159:103::o:0;50191:555::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50393:3:::1;50370:19;:26;;50348:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50520:4;50508:8;:16;;:33;;;;;50540:1;50528:8;:13;;50508:33;50486:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50646:19;50628:15;:37;;;;50695:8;50676:16;:27;;;;50730:8;50714:13;;:24;;;;;;;;;;;;;;;;;;50191:555:::0;;;:::o;38349:121::-;38401:4;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38435:5:::1;38418:14;;:22;;;;;;;;;;;;;;;;;;38458:4;38451:11;;38349:121:::0;:::o;39788:167::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39943:4:::1;39901:31;:39;39933:6;39901:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39788:167:::0;;:::o;33369:30::-;;;;;;;;;;;;;:::o;33406:28::-;;;;;;;;;;;;;:::o;34222:30::-;;;;:::o;40159:419::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40331:13:::1;40313:15;:31;;;;40373:13;40355:15;:31;;;;40413:11;40397:13;:27;;;;40486:13;;40468:15;;40450;;:33;;;;:::i;:::-;:49;;;;:::i;:::-;40435:12;:64;;;;40534:2;40518:12;;:18;;40510:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:419:::0;;;:::o;38142:155::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38213:4:::1;38197:13;;:20;;;;;;;;;;;;;;;;;;38242:4;38228:11;;:18;;;;;;;;;;;;;;;;;;38274:15;38257:14;:32;;;;38142:155::o:0;2508:87::-;2554:7;2581:6;;;;;;;;;;;2574:13;;2508:87;:::o;34368:31::-;;;;:::o;40051:100::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40136:7:::1;40122:11;;:21;;;;;;;;;;;;;;;;;;40051:100:::0;:::o;10143:104::-;10199:13;10232:7;10225:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10143:104;:::o;41212:304::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41356:13:::1;41348:21;;:4;:21;;;;41326:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41467:41;41496:4;41502:5;41467:28;:41::i;:::-;41212:304:::0;;:::o;33798:35::-;;;;:::o;34296:28::-;;;;:::o;14361:413::-;14454:4;14471:24;14498:11;:25;14510:12;:10;:12::i;:::-;14498:25;;;;;;;;;;;;;;;:34;14524:7;14498:34;;;;;;;;;;;;;;;;14471:61;;14571:15;14551:16;:35;;14543:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14664:67;14673:12;:10;:12::i;:::-;14687:7;14715:15;14696:16;:34;14664:8;:67::i;:::-;14762:4;14755:11;;;14361:413;;;;:::o;33706:29::-;;;;:::o;11555:175::-;11641:4;11658:42;11668:12;:10;:12::i;:::-;11682:9;11693:6;11658:9;:42::i;:::-;11718:4;11711:11;;11555:175;;;;:::o;41720:231::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41880:15:::1;;;;;;;;;;;41837:59;;41860:18;41837:59;;;;;;;;;;;;41925:18;41907:15;;:36;;;;;;;;;;;;;;;;;;41720:231:::0;:::o;34963:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33882:33::-;;;;;;;;;;;;;:::o;41022:182::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41138:8:::1;41107:19;:28;41127:7;41107:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41178:7;41162:34;;;41187:8;41162:34;;;;;;:::i;:::-;;;;;;;;41022:182:::0;;:::o;40586:428::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40760:13:::1;40741:16;:32;;;;40803:13;40784:16;:32;;;;40844:11;40827:14;:28;;;;40920:14;;40901:16;;40882;;:35;;;;:::i;:::-;:52;;;;:::i;:::-;40866:13;:68;;;;40970:2;40953:13;;:19;;40945:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40586:428:::0;;;:::o;39524:256::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39664:4:::1;39656;39651:1;39635:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39634:26;;;;:::i;:::-;39633:35;;;;:::i;:::-;39623:6;:45;;39601:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39765:6;39755;:17;;;;:::i;:::-;39743:9;:29;;;;39524:256:::0;:::o;34140:39::-;;;;;;;;;;;;;:::o;33443:35::-;;;;:::o;38736:497::-;38844:4;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38923:6:::1;38918:1;38902:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38901:28;;;;:::i;:::-;38888:9;:41;;38866:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39078:4;39073:1;39057:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39056:26;;;;:::i;:::-;39043:9;:39;;39021:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39194:9;39173:18;:30;;;;39221:4;39214:11;;38736:497:::0;;;:::o;34188:27::-;;;;:::o;11793:151::-;11882:7;11909:11;:18;11921:5;11909:18;;;;;;;;;;;;;;;:27;11928:7;11909:27;;;;;;;;;;;;;;;;11902:34;;11793:151;;;;:::o;33485:33::-;;;;:::o;38531:135::-;38591:4;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38631:5:::1;38608:20;;:28;;;;;;;;;;;;;;;;;;38654:4;38647:11;;38531:135:::0;:::o;34259:30::-;;;;:::o;3417:201::-;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3526:1:::1;3506:22;;:8;:22;;;;3498:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3582:28;3601:8;3582:18;:28::i;:::-;3417:201:::0;:::o;34406:31::-;;;;:::o;33525:24::-;;;;:::o;51550:1056::-;51661:4;2739:12;:10;:12::i;:::-;2728:23;;:7;:5;:7::i;:::-;:23;;;2720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51746:19:::1;;51723:20;;:42;;;;:::i;:::-;51705:15;:60;51683:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51855:4;51844:7;:15;;51836:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51940:15;51917:20;:38;;;;52010:28;52041:4;:14;;;52056:13;52041:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52010:60;;52120:20;52143:44;52181:5;52143:33;52168:7;52143:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;52120:67;;52307:1;52292:12;:16;52288:110;;;52325:61;52341:13;52364:6;52373:12;52325:15;:61::i;:::-;52288:110;52473:19;52510:13;52473:51;;52535:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52562:14;;;;;;;;;;52594:4;52587:11;;;;;51550:1056:::0;;;:::o;1181:98::-;1234:7;1261:10;1254:17;;1181:98;:::o;18045:380::-;18198:1;18181:19;;:5;:19;;;;18173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18279:1;18260:21;;:7;:21;;;;18252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18363:6;18333:11;:18;18345:5;18333:18;;;;;;;;;;;;;;;:27;18352:7;18333:27;;;;;;;;;;;;;;;:36;;;;18401:7;18385:32;;18394:5;18385:32;;;18410:6;18385:32;;;;;;:::i;:::-;;;;;;;;18045:380;;;:::o;42324:5027::-;42472:1;42456:18;;:4;:18;;;;42448:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42549:1;42535:16;;:2;:16;;;;42527:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42618:1;42608:6;:11;42604:93;;;42636:28;42652:4;42658:2;42662:1;42636:15;:28::i;:::-;42679:7;;42604:93;42713:14;;;;;;;;;;;42709:2487;;;42774:7;:5;:7::i;:::-;42766:15;;:4;:15;;;;:49;;;;;42808:7;:5;:7::i;:::-;42802:13;;:2;:13;;;;42766:49;:86;;;;;42850:1;42836:16;;:2;:16;;;;42766:86;:128;;;;;42887:6;42873:21;;:2;:21;;;;42766:128;:158;;;;;42916:8;;;;;;;;;;;42915:9;42766:158;42744:2441;;;42964:13;;;;;;;;;;;42959:223;;43036:19;:25;43056:4;43036:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43065:19;:23;43085:2;43065:23;;;;;;;;;;;;;;;;;;;;;;;;;43036:52;43002:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42959:223;43338:20;;;;;;;;;;;43334:641;;;43419:7;:5;:7::i;:::-;43413:13;;:2;:13;;;;:72;;;;;43469:15;43455:30;;:2;:30;;;;43413:72;:129;;;;;43528:13;43514:28;;:2;:28;;;;43413:129;43383:573;;;43706:12;43631:28;:39;43660:9;43631:39;;;;;;;;;;;;;;;;:87;43593:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43920:12;43878:28;:39;43907:9;43878:39;;;;;;;;;;;;;;;:54;;;;43383:573;43334:641;44049:25;:31;44075:4;44049:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44106:31;:35;44138:2;44106:35;;;;;;;;;;;;;;;;;;;;;;;;;44105:36;44049:92;44023:1147;;;44228:20;;44218:6;:30;;44184:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44436:9;;44419:13;44429:2;44419:9;:13::i;:::-;44410:6;:22;;;;:::i;:::-;:35;;44376:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44023:1147;;;44614:25;:29;44640:2;44614:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44669:31;:37;44701:4;44669:37;;;;;;;;;;;;;;;;;;;;;;;;;44668:38;44614:92;44588:582;;;44793:20;;44783:6;:30;;44749:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44588:582;;;44950:31;:35;44982:2;44950:35;;;;;;;;;;;;;;;;;;;;;;;;;44945:225;;45070:9;;45053:13;45063:2;45053:9;:13::i;:::-;45044:6;:22;;;;:::i;:::-;:35;;45010:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44945:225;44588:582;44023:1147;42744:2441;42709:2487;45208:28;45239:24;45257:4;45239:9;:24::i;:::-;45208:55;;45276:12;45315:18;;45291:20;:42;;45276:57;;45364:7;:35;;;;;45388:11;;;;;;;;;;;45364:35;:61;;;;;45417:8;;;;;;;;;;;45416:9;45364:61;:110;;;;;45443:25;:31;45469:4;45443:31;;;;;;;;;;;;;;;;;;;;;;;;;45442:32;45364:110;:153;;;;;45492:19;:25;45512:4;45492:25;;;;;;;;;;;;;;;;;;;;;;;;;45491:26;45364:153;:194;;;;;45535:19;:23;45555:2;45535:23;;;;;;;;;;;;;;;;;;;;;;;;;45534:24;45364:194;45346:326;;;45596:4;45585:8;;:15;;;;;;;;;;;;;;;;;;45617:10;:8;:10::i;:::-;45655:5;45644:8;;:16;;;;;;;;;;;;;;;;;;45346:326;45703:8;;;;;;;;;;;45702:9;:55;;;;;45728:25;:29;45754:2;45728:29;;;;;;;;;;;;;;;;;;;;;;;;;45702:55;:85;;;;;45774:13;;;;;;;;;;;45702:85;:153;;;;;45840:15;;45823:14;;:32;;;;:::i;:::-;45804:15;:51;;45702:153;:196;;;;;45873:19;:25;45893:4;45873:25;;;;;;;;;;;;;;;;;;;;;;;;;45872:26;45702:196;45684:282;;;45925:29;:27;:29::i;:::-;;45684:282;45978:12;45994:8;;;;;;;;;;;45993:9;45978:24;;46104:19;:25;46124:4;46104:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46133:19;:23;46153:2;46133:23;;;;;;;;;;;;;;;;;;;;;;;;;46104:52;46100:100;;;46183:5;46173:15;;46100:100;46212:12;46317:7;46313:985;;;46369:25;:29;46395:2;46369:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46418:1;46402:13;;:17;46369:50;46365:784;;;46447:34;46477:3;46447:25;46458:13;;46447:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46440:41;;46550:13;;46530:16;;46523:4;:23;;;;:::i;:::-;46522:41;;;;:::i;:::-;46500:18;;:63;;;;;;;:::i;:::-;;;;;;;;46628:13;;46610:14;;46603:4;:21;;;;:::i;:::-;46602:39;;;;:::i;:::-;46582:16;;:59;;;;;;;:::i;:::-;;;;;;;;46710:13;;46690:16;;46683:4;:23;;;;:::i;:::-;46682:41;;;;:::i;:::-;46660:18;;:63;;;;;;;:::i;:::-;;;;;;;;46365:784;;;46785:25;:31;46811:4;46785:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46835:1;46820:12;;:16;46785:51;46781:368;;;46864:33;46893:3;46864:24;46875:12;;46864:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46857:40;;46965:12;;46946:15;;46939:4;:22;;;;:::i;:::-;46938:39;;;;:::i;:::-;46916:18;;:61;;;;;;;:::i;:::-;;;;;;;;47041:12;;47024:13;;47017:4;:20;;;;:::i;:::-;47016:37;;;;:::i;:::-;46996:16;;:57;;;;;;;:::i;:::-;;;;;;;;47121:12;;47102:15;;47095:4;:22;;;;:::i;:::-;47094:39;;;;:::i;:::-;47072:18;;:61;;;;;;;:::i;:::-;;;;;;;;46781:368;46365:784;47176:1;47169:4;:8;47165:91;;;47198:42;47214:4;47228;47235;47198:15;:42::i;:::-;47165:91;47282:4;47272:14;;;;;:::i;:::-;;;46313:985;47310:33;47326:4;47332:2;47336:6;47310:15;:33::i;:::-;42437:4914;;;;42324:5027;;;;:::o;3778:191::-;3852:16;3871:6;;;;;;;;;;;3852:25;;3897:8;3888:6;;:17;;;;;;;;;;;;;;;;;;3952:8;3921:40;;3942:8;3921:40;;;;;;;;;;;;3841:128;3778:191;:::o;41524:188::-;41641:5;41607:25;:31;41633:4;41607:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41698:5;41664:40;;41692:4;41664:40;;;;;;;;;;;;41524:188;;:::o;23498:98::-;23556:7;23587:1;23583;:5;;;;:::i;:::-;23576:12;;23498:98;;;;:::o;23897:::-;23955:7;23986:1;23982;:5;;;;:::i;:::-;23975:12;;23897:98;;;;:::o;15264:733::-;15422:1;15404:20;;:6;:20;;;;15396:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15506:1;15485:23;;:9;:23;;;;15477:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15561:47;15582:6;15590:9;15601:6;15561:20;:47::i;:::-;15621:21;15645:9;:17;15655:6;15645:17;;;;;;;;;;;;;;;;15621:41;;15698:6;15681:13;:23;;15673:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15819:6;15803:13;:22;15783:9;:17;15793:6;15783:17;;;;;;;;;;;;;;;:42;;;;15871:6;15847:9;:20;15857:9;15847:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15912:9;15895:35;;15904:6;15895:35;;;15923:6;15895:35;;;;;;:::i;:::-;;;;;;;;15943:46;15963:6;15971:9;15982:6;15943:19;:46::i;:::-;15385:612;15264:733;;;:::o;48481:1702::-;48520:23;48546:24;48564:4;48546:9;:24::i;:::-;48520:50;;48581:25;48677:16;;48643:18;;48609;;:52;;;;:::i;:::-;:84;;;;:::i;:::-;48581:112;;48704:12;48752:1;48733:15;:20;:46;;;;48778:1;48757:17;:22;48733:46;48729:85;;;48796:7;;;;;48729:85;48869:2;48848:18;;:23;;;;:::i;:::-;48830:15;:41;48826:115;;;48927:2;48906:18;;:23;;;;:::i;:::-;48888:41;;48826:115;49002:23;49115:1;49082:17;49047:18;;49029:15;:36;;;;:::i;:::-;49028:71;;;;:::i;:::-;:88;;;;:::i;:::-;49002:114;;49127:26;49156:36;49176:15;49156;:19;;:36;;;;:::i;:::-;49127:65;;49205:25;49233:21;49205:49;;49267:36;49284:18;49267:16;:36::i;:::-;49316:18;49337:44;49363:17;49337:21;:25;;:44;;;;:::i;:::-;49316:65;;49394:23;49420:81;49473:17;49420:34;49435:18;;49420:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49394:107;;49512:21;49536:55;49573:17;49536:32;49551:16;;49536:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;49512:79;;49604:23;49661:13;49643:15;49630:10;:28;;;;:::i;:::-;:44;;;;:::i;:::-;49604:70;;49708:1;49687:18;:22;;;;49741:1;49720:18;:22;;;;49772:1;49753:16;:20;;;;49808:1;49790:15;:19;:42;;;;;49831:1;49813:15;:19;49790:42;49786:278;;;49849:46;49862:15;49879;49849:12;:46::i;:::-;49915:137;49948:18;49985:15;50019:18;;49915:137;;;;;;;;:::i;:::-;;;;;;;;49786:278;50098:13;;;;;;;;;;;50090:27;;50139:21;50090:85;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50076:99;;;;;48509:1674;;;;;;;;;;48481:1702;:::o;50754:788::-;50811:4;50845:15;50828:14;:32;;;;50915:28;50946:4;:14;;;50961:13;50946:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50915:60;;51025:20;51048:77;51109:5;51048:42;51073:16;;51048:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;51025:100;;51245:1;51230:12;:16;51226:110;;;51263:61;51279:13;51302:6;51311:12;51263:15;:61::i;:::-;51226:110;51411:19;51448:13;51411:51;;51473:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51500:12;;;;;;;;;;51530:4;51523:11;;;;;50754:788;:::o;19025:125::-;;;;:::o;19754:124::-;;;;:::o;23141:98::-;23199:7;23230:1;23226;:5;;;;:::i;:::-;23219:12;;23141:98;;;;:::o;47359:589::-;47485:21;47523:1;47509:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47485:40;;47554:4;47536;47541:1;47536:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47580:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47570:4;47575:1;47570:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47615:62;47632:4;47647:15;47665:11;47615:8;:62::i;:::-;47716:15;:66;;;47797:11;47823:1;47867:4;47894;47914:15;47716:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47414:534;47359:589;:::o;47956:517::-;48104:62;48121:4;48136:15;48154:11;48104:8;:62::i;:::-;48209:15;:31;;;48248:9;48281:4;48301:11;48327:1;48370;33323:6;48439:15;48209:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47956:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:179::-;19756:31;19752:1;19744:6;19740:14;19733:55;19616:179;:::o;19801:366::-;19943:3;19964:67;20028:2;20023:3;19964:67;:::i;:::-;19957:74;;20040:93;20129:3;20040:93;:::i;:::-;20158:2;20153:3;20149:12;20142:19;;19801:366;;;:::o;20173:419::-;20339:4;20377:2;20366:9;20362:18;20354:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20454:131;20580:4;20454:131;:::i;:::-;20446:139;;20173:419;;;:::o;20598:223::-;20738:34;20734:1;20726:6;20722:14;20715:58;20807:6;20802:2;20794:6;20790:15;20783:31;20598:223;:::o;20827:366::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:419::-;21365:4;21403:2;21392:9;21388:18;21380:26;;21452:9;21446:4;21442:20;21438:1;21427:9;21423:17;21416:47;21480:131;21606:4;21480:131;:::i;:::-;21472:139;;21199:419;;;:::o;21624:240::-;21764:34;21760:1;21752:6;21748:14;21741:58;21833:23;21828:2;21820:6;21816:15;21809:48;21624:240;:::o;21870:366::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:419::-;22408:4;22446:2;22435:9;22431:18;22423:26;;22495:9;22489:4;22485:20;22481:1;22470:9;22466:17;22459:47;22523:131;22649:4;22523:131;:::i;:::-;22515:139;;22242:419;;;:::o;22667:239::-;22807:34;22803:1;22795:6;22791:14;22784:58;22876:22;22871:2;22863:6;22859:15;22852:47;22667:239;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:225::-;23849:34;23845:1;23837:6;23833:14;23826:58;23918:8;23913:2;23905:6;23901:15;23894:33;23709:225;:::o;23940:366::-;24082:3;24103:67;24167:2;24162:3;24103:67;:::i;:::-;24096:74;;24179:93;24268:3;24179:93;:::i;:::-;24297:2;24292:3;24288:12;24281:19;;23940:366;;;:::o;24312:419::-;24478:4;24516:2;24505:9;24501:18;24493:26;;24565:9;24559:4;24555:20;24551:1;24540:9;24536:17;24529:47;24593:131;24719:4;24593:131;:::i;:::-;24585:139;;24312:419;;;:::o;24737:182::-;24877:34;24873:1;24865:6;24861:14;24854:58;24737:182;:::o;24925:366::-;25067:3;25088:67;25152:2;25147:3;25088:67;:::i;:::-;25081:74;;25164:93;25253:3;25164:93;:::i;:::-;25282:2;25277:3;25273:12;25266:19;;24925:366;;;:::o;25297:419::-;25463:4;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25297:419;;;:::o;25722:229::-;25862:34;25858:1;25850:6;25846:14;25839:58;25931:12;25926:2;25918:6;25914:15;25907:37;25722:229;:::o;25957:366::-;26099:3;26120:67;26184:2;26179:3;26120:67;:::i;:::-;26113:74;;26196:93;26285:3;26196:93;:::i;:::-;26314:2;26309:3;26305:12;26298:19;;25957:366;;;:::o;26329:419::-;26495:4;26533:2;26522:9;26518:18;26510:26;;26582:9;26576:4;26572:20;26568:1;26557:9;26553:17;26546:47;26610:131;26736:4;26610:131;:::i;:::-;26602:139;;26329:419;;;:::o;26754:143::-;26811:5;26842:6;26836:13;26827:22;;26858:33;26885:5;26858:33;:::i;:::-;26754:143;;;;:::o;26903:351::-;26973:6;27022:2;27010:9;27001:7;26997:23;26993:32;26990:119;;;27028:79;;:::i;:::-;26990:119;27148:1;27173:64;27229:7;27220:6;27209:9;27205:22;27173:64;:::i;:::-;27163:74;;27119:128;26903:351;;;;:::o;27260:223::-;27400:34;27396:1;27388:6;27384:14;27377:58;27469:6;27464:2;27456:6;27452:15;27445:31;27260:223;:::o;27489:366::-;27631:3;27652:67;27716:2;27711:3;27652:67;:::i;:::-;27645:74;;27728:93;27817:3;27728:93;:::i;:::-;27846:2;27841:3;27837:12;27830:19;;27489:366;;;:::o;27861:419::-;28027:4;28065:2;28054:9;28050:18;28042:26;;28114:9;28108:4;28104:20;28100:1;28089:9;28085:17;28078:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;27861:419;;;:::o;28286:221::-;28426:34;28422:1;28414:6;28410:14;28403:58;28495:4;28490:2;28482:6;28478:15;28471:29;28286:221;:::o;28513:366::-;28655:3;28676:67;28740:2;28735:3;28676:67;:::i;:::-;28669:74;;28752:93;28841:3;28752:93;:::i;:::-;28870:2;28865:3;28861:12;28854:19;;28513:366;;;:::o;28885:419::-;29051:4;29089:2;29078:9;29074:18;29066:26;;29138:9;29132:4;29128:20;29124:1;29113:9;29109:17;29102:47;29166:131;29292:4;29166:131;:::i;:::-;29158:139;;28885:419;;;:::o;29310:224::-;29450:34;29446:1;29438:6;29434:14;29427:58;29519:7;29514:2;29506:6;29502:15;29495:32;29310:224;:::o;29540:366::-;29682:3;29703:67;29767:2;29762:3;29703:67;:::i;:::-;29696:74;;29779:93;29868:3;29779:93;:::i;:::-;29897:2;29892:3;29888:12;29881:19;;29540:366;;;:::o;29912:419::-;30078:4;30116:2;30105:9;30101:18;30093:26;;30165:9;30159:4;30155:20;30151:1;30140:9;30136:17;30129:47;30193:131;30319:4;30193:131;:::i;:::-;30185:139;;29912:419;;;:::o;30337:222::-;30477:34;30473:1;30465:6;30461:14;30454:58;30546:5;30541:2;30533:6;30529:15;30522:30;30337:222;:::o;30565:366::-;30707:3;30728:67;30792:2;30787:3;30728:67;:::i;:::-;30721:74;;30804:93;30893:3;30804:93;:::i;:::-;30922:2;30917:3;30913:12;30906:19;;30565:366;;;:::o;30937:419::-;31103:4;31141:2;31130:9;31126:18;31118:26;;31190:9;31184:4;31180:20;31176:1;31165:9;31161:17;31154:47;31218:131;31344:4;31218:131;:::i;:::-;31210:139;;30937:419;;;:::o;31362:172::-;31502:24;31498:1;31490:6;31486:14;31479:48;31362:172;:::o;31540:366::-;31682:3;31703:67;31767:2;31762:3;31703:67;:::i;:::-;31696:74;;31779:93;31868:3;31779:93;:::i;:::-;31897:2;31892:3;31888:12;31881:19;;31540:366;;;:::o;31912:419::-;32078:4;32116:2;32105:9;32101:18;32093:26;;32165:9;32159:4;32155:20;32151:1;32140:9;32136:17;32129:47;32193:131;32319:4;32193:131;:::i;:::-;32185:139;;31912:419;;;:::o;32337:297::-;32477:34;32473:1;32465:6;32461:14;32454:58;32546:34;32541:2;32533:6;32529:15;32522:59;32615:11;32610:2;32602:6;32598:15;32591:36;32337:297;:::o;32640:366::-;32782:3;32803:67;32867:2;32862:3;32803:67;:::i;:::-;32796:74;;32879:93;32968:3;32879:93;:::i;:::-;32997:2;32992:3;32988:12;32981:19;;32640:366;;;:::o;33012:419::-;33178:4;33216:2;33205:9;33201:18;33193:26;;33265:9;33259:4;33255:20;33251:1;33240:9;33236:17;33229:47;33293:131;33419:4;33293:131;:::i;:::-;33285:139;;33012:419;;;:::o;33437:240::-;33577:34;33573:1;33565:6;33561:14;33554:58;33646:23;33641:2;33633:6;33629:15;33622:48;33437:240;:::o;33683:366::-;33825:3;33846:67;33910:2;33905:3;33846:67;:::i;:::-;33839:74;;33922:93;34011:3;33922:93;:::i;:::-;34040:2;34035:3;34031:12;34024:19;;33683:366;;;:::o;34055:419::-;34221:4;34259:2;34248:9;34244:18;34236:26;;34308:9;34302:4;34298:20;34294:1;34283:9;34279:17;34272:47;34336:131;34462:4;34336:131;:::i;:::-;34328:139;;34055:419;;;:::o;34480:169::-;34620:21;34616:1;34608:6;34604:14;34597:45;34480:169;:::o;34655:366::-;34797:3;34818:67;34882:2;34877:3;34818:67;:::i;:::-;34811:74;;34894:93;34983:3;34894:93;:::i;:::-;35012:2;35007:3;35003:12;34996:19;;34655:366;;;:::o;35027:419::-;35193:4;35231:2;35220:9;35216:18;35208:26;;35280:9;35274:4;35270:20;35266:1;35255:9;35251:17;35244:47;35308:131;35434:4;35308:131;:::i;:::-;35300:139;;35027:419;;;:::o;35452:241::-;35592:34;35588:1;35580:6;35576:14;35569:58;35661:24;35656:2;35648:6;35644:15;35637:49;35452:241;:::o;35699:366::-;35841:3;35862:67;35926:2;35921:3;35862:67;:::i;:::-;35855:74;;35938:93;36027:3;35938:93;:::i;:::-;36056:2;36051:3;36047:12;36040:19;;35699:366;;;:::o;36071:419::-;36237:4;36275:2;36264:9;36260:18;36252:26;;36324:9;36318:4;36314:20;36310:1;36299:9;36295:17;36288:47;36352:131;36478:4;36352:131;:::i;:::-;36344:139;;36071:419;;;:::o;36496:191::-;36536:4;36556:20;36574:1;36556:20;:::i;:::-;36551:25;;36590:20;36608:1;36590:20;:::i;:::-;36585:25;;36629:1;36626;36623:8;36620:34;;;36634:18;;:::i;:::-;36620:34;36679:1;36676;36672:9;36664:17;;36496:191;;;;:::o;36693:225::-;36833:34;36829:1;36821:6;36817:14;36810:58;36902:8;36897:2;36889:6;36885:15;36878:33;36693:225;:::o;36924:366::-;37066:3;37087:67;37151:2;37146:3;37087:67;:::i;:::-;37080:74;;37163:93;37252:3;37163:93;:::i;:::-;37281:2;37276:3;37272:12;37265:19;;36924:366;;;:::o;37296:419::-;37462:4;37500:2;37489:9;37485:18;37477:26;;37549:9;37543:4;37539:20;37535:1;37524:9;37520:17;37513:47;37577:131;37703:4;37577:131;:::i;:::-;37569:139;;37296:419;;;:::o;37721:442::-;37870:4;37908:2;37897:9;37893:18;37885:26;;37921:71;37989:1;37978:9;37974:17;37965:6;37921:71;:::i;:::-;38002:72;38070:2;38059:9;38055:18;38046:6;38002:72;:::i;:::-;38084;38152:2;38141:9;38137:18;38128:6;38084:72;:::i;:::-;37721:442;;;;;;:::o;38169:147::-;38270:11;38307:3;38292:18;;38169:147;;;;:::o;38322:114::-;;:::o;38442:398::-;38601:3;38622:83;38703:1;38698:3;38622:83;:::i;:::-;38615:90;;38714:93;38803:3;38714:93;:::i;:::-;38832:1;38827:3;38823:11;38816:18;;38442:398;;;:::o;38846:379::-;39030:3;39052:147;39195:3;39052:147;:::i;:::-;39045:154;;39216:3;39209:10;;38846:379;;;:::o;39231:180::-;39279:77;39276:1;39269:88;39376:4;39373:1;39366:15;39400:4;39397:1;39390:15;39417:180;39465:77;39462:1;39455:88;39562:4;39559:1;39552:15;39586:4;39583:1;39576:15;39603:143;39660:5;39691:6;39685:13;39676:22;;39707:33;39734:5;39707:33;:::i;:::-;39603:143;;;;:::o;39752:351::-;39822:6;39871:2;39859:9;39850:7;39846:23;39842:32;39839:119;;;39877:79;;:::i;:::-;39839:119;39997:1;40022:64;40078:7;40069:6;40058:9;40054:22;40022:64;:::i;:::-;40012:74;;39968:128;39752:351;;;;:::o;40109:85::-;40154:7;40183:5;40172:16;;40109:85;;;:::o;40200:158::-;40258:9;40291:61;40309:42;40318:32;40344:5;40318:32;:::i;:::-;40309:42;:::i;:::-;40291:61;:::i;:::-;40278:74;;40200:158;;;:::o;40364:147::-;40459:45;40498:5;40459:45;:::i;:::-;40454:3;40447:58;40364:147;;:::o;40517:114::-;40584:6;40618:5;40612:12;40602:22;;40517:114;;;:::o;40637:184::-;40736:11;40770:6;40765:3;40758:19;40810:4;40805:3;40801:14;40786:29;;40637:184;;;;:::o;40827:132::-;40894:4;40917:3;40909:11;;40947:4;40942:3;40938:14;40930:22;;40827:132;;;:::o;40965:108::-;41042:24;41060:5;41042:24;:::i;:::-;41037:3;41030:37;40965:108;;:::o;41079:179::-;41148:10;41169:46;41211:3;41203:6;41169:46;:::i;:::-;41247:4;41242:3;41238:14;41224:28;;41079:179;;;;:::o;41264:113::-;41334:4;41366;41361:3;41357:14;41349:22;;41264:113;;;:::o;41413:732::-;41532:3;41561:54;41609:5;41561:54;:::i;:::-;41631:86;41710:6;41705:3;41631:86;:::i;:::-;41624:93;;41741:56;41791:5;41741:56;:::i;:::-;41820:7;41851:1;41836:284;41861:6;41858:1;41855:13;41836:284;;;41937:6;41931:13;41964:63;42023:3;42008:13;41964:63;:::i;:::-;41957:70;;42050:60;42103:6;42050:60;:::i;:::-;42040:70;;41896:224;41883:1;41880;41876:9;41871:14;;41836:284;;;41840:14;42136:3;42129:10;;41537:608;;;41413:732;;;;:::o;42151:831::-;42414:4;42452:3;42441:9;42437:19;42429:27;;42466:71;42534:1;42523:9;42519:17;42510:6;42466:71;:::i;:::-;42547:80;42623:2;42612:9;42608:18;42599:6;42547:80;:::i;:::-;42674:9;42668:4;42664:20;42659:2;42648:9;42644:18;42637:48;42702:108;42805:4;42796:6;42702:108;:::i;:::-;42694:116;;42820:72;42888:2;42877:9;42873:18;42864:6;42820:72;:::i;:::-;42902:73;42970:3;42959:9;42955:19;42946:6;42902:73;:::i;:::-;42151:831;;;;;;;;:::o;42988:807::-;43237:4;43275:3;43264:9;43260:19;43252:27;;43289:71;43357:1;43346:9;43342:17;43333:6;43289:71;:::i;:::-;43370:72;43438:2;43427:9;43423:18;43414:6;43370:72;:::i;:::-;43452:80;43528:2;43517:9;43513:18;43504:6;43452:80;:::i;:::-;43542;43618:2;43607:9;43603:18;43594:6;43542:80;:::i;:::-;43632:73;43700:3;43689:9;43685:19;43676:6;43632:73;:::i;:::-;43715;43783:3;43772:9;43768:19;43759:6;43715:73;:::i;:::-;42988:807;;;;;;;;;:::o;43801:663::-;43889:6;43897;43905;43954:2;43942:9;43933:7;43929:23;43925:32;43922:119;;;43960:79;;:::i;:::-;43922:119;44080:1;44105:64;44161:7;44152:6;44141:9;44137:22;44105:64;:::i;:::-;44095:74;;44051:128;44218:2;44244:64;44300:7;44291:6;44280:9;44276:22;44244:64;:::i;:::-;44234:74;;44189:129;44357:2;44383:64;44439:7;44430:6;44419:9;44415:22;44383:64;:::i;:::-;44373:74;;44328:129;43801:663;;;;;:::o

Swarm Source

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