ETH Price: $3,104.10 (+1.03%)
Gas: 7 Gwei

Token

FPUTIN Token (FPUTIN)
 

Overview

Max Total Supply

1,000,000,000 FPUTIN

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 FPUTIN

Value
$0.00
0xba87625e35cc8f86be68f09c43c12deb0a705a3d
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:
FPUTIN

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-03-10
*/

// SPDX-License-Identifier: MIT

// FPUTIN TOKEN, designed and developed to help Ukraine with a war that they didn't ask for
// Donation Wallet is hard coded to 0x165CD37b4C644C2921454429E7F9358d18A45e14 the official Ukrainian Donation Wallet -- this wallet cannot be altered
// https://fuckputin.com


//....................../´¯/) 
//....................,/¯../ 
//.................../..../ 
//............./´¯/'...'/´¯¯`·¸ 
//........../'/.../..../......./¨¯\ 
//........('(...´...´.... ¯~/'...') 
//.........\.................'...../ 
//..........''...\.......... _.·´ 
//............\..............( 
//..............\.............\...

//⣿⣿⣿⣿⣻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
//⣿⣿⣿⣵⣿⣿⣿⠿⡟⣛⣧⣿⣯⣿⣝⡻⢿⣿⣿⣿⣿⣿⣿⣿
//⣿⣿⣿⣿⣿⠋⠁⣴⣶⣿⣿⣿⣿⣿⣿⣿⣦⣍⢿⣿⣿⣿⣿⣿
//⣿⣿⣿⣿⢷⠄⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣏⢼⣿⣿⣿⣿
//⢹⣿⣿⢻⠎⠔⣛⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡏⣿⣿⣿⣿
//⢸⣿⣿⠇⡶⠄⣿⣿⠿⠟⡛⠛⠻⣿⡿⠿⠿⣿⣗⢣⣿⣿⣿⣿
//⠐⣿⣿⡿⣷⣾⣿⣿⣿⣾⣶⣶⣶⣿⣁⣔⣤⣀⣼⢲⣿⣿⣿⣿
//⠄⣿⣿⣿⣿⣾⣟⣿⣿⣿⣿⣿⣿⣿⡿⣿⣿⣿⢟⣾⣿⣿⣿⣿
//⠄⣟⣿⣿⣿⡷⣿⣿⣿⣿⣿⣮⣽⠛⢻⣽⣿⡇⣾⣿⣿⣿⣿⣿
//⠄⢻⣿⣿⣿⡷⠻⢻⡻⣯⣝⢿⣟⣛⣛⣛⠝⢻⣿⣿⣿⣿⣿⣿
//⠄⠸⣿⣿⡟⣹⣦⠄⠋⠻⢿⣶⣶⣶⡾⠃⡂⢾⣿⣿⣿⣿⣿⣿
//⠄⠄⠟⠋⠄⢻⣿⣧⣲⡀⡀⠄⠉⠱⣠⣾⡇⠄⠉⠛⢿⣿⣿⣿
//⠄⠄⠄⠄⠄⠈⣿⣿⣿⣷⣿⣿⢾⣾⣿⣿⣇⠄⠄⠄⠄⠄⠉⠉
//⠄⠄⠄⠄⠄⠄⠸⣿⣿⠟⠃⠄⠄⢈⣻⣿⣿⠄⠄⠄⠄⠄⠄⠄
//⠄⠄⠄⠄⠄⠄⠄⢿⣿⣾⣷⡄⠄⢾⣿⣿⣿⡄⠄⠄⠄⠄⠄⠄
//⠄⠄⠄⠄⠄⠄⠄⠸⣿⣿⣿⠃⠄⠈⢿⣿⣿⠄⠄⠄⠄⠄⠄⠄


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 FPUTIN 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 donationWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public buyDonationFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellDonationFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForDonation;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("FPUTIN Token", "FPUTIN") {
        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 _buyDonationFee = 2;
        uint256 _buyLiquidityFee = 6;
        uint256 _buyDevFee = 2;

        uint256 _sellDonationFee = 11;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buyDonationFee = _buyDonationFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyDonationFee + buyLiquidityFee + buyDevFee;

        sellDonationFee = _sellDonationFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellDonationFee + sellLiquidityFee + sellDevFee;

        donationWallet = address(0x165CD37b4C644C2921454429E7F9358d18A45e14); // hardcoded as ukraine donation wallet
        devWallet = address(0x825C5e0a62CFBD1D8A1D951e99Dd8d65c77C3924); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

    function updateSellFees(
        uint256 _donationFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellDonationFee = _donationFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellDonationFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForDonation += (fees * sellDonationFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForDonation += (fees * buyDonationFee) / 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 +
            tokensForDonation +
            tokensForDev;
        bool success;

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForDonation = ethBalance.mul(tokensForDonation).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDonation - ethForDev;

        tokensForLiquidity = 0;
        tokensForDonation = 0;
        tokensForDev = 0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDonationFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donationWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDonationFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDonation","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":"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":"_donationFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_donationFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600c81526020017f46505554494e20546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f46505554494e000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b1f565b5080600490805190602001906200014792919062000b1f565b5050506200016a6200015e620005df60201b60201c565b620005e760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c39565b6040518363ffffffff1660e01b8152600401620002e992919062000c7c565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006ad60201b60201c565b6200038c60a05160016200079760201b60201c565b6000600290506000600690506000600290506000600b905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a06495cd356e2412e0000006008819055506a0c685fa11e01ec6f000000600a81905550612710600582620003f7919062000ce2565b62000403919062000d72565b60098190555086601581905550856016819055508460178190555060175460165460155462000433919062000daa565b6200043f919062000daa565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046f919062000daa565b6200047b919062000daa565b60188190555073165cd37b4c644c2921454429e7f9358d18a45e14600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073825c5e0a62cfbd1d8a1d951e99dd8d65c77c3924600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054d6200053f6200083860201b60201c565b60016200086260201b60201c565b620005603060016200086260201b60201c565b6200057561dead60016200086260201b60201c565b62000597620005896200083860201b60201c565b6001620006ad60201b60201c565b620005aa306001620006ad60201b60201c565b620005bf61dead6001620006ad60201b60201c565b620005d133826200099c60201b60201c565b505050505050505062000fc9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bd620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e36200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007339062000e68565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000872620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008986200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e89062000e68565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000990919062000ea7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a069062000f14565b60405180910390fd5b62000a236000838362000b1560201b60201c565b806002600082825462000a37919062000daa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8e919062000daa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af5919062000f47565b60405180910390a362000b116000838362000b1a60201b60201c565b5050565b505050565b505050565b82805462000b2d9062000f93565b90600052602060002090601f01602090048101928262000b51576000855562000b9d565b82601f1062000b6c57805160ff191683800117855562000b9d565b8280016001018555821562000b9d579182015b8281111562000b9c57825182559160200191906001019062000b7f565b5b50905062000bac919062000bb0565b5090565b5b8082111562000bcb57600081600090555060010162000bb1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c018262000bd4565b9050919050565b62000c138162000bf4565b811462000c1f57600080fd5b50565b60008151905062000c338162000c08565b92915050565b60006020828403121562000c525762000c5162000bcf565b5b600062000c628482850162000c22565b91505092915050565b62000c768162000bf4565b82525050565b600060408201905062000c93600083018562000c6b565b62000ca2602083018462000c6b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cef8262000ca9565b915062000cfc8362000ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d385762000d3762000cb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d7f8262000ca9565b915062000d8c8362000ca9565b92508262000d9f5762000d9e62000d43565b5b828204905092915050565b600062000db78262000ca9565b915062000dc48362000ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfc5762000dfb62000cb3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e5060208362000e07565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b60008115159050919050565b62000ea18162000e8a565b82525050565b600060208201905062000ebe600083018462000e96565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000efc601f8362000e07565b915062000f098262000ec4565b602082019050919050565b6000602082019050818103600083015262000f2f8162000eed565b9050919050565b62000f418162000ca9565b82525050565b600060208201905062000f5e600083018462000f36565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fac57607f821691505b6020821081141562000fc35762000fc262000f64565b5b50919050565b60805160a051615ac762001051600039600081816113b301528181611b96015281816125d60152818161268d015281816126ba01528181612cfe01528181613e0201528181613ebb0152613ee8015260008181610f5c01528181612ca60152818161405e0152818161413f015281816141660152818161420201526142290152615ac76000f3fe6080604052600436106103a65760003560e01c80638ea5220f116101e7578063c18bc1951161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dcf578063f637434214610df8578063f8b45b0514610e23578063fe72b27a14610e4e576103ad565b8063e2f4560514610d23578063e7b94df414610d4e578063e884f26014610d79578063f11a24d314610da4576103ad565b8063d85ba063116100dc578063d85ba06314610c65578063d8fc65e114610c90578063dbe47fe914610cbb578063dd62ed3e14610ce6576103ad565b8063c18bc19514610ba9578063c876d0b914610bd2578063c8c8ebe414610bfd578063d257b34f14610c28576103ad565b8063a0d82dc511610185578063b62496f511610154578063b62496f514610aef578063bbc0c74214610b2c578063c024666814610b57578063c17b5b8c14610b80576103ad565b8063a0d82dc514610a1f578063a457c2d714610a4a578063a4c82a0014610a87578063a9059cbb14610ab2576103ad565b80639a7a23d6116101c15780639a7a23d6146109755780639c3b4fdc1461099e5780639ec22c0e146109c95780639fccce32146109f4576103ad565b80638ea5220f146108f6578063924de9b71461092157806395d89b411461094a576103ad565b806339509351116102cc57806370a082311161026a5780637571336a116102395780637571336a146108625780638095d5641461088b5780638a8c523c146108b45780638da5cb5b146108cb576103ad565b806370a08231146107ba578063715018a6146107f7578063730c18881461080e578063751039fc14610837576103ad565b80634fbee193116102a65780634fbee193146106fc578063536bcd8a146107395780636a486a8e146107645780636ddd17131461078f576103ad565b8063395093511461066957806349bd5a5e146106a65780634a62bb65146106d1576103ad565b8063199ffc721161034457806327c8f8351161031357806327c8f835146105bd5780632c3e486c146105e85780632e82f1a014610613578063313ce5671461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c578063203e727e1461055757806323b872dd14610580576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e8b565b6040516103d49190614371565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061442c565b610f1d565b6040516104119190614487565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906144a2565b610f3b565b60405161044e9190614487565b60405180910390f35b34801561046357600080fd5b5061046c610f5a565b604051610479919061452e565b60405180910390f35b34801561048e57600080fd5b50610497610f7e565b6040516104a49190614558565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf91906144a2565b610f88565b005b3480156104e257600080fd5b506104eb6110c4565b6040516104f89190614558565b60405180910390f35b34801561050d57600080fd5b506105166110ca565b6040516105239190614558565b60405180910390f35b34801561053857600080fd5b506105416110d0565b60405161054e9190614558565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190614573565b6110d6565b005b34801561058c57600080fd5b506105a760048036038101906105a291906145a0565b6111e5565b6040516105b49190614487565b60405180910390f35b3480156105c957600080fd5b506105d26112dd565b6040516105df9190614602565b60405180910390f35b3480156105f457600080fd5b506105fd6112e3565b60405161060a9190614558565b60405180910390f35b34801561061f57600080fd5b506106286112e9565b6040516106359190614487565b60405180910390f35b34801561064a57600080fd5b506106536112fc565b6040516106609190614639565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b919061442c565b611305565b60405161069d9190614487565b60405180910390f35b3480156106b257600080fd5b506106bb6113b1565b6040516106c89190614602565b60405180910390f35b3480156106dd57600080fd5b506106e66113d5565b6040516106f39190614487565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906144a2565b6113e8565b6040516107309190614487565b60405180910390f35b34801561074557600080fd5b5061074e61143e565b60405161075b9190614558565b60405180910390f35b34801561077057600080fd5b50610779611444565b6040516107869190614558565b60405180910390f35b34801561079b57600080fd5b506107a461144a565b6040516107b19190614487565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906144a2565b61145d565b6040516107ee9190614558565b60405180910390f35b34801561080357600080fd5b5061080c6114a5565b005b34801561081a57600080fd5b5061083560048036038101906108309190614680565b61152d565b005b34801561084357600080fd5b5061084c61166d565b6040516108599190614487565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906146d3565b61170d565b005b34801561089757600080fd5b506108b260048036038101906108ad9190614713565b6117e4565b005b3480156108c057600080fd5b506108c96118e2565b005b3480156108d757600080fd5b506108e061199d565b6040516108ed9190614602565b60405180910390f35b34801561090257600080fd5b5061090b6119c7565b6040516109189190614602565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614766565b6119ed565b005b34801561095657600080fd5b5061095f611a86565b60405161096c9190614371565b60405180910390f35b34801561098157600080fd5b5061099c600480360381019061099791906146d3565b611b18565b005b3480156109aa57600080fd5b506109b3611c31565b6040516109c09190614558565b60405180910390f35b3480156109d557600080fd5b506109de611c37565b6040516109eb9190614558565b60405180910390f35b348015610a0057600080fd5b50610a09611c3d565b604051610a169190614558565b60405180910390f35b348015610a2b57600080fd5b50610a34611c43565b604051610a419190614558565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c919061442c565b611c49565b604051610a7e9190614487565b60405180910390f35b348015610a9357600080fd5b50610a9c611d34565b604051610aa99190614558565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad4919061442c565b611d3a565b604051610ae69190614487565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b1191906144a2565b611d58565b604051610b239190614487565b60405180910390f35b348015610b3857600080fd5b50610b41611d78565b604051610b4e9190614487565b60405180910390f35b348015610b6357600080fd5b50610b7e6004803603810190610b7991906146d3565b611d8b565b005b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614713565b611eb0565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb9190614573565b611faf565b005b348015610bde57600080fd5b50610be76120be565b604051610bf49190614487565b60405180910390f35b348015610c0957600080fd5b50610c126120d1565b604051610c1f9190614558565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190614573565b6120d7565b604051610c5c9190614487565b60405180910390f35b348015610c7157600080fd5b50610c7a61222c565b604051610c879190614558565b60405180910390f35b348015610c9c57600080fd5b50610ca5612232565b604051610cb29190614558565b60405180910390f35b348015610cc757600080fd5b50610cd0612238565b604051610cdd9190614558565b60405180910390f35b348015610cf257600080fd5b50610d0d6004803603810190610d089190614793565b61223e565b604051610d1a9190614558565b60405180910390f35b348015610d2f57600080fd5b50610d386122c5565b604051610d459190614558565b60405180910390f35b348015610d5a57600080fd5b50610d636122cb565b604051610d709190614602565b60405180910390f35b348015610d8557600080fd5b50610d8e6122f1565b604051610d9b9190614487565b60405180910390f35b348015610db057600080fd5b50610db9612391565b604051610dc69190614558565b60405180910390f35b348015610ddb57600080fd5b50610df66004803603810190610df191906144a2565b612397565b005b348015610e0457600080fd5b50610e0d61248f565b604051610e1a9190614558565b60405180910390f35b348015610e2f57600080fd5b50610e38612495565b604051610e459190614558565b60405180910390f35b348015610e5a57600080fd5b50610e756004803603810190610e709190614573565b61249b565b604051610e829190614487565b60405180910390f35b606060038054610e9a90614802565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690614802565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b5050505050905090565b6000610f31610f2a612773565b848461277b565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f90612773565b73ffffffffffffffffffffffffffffffffffffffff16610fae61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614880565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6110de612773565b73ffffffffffffffffffffffffffffffffffffffff166110fc61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614880565b60405180910390fd5b670de0b6b3a76400006103e86001611168610f7e565b61117291906148cf565b61117c9190614958565b6111869190614958565b8110156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906149fb565b60405180910390fd5b670de0b6b3a7640000816111dc91906148cf565b60088190555050565b60006111f2848484612946565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061123d612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490614a8d565b60405180910390fd5b6112d1856112c9612773565b85840361277b565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113a7611312612773565b848460016000611320612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a29190614aad565b61277b565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ad612773565b73ffffffffffffffffffffffffffffffffffffffff166114cb61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614880565b60405180910390fd5b61152b60006136de565b565b611535612773565b73ffffffffffffffffffffffffffffffffffffffff1661155361199d565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614880565b60405180910390fd5b6102588310156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614b75565b60405180910390fd5b6103e88211158015611601575060008210155b611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614c07565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611677612773565b73ffffffffffffffffffffffffffffffffffffffff1661169561199d565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290614880565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611715612773565b73ffffffffffffffffffffffffffffffffffffffff1661173361199d565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614880565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117ec612773565b73ffffffffffffffffffffffffffffffffffffffff1661180a61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614880565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118889190614aad565b6118929190614aad565b6014819055506014805411156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490614c73565b60405180910390fd5b505050565b6118ea612773565b73ffffffffffffffffffffffffffffffffffffffff1661190861199d565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614880565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119f5612773565b73ffffffffffffffffffffffffffffffffffffffff16611a1361199d565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614880565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9590614802565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac190614802565b8015611b0e5780601f10611ae357610100808354040283529160200191611b0e565b820191906000526020600020905b815481529060010190602001808311611af157829003601f168201915b5050505050905090565b611b20612773565b73ffffffffffffffffffffffffffffffffffffffff16611b3e61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90614880565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90614d05565b60405180910390fd5b611c2d82826137a4565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c58612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614d97565b60405180910390fd5b611d29611d20612773565b8585840361277b565b600191505092915050565b600e5481565b6000611d4e611d47612773565b8484612946565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d93612773565b73ffffffffffffffffffffffffffffffffffffffff16611db161199d565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614880565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ea49190614487565b60405180910390a25050565b611eb8612773565b73ffffffffffffffffffffffffffffffffffffffff16611ed661199d565b73ffffffffffffffffffffffffffffffffffffffff1614611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614880565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f549190614aad565b611f5e9190614aad565b60188190555060196018541115611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190614e03565b60405180910390fd5b505050565b611fb7612773565b73ffffffffffffffffffffffffffffffffffffffff16611fd561199d565b73ffffffffffffffffffffffffffffffffffffffff161461202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614880565b60405180910390fd5b670de0b6b3a76400006103e86005612041610f7e565b61204b91906148cf565b6120559190614958565b61205f9190614958565b8110156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890614e95565b60405180910390fd5b670de0b6b3a7640000816120b591906148cf565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120e1612773565b73ffffffffffffffffffffffffffffffffffffffff166120ff61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614880565b60405180910390fd5b620186a06001612163610f7e565b61216d91906148cf565b6121779190614958565b8210156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090614f27565b60405180910390fd5b6103e860056121c6610f7e565b6121d091906148cf565b6121da9190614958565b82111561221c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221390614fb9565b60405180910390fd5b8160098190555060019050919050565b60145481565b601c5481565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006122fb612773565b73ffffffffffffffffffffffffffffffffffffffff1661231961199d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614880565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61239f612773565b73ffffffffffffffffffffffffffffffffffffffff166123bd61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a9061504b565b60405180910390fd5b61248c816136de565b50565b601a5481565b600a5481565b60006124a5612773565b73ffffffffffffffffffffffffffffffffffffffff166124c361199d565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614880565b60405180910390fd5b600f546010546125299190614aad565b421161256a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612561906150b7565b60405180910390fd5b6103e88211156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690615149565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126119190614602565b602060405180830381865afa15801561262e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612652919061517e565b9050600061267d61271061266f868561384590919063ffffffff16565b61385b90919063ffffffff16565b905060008111156126b6576126b57f000000000000000000000000000000000000000000000000000000000000000061dead83613871565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561272357600080fd5b505af1158015612737573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e29061521d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612852906152af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129399190614558565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615341565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d906153d3565b60405180910390fd5b6000811415612a4057612a3b83836000613871565b6136d9565b601160009054906101000a900460ff161561310357612a5d61199d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612acb5750612a9b61199d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b3e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b575750600560149054906101000a900460ff16155b1561310257601160019054906101000a900460ff16612c5157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c115750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c479061543f565b60405180910390fd5b5b601360009054906101000a900460ff1615612e1957612c6e61199d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cf557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d4d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e185743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca906154f7565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebc5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6357600854811115612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90615589565b60405180910390fd5b600a54612f128361145d565b82612f1d9190614aad565b1115612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f55906155f5565b60405180910390fd5b613101565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130065750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305557600854811115613050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304790615687565b60405180910390fd5b613100565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130ff57600a546130b28361145d565b826130bd9190614aad565b11156130fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f5906155f5565b60405180910390fd5b5b5b5b5b5b600061310e3061145d565b9050600060095482101590508080156131335750601160029054906101000a900460ff165b801561314c5750600560149054906101000a900460ff16155b80156131a25750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561324e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613292576001600560146101000a81548160ff021916908315150217905550613276613af2565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132f85750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133105750600c60009054906101000a900460ff165b801561332b5750600d54600e546133279190614aad565b4210155b80156133815750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133905761338e613dd9565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134465750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561345057600090505b600081156136c957602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134b357506000601854115b15613580576134e060646134d26018548861384590919063ffffffff16565b61385b90919063ffffffff16565b9050601854601a54826134f391906148cf565b6134fd9190614958565b601d600082825461350e9190614aad565b92505081905550601854601b548261352691906148cf565b6135309190614958565b601e60008282546135419190614aad565b925050819055506018546019548261355991906148cf565b6135639190614958565b601c60008282546135749190614aad565b925050819055506136a5565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135db57506000601454115b156136a45761360860646135fa6014548861384590919063ffffffff16565b61385b90919063ffffffff16565b90506014546016548261361b91906148cf565b6136259190614958565b601d60008282546136369190614aad565b925050819055506014546017548261364e91906148cf565b6136589190614958565b601e60008282546136699190614aad565b925050819055506014546015548261368191906148cf565b61368b9190614958565b601c600082825461369c9190614aad565b925050819055505b5b60008111156136ba576136b9873083613871565b5b80856136c691906156a7565b94505b6136d4878787613871565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361385391906148cf565b905092915050565b600081836138699190614958565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d890615341565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613948906153d3565b60405180910390fd5b61395c838383613f9f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d99061574d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a759190614aad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ad99190614558565b60405180910390a3613aec848484613fa4565b50505050565b6000613afd3061145d565b90506000601e54601c54601d54613b149190614aad565b613b1e9190614aad565b9050600080831480613b305750600082145b15613b3d57505050613dd7565b6014600954613b4c91906148cf565b831115613b65576014600954613b6291906148cf565b92505b6000600283601d5486613b7891906148cf565b613b829190614958565b613b8c9190614958565b90506000613ba38286613fa990919063ffffffff16565b90506000479050613bb382613fbf565b6000613bc88247613fa990919063ffffffff16565b90506000613bf387613be5601c548561384590919063ffffffff16565b61385b90919063ffffffff16565b90506000613c1e88613c10601e548661384590919063ffffffff16565b61385b90919063ffffffff16565b90506000818385613c2f91906156a7565b613c3991906156a7565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c999061579e565b60006040518083038185875af1925050503d8060008114613cd6576040519150601f19603f3d011682016040523d82523d6000602084013e613cdb565b606091505b505080985050600087118015613cf15750600081115b15613d3e57613d0087826141fc565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d35939291906157b3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d849061579e565b60006040518083038185875af1925050503d8060008114613dc1576040519150601f19603f3d011682016040523d82523d6000602084013e613dc6565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e3d9190614602565b602060405180830381865afa158015613e5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7e919061517e565b90506000613eab612710613e9d600b548561384590919063ffffffff16565b61385b90919063ffffffff16565b90506000811115613ee457613ee37f000000000000000000000000000000000000000000000000000000000000000061dead83613871565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f5157600080fd5b505af1158015613f65573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fb791906156a7565b905092915050565b6000600267ffffffffffffffff811115613fdc57613fdb6157ea565b5b60405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061402257614021615819565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140eb919061585d565b816001815181106140ff576140fe615819565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614164307f00000000000000000000000000000000000000000000000000000000000000008461277b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141c6959493929190615983565b600060405180830381600087803b1580156141e057600080fd5b505af11580156141f4573d6000803e3d6000fd5b505050505050565b614227307f00000000000000000000000000000000000000000000000000000000000000008461277b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161428e969594939291906159dd565b60606040518083038185885af11580156142ac573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142d19190615a3e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143125780820151818401526020810190506142f7565b83811115614321576000848401525b50505050565b6000601f19601f8301169050919050565b6000614343826142d8565b61434d81856142e3565b935061435d8185602086016142f4565b61436681614327565b840191505092915050565b6000602082019050818103600083015261438b8184614338565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143c382614398565b9050919050565b6143d3816143b8565b81146143de57600080fd5b50565b6000813590506143f0816143ca565b92915050565b6000819050919050565b614409816143f6565b811461441457600080fd5b50565b60008135905061442681614400565b92915050565b6000806040838503121561444357614442614393565b5b6000614451858286016143e1565b925050602061446285828601614417565b9150509250929050565b60008115159050919050565b6144818161446c565b82525050565b600060208201905061449c6000830184614478565b92915050565b6000602082840312156144b8576144b7614393565b5b60006144c6848285016143e1565b91505092915050565b6000819050919050565b60006144f46144ef6144ea84614398565b6144cf565b614398565b9050919050565b6000614506826144d9565b9050919050565b6000614518826144fb565b9050919050565b6145288161450d565b82525050565b6000602082019050614543600083018461451f565b92915050565b614552816143f6565b82525050565b600060208201905061456d6000830184614549565b92915050565b60006020828403121561458957614588614393565b5b600061459784828501614417565b91505092915050565b6000806000606084860312156145b9576145b8614393565b5b60006145c7868287016143e1565b93505060206145d8868287016143e1565b92505060406145e986828701614417565b9150509250925092565b6145fc816143b8565b82525050565b600060208201905061461760008301846145f3565b92915050565b600060ff82169050919050565b6146338161461d565b82525050565b600060208201905061464e600083018461462a565b92915050565b61465d8161446c565b811461466857600080fd5b50565b60008135905061467a81614654565b92915050565b60008060006060848603121561469957614698614393565b5b60006146a786828701614417565b93505060206146b886828701614417565b92505060406146c98682870161466b565b9150509250925092565b600080604083850312156146ea576146e9614393565b5b60006146f8858286016143e1565b92505060206147098582860161466b565b9150509250929050565b60008060006060848603121561472c5761472b614393565b5b600061473a86828701614417565b935050602061474b86828701614417565b925050604061475c86828701614417565b9150509250925092565b60006020828403121561477c5761477b614393565b5b600061478a8482850161466b565b91505092915050565b600080604083850312156147aa576147a9614393565b5b60006147b8858286016143e1565b92505060206147c9858286016143e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481a57607f821691505b6020821081141561482e5761482d6147d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061486a6020836142e3565b915061487582614834565b602082019050919050565b600060208201905081810360008301526148998161485d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148da826143f6565b91506148e5836143f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561491e5761491d6148a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614963826143f6565b915061496e836143f6565b92508261497e5761497d614929565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006149e5602f836142e3565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a776028836142e3565b9150614a8282614a1b565b604082019050919050565b60006020820190508181036000830152614aa681614a6a565b9050919050565b6000614ab8826143f6565b9150614ac3836143f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614af857614af76148a0565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b5f6033836142e3565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bf16030836142e3565b9150614bfc82614b95565b604082019050919050565b60006020820190508181036000830152614c2081614be4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614c5d601d836142e3565b9150614c6882614c27565b602082019050919050565b60006020820190508181036000830152614c8c81614c50565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cef6039836142e3565b9150614cfa82614c93565b604082019050919050565b60006020820190508181036000830152614d1e81614ce2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d816025836142e3565b9150614d8c82614d25565b604082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614ded601d836142e3565b9150614df882614db7565b602082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7f6024836142e3565b9150614e8a82614e23565b604082019050919050565b60006020820190508181036000830152614eae81614e72565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f116035836142e3565b9150614f1c82614eb5565b604082019050919050565b60006020820190508181036000830152614f4081614f04565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa36034836142e3565b9150614fae82614f47565b604082019050919050565b60006020820190508181036000830152614fd281614f96565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150356026836142e3565b915061504082614fd9565b604082019050919050565b6000602082019050818103600083015261506481615028565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150a16020836142e3565b91506150ac8261506b565b602082019050919050565b600060208201905081810360008301526150d081615094565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615133602a836142e3565b915061513e826150d7565b604082019050919050565b6000602082019050818103600083015261516281615126565b9050919050565b60008151905061517881614400565b92915050565b60006020828403121561519457615193614393565b5b60006151a284828501615169565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152076024836142e3565b9150615212826151ab565b604082019050919050565b60006020820190508181036000830152615236816151fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152996022836142e3565b91506152a48261523d565b604082019050919050565b600060208201905081810360008301526152c88161528c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061532b6025836142e3565b9150615336826152cf565b604082019050919050565b6000602082019050818103600083015261535a8161531e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153bd6023836142e3565b91506153c882615361565b604082019050919050565b600060208201905081810360008301526153ec816153b0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154296016836142e3565b9150615434826153f3565b602082019050919050565b600060208201905081810360008301526154588161541c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154e16049836142e3565b91506154ec8261545f565b606082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155736035836142e3565b915061557e82615517565b604082019050919050565b600060208201905081810360008301526155a281615566565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155df6013836142e3565b91506155ea826155a9565b602082019050919050565b6000602082019050818103600083015261560e816155d2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156716036836142e3565b915061567c82615615565b604082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b60006156b2826143f6565b91506156bd836143f6565b9250828210156156d0576156cf6148a0565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157376026836142e3565b9150615742826156db565b604082019050919050565b600060208201905081810360008301526157668161572a565b9050919050565b600081905092915050565b50565b600061578860008361576d565b915061579382615778565b600082019050919050565b60006157a98261577b565b9150819050919050565b60006060820190506157c86000830186614549565b6157d56020830185614549565b6157e26040830184614549565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615857816143ca565b92915050565b60006020828403121561587357615872614393565b5b600061588184828501615848565b91505092915050565b6000819050919050565b60006158af6158aa6158a58461588a565b6144cf565b6143f6565b9050919050565b6158bf81615894565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158fa816143b8565b82525050565b600061590c83836158f1565b60208301905092915050565b6000602082019050919050565b6000615930826158c5565b61593a81856158d0565b9350615945836158e1565b8060005b8381101561597657815161595d8882615900565b975061596883615918565b925050600181019050615949565b5085935050505092915050565b600060a0820190506159986000830188614549565b6159a560208301876158b6565b81810360408301526159b78186615925565b90506159c660608301856145f3565b6159d36080830184614549565b9695505050505050565b600060c0820190506159f260008301896145f3565b6159ff6020830188614549565b615a0c60408301876158b6565b615a1960608301866158b6565b615a2660808301856145f3565b615a3360a0830184614549565b979650505050505050565b600080600060608486031215615a5757615a56614393565b5b6000615a6586828701615169565b9350506020615a7686828701615169565b9250506040615a8786828701615169565b915050925092509256fea2646970667358221220b05b2fb6e5f60c7ae1554ed6b641d96de8d8fde004a9086b8a61de5ced30230f64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638ea5220f116101e7578063c18bc1951161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dcf578063f637434214610df8578063f8b45b0514610e23578063fe72b27a14610e4e576103ad565b8063e2f4560514610d23578063e7b94df414610d4e578063e884f26014610d79578063f11a24d314610da4576103ad565b8063d85ba063116100dc578063d85ba06314610c65578063d8fc65e114610c90578063dbe47fe914610cbb578063dd62ed3e14610ce6576103ad565b8063c18bc19514610ba9578063c876d0b914610bd2578063c8c8ebe414610bfd578063d257b34f14610c28576103ad565b8063a0d82dc511610185578063b62496f511610154578063b62496f514610aef578063bbc0c74214610b2c578063c024666814610b57578063c17b5b8c14610b80576103ad565b8063a0d82dc514610a1f578063a457c2d714610a4a578063a4c82a0014610a87578063a9059cbb14610ab2576103ad565b80639a7a23d6116101c15780639a7a23d6146109755780639c3b4fdc1461099e5780639ec22c0e146109c95780639fccce32146109f4576103ad565b80638ea5220f146108f6578063924de9b71461092157806395d89b411461094a576103ad565b806339509351116102cc57806370a082311161026a5780637571336a116102395780637571336a146108625780638095d5641461088b5780638a8c523c146108b45780638da5cb5b146108cb576103ad565b806370a08231146107ba578063715018a6146107f7578063730c18881461080e578063751039fc14610837576103ad565b80634fbee193116102a65780634fbee193146106fc578063536bcd8a146107395780636a486a8e146107645780636ddd17131461078f576103ad565b8063395093511461066957806349bd5a5e146106a65780634a62bb65146106d1576103ad565b8063199ffc721161034457806327c8f8351161031357806327c8f835146105bd5780632c3e486c146105e85780632e82f1a014610613578063313ce5671461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c578063203e727e1461055757806323b872dd14610580576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e8b565b6040516103d49190614371565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061442c565b610f1d565b6040516104119190614487565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906144a2565b610f3b565b60405161044e9190614487565b60405180910390f35b34801561046357600080fd5b5061046c610f5a565b604051610479919061452e565b60405180910390f35b34801561048e57600080fd5b50610497610f7e565b6040516104a49190614558565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf91906144a2565b610f88565b005b3480156104e257600080fd5b506104eb6110c4565b6040516104f89190614558565b60405180910390f35b34801561050d57600080fd5b506105166110ca565b6040516105239190614558565b60405180910390f35b34801561053857600080fd5b506105416110d0565b60405161054e9190614558565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190614573565b6110d6565b005b34801561058c57600080fd5b506105a760048036038101906105a291906145a0565b6111e5565b6040516105b49190614487565b60405180910390f35b3480156105c957600080fd5b506105d26112dd565b6040516105df9190614602565b60405180910390f35b3480156105f457600080fd5b506105fd6112e3565b60405161060a9190614558565b60405180910390f35b34801561061f57600080fd5b506106286112e9565b6040516106359190614487565b60405180910390f35b34801561064a57600080fd5b506106536112fc565b6040516106609190614639565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b919061442c565b611305565b60405161069d9190614487565b60405180910390f35b3480156106b257600080fd5b506106bb6113b1565b6040516106c89190614602565b60405180910390f35b3480156106dd57600080fd5b506106e66113d5565b6040516106f39190614487565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906144a2565b6113e8565b6040516107309190614487565b60405180910390f35b34801561074557600080fd5b5061074e61143e565b60405161075b9190614558565b60405180910390f35b34801561077057600080fd5b50610779611444565b6040516107869190614558565b60405180910390f35b34801561079b57600080fd5b506107a461144a565b6040516107b19190614487565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906144a2565b61145d565b6040516107ee9190614558565b60405180910390f35b34801561080357600080fd5b5061080c6114a5565b005b34801561081a57600080fd5b5061083560048036038101906108309190614680565b61152d565b005b34801561084357600080fd5b5061084c61166d565b6040516108599190614487565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906146d3565b61170d565b005b34801561089757600080fd5b506108b260048036038101906108ad9190614713565b6117e4565b005b3480156108c057600080fd5b506108c96118e2565b005b3480156108d757600080fd5b506108e061199d565b6040516108ed9190614602565b60405180910390f35b34801561090257600080fd5b5061090b6119c7565b6040516109189190614602565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614766565b6119ed565b005b34801561095657600080fd5b5061095f611a86565b60405161096c9190614371565b60405180910390f35b34801561098157600080fd5b5061099c600480360381019061099791906146d3565b611b18565b005b3480156109aa57600080fd5b506109b3611c31565b6040516109c09190614558565b60405180910390f35b3480156109d557600080fd5b506109de611c37565b6040516109eb9190614558565b60405180910390f35b348015610a0057600080fd5b50610a09611c3d565b604051610a169190614558565b60405180910390f35b348015610a2b57600080fd5b50610a34611c43565b604051610a419190614558565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c919061442c565b611c49565b604051610a7e9190614487565b60405180910390f35b348015610a9357600080fd5b50610a9c611d34565b604051610aa99190614558565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad4919061442c565b611d3a565b604051610ae69190614487565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b1191906144a2565b611d58565b604051610b239190614487565b60405180910390f35b348015610b3857600080fd5b50610b41611d78565b604051610b4e9190614487565b60405180910390f35b348015610b6357600080fd5b50610b7e6004803603810190610b7991906146d3565b611d8b565b005b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614713565b611eb0565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb9190614573565b611faf565b005b348015610bde57600080fd5b50610be76120be565b604051610bf49190614487565b60405180910390f35b348015610c0957600080fd5b50610c126120d1565b604051610c1f9190614558565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190614573565b6120d7565b604051610c5c9190614487565b60405180910390f35b348015610c7157600080fd5b50610c7a61222c565b604051610c879190614558565b60405180910390f35b348015610c9c57600080fd5b50610ca5612232565b604051610cb29190614558565b60405180910390f35b348015610cc757600080fd5b50610cd0612238565b604051610cdd9190614558565b60405180910390f35b348015610cf257600080fd5b50610d0d6004803603810190610d089190614793565b61223e565b604051610d1a9190614558565b60405180910390f35b348015610d2f57600080fd5b50610d386122c5565b604051610d459190614558565b60405180910390f35b348015610d5a57600080fd5b50610d636122cb565b604051610d709190614602565b60405180910390f35b348015610d8557600080fd5b50610d8e6122f1565b604051610d9b9190614487565b60405180910390f35b348015610db057600080fd5b50610db9612391565b604051610dc69190614558565b60405180910390f35b348015610ddb57600080fd5b50610df66004803603810190610df191906144a2565b612397565b005b348015610e0457600080fd5b50610e0d61248f565b604051610e1a9190614558565b60405180910390f35b348015610e2f57600080fd5b50610e38612495565b604051610e459190614558565b60405180910390f35b348015610e5a57600080fd5b50610e756004803603810190610e709190614573565b61249b565b604051610e829190614487565b60405180910390f35b606060038054610e9a90614802565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690614802565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b5050505050905090565b6000610f31610f2a612773565b848461277b565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f90612773565b73ffffffffffffffffffffffffffffffffffffffff16610fae61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614880565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6110de612773565b73ffffffffffffffffffffffffffffffffffffffff166110fc61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614880565b60405180910390fd5b670de0b6b3a76400006103e86001611168610f7e565b61117291906148cf565b61117c9190614958565b6111869190614958565b8110156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906149fb565b60405180910390fd5b670de0b6b3a7640000816111dc91906148cf565b60088190555050565b60006111f2848484612946565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061123d612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490614a8d565b60405180910390fd5b6112d1856112c9612773565b85840361277b565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113a7611312612773565b848460016000611320612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a29190614aad565b61277b565b6001905092915050565b7f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4981565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ad612773565b73ffffffffffffffffffffffffffffffffffffffff166114cb61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614880565b60405180910390fd5b61152b60006136de565b565b611535612773565b73ffffffffffffffffffffffffffffffffffffffff1661155361199d565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614880565b60405180910390fd5b6102588310156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614b75565b60405180910390fd5b6103e88211158015611601575060008210155b611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614c07565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611677612773565b73ffffffffffffffffffffffffffffffffffffffff1661169561199d565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290614880565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611715612773565b73ffffffffffffffffffffffffffffffffffffffff1661173361199d565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614880565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117ec612773565b73ffffffffffffffffffffffffffffffffffffffff1661180a61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614880565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118889190614aad565b6118929190614aad565b6014819055506014805411156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490614c73565b60405180910390fd5b505050565b6118ea612773565b73ffffffffffffffffffffffffffffffffffffffff1661190861199d565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614880565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119f5612773565b73ffffffffffffffffffffffffffffffffffffffff16611a1361199d565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614880565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9590614802565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac190614802565b8015611b0e5780601f10611ae357610100808354040283529160200191611b0e565b820191906000526020600020905b815481529060010190602001808311611af157829003601f168201915b5050505050905090565b611b20612773565b73ffffffffffffffffffffffffffffffffffffffff16611b3e61199d565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90614880565b60405180910390fd5b7f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90614d05565b60405180910390fd5b611c2d82826137a4565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c58612773565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614d97565b60405180910390fd5b611d29611d20612773565b8585840361277b565b600191505092915050565b600e5481565b6000611d4e611d47612773565b8484612946565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d93612773565b73ffffffffffffffffffffffffffffffffffffffff16611db161199d565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614880565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ea49190614487565b60405180910390a25050565b611eb8612773565b73ffffffffffffffffffffffffffffffffffffffff16611ed661199d565b73ffffffffffffffffffffffffffffffffffffffff1614611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614880565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f549190614aad565b611f5e9190614aad565b60188190555060196018541115611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190614e03565b60405180910390fd5b505050565b611fb7612773565b73ffffffffffffffffffffffffffffffffffffffff16611fd561199d565b73ffffffffffffffffffffffffffffffffffffffff161461202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614880565b60405180910390fd5b670de0b6b3a76400006103e86005612041610f7e565b61204b91906148cf565b6120559190614958565b61205f9190614958565b8110156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890614e95565b60405180910390fd5b670de0b6b3a7640000816120b591906148cf565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120e1612773565b73ffffffffffffffffffffffffffffffffffffffff166120ff61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614880565b60405180910390fd5b620186a06001612163610f7e565b61216d91906148cf565b6121779190614958565b8210156121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090614f27565b60405180910390fd5b6103e860056121c6610f7e565b6121d091906148cf565b6121da9190614958565b82111561221c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221390614fb9565b60405180910390fd5b8160098190555060019050919050565b60145481565b601c5481565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006122fb612773565b73ffffffffffffffffffffffffffffffffffffffff1661231961199d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614880565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61239f612773565b73ffffffffffffffffffffffffffffffffffffffff166123bd61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a9061504b565b60405180910390fd5b61248c816136de565b50565b601a5481565b600a5481565b60006124a5612773565b73ffffffffffffffffffffffffffffffffffffffff166124c361199d565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614880565b60405180910390fd5b600f546010546125299190614aad565b421161256a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612561906150b7565b60405180910390fd5b6103e88211156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690615149565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd496040518263ffffffff1660e01b81526004016126119190614602565b602060405180830381865afa15801561262e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612652919061517e565b9050600061267d61271061266f868561384590919063ffffffff16565b61385b90919063ffffffff16565b905060008111156126b6576126b57f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4961dead83613871565b5b60007f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561272357600080fd5b505af1158015612737573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e29061521d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612852906152af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129399190614558565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615341565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d906153d3565b60405180910390fd5b6000811415612a4057612a3b83836000613871565b6136d9565b601160009054906101000a900460ff161561310357612a5d61199d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612acb5750612a9b61199d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b3e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b575750600560149054906101000a900460ff16155b1561310257601160019054906101000a900460ff16612c5157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c115750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c479061543f565b60405180910390fd5b5b601360009054906101000a900460ff1615612e1957612c6e61199d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cf557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d4d57507f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e185743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca906154f7565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebc5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6357600854811115612f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90615589565b60405180910390fd5b600a54612f128361145d565b82612f1d9190614aad565b1115612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f55906155f5565b60405180910390fd5b613101565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130065750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305557600854811115613050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304790615687565b60405180910390fd5b613100565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130ff57600a546130b28361145d565b826130bd9190614aad565b11156130fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f5906155f5565b60405180910390fd5b5b5b5b5b5b600061310e3061145d565b9050600060095482101590508080156131335750601160029054906101000a900460ff165b801561314c5750600560149054906101000a900460ff16155b80156131a25750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561324e5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613292576001600560146101000a81548160ff021916908315150217905550613276613af2565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132f85750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133105750600c60009054906101000a900460ff165b801561332b5750600d54600e546133279190614aad565b4210155b80156133815750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133905761338e613dd9565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134465750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561345057600090505b600081156136c957602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134b357506000601854115b15613580576134e060646134d26018548861384590919063ffffffff16565b61385b90919063ffffffff16565b9050601854601a54826134f391906148cf565b6134fd9190614958565b601d600082825461350e9190614aad565b92505081905550601854601b548261352691906148cf565b6135309190614958565b601e60008282546135419190614aad565b925050819055506018546019548261355991906148cf565b6135639190614958565b601c60008282546135749190614aad565b925050819055506136a5565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135db57506000601454115b156136a45761360860646135fa6014548861384590919063ffffffff16565b61385b90919063ffffffff16565b90506014546016548261361b91906148cf565b6136259190614958565b601d60008282546136369190614aad565b925050819055506014546017548261364e91906148cf565b6136589190614958565b601e60008282546136699190614aad565b925050819055506014546015548261368191906148cf565b61368b9190614958565b601c600082825461369c9190614aad565b925050819055505b5b60008111156136ba576136b9873083613871565b5b80856136c691906156a7565b94505b6136d4878787613871565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361385391906148cf565b905092915050565b600081836138699190614958565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d890615341565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613948906153d3565b60405180910390fd5b61395c838383613f9f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d99061574d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a759190614aad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ad99190614558565b60405180910390a3613aec848484613fa4565b50505050565b6000613afd3061145d565b90506000601e54601c54601d54613b149190614aad565b613b1e9190614aad565b9050600080831480613b305750600082145b15613b3d57505050613dd7565b6014600954613b4c91906148cf565b831115613b65576014600954613b6291906148cf565b92505b6000600283601d5486613b7891906148cf565b613b829190614958565b613b8c9190614958565b90506000613ba38286613fa990919063ffffffff16565b90506000479050613bb382613fbf565b6000613bc88247613fa990919063ffffffff16565b90506000613bf387613be5601c548561384590919063ffffffff16565b61385b90919063ffffffff16565b90506000613c1e88613c10601e548661384590919063ffffffff16565b61385b90919063ffffffff16565b90506000818385613c2f91906156a7565b613c3991906156a7565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c999061579e565b60006040518083038185875af1925050503d8060008114613cd6576040519150601f19603f3d011682016040523d82523d6000602084013e613cdb565b606091505b505080985050600087118015613cf15750600081115b15613d3e57613d0087826141fc565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d35939291906157b3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d849061579e565b60006040518083038185875af1925050503d8060008114613dc1576040519150601f19603f3d011682016040523d82523d6000602084013e613dc6565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd496040518263ffffffff1660e01b8152600401613e3d9190614602565b602060405180830381865afa158015613e5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7e919061517e565b90506000613eab612710613e9d600b548561384590919063ffffffff16565b61385b90919063ffffffff16565b90506000811115613ee457613ee37f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4961dead83613871565b5b60007f00000000000000000000000049ed80810602ca0b7966a5d2f38fa396d318cd4990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f5157600080fd5b505af1158015613f65573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fb791906156a7565b905092915050565b6000600267ffffffffffffffff811115613fdc57613fdb6157ea565b5b60405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061402257614021615819565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140eb919061585d565b816001815181106140ff576140fe615819565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614164307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461277b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141c6959493929190615983565b600060405180830381600087803b1580156141e057600080fd5b505af11580156141f4573d6000803e3d6000fd5b505050505050565b614227307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461277b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161428e969594939291906159dd565b60606040518083038185885af11580156142ac573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142d19190615a3e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143125780820151818401526020810190506142f7565b83811115614321576000848401525b50505050565b6000601f19601f8301169050919050565b6000614343826142d8565b61434d81856142e3565b935061435d8185602086016142f4565b61436681614327565b840191505092915050565b6000602082019050818103600083015261438b8184614338565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143c382614398565b9050919050565b6143d3816143b8565b81146143de57600080fd5b50565b6000813590506143f0816143ca565b92915050565b6000819050919050565b614409816143f6565b811461441457600080fd5b50565b60008135905061442681614400565b92915050565b6000806040838503121561444357614442614393565b5b6000614451858286016143e1565b925050602061446285828601614417565b9150509250929050565b60008115159050919050565b6144818161446c565b82525050565b600060208201905061449c6000830184614478565b92915050565b6000602082840312156144b8576144b7614393565b5b60006144c6848285016143e1565b91505092915050565b6000819050919050565b60006144f46144ef6144ea84614398565b6144cf565b614398565b9050919050565b6000614506826144d9565b9050919050565b6000614518826144fb565b9050919050565b6145288161450d565b82525050565b6000602082019050614543600083018461451f565b92915050565b614552816143f6565b82525050565b600060208201905061456d6000830184614549565b92915050565b60006020828403121561458957614588614393565b5b600061459784828501614417565b91505092915050565b6000806000606084860312156145b9576145b8614393565b5b60006145c7868287016143e1565b93505060206145d8868287016143e1565b92505060406145e986828701614417565b9150509250925092565b6145fc816143b8565b82525050565b600060208201905061461760008301846145f3565b92915050565b600060ff82169050919050565b6146338161461d565b82525050565b600060208201905061464e600083018461462a565b92915050565b61465d8161446c565b811461466857600080fd5b50565b60008135905061467a81614654565b92915050565b60008060006060848603121561469957614698614393565b5b60006146a786828701614417565b93505060206146b886828701614417565b92505060406146c98682870161466b565b9150509250925092565b600080604083850312156146ea576146e9614393565b5b60006146f8858286016143e1565b92505060206147098582860161466b565b9150509250929050565b60008060006060848603121561472c5761472b614393565b5b600061473a86828701614417565b935050602061474b86828701614417565b925050604061475c86828701614417565b9150509250925092565b60006020828403121561477c5761477b614393565b5b600061478a8482850161466b565b91505092915050565b600080604083850312156147aa576147a9614393565b5b60006147b8858286016143e1565b92505060206147c9858286016143e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481a57607f821691505b6020821081141561482e5761482d6147d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061486a6020836142e3565b915061487582614834565b602082019050919050565b600060208201905081810360008301526148998161485d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148da826143f6565b91506148e5836143f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561491e5761491d6148a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614963826143f6565b915061496e836143f6565b92508261497e5761497d614929565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006149e5602f836142e3565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a776028836142e3565b9150614a8282614a1b565b604082019050919050565b60006020820190508181036000830152614aa681614a6a565b9050919050565b6000614ab8826143f6565b9150614ac3836143f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614af857614af76148a0565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b5f6033836142e3565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bf16030836142e3565b9150614bfc82614b95565b604082019050919050565b60006020820190508181036000830152614c2081614be4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614c5d601d836142e3565b9150614c6882614c27565b602082019050919050565b60006020820190508181036000830152614c8c81614c50565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cef6039836142e3565b9150614cfa82614c93565b604082019050919050565b60006020820190508181036000830152614d1e81614ce2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d816025836142e3565b9150614d8c82614d25565b604082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614ded601d836142e3565b9150614df882614db7565b602082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7f6024836142e3565b9150614e8a82614e23565b604082019050919050565b60006020820190508181036000830152614eae81614e72565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f116035836142e3565b9150614f1c82614eb5565b604082019050919050565b60006020820190508181036000830152614f4081614f04565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa36034836142e3565b9150614fae82614f47565b604082019050919050565b60006020820190508181036000830152614fd281614f96565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150356026836142e3565b915061504082614fd9565b604082019050919050565b6000602082019050818103600083015261506481615028565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150a16020836142e3565b91506150ac8261506b565b602082019050919050565b600060208201905081810360008301526150d081615094565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615133602a836142e3565b915061513e826150d7565b604082019050919050565b6000602082019050818103600083015261516281615126565b9050919050565b60008151905061517881614400565b92915050565b60006020828403121561519457615193614393565b5b60006151a284828501615169565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152076024836142e3565b9150615212826151ab565b604082019050919050565b60006020820190508181036000830152615236816151fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152996022836142e3565b91506152a48261523d565b604082019050919050565b600060208201905081810360008301526152c88161528c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061532b6025836142e3565b9150615336826152cf565b604082019050919050565b6000602082019050818103600083015261535a8161531e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153bd6023836142e3565b91506153c882615361565b604082019050919050565b600060208201905081810360008301526153ec816153b0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154296016836142e3565b9150615434826153f3565b602082019050919050565b600060208201905081810360008301526154588161541c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154e16049836142e3565b91506154ec8261545f565b606082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155736035836142e3565b915061557e82615517565b604082019050919050565b600060208201905081810360008301526155a281615566565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155df6013836142e3565b91506155ea826155a9565b602082019050919050565b6000602082019050818103600083015261560e816155d2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156716036836142e3565b915061567c82615615565b604082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b60006156b2826143f6565b91506156bd836143f6565b9250828210156156d0576156cf6148a0565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157376026836142e3565b9150615742826156db565b604082019050919050565b600060208201905081810360008301526157668161572a565b9050919050565b600081905092915050565b50565b600061578860008361576d565b915061579382615778565b600082019050919050565b60006157a98261577b565b9150819050919050565b60006060820190506157c86000830186614549565b6157d56020830185614549565b6157e26040830184614549565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615857816143ca565b92915050565b60006020828403121561587357615872614393565b5b600061588184828501615848565b91505092915050565b6000819050919050565b60006158af6158aa6158a58461588a565b6144cf565b6143f6565b9050919050565b6158bf81615894565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158fa816143b8565b82525050565b600061590c83836158f1565b60208301905092915050565b6000602082019050919050565b6000615930826158c5565b61593a81856158d0565b9350615945836158e1565b8060005b8381101561597657815161595d8882615900565b975061596883615918565b925050600181019050615949565b5085935050505092915050565b600060a0820190506159986000830188614549565b6159a560208301876158b6565b81810360408301526159b78186615925565b90506159c660608301856145f3565b6159d36080830184614549565b9695505050505050565b600060c0820190506159f260008301896145f3565b6159ff6020830188614549565b615a0c60408301876158b6565b615a1960608301866158b6565b615a2660808301856145f3565b615a3360a0830184614549565b979650505050505050565b600080600060608486031215615a5757615a56614393565b5b6000615a6586828701615169565b9350506020615a7686828701615169565b9250506040615a8786828701615169565b915050925092509256fea2646970667358221220b05b2fb6e5f60c7ae1554ed6b641d96de8d8fde004a9086b8a61de5ced30230f64736f6c634300080a0033

Deployed Bytecode Sourcemap

34590:19074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11418:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13585:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34666:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12538:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43002:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35230:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35045:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35997:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40563:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14236:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34769:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35140:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35101:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12380:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15137:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34724:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35328:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43167:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35849:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35814:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35408:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12709:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4653:103;;;;;;;;;;;;;:::i;:::-;;51246:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39671:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41110:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41481:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39464:155;;;;;;;;;;;;;:::i;:::-;;4002:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34897:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41373:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11637:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42494:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35781:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35284:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36037:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35924:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15855:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35192:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13049:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36434:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35368:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42304:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41888:408;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40846:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35626:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34930:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40058:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35674:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35958:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35708:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13287:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34972:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34861:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39853:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35744:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4911:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35886:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35012:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52605:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11418:100;11472:13;11505:5;11498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11418:100;:::o;13585:169::-;13668:4;13685:39;13694:12;:10;:12::i;:::-;13708:7;13717:6;13685:8;:39::i;:::-;13742:4;13735:11;;13585:169;;;;:::o;36213:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;34666:51::-;;;:::o;12538:108::-;12599:7;12626:12;;12619:19;;12538:108;:::o;43002:157::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43109:9:::1;;;;;;;;;;;43081:38;;43098:9;43081:38;;;;;;;;;;;;43142:9;43130;;:21;;;;;;;;;;;;;;;;;;43002:157:::0;:::o;35230:47::-;;;;:::o;35045:36::-;;;;:::o;35997:33::-;;;;:::o;40563:275::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40700:4:::1;40692;40687:1;40671:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40670:26;;;;:::i;:::-;40669:35;;;;:::i;:::-;40659:6;:45;;40637:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;40823:6;40813;:17;;;;:::i;:::-;40790:20;:40;;;;40563:275:::0;:::o;14236:492::-;14376:4;14393:36;14403:6;14411:9;14422:6;14393:9;:36::i;:::-;14442:24;14469:11;:19;14481:6;14469:19;;;;;;;;;;;;;;;:33;14489:12;:10;:12::i;:::-;14469:33;;;;;;;;;;;;;;;;14442:60;;14541:6;14521:16;:26;;14513:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14628:57;14637:6;14645:12;:10;:12::i;:::-;14678:6;14659:16;:25;14628:8;:57::i;:::-;14716:4;14709:11;;;14236:492;;;;;:::o;34769:53::-;34815:6;34769:53;:::o;35140:45::-;;;;:::o;35101:32::-;;;;;;;;;;;;;:::o;12380:93::-;12438:5;12463:2;12456:9;;12380:93;:::o;15137:215::-;15225:4;15242:80;15251:12;:10;:12::i;:::-;15265:7;15311:10;15274:11;:25;15286:12;:10;:12::i;:::-;15274:25;;;;;;;;;;;;;;;:34;15300:7;15274:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15242:8;:80::i;:::-;15340:4;15333:11;;15137:215;;;;:::o;34724:38::-;;;:::o;35328:33::-;;;;;;;;;;;;;:::o;43167:126::-;43233:4;43257:19;:28;43277:7;43257:28;;;;;;;;;;;;;;;;;;;;;;;;;43250:35;;43167:126;;;:::o;35849:30::-;;;;:::o;35814:28::-;;;;:::o;35408:31::-;;;;;;;;;;;;;:::o;12709:127::-;12783:7;12810:9;:18;12820:7;12810:18;;;;;;;;;;;;;;;;12803:25;;12709:127;;;:::o;4653:103::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4718:30:::1;4745:1;4718:18;:30::i;:::-;4653:103::o:0;51246:555::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51448:3:::1;51425:19;:26;;51403:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;51575:4;51563:8;:16;;:33;;;;;51595:1;51583:8;:13;;51563:33;51541:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;51701:19;51683:15;:37;;;;51750:8;51731:16;:27;;;;51785:8;51769:13;;:24;;;;;;;;;;;;;;;;;;51246:555:::0;;;:::o;39671:121::-;39723:4;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39757:5:::1;39740:14;;:22;;;;;;;;;;;;;;;;;;39780:4;39773:11;;39671:121:::0;:::o;41110:167::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41265:4:::1;41223:31;:39;41255:6;41223:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41110:167:::0;;:::o;41481:399::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41647:12:::1;41630:14;:29;;;;41688:13;41670:15;:31;;;;41724:7;41712:9;:19;;;;41792:9;;41774:15;;41757:14;;:32;;;;:::i;:::-;:44;;;;:::i;:::-;41742:12;:59;;;;41836:2;41820:12:::0;::::1;:18;;41812:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41481:399:::0;;;:::o;39464:155::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39535:4:::1;39519:13;;:20;;;;;;;;;;;;;;;;;;39564:4;39550:11;;:18;;;;;;;;;;;;;;;;;;39596:15;39579:14;:32;;;;39464:155::o:0;4002:87::-;4048:7;4075:6;;;;;;;;;;;4068:13;;4002:87;:::o;34897:24::-;;;;;;;;;;;;;:::o;41373:100::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41458:7:::1;41444:11;;:21;;;;;;;;;;;;;;;;;;41373:100:::0;:::o;11637:104::-;11693:13;11726:7;11719:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11637:104;:::o;42494:304::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42638:13:::1;42630:21;;:4;:21;;;;42608:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;42749:41;42778:4;42784:5;42749:28;:41::i;:::-;42494:304:::0;;:::o;35781:24::-;;;;:::o;35284:35::-;;;;:::o;36037:27::-;;;;:::o;35924:25::-;;;;:::o;15855:413::-;15948:4;15965:24;15992:11;:25;16004:12;:10;:12::i;:::-;15992:25;;;;;;;;;;;;;;;:34;16018:7;15992:34;;;;;;;;;;;;;;;;15965:61;;16065:15;16045:16;:35;;16037:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16158:67;16167:12;:10;:12::i;:::-;16181:7;16209:15;16190:16;:34;16158:8;:67::i;:::-;16256:4;16249:11;;;15855:413;;;;:::o;35192:29::-;;;;:::o;13049:175::-;13135:4;13152:42;13162:12;:10;:12::i;:::-;13176:9;13187:6;13152:9;:42::i;:::-;13212:4;13205:11;;13049:175;;;;:::o;36434:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;35368:33::-;;;;;;;;;;;;;:::o;42304:182::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42420:8:::1;42389:19;:28;42409:7;42389:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42460:7;42444:34;;;42469:8;42444:34;;;;;;:::i;:::-;;;;;;;;42304:182:::0;;:::o;41888:408::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42056:12:::1;42038:15;:30;;;;42098:13;42079:16;:32;;;;42135:7;42122:10;:20;;;;42206:10;;42187:16;;42169:15;;:34;;;;:::i;:::-;:47;;;;:::i;:::-;42153:13;:63;;;;42252:2;42235:13;;:19;;42227:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41888:408:::0;;;:::o;40846:256::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40986:4:::1;40978;40973:1;40957:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40956:26;;;;:::i;:::-;40955:35;;;;:::i;:::-;40945:6;:45;;40923:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;41087:6;41077;:17;;;;:::i;:::-;41065:9;:29;;;;40846:256:::0;:::o;35626:39::-;;;;;;;;;;;;;:::o;34930:35::-;;;;:::o;40058:497::-;40166:4;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40245:6:::1;40240:1;40224:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40223:28;;;;:::i;:::-;40210:9;:41;;40188:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;40400:4;40395:1;40379:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40378:26;;;;:::i;:::-;40365:9;:39;;40343:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;40516:9;40495:18;:30;;;;40543:4;40536:11;;40058:497:::0;;;:::o;35674:27::-;;;;:::o;35958:32::-;;;;:::o;35708:29::-;;;;:::o;13287:151::-;13376:7;13403:11;:18;13415:5;13403:18;;;;;;;;;;;;;;;:27;13422:7;13403:27;;;;;;;;;;;;;;;;13396:34;;13287:151;;;;:::o;34972:33::-;;;;:::o;34861:29::-;;;;;;;;;;;;;:::o;39853:135::-;39913:4;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39953:5:::1;39930:20;;:28;;;;;;;;;;;;;;;;;;39976:4;39969:11;;39853:135:::0;:::o;35744:30::-;;;;:::o;4911:201::-;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5020:1:::1;5000:22;;:8;:22;;;;4992:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5076:28;5095:8;5076:18;:28::i;:::-;4911:201:::0;:::o;35886:31::-;;;;:::o;35012:24::-;;;;:::o;52605:1056::-;52716:4;4233:12;:10;:12::i;:::-;4222:23;;:7;:5;:7::i;:::-;:23;;;4214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52801:19:::1;;52778:20;;:42;;;;:::i;:::-;52760:15;:60;52738:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52910:4;52899:7;:15;;52891:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52995:15;52972:20;:38;;;;53065:28;53096:4;:14;;;53111:13;53096:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53065:60;;53175:20;53198:44;53236:5;53198:33;53223:7;53198:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;53175:67;;53362:1;53347:12;:16;53343:110;;;53380:61;53396:13;53419:6;53428:12;53380:15;:61::i;:::-;53343:110;53528:19;53565:13;53528:51;;53590:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53617:14;;;;;;;;;;53649:4;53642:11;;;;;52605:1056:::0;;;:::o;2675:98::-;2728:7;2755:10;2748:17;;2675:98;:::o;19539:380::-;19692:1;19675:19;;:5;:19;;;;19667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19773:1;19754:21;;:7;:21;;;;19746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19857:6;19827:11;:18;19839:5;19827:18;;;;;;;;;;;;;;;:27;19846:7;19827:27;;;;;;;;;;;;;;;:36;;;;19895:7;19879:32;;19888:5;19879:32;;;19904:6;19879:32;;;;;;:::i;:::-;;;;;;;;19539:380;;;:::o;43351:5007::-;43499:1;43483:18;;:4;:18;;;;43475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43576:1;43562:16;;:2;:16;;;;43554:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43645:1;43635:6;:11;43631:93;;;43663:28;43679:4;43685:2;43689:1;43663:15;:28::i;:::-;43706:7;;43631:93;43740:14;;;;;;;;;;;43736:2487;;;43801:7;:5;:7::i;:::-;43793:15;;:4;:15;;;;:49;;;;;43835:7;:5;:7::i;:::-;43829:13;;:2;:13;;;;43793:49;:86;;;;;43877:1;43863:16;;:2;:16;;;;43793:86;:128;;;;;43914:6;43900:21;;:2;:21;;;;43793:128;:158;;;;;43943:8;;;;;;;;;;;43942:9;43793:158;43771:2441;;;43991:13;;;;;;;;;;;43986:223;;44063:19;:25;44083:4;44063:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44092:19;:23;44112:2;44092:23;;;;;;;;;;;;;;;;;;;;;;;;;44063:52;44029:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43986:223;44365:20;;;;;;;;;;;44361:641;;;44446:7;:5;:7::i;:::-;44440:13;;:2;:13;;;;:72;;;;;44496:15;44482:30;;:2;:30;;;;44440:72;:129;;;;;44555:13;44541:28;;:2;:28;;;;44440:129;44410:573;;;44733:12;44658:28;:39;44687:9;44658:39;;;;;;;;;;;;;;;;:87;44620:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44947:12;44905:28;:39;44934:9;44905:39;;;;;;;;;;;;;;;:54;;;;44410:573;44361:641;45076:25;:31;45102:4;45076:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45133:31;:35;45165:2;45133:35;;;;;;;;;;;;;;;;;;;;;;;;;45132:36;45076:92;45050:1147;;;45255:20;;45245:6;:30;;45211:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45463:9;;45446:13;45456:2;45446:9;:13::i;:::-;45437:6;:22;;;;:::i;:::-;:35;;45403:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45050:1147;;;45641:25;:29;45667:2;45641:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45696:31;:37;45728:4;45696:37;;;;;;;;;;;;;;;;;;;;;;;;;45695:38;45641:92;45615:582;;;45820:20;;45810:6;:30;;45776:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;45615:582;;;45977:31;:35;46009:2;45977:35;;;;;;;;;;;;;;;;;;;;;;;;;45972:225;;46097:9;;46080:13;46090:2;46080:9;:13::i;:::-;46071:6;:22;;;;:::i;:::-;:35;;46037:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45972:225;45615:582;45050:1147;43771:2441;43736:2487;46235:28;46266:24;46284:4;46266:9;:24::i;:::-;46235:55;;46303:12;46342:18;;46318:20;:42;;46303:57;;46391:7;:35;;;;;46415:11;;;;;;;;;;;46391:35;:61;;;;;46444:8;;;;;;;;;;;46443:9;46391:61;:110;;;;;46470:25;:31;46496:4;46470:31;;;;;;;;;;;;;;;;;;;;;;;;;46469:32;46391:110;:153;;;;;46519:19;:25;46539:4;46519:25;;;;;;;;;;;;;;;;;;;;;;;;;46518:26;46391:153;:194;;;;;46562:19;:23;46582:2;46562:23;;;;;;;;;;;;;;;;;;;;;;;;;46561:24;46391:194;46373:326;;;46623:4;46612:8;;:15;;;;;;;;;;;;;;;;;;46644:10;:8;:10::i;:::-;46682:5;46671:8;;:16;;;;;;;;;;;;;;;;;;46373:326;46730:8;;;;;;;;;;;46729:9;:55;;;;;46755:25;:29;46781:2;46755:29;;;;;;;;;;;;;;;;;;;;;;;;;46729:55;:85;;;;;46801:13;;;;;;;;;;;46729:85;:153;;;;;46867:15;;46850:14;;:32;;;;:::i;:::-;46831:15;:51;;46729:153;:196;;;;;46900:19;:25;46920:4;46900:25;;;;;;;;;;;;;;;;;;;;;;;;;46899:26;46729:196;46711:282;;;46952:29;:27;:29::i;:::-;;46711:282;47005:12;47021:8;;;;;;;;;;;47020:9;47005:24;;47131:19;:25;47151:4;47131:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;47160:19;:23;47180:2;47160:23;;;;;;;;;;;;;;;;;;;;;;;;;47131:52;47127:100;;;47210:5;47200:15;;47127:100;47239:12;47344:7;47340:965;;;47396:25;:29;47422:2;47396:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;47445:1;47429:13;;:17;47396:50;47392:764;;;47474:34;47504:3;47474:25;47485:13;;47474:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;47467:41;;47577:13;;47557:16;;47550:4;:23;;;;:::i;:::-;47549:41;;;;:::i;:::-;47527:18;;:63;;;;;;;:::i;:::-;;;;;;;;47647:13;;47633:10;;47626:4;:17;;;;:::i;:::-;47625:35;;;;:::i;:::-;47609:12;;:51;;;;;;;:::i;:::-;;;;;;;;47727:13;;47708:15;;47701:4;:22;;;;:::i;:::-;47700:40;;;;:::i;:::-;47679:17;;:61;;;;;;;:::i;:::-;;;;;;;;47392:764;;;47802:25;:31;47828:4;47802:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47852:1;47837:12;;:16;47802:51;47798:358;;;47881:33;47910:3;47881:24;47892:12;;47881:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47874:40;;47982:12;;47963:15;;47956:4;:22;;;;:::i;:::-;47955:39;;;;:::i;:::-;47933:18;;:61;;;;;;;:::i;:::-;;;;;;;;48050:12;;48037:9;;48030:4;:16;;;;:::i;:::-;48029:33;;;;:::i;:::-;48013:12;;:49;;;;;;;:::i;:::-;;;;;;;;48128:12;;48110:14;;48103:4;:21;;;;:::i;:::-;48102:38;;;;:::i;:::-;48081:17;;:59;;;;;;;:::i;:::-;;;;;;;;47798:358;47392:764;48183:1;48176:4;:8;48172:91;;;48205:42;48221:4;48235;48242;48205:15;:42::i;:::-;48172:91;48289:4;48279:14;;;;;:::i;:::-;;;47340:965;48317:33;48333:4;48339:2;48343:6;48317:15;:33::i;:::-;43464:4894;;;;43351:5007;;;;:::o;5272:191::-;5346:16;5365:6;;;;;;;;;;;5346:25;;5391:8;5382:6;;:17;;;;;;;;;;;;;;;;;;5446:8;5415:40;;5436:8;5415:40;;;;;;;;;;;;5335:128;5272:191;:::o;42806:188::-;42923:5;42889:25;:31;42915:4;42889:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42980:5;42946:40;;42974:4;42946:40;;;;;;;;;;;;42806:188;;:::o;24992:98::-;25050:7;25081:1;25077;:5;;;;:::i;:::-;25070:12;;24992:98;;;;:::o;25391:::-;25449:7;25480:1;25476;:5;;;;:::i;:::-;25469:12;;25391:98;;;;:::o;16758:733::-;16916:1;16898:20;;:6;:20;;;;16890:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17000:1;16979:23;;:9;:23;;;;16971:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17055:47;17076:6;17084:9;17095:6;17055:20;:47::i;:::-;17115:21;17139:9;:17;17149:6;17139:17;;;;;;;;;;;;;;;;17115:41;;17192:6;17175:13;:23;;17167:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17313:6;17297:13;:22;17277:9;:17;17287:6;17277:17;;;;;;;;;;;;;;;:42;;;;17365:6;17341:9;:20;17351:9;17341:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17406:9;17389:35;;17398:6;17389:35;;;17417:6;17389:35;;;;;;:::i;:::-;;;;;;;;17437:46;17457:6;17465:9;17476:6;17437:19;:46::i;:::-;16879:612;16758:733;;;:::o;49488:1750::-;49527:23;49553:24;49571:4;49553:9;:24::i;:::-;49527:50;;49588:25;49683:12;;49650:17;;49616:18;;:51;;;;:::i;:::-;:79;;;;:::i;:::-;49588:107;;49706:12;49754:1;49735:15;:20;:46;;;;49780:1;49759:17;:22;49735:46;49731:85;;;49798:7;;;;;49731:85;49871:2;49850:18;;:23;;;;:::i;:::-;49832:15;:41;49828:115;;;49929:2;49908:18;;:23;;;;:::i;:::-;49890:41;;49828:115;50004:23;50117:1;50084:17;50049:18;;50031:15;:36;;;;:::i;:::-;50030:71;;;;:::i;:::-;:88;;;;:::i;:::-;50004:114;;50129:26;50158:36;50178:15;50158;:19;;:36;;;;:::i;:::-;50129:65;;50207:25;50235:21;50207:49;;50269:36;50286:18;50269:16;:36::i;:::-;50318:18;50339:44;50365:17;50339:21;:25;;:44;;;;:::i;:::-;50318:65;;50396:22;50421:80;50473:17;50421:33;50436:17;;50421:10;:14;;:33;;;;:::i;:::-;:37;;:80;;;;:::i;:::-;50396:105;;50512:17;50532:51;50565:17;50532:28;50547:12;;50532:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;50512:71;;50596:23;50652:9;50635:14;50622:10;:27;;;;:::i;:::-;:39;;;;:::i;:::-;50596:65;;50695:1;50674:18;:22;;;;50727:1;50707:17;:21;;;;50754:1;50739:12;:16;;;;50790:9;;;;;;;;;;;50782:23;;50813:9;50782:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50768:59;;;;;50862:1;50844:15;:19;:42;;;;;50885:1;50867:15;:19;50844:42;50840:278;;;50903:46;50916:15;50933;50903:12;:46::i;:::-;50969:137;51002:18;51039:15;51073:18;;50969:137;;;;;;;;:::i;:::-;;;;;;;;50840:278;51152:14;;;;;;;;;;;51144:28;;51194:21;51144:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51130:100;;;;;49516:1722;;;;;;;;;;49488:1750;:::o;51809:788::-;51866:4;51900:15;51883:14;:32;;;;51970:28;52001:4;:14;;;52016:13;52001:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51970:60;;52080:20;52103:77;52164:5;52103:42;52128:16;;52103:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;52080:100;;52300:1;52285:12;:16;52281:110;;;52318:61;52334:13;52357:6;52366:12;52318:15;:61::i;:::-;52281:110;52466:19;52503:13;52466:51;;52528:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52555:12;;;;;;;;;;52585:4;52578:11;;;;;51809:788;:::o;20519:125::-;;;;:::o;21248:124::-;;;;:::o;24635:98::-;24693:7;24724:1;24720;:5;;;;:::i;:::-;24713:12;;24635:98;;;;:::o;48366:589::-;48492:21;48530:1;48516:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48492:40;;48561:4;48543;48548:1;48543:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48587:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48577:4;48582:1;48577:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48622:62;48639:4;48654:15;48672:11;48622:8;:62::i;:::-;48723:15;:66;;;48804:11;48830:1;48874:4;48901;48921:15;48723:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48421:534;48366:589;:::o;48963:517::-;49111:62;49128:4;49143:15;49161:11;49111:8;:62::i;:::-;49216:15;:31;;;49255:9;49288:4;49308:11;49334:1;49377;34815:6;49446:15;49216:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48963: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:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::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:147::-;37822:11;37859:3;37844:18;;37721:147;;;;:::o;37874:114::-;;:::o;37994:398::-;38153:3;38174:83;38255:1;38250:3;38174:83;:::i;:::-;38167:90;;38266:93;38355:3;38266:93;:::i;:::-;38384:1;38379:3;38375:11;38368:18;;37994:398;;;:::o;38398:379::-;38582:3;38604:147;38747:3;38604:147;:::i;:::-;38597:154;;38768:3;38761:10;;38398:379;;;:::o;38783:442::-;38932:4;38970:2;38959:9;38955:18;38947:26;;38983:71;39051:1;39040:9;39036:17;39027:6;38983:71;:::i;:::-;39064:72;39132:2;39121:9;39117:18;39108:6;39064:72;:::i;:::-;39146;39214:2;39203:9;39199:18;39190:6;39146:72;:::i;:::-;38783:442;;;;;;:::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://b05b2fb6e5f60c7ae1554ed6b641d96de8d8fde004a9086b8a61de5ced30230f
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.