ETH Price: $2,525.43 (+0.04%)

Token

Glizzy Coin (GLIZZY)
 

Overview

Max Total Supply

10,000,000 GLIZZY

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,572.886077619391422861 GLIZZY

Value
$0.00
0x77aac9f90eb172b329bb683bac4ba12a8dc6e3f4
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:
GlizzyCoin

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: GlizzyCoin.sol





// THE ONLY COIN TRULY PEGGED TO $1

// Website: http://GlizzyCoin.fun/
// TG: https://t.me/GlizzyCoinETH
// Twitter: https://twitter.com/GlizzyCoinETH

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

////// src/
/* 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 GlizzyCoin is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Glizzy Coin", "GLIZZY") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

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

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

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 200_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 300_000 * 1e18; // 200% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(0x382C7ca440A4ab511482edF97f11dEAc6CC499Fa); // set as marketing wallet
        devWallet = address(0x382C7ca440A4ab511482edF97f11dEAc6CC499Fa); // 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 {
        maxTransactionAmount = newNum * (10**18);
    }

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

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

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f476c697a7a7920436f696e0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f474c495a5a59000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b01565b5080600490805190602001906200014792919062000b01565b5050506200016a6200015e620005c160201b60201c565b620005c960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200068f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c1b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c1b565b6040518363ffffffff1660e01b8152600401620002e992919062000c5e565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c1b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200068f60201b60201c565b6200038c60a05160016200077960201b60201c565b60008060008060008060006a084595161401484a0000009050692a5a058fc295ed000000600881905550693f870857a3e0e3800000600a81905550612710600582620003d9919062000cc4565b620003e5919062000d54565b60098190555086601581905550856016819055508460178190555060175460165460155462000415919062000d8c565b62000421919062000d8c565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000451919062000d8c565b6200045d919062000d8c565b60188190555073382c7ca440a4ab511482edf97f11deac6cc499fa600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073382c7ca440a4ab511482edf97f11deac6cc499fa600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052f620005216200081a60201b60201c565b60016200084460201b60201c565b620005423060016200084460201b60201c565b6200055761dead60016200084460201b60201c565b620005796200056b6200081a60201b60201c565b60016200068f60201b60201c565b6200058c3060016200068f60201b60201c565b620005a161dead60016200068f60201b60201c565b620005b333826200097e60201b60201c565b505050505050505062000fab565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200069f620005c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c56200081a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200071e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007159062000e4a565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000854620005c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087a6200081a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ca9062000e4a565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000972919062000e89565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e89062000ef6565b60405180910390fd5b62000a056000838362000af760201b60201c565b806002600082825462000a19919062000d8c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a70919062000d8c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad7919062000f29565b60405180910390a362000af36000838362000afc60201b60201c565b5050565b505050565b505050565b82805462000b0f9062000f75565b90600052602060002090601f01602090048101928262000b33576000855562000b7f565b82601f1062000b4e57805160ff191683800117855562000b7f565b8280016001018555821562000b7f579182015b8281111562000b7e57825182559160200191906001019062000b61565b5b50905062000b8e919062000b92565b5090565b5b8082111562000bad57600081600090555060010162000b93565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000be38262000bb6565b9050919050565b62000bf58162000bd6565b811462000c0157600080fd5b50565b60008151905062000c158162000bea565b92915050565b60006020828403121562000c345762000c3362000bb1565b5b600062000c448482850162000c04565b91505092915050565b62000c588162000bd6565b82525050565b600060408201905062000c75600083018562000c4d565b62000c84602083018462000c4d565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd18262000c8b565b915062000cde8362000c8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d1a5762000d1962000c95565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d618262000c8b565b915062000d6e8362000c8b565b92508262000d815762000d8062000d25565b5b828204905092915050565b600062000d998262000c8b565b915062000da68362000c8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dde5762000ddd62000c95565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3260208362000de9565b915062000e3f8262000dfa565b602082019050919050565b6000602082019050818103600083015262000e658162000e23565b9050919050565b60008115159050919050565b62000e838162000e6c565b82525050565b600060208201905062000ea0600083018462000e78565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ede601f8362000de9565b915062000eeb8262000ea6565b602082019050919050565b6000602082019050818103600083015262000f118162000ecf565b9050919050565b62000f238162000c8b565b82525050565b600060208201905062000f40600083018462000f18565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f8e57607f821691505b6020821081141562000fa55762000fa462000f46565b5b50919050565b60805160a051615ac4620010336000396000818161137701528181611b87015281816126d101528181612788015281816127b501528181612df901528181613efd01528181613fb60152613fe3015260008181610f9001528181612da1015281816141590152818161423a01528181614261015281816142fd01526143240152615ac46000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061446c565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614527565b610f51565b60405161041c9190614582565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061459d565b610f6f565b6040516104599190614582565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614629565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614653565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061459d565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614653565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614653565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614653565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614653565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061466e565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061469b565b6111a9565b6040516105ea9190614582565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b60405161061591906146fd565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b6040516106409190614653565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b9190614582565b60405180910390f35b34801561068057600080fd5b506106896112c0565b6040516106969190614734565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614527565b6112c9565b6040516106d39190614582565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe91906146fd565b60405180910390f35b34801561071357600080fd5b5061071c611399565b6040516107299190614582565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061459d565b6113ac565b6040516107669190614582565b60405180910390f35b34801561077b57600080fd5b50610784611402565b6040516107919190614653565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc9190614582565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061459d565b61141b565b6040516107f99190614653565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b919061477b565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b6040516108649190614582565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147ce565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b891906146fd565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e39190614653565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e919061480e565b6117ce565b005b34801561092157600080fd5b5061092a6118cd565b005b34801561093857600080fd5b50610941611988565b60405161094e91906146fd565b60405180910390f35b34801561096357600080fd5b5061096c6119b2565b60405161097991906146fd565b60405180910390f35b34801561098e57600080fd5b506109976119d8565b6040516109a49190614653565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614861565b6119de565b005b3480156109e257600080fd5b506109eb611a77565b6040516109f8919061446c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147ce565b611b09565b005b348015610a3657600080fd5b50610a3f611c22565b604051610a4c9190614653565b60405180910390f35b348015610a6157600080fd5b50610a6a611c28565b604051610a779190614653565b60405180910390f35b348015610a8c57600080fd5b50610a95611c2e565b604051610aa29190614653565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd9190614653565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614527565b611c3a565b604051610b0a9190614582565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b359190614653565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614527565b611d2b565b604051610b729190614582565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d919061459d565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc6919061459d565b611e85565b604051610bd89190614582565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c039190614582565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147ce565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c57919061480e565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c80919061466e565b6120dc565b005b348015610c9357600080fd5b50610c9c6121eb565b604051610ca99190614582565b60405180910390f35b348015610cbe57600080fd5b50610cc76121fe565b604051610cd49190614653565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061466e565b612204565b604051610d119190614582565b60405180910390f35b348015610d2657600080fd5b50610d2f612359565b604051610d3c9190614653565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061488e565b61235f565b604051610d799190614653565b60405180910390f35b348015610d8e57600080fd5b50610d976123e6565b604051610da49190614653565b60405180910390f35b348015610db957600080fd5b50610dc26123ec565b604051610dcf9190614582565b60405180910390f35b348015610de457600080fd5b50610ded61248c565b604051610dfa9190614653565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061459d565b612492565b005b348015610e3857600080fd5b50610e4161258a565b604051610e4e9190614653565b60405180910390f35b348015610e6357600080fd5b50610e6c612590565b604051610e799190614653565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea4919061466e565b612596565b604051610eb69190614582565b60405180910390f35b606060038054610ece906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148fd565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61286e565b8484612876565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc461286e565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611988565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061497b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111861286e565b73ffffffffffffffffffffffffffffffffffffffff16611136611988565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061497b565b60405180910390fd5b670de0b6b3a7640000816111a091906149ca565b60088190555050565b60006111b6848484612a41565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120161286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a96565b60405180910390fd5b6112958561128d61286e565b858403612876565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d661286e565b8484600160006112e461286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614ab6565b612876565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b61286e565b73ffffffffffffffffffffffffffffffffffffffff16611489611988565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061497b565b60405180910390fd5b6114e960006137d9565b565b6114f361286e565b73ffffffffffffffffffffffffffffffffffffffff16611511611988565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061497b565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614b7e565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614c10565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061163561286e565b73ffffffffffffffffffffffffffffffffffffffff16611653611988565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061497b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d361286e565b73ffffffffffffffffffffffffffffffffffffffff166116f1611988565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061497b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d661286e565b73ffffffffffffffffffffffffffffffffffffffff166117f4611988565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061497b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614ab6565b61187c9190614ab6565b601481905550601960145411156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614c7c565b60405180910390fd5b505050565b6118d561286e565b73ffffffffffffffffffffffffffffffffffffffff166118f3611988565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061497b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119e661286e565b73ffffffffffffffffffffffffffffffffffffffff16611a04611988565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061497b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a86906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab2906148fd565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b5050505050905090565b611b1161286e565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061497b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614d0e565b60405180910390fd5b611c1e828261389f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c4961286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614da0565b60405180910390fd5b611d1a611d1161286e565b85858403612876565b600191505092915050565b600e5481565b6000611d3f611d3861286e565b8484612a41565b6001905092915050565b611d5161286e565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061497b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec061286e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611988565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061497b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd19190614582565b60405180910390a25050565b611fe561286e565b73ffffffffffffffffffffffffffffffffffffffff16612003611988565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061497b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614ab6565b61208b9190614ab6565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c7c565b60405180910390fd5b505050565b6120e461286e565b73ffffffffffffffffffffffffffffffffffffffff16612102611988565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061497b565b60405180910390fd5b670de0b6b3a7640000612710600561216e610fb2565b61217891906149ca565b6121829190614def565b61218c9190614def565b8110156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614e92565b60405180910390fd5b670de0b6b3a7640000816121e291906149ca565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061220e61286e565b73ffffffffffffffffffffffffffffffffffffffff1661222c611988565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061497b565b60405180910390fd5b620186a06001612290610fb2565b61229a91906149ca565b6122a49190614def565b8210156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f24565b60405180910390fd5b6103e860056122f3610fb2565b6122fd91906149ca565b6123079190614def565b821115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090614fb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123f661286e565b73ffffffffffffffffffffffffffffffffffffffff16612414611988565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061497b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61249a61286e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611988565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125059061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590615048565b60405180910390fd5b612587816137d9565b50565b601a5481565b600a5481565b60006125a061286e565b73ffffffffffffffffffffffffffffffffffffffff166125be611988565b73ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b9061497b565b60405180910390fd5b600f546010546126249190614ab6565b4211612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906150b4565b60405180910390fd5b6103e88211156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190615146565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161270c91906146fd565b602060405180830381865afa158015612729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274d919061517b565b9050600061277861271061276a868561394090919063ffffffff16565b61395690919063ffffffff16565b905060008111156127b1576127b07f000000000000000000000000000000000000000000000000000000000000000061dead8361396c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281e57600080fd5b505af1158015612832573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061521a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906152ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a349190614653565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b18906153d0565b60405180910390fd5b6000811415612b3b57612b368383600061396c565b6137d4565b601160009054906101000a900460ff16156131fe57612b58611988565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bc65750612b96611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bff5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c39575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c525750600560149054906101000a900460ff16155b156131fd57601160019054906101000a900460ff16612d4c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d0c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d429061543c565b60405180910390fd5b5b601360009054906101000a900460ff1615612f1457612d69611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612df057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f135743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec5906154f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305e57600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff890615586565b60405180910390fd5b600a5461300d8361141b565b826130189190614ab6565b1115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906155f2565b60405180910390fd5b6131fc565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131015750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131505760085481111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314290615684565b60405180910390fd5b6131fb565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131fa57600a546131ad8361141b565b826131b89190614ab6565b11156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f0906155f2565b60405180910390fd5b5b5b5b5b5b60006132093061141b565b90506000600954821015905080801561322e5750601160029054906101000a900460ff165b80156132475750600560149054906101000a900460ff16155b801561329d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133495750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338d576001600560146101000a81548160ff021916908315150217905550613371613bed565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133f35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561340b5750600c60009054906101000a900460ff165b80156134265750600d54600e546134229190614ab6565b4210155b801561347c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561348b57613489613ed4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135415750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561354b57600090505b600081156137c457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135ae57506000601854115b1561367b576135db60646135cd6018548861394090919063ffffffff16565b61395690919063ffffffff16565b9050601854601a54826135ee91906149ca565b6135f89190614def565b601d60008282546136099190614ab6565b92505081905550601854601b548261362191906149ca565b61362b9190614def565b601e600082825461363c9190614ab6565b925050819055506018546019548261365491906149ca565b61365e9190614def565b601c600082825461366f9190614ab6565b925050819055506137a0565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136d657506000601454115b1561379f5761370360646136f56014548861394090919063ffffffff16565b61395690919063ffffffff16565b90506014546016548261371691906149ca565b6137209190614def565b601d60008282546137319190614ab6565b925050819055506014546017548261374991906149ca565b6137539190614def565b601e60008282546137649190614ab6565b925050819055506014546015548261377c91906149ca565b6137869190614def565b601c60008282546137979190614ab6565b925050819055505b5b60008111156137b5576137b487308361396c565b5b80856137c191906156a4565b94505b6137cf87878761396c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361394e91906149ca565b905092915050565b600081836139649190614def565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d39061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906153d0565b60405180910390fd5b613a5783838361409a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad49061574a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b709190614ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bd49190614653565b60405180910390a3613be784848461409f565b50505050565b6000613bf83061141b565b90506000601e54601c54601d54613c0f9190614ab6565b613c199190614ab6565b9050600080831480613c2b5750600082145b15613c3857505050613ed2565b6014600954613c4791906149ca565b831115613c60576014600954613c5d91906149ca565b92505b6000600283601d5486613c7391906149ca565b613c7d9190614def565b613c879190614def565b90506000613c9e82866140a490919063ffffffff16565b90506000479050613cae826140ba565b6000613cc382476140a490919063ffffffff16565b90506000613cee87613ce0601c548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000613d1988613d0b601e548661394090919063ffffffff16565b61395690919063ffffffff16565b90506000818385613d2a91906156a4565b613d3491906156a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d949061579b565b60006040518083038185875af1925050503d8060008114613dd1576040519150601f19603f3d011682016040523d82523d6000602084013e613dd6565b606091505b505080985050600087118015613dec5750600081115b15613e3957613dfb87826142f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e30939291906157b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e7f9061579b565b60006040518083038185875af1925050503d8060008114613ebc576040519150601f19603f3d011682016040523d82523d6000602084013e613ec1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f3891906146fd565b602060405180830381865afa158015613f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f79919061517b565b90506000613fa6612710613f98600b548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000811115613fdf57613fde7f000000000000000000000000000000000000000000000000000000000000000061dead8361396c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140b291906156a4565b905092915050565b6000600267ffffffffffffffff8111156140d7576140d66157e7565b5b6040519080825280602002602001820160405280156141055781602001602082028036833780820191505090505b509050308160008151811061411d5761411c615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e6919061585a565b816001815181106141fa576141f9615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061425f307f000000000000000000000000000000000000000000000000000000000000000084612876565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142c1959493929190615980565b600060405180830381600087803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b505050505050565b614322307f000000000000000000000000000000000000000000000000000000000000000084612876565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614389969594939291906159da565b60606040518083038185885af11580156143a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143cc9190615a3b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561440d5780820151818401526020810190506143f2565b8381111561441c576000848401525b50505050565b6000601f19601f8301169050919050565b600061443e826143d3565b61444881856143de565b93506144588185602086016143ef565b61446181614422565b840191505092915050565b600060208201905081810360008301526144868184614433565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144be82614493565b9050919050565b6144ce816144b3565b81146144d957600080fd5b50565b6000813590506144eb816144c5565b92915050565b6000819050919050565b614504816144f1565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d61448e565b5b600061454c858286016144dc565b925050602061455d85828601614512565b9150509250929050565b60008115159050919050565b61457c81614567565b82525050565b60006020820190506145976000830184614573565b92915050565b6000602082840312156145b3576145b261448e565b5b60006145c1848285016144dc565b91505092915050565b6000819050919050565b60006145ef6145ea6145e584614493565b6145ca565b614493565b9050919050565b6000614601826145d4565b9050919050565b6000614613826145f6565b9050919050565b61462381614608565b82525050565b600060208201905061463e600083018461461a565b92915050565b61464d816144f1565b82525050565b60006020820190506146686000830184614644565b92915050565b6000602082840312156146845761468361448e565b5b600061469284828501614512565b91505092915050565b6000806000606084860312156146b4576146b361448e565b5b60006146c2868287016144dc565b93505060206146d3868287016144dc565b92505060406146e486828701614512565b9150509250925092565b6146f7816144b3565b82525050565b600060208201905061471260008301846146ee565b92915050565b600060ff82169050919050565b61472e81614718565b82525050565b60006020820190506147496000830184614725565b92915050565b61475881614567565b811461476357600080fd5b50565b6000813590506147758161474f565b92915050565b6000806000606084860312156147945761479361448e565b5b60006147a286828701614512565b93505060206147b386828701614512565b92505060406147c486828701614766565b9150509250925092565b600080604083850312156147e5576147e461448e565b5b60006147f3858286016144dc565b925050602061480485828601614766565b9150509250929050565b6000806000606084860312156148275761482661448e565b5b600061483586828701614512565b935050602061484686828701614512565b925050604061485786828701614512565b9150509250925092565b6000602082840312156148775761487661448e565b5b600061488584828501614766565b91505092915050565b600080604083850312156148a5576148a461448e565b5b60006148b3858286016144dc565b92505060206148c4858286016144dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491557607f821691505b60208210811415614929576149286148ce565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149656020836143de565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d5826144f1565b91506149e0836144f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1957614a1861499b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a806028836143de565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b6000614ac1826144f1565b9150614acc836144f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b0061499b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b686033836143de565b9150614b7382614b0c565b604082019050919050565b60006020820190508181036000830152614b9781614b5b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bfa6030836143de565b9150614c0582614b9e565b604082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614c66601d836143de565b9150614c7182614c30565b602082019050919050565b60006020820190508181036000830152614c9581614c59565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cf86039836143de565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d8a6025836143de565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dfa826144f1565b9150614e05836144f1565b925082614e1557614e14614dc0565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7c6024836143de565b9150614e8782614e20565b604082019050919050565b60006020820190508181036000830152614eab81614e6f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f0e6035836143de565b9150614f1982614eb2565b604082019050919050565b60006020820190508181036000830152614f3d81614f01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa06034836143de565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150326026836143de565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061509e6020836143de565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615130602a836143de565b915061513b826150d4565b604082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b600081519050615175816144fb565b92915050565b6000602082840312156151915761519061448e565b5b600061519f84828501615166565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152046024836143de565b915061520f826151a8565b604082019050919050565b60006020820190508181036000830152615233816151f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152966022836143de565b91506152a18261523a565b604082019050919050565b600060208201905081810360008301526152c581615289565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153286025836143de565b9150615333826152cc565b604082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ba6023836143de565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154266016836143de565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154de6049836143de565b91506154e98261545c565b606082019050919050565b6000602082019050818103600083015261550d816154d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155706035836143de565b915061557b82615514565b604082019050919050565b6000602082019050818103600083015261559f81615563565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155dc6013836143de565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061566e6036836143de565b915061567982615612565b604082019050919050565b6000602082019050818103600083015261569d81615661565b9050919050565b60006156af826144f1565b91506156ba836144f1565b9250828210156156cd576156cc61499b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157346026836143de565b915061573f826156d8565b604082019050919050565b6000602082019050818103600083015261576381615727565b9050919050565b600081905092915050565b50565b600061578560008361576a565b915061579082615775565b600082019050919050565b60006157a682615778565b9150819050919050565b60006060820190506157c56000830186614644565b6157d26020830185614644565b6157df6040830184614644565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615854816144c5565b92915050565b6000602082840312156158705761586f61448e565b5b600061587e84828501615845565b91505092915050565b6000819050919050565b60006158ac6158a76158a284615887565b6145ca565b6144f1565b9050919050565b6158bc81615891565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158f7816144b3565b82525050565b600061590983836158ee565b60208301905092915050565b6000602082019050919050565b600061592d826158c2565b61593781856158cd565b9350615942836158de565b8060005b8381101561597357815161595a88826158fd565b975061596583615915565b925050600181019050615946565b5085935050505092915050565b600060a0820190506159956000830188614644565b6159a260208301876158b3565b81810360408301526159b48186615922565b90506159c360608301856146ee565b6159d06080830184614644565b9695505050505050565b600060c0820190506159ef60008301896146ee565b6159fc6020830188614644565b615a0960408301876158b3565b615a1660608301866158b3565b615a2360808301856146ee565b615a3060a0830184614644565b979650505050505050565b600080600060608486031215615a5457615a5361448e565b5b6000615a6286828701615166565b9350506020615a7386828701615166565b9250506040615a8486828701615166565b915050925092509256fea26469706673582212206d906c107a5f650292ae8da2441369f33813233d3e477f5431d4d5660b2eeddf64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061446c565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614527565b610f51565b60405161041c9190614582565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061459d565b610f6f565b6040516104599190614582565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614629565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614653565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061459d565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614653565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614653565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614653565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614653565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061466e565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061469b565b6111a9565b6040516105ea9190614582565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b60405161061591906146fd565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b6040516106409190614653565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b9190614582565b60405180910390f35b34801561068057600080fd5b506106896112c0565b6040516106969190614734565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614527565b6112c9565b6040516106d39190614582565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe91906146fd565b60405180910390f35b34801561071357600080fd5b5061071c611399565b6040516107299190614582565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061459d565b6113ac565b6040516107669190614582565b60405180910390f35b34801561077b57600080fd5b50610784611402565b6040516107919190614653565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc9190614582565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061459d565b61141b565b6040516107f99190614653565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b919061477b565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b6040516108649190614582565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147ce565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b891906146fd565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e39190614653565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e919061480e565b6117ce565b005b34801561092157600080fd5b5061092a6118cd565b005b34801561093857600080fd5b50610941611988565b60405161094e91906146fd565b60405180910390f35b34801561096357600080fd5b5061096c6119b2565b60405161097991906146fd565b60405180910390f35b34801561098e57600080fd5b506109976119d8565b6040516109a49190614653565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614861565b6119de565b005b3480156109e257600080fd5b506109eb611a77565b6040516109f8919061446c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147ce565b611b09565b005b348015610a3657600080fd5b50610a3f611c22565b604051610a4c9190614653565b60405180910390f35b348015610a6157600080fd5b50610a6a611c28565b604051610a779190614653565b60405180910390f35b348015610a8c57600080fd5b50610a95611c2e565b604051610aa29190614653565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd9190614653565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614527565b611c3a565b604051610b0a9190614582565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b359190614653565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614527565b611d2b565b604051610b729190614582565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d919061459d565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc6919061459d565b611e85565b604051610bd89190614582565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c039190614582565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147ce565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c57919061480e565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c80919061466e565b6120dc565b005b348015610c9357600080fd5b50610c9c6121eb565b604051610ca99190614582565b60405180910390f35b348015610cbe57600080fd5b50610cc76121fe565b604051610cd49190614653565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061466e565b612204565b604051610d119190614582565b60405180910390f35b348015610d2657600080fd5b50610d2f612359565b604051610d3c9190614653565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061488e565b61235f565b604051610d799190614653565b60405180910390f35b348015610d8e57600080fd5b50610d976123e6565b604051610da49190614653565b60405180910390f35b348015610db957600080fd5b50610dc26123ec565b604051610dcf9190614582565b60405180910390f35b348015610de457600080fd5b50610ded61248c565b604051610dfa9190614653565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061459d565b612492565b005b348015610e3857600080fd5b50610e4161258a565b604051610e4e9190614653565b60405180910390f35b348015610e6357600080fd5b50610e6c612590565b604051610e799190614653565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea4919061466e565b612596565b604051610eb69190614582565b60405180910390f35b606060038054610ece906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148fd565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61286e565b8484612876565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc461286e565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611988565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061497b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111861286e565b73ffffffffffffffffffffffffffffffffffffffff16611136611988565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061497b565b60405180910390fd5b670de0b6b3a7640000816111a091906149ca565b60088190555050565b60006111b6848484612a41565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120161286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a96565b60405180910390fd5b6112958561128d61286e565b858403612876565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d661286e565b8484600160006112e461286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614ab6565b612876565b6001905092915050565b7f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b61286e565b73ffffffffffffffffffffffffffffffffffffffff16611489611988565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061497b565b60405180910390fd5b6114e960006137d9565b565b6114f361286e565b73ffffffffffffffffffffffffffffffffffffffff16611511611988565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061497b565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614b7e565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614c10565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061163561286e565b73ffffffffffffffffffffffffffffffffffffffff16611653611988565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061497b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d361286e565b73ffffffffffffffffffffffffffffffffffffffff166116f1611988565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061497b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d661286e565b73ffffffffffffffffffffffffffffffffffffffff166117f4611988565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061497b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614ab6565b61187c9190614ab6565b601481905550601960145411156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614c7c565b60405180910390fd5b505050565b6118d561286e565b73ffffffffffffffffffffffffffffffffffffffff166118f3611988565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061497b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119e661286e565b73ffffffffffffffffffffffffffffffffffffffff16611a04611988565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061497b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a86906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab2906148fd565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b5050505050905090565b611b1161286e565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061497b565b60405180910390fd5b7f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614d0e565b60405180910390fd5b611c1e828261389f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c4961286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614da0565b60405180910390fd5b611d1a611d1161286e565b85858403612876565b600191505092915050565b600e5481565b6000611d3f611d3861286e565b8484612a41565b6001905092915050565b611d5161286e565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061497b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec061286e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611988565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061497b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd19190614582565b60405180910390a25050565b611fe561286e565b73ffffffffffffffffffffffffffffffffffffffff16612003611988565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061497b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614ab6565b61208b9190614ab6565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c7c565b60405180910390fd5b505050565b6120e461286e565b73ffffffffffffffffffffffffffffffffffffffff16612102611988565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061497b565b60405180910390fd5b670de0b6b3a7640000612710600561216e610fb2565b61217891906149ca565b6121829190614def565b61218c9190614def565b8110156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614e92565b60405180910390fd5b670de0b6b3a7640000816121e291906149ca565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061220e61286e565b73ffffffffffffffffffffffffffffffffffffffff1661222c611988565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061497b565b60405180910390fd5b620186a06001612290610fb2565b61229a91906149ca565b6122a49190614def565b8210156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f24565b60405180910390fd5b6103e860056122f3610fb2565b6122fd91906149ca565b6123079190614def565b821115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090614fb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123f661286e565b73ffffffffffffffffffffffffffffffffffffffff16612414611988565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061497b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61249a61286e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611988565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125059061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590615048565b60405180910390fd5b612587816137d9565b50565b601a5481565b600a5481565b60006125a061286e565b73ffffffffffffffffffffffffffffffffffffffff166125be611988565b73ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b9061497b565b60405180910390fd5b600f546010546126249190614ab6565b4211612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906150b4565b60405180910390fd5b6103e88211156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190615146565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad6040518263ffffffff1660e01b815260040161270c91906146fd565b602060405180830381865afa158015612729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274d919061517b565b9050600061277861271061276a868561394090919063ffffffff16565b61395690919063ffffffff16565b905060008111156127b1576127b07f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad61dead8361396c565b5b60007f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281e57600080fd5b505af1158015612832573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061521a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906152ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a349190614653565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b18906153d0565b60405180910390fd5b6000811415612b3b57612b368383600061396c565b6137d4565b601160009054906101000a900460ff16156131fe57612b58611988565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bc65750612b96611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bff5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c39575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c525750600560149054906101000a900460ff16155b156131fd57601160019054906101000a900460ff16612d4c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d0c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d429061543c565b60405180910390fd5b5b601360009054906101000a900460ff1615612f1457612d69611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612df057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4857507f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f135743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec5906154f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305e57600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff890615586565b60405180910390fd5b600a5461300d8361141b565b826130189190614ab6565b1115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906155f2565b60405180910390fd5b6131fc565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131015750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131505760085481111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314290615684565b60405180910390fd5b6131fb565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131fa57600a546131ad8361141b565b826131b89190614ab6565b11156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f0906155f2565b60405180910390fd5b5b5b5b5b5b60006132093061141b565b90506000600954821015905080801561322e5750601160029054906101000a900460ff165b80156132475750600560149054906101000a900460ff16155b801561329d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133495750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338d576001600560146101000a81548160ff021916908315150217905550613371613bed565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133f35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561340b5750600c60009054906101000a900460ff165b80156134265750600d54600e546134229190614ab6565b4210155b801561347c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561348b57613489613ed4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135415750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561354b57600090505b600081156137c457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135ae57506000601854115b1561367b576135db60646135cd6018548861394090919063ffffffff16565b61395690919063ffffffff16565b9050601854601a54826135ee91906149ca565b6135f89190614def565b601d60008282546136099190614ab6565b92505081905550601854601b548261362191906149ca565b61362b9190614def565b601e600082825461363c9190614ab6565b925050819055506018546019548261365491906149ca565b61365e9190614def565b601c600082825461366f9190614ab6565b925050819055506137a0565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136d657506000601454115b1561379f5761370360646136f56014548861394090919063ffffffff16565b61395690919063ffffffff16565b90506014546016548261371691906149ca565b6137209190614def565b601d60008282546137319190614ab6565b925050819055506014546017548261374991906149ca565b6137539190614def565b601e60008282546137649190614ab6565b925050819055506014546015548261377c91906149ca565b6137869190614def565b601c60008282546137979190614ab6565b925050819055505b5b60008111156137b5576137b487308361396c565b5b80856137c191906156a4565b94505b6137cf87878761396c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361394e91906149ca565b905092915050565b600081836139649190614def565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d39061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906153d0565b60405180910390fd5b613a5783838361409a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad49061574a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b709190614ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bd49190614653565b60405180910390a3613be784848461409f565b50505050565b6000613bf83061141b565b90506000601e54601c54601d54613c0f9190614ab6565b613c199190614ab6565b9050600080831480613c2b5750600082145b15613c3857505050613ed2565b6014600954613c4791906149ca565b831115613c60576014600954613c5d91906149ca565b92505b6000600283601d5486613c7391906149ca565b613c7d9190614def565b613c879190614def565b90506000613c9e82866140a490919063ffffffff16565b90506000479050613cae826140ba565b6000613cc382476140a490919063ffffffff16565b90506000613cee87613ce0601c548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000613d1988613d0b601e548661394090919063ffffffff16565b61395690919063ffffffff16565b90506000818385613d2a91906156a4565b613d3491906156a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d949061579b565b60006040518083038185875af1925050503d8060008114613dd1576040519150601f19603f3d011682016040523d82523d6000602084013e613dd6565b606091505b505080985050600087118015613dec5750600081115b15613e3957613dfb87826142f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e30939291906157b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e7f9061579b565b60006040518083038185875af1925050503d8060008114613ebc576040519150601f19603f3d011682016040523d82523d6000602084013e613ec1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad6040518263ffffffff1660e01b8152600401613f3891906146fd565b602060405180830381865afa158015613f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f79919061517b565b90506000613fa6612710613f98600b548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000811115613fdf57613fde7f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad61dead8361396c565b5b60007f0000000000000000000000001c3bcde6f7451f07b9230f65ae5e9986605041ad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140b291906156a4565b905092915050565b6000600267ffffffffffffffff8111156140d7576140d66157e7565b5b6040519080825280602002602001820160405280156141055781602001602082028036833780820191505090505b509050308160008151811061411d5761411c615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e6919061585a565b816001815181106141fa576141f9615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061425f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612876565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142c1959493929190615980565b600060405180830381600087803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b505050505050565b614322307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612876565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614389969594939291906159da565b60606040518083038185885af11580156143a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143cc9190615a3b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561440d5780820151818401526020810190506143f2565b8381111561441c576000848401525b50505050565b6000601f19601f8301169050919050565b600061443e826143d3565b61444881856143de565b93506144588185602086016143ef565b61446181614422565b840191505092915050565b600060208201905081810360008301526144868184614433565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144be82614493565b9050919050565b6144ce816144b3565b81146144d957600080fd5b50565b6000813590506144eb816144c5565b92915050565b6000819050919050565b614504816144f1565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d61448e565b5b600061454c858286016144dc565b925050602061455d85828601614512565b9150509250929050565b60008115159050919050565b61457c81614567565b82525050565b60006020820190506145976000830184614573565b92915050565b6000602082840312156145b3576145b261448e565b5b60006145c1848285016144dc565b91505092915050565b6000819050919050565b60006145ef6145ea6145e584614493565b6145ca565b614493565b9050919050565b6000614601826145d4565b9050919050565b6000614613826145f6565b9050919050565b61462381614608565b82525050565b600060208201905061463e600083018461461a565b92915050565b61464d816144f1565b82525050565b60006020820190506146686000830184614644565b92915050565b6000602082840312156146845761468361448e565b5b600061469284828501614512565b91505092915050565b6000806000606084860312156146b4576146b361448e565b5b60006146c2868287016144dc565b93505060206146d3868287016144dc565b92505060406146e486828701614512565b9150509250925092565b6146f7816144b3565b82525050565b600060208201905061471260008301846146ee565b92915050565b600060ff82169050919050565b61472e81614718565b82525050565b60006020820190506147496000830184614725565b92915050565b61475881614567565b811461476357600080fd5b50565b6000813590506147758161474f565b92915050565b6000806000606084860312156147945761479361448e565b5b60006147a286828701614512565b93505060206147b386828701614512565b92505060406147c486828701614766565b9150509250925092565b600080604083850312156147e5576147e461448e565b5b60006147f3858286016144dc565b925050602061480485828601614766565b9150509250929050565b6000806000606084860312156148275761482661448e565b5b600061483586828701614512565b935050602061484686828701614512565b925050604061485786828701614512565b9150509250925092565b6000602082840312156148775761487661448e565b5b600061488584828501614766565b91505092915050565b600080604083850312156148a5576148a461448e565b5b60006148b3858286016144dc565b92505060206148c4858286016144dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491557607f821691505b60208210811415614929576149286148ce565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149656020836143de565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d5826144f1565b91506149e0836144f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1957614a1861499b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a806028836143de565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b6000614ac1826144f1565b9150614acc836144f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b0061499b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b686033836143de565b9150614b7382614b0c565b604082019050919050565b60006020820190508181036000830152614b9781614b5b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bfa6030836143de565b9150614c0582614b9e565b604082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614c66601d836143de565b9150614c7182614c30565b602082019050919050565b60006020820190508181036000830152614c9581614c59565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cf86039836143de565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d8a6025836143de565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dfa826144f1565b9150614e05836144f1565b925082614e1557614e14614dc0565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7c6024836143de565b9150614e8782614e20565b604082019050919050565b60006020820190508181036000830152614eab81614e6f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f0e6035836143de565b9150614f1982614eb2565b604082019050919050565b60006020820190508181036000830152614f3d81614f01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa06034836143de565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150326026836143de565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061509e6020836143de565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615130602a836143de565b915061513b826150d4565b604082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b600081519050615175816144fb565b92915050565b6000602082840312156151915761519061448e565b5b600061519f84828501615166565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152046024836143de565b915061520f826151a8565b604082019050919050565b60006020820190508181036000830152615233816151f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152966022836143de565b91506152a18261523a565b604082019050919050565b600060208201905081810360008301526152c581615289565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153286025836143de565b9150615333826152cc565b604082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ba6023836143de565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154266016836143de565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154de6049836143de565b91506154e98261545c565b606082019050919050565b6000602082019050818103600083015261550d816154d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155706035836143de565b915061557b82615514565b604082019050919050565b6000602082019050818103600083015261559f81615563565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155dc6013836143de565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061566e6036836143de565b915061567982615612565b604082019050919050565b6000602082019050818103600083015261569d81615661565b9050919050565b60006156af826144f1565b91506156ba836144f1565b9250828210156156cd576156cc61499b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157346026836143de565b915061573f826156d8565b604082019050919050565b6000602082019050818103600083015261576381615727565b9050919050565b600081905092915050565b50565b600061578560008361576a565b915061579082615775565b600082019050919050565b60006157a682615778565b9150819050919050565b60006060820190506157c56000830186614644565b6157d26020830185614644565b6157df6040830184614644565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615854816144c5565b92915050565b6000602082840312156158705761586f61448e565b5b600061587e84828501615845565b91505092915050565b6000819050919050565b60006158ac6158a76158a284615887565b6145ca565b6144f1565b9050919050565b6158bc81615891565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158f7816144b3565b82525050565b600061590983836158ee565b60208301905092915050565b6000602082019050919050565b600061592d826158c2565b61593781856158cd565b9350615942836158de565b8060005b8381101561597357815161595a88826158fd565b975061596583615915565b925050600181019050615946565b5085935050505092915050565b600060a0820190506159956000830188614644565b6159a260208301876158b3565b81810360408301526159b48186615922565b90506159c360608301856146ee565b6159d06080830184614644565b9695505050505050565b600060c0820190506159ef60008301896146ee565b6159fc6020830188614644565b615a0960408301876158b3565b615a1660608301866158b3565b615a2360808301856146ee565b615a3060a0830184614644565b979650505050505050565b600080600060608486031215615a5457615a5361448e565b5b6000615a6286828701615166565b9350506020615a7386828701615166565b9250506040615a8486828701615166565b915050925092509256fea26469706673582212206d906c107a5f650292ae8da2441369f33813233d3e477f5431d4d5660b2eeddf64736f6c634300080a0033

Deployed Bytecode Sourcemap

32901:19293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11883:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34532:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32981:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10836:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41522:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33546:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34316:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34276;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38988:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12534:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33084:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33456:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33417:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10678:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13435:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33039:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33644:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41687:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34131:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33724:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11007:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2951:103;;;;;;;;;;;;;:::i;:::-;;49776:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38096:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39383:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33176:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34024;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39754:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37889:155;;;;;;;;;;;;;:::i;:::-;;2300:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33213:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34166:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39646:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9935:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40775:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34098:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33600:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34356:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34242:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14153:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33508:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11347:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41283:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34753:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33684:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40585:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40165:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39118:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33942:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33246:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38483:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11585:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33288:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38278:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34061:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3209:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34204:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33328:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51135:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9716:100;9770:13;9803:5;9796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9716:100;:::o;11883:169::-;11966:4;11983:39;11992:12;:10;:12::i;:::-;12006:7;12015:6;11983:8;:39::i;:::-;12040:4;12033:11;;11883:169;;;;:::o;34532:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32981:51::-;;;:::o;10836:108::-;10897:7;10924:12;;10917:19;;10836:108;:::o;41522:157::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41629:9:::1;;;;;;;;;;;41601:38;;41618:9;41601:38;;;;;;;;;;;;41662:9;41650;;:21;;;;;;;;;;;;;;;;;;41522:157:::0;:::o;33546:47::-;;;;:::o;33361:36::-;;;;:::o;34316:33::-;;;;:::o;34276:::-;;;;:::o;38988:122::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39095:6:::1;39085;:17;;;;:::i;:::-;39062:20;:40;;;;38988:122:::0;:::o;12534:492::-;12674:4;12691:36;12701:6;12709:9;12720:6;12691:9;:36::i;:::-;12740:24;12767:11;:19;12779:6;12767:19;;;;;;;;;;;;;;;:33;12787:12;:10;:12::i;:::-;12767:33;;;;;;;;;;;;;;;;12740:60;;12839:6;12819:16;:26;;12811:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12926:57;12935:6;12943:12;:10;:12::i;:::-;12976:6;12957:16;:25;12926:8;:57::i;:::-;13014:4;13007:11;;;12534:492;;;;;:::o;33084:53::-;33130:6;33084:53;:::o;33456:45::-;;;;:::o;33417:32::-;;;;;;;;;;;;;:::o;10678:93::-;10736:5;10761:2;10754:9;;10678:93;:::o;13435:215::-;13523:4;13540:80;13549:12;:10;:12::i;:::-;13563:7;13609:10;13572:11;:25;13584:12;:10;:12::i;:::-;13572:25;;;;;;;;;;;;;;;:34;13598:7;13572:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13540:8;:80::i;:::-;13638:4;13631:11;;13435:215;;;;:::o;33039:38::-;;;:::o;33644:33::-;;;;;;;;;;;;;:::o;41687:126::-;41753:4;41777:19;:28;41797:7;41777:28;;;;;;;;;;;;;;;;;;;;;;;;;41770:35;;41687:126;;;:::o;34131:28::-;;;;:::o;33724:31::-;;;;;;;;;;;;;:::o;11007:127::-;11081:7;11108:9;:18;11118:7;11108:18;;;;;;;;;;;;;;;;11101:25;;11007:127;;;:::o;2951:103::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3016:30:::1;3043:1;3016:18;:30::i;:::-;2951:103::o:0;49776:555::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49978:3:::1;49955:19;:26;;49933:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50105:4;50093:8;:16;;:33;;;;;50125:1;50113:8;:13;;50093:33;50071:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50231:19;50213:15;:37;;;;50280:8;50261:16;:27;;;;50315:8;50299:13;;:24;;;;;;;;;;;;;;;;;;49776:555:::0;;;:::o;38096:121::-;38148:4;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38182:5:::1;38165:14;;:22;;;;;;;;;;;;;;;;;;38205:4;38198:11;;38096:121:::0;:::o;39383:167::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39538:4:::1;39496:31;:39;39528:6;39496:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39383:167:::0;;:::o;33176:30::-;;;;;;;;;;;;;:::o;34024:::-;;;;:::o;39754:403::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:13:::1;39904:15;:31;;;;39964:13;39946:15;:31;;;;40000:7;39988:9;:19;;;;40069:9;;40051:15;;40033;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40018:12;:60;;;;40113:2;40097:12;;:18;;40089:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39754:403:::0;;;:::o;37889:155::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37960:4:::1;37944:13;;:20;;;;;;;;;;;;;;;;;;37989:4;37975:11;;:18;;;;;;;;;;;;;;;;;;38021:15;38004:14;:32;;;;37889:155::o:0;2300:87::-;2346:7;2373:6;;;;;;;;;;;2366:13;;2300:87;:::o;33213:24::-;;;;;;;;;;;;;:::o;34166:31::-;;;;:::o;39646:100::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39731:7:::1;39717:11;;:21;;;;;;;;;;;;;;;;;;39646:100:::0;:::o;9935:104::-;9991:13;10024:7;10017:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9935:104;:::o;40775:304::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40919:13:::1;40911:21;;:4;:21;;;;40889:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41030:41;41059:4;41065:5;41030:28;:41::i;:::-;40775:304:::0;;:::o;34098:24::-;;;;:::o;33600:35::-;;;;:::o;34356:27::-;;;;:::o;34242:25::-;;;;:::o;14153:413::-;14246:4;14263:24;14290:11;:25;14302:12;:10;:12::i;:::-;14290:25;;;;;;;;;;;;;;;:34;14316:7;14290:34;;;;;;;;;;;;;;;;14263:61;;14363:15;14343:16;:35;;14335:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14456:67;14465:12;:10;:12::i;:::-;14479:7;14507:15;14488:16;:34;14456:8;:67::i;:::-;14554:4;14547:11;;;14153:413;;;;:::o;33508:29::-;;;;:::o;11347:175::-;11433:4;11450:42;11460:12;:10;:12::i;:::-;11474:9;11485:6;11450:9;:42::i;:::-;11510:4;11503:11;;11347:175;;;;:::o;41283:231::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41443:15:::1;;;;;;;;;;;41400:59;;41423:18;41400:59;;;;;;;;;;;;41488:18;41470:15;;:36;;;;;;;;;;;;;;;;;;41283:231:::0;:::o;34753:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33684:33::-;;;;;;;;;;;;;:::o;40585:182::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40701:8:::1;40670:19;:28;40690:7;40670:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40741:7;40725:34;;;40750:8;40725:34;;;;;;:::i;:::-;;;;;;;;40585:182:::0;;:::o;40165:412::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40335:13:::1;40316:16;:32;;;;40378:13;40359:16;:32;;;;40415:7;40402:10;:20;;;;40487:10;;40468:16;;40449;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40433:13;:64;;;;40533:2;40516:13;;:19;;40508:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40165:412:::0;;;:::o;39118:257::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39259:4:::1;39250:5;39245:1;39229:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39228:27;;;;:::i;:::-;39227:36;;;;:::i;:::-;39217:6;:46;;39195:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;39360:6;39350;:17;;;;:::i;:::-;39338:9;:29;;;;39118:257:::0;:::o;33942:39::-;;;;;;;;;;;;;:::o;33246:35::-;;;;:::o;38483:497::-;38591:4;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38670:6:::1;38665:1;38649:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38648:28;;;;:::i;:::-;38635:9;:41;;38613:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38825:4;38820:1;38804:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38803:26;;;;:::i;:::-;38790:9;:39;;38768:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38941:9;38920:18;:30;;;;38968:4;38961:11;;38483:497:::0;;;:::o;33990:27::-;;;;:::o;11585:151::-;11674:7;11701:11;:18;11713:5;11701:18;;;;;;;;;;;;;;;:27;11720:7;11701:27;;;;;;;;;;;;;;;;11694:34;;11585:151;;;;:::o;33288:33::-;;;;:::o;38278:135::-;38338:4;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38378:5:::1;38355:20;;:28;;;;;;;;;;;;;;;;;;38401:4;38394:11;;38278:135:::0;:::o;34061:30::-;;;;:::o;3209:201::-;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:1:::1;3298:22;;:8;:22;;;;3290:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3374:28;3393:8;3374:18;:28::i;:::-;3209:201:::0;:::o;34204:31::-;;;;:::o;33328:24::-;;;;:::o;51135:1056::-;51246:4;2531:12;:10;:12::i;:::-;2520:23;;:7;:5;:7::i;:::-;:23;;;2512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51331:19:::1;;51308:20;;:42;;;;:::i;:::-;51290:15;:60;51268:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51440:4;51429:7;:15;;51421:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51525:15;51502:20;:38;;;;51595:28;51626:4;:14;;;51641:13;51626:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51595:60;;51705:20;51728:44;51766:5;51728:33;51753:7;51728:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51705:67;;51892:1;51877:12;:16;51873:110;;;51910:61;51926:13;51949:6;51958:12;51910:15;:61::i;:::-;51873:110;52058:19;52095:13;52058:51;;52120:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52147:14;;;;;;;;;;52179:4;52172:11;;;;;51135:1056:::0;;;:::o;973:98::-;1026:7;1053:10;1046:17;;973:98;:::o;17837:380::-;17990:1;17973:19;;:5;:19;;;;17965:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18071:1;18052:21;;:7;:21;;;;18044:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18155:6;18125:11;:18;18137:5;18125:18;;;;;;;;;;;;;;;:27;18144:7;18125:27;;;;;;;;;;;;;;;:36;;;;18193:7;18177:32;;18186:5;18177:32;;;18202:6;18177:32;;;;;;:::i;:::-;;;;;;;;17837:380;;;:::o;41871:5011::-;42019:1;42003:18;;:4;:18;;;;41995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42096:1;42082:16;;:2;:16;;;;42074:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42165:1;42155:6;:11;42151:93;;;42183:28;42199:4;42205:2;42209:1;42183:15;:28::i;:::-;42226:7;;42151:93;42260:14;;;;;;;;;;;42256:2487;;;42321:7;:5;:7::i;:::-;42313:15;;:4;:15;;;;:49;;;;;42355:7;:5;:7::i;:::-;42349:13;;:2;:13;;;;42313:49;:86;;;;;42397:1;42383:16;;:2;:16;;;;42313:86;:128;;;;;42434:6;42420:21;;:2;:21;;;;42313:128;:158;;;;;42463:8;;;;;;;;;;;42462:9;42313:158;42291:2441;;;42511:13;;;;;;;;;;;42506:223;;42583:19;:25;42603:4;42583:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42612:19;:23;42632:2;42612:23;;;;;;;;;;;;;;;;;;;;;;;;;42583:52;42549:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42506:223;42885:20;;;;;;;;;;;42881:641;;;42966:7;:5;:7::i;:::-;42960:13;;:2;:13;;;;:72;;;;;43016:15;43002:30;;:2;:30;;;;42960:72;:129;;;;;43075:13;43061:28;;:2;:28;;;;42960:129;42930:573;;;43253:12;43178:28;:39;43207:9;43178:39;;;;;;;;;;;;;;;;:87;43140:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43467:12;43425:28;:39;43454:9;43425:39;;;;;;;;;;;;;;;:54;;;;42930:573;42881:641;43596:25;:31;43622:4;43596:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43653:31;:35;43685:2;43653:35;;;;;;;;;;;;;;;;;;;;;;;;;43652:36;43596:92;43570:1147;;;43775:20;;43765:6;:30;;43731:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43983:9;;43966:13;43976:2;43966:9;:13::i;:::-;43957:6;:22;;;;:::i;:::-;:35;;43923:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43570:1147;;;44161:25;:29;44187:2;44161:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44216:31;:37;44248:4;44216:37;;;;;;;;;;;;;;;;;;;;;;;;;44215:38;44161:92;44135:582;;;44340:20;;44330:6;:30;;44296:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44135:582;;;44497:31;:35;44529:2;44497:35;;;;;;;;;;;;;;;;;;;;;;;;;44492:225;;44617:9;;44600:13;44610:2;44600:9;:13::i;:::-;44591:6;:22;;;;:::i;:::-;:35;;44557:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44492:225;44135:582;43570:1147;42291:2441;42256:2487;44755:28;44786:24;44804:4;44786:9;:24::i;:::-;44755:55;;44823:12;44862:18;;44838:20;:42;;44823:57;;44911:7;:35;;;;;44935:11;;;;;;;;;;;44911:35;:61;;;;;44964:8;;;;;;;;;;;44963:9;44911:61;:110;;;;;44990:25;:31;45016:4;44990:31;;;;;;;;;;;;;;;;;;;;;;;;;44989:32;44911:110;:153;;;;;45039:19;:25;45059:4;45039:25;;;;;;;;;;;;;;;;;;;;;;;;;45038:26;44911:153;:194;;;;;45082:19;:23;45102:2;45082:23;;;;;;;;;;;;;;;;;;;;;;;;;45081:24;44911:194;44893:326;;;45143:4;45132:8;;:15;;;;;;;;;;;;;;;;;;45164:10;:8;:10::i;:::-;45202:5;45191:8;;:16;;;;;;;;;;;;;;;;;;44893:326;45250:8;;;;;;;;;;;45249:9;:55;;;;;45275:25;:29;45301:2;45275:29;;;;;;;;;;;;;;;;;;;;;;;;;45249:55;:85;;;;;45321:13;;;;;;;;;;;45249:85;:153;;;;;45387:15;;45370:14;;:32;;;;:::i;:::-;45351:15;:51;;45249:153;:196;;;;;45420:19;:25;45440:4;45420:25;;;;;;;;;;;;;;;;;;;;;;;;;45419:26;45249:196;45231:282;;;45472:29;:27;:29::i;:::-;;45231:282;45525:12;45541:8;;;;;;;;;;;45540:9;45525:24;;45651:19;:25;45671:4;45651:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45680:19;:23;45700:2;45680:23;;;;;;;;;;;;;;;;;;;;;;;;;45651:52;45647:100;;;45730:5;45720:15;;45647:100;45759:12;45864:7;45860:969;;;45916:25;:29;45942:2;45916:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45965:1;45949:13;;:17;45916:50;45912:768;;;45994:34;46024:3;45994:25;46005:13;;45994:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45987:41;;46097:13;;46077:16;;46070:4;:23;;;;:::i;:::-;46069:41;;;;:::i;:::-;46047:18;;:63;;;;;;;:::i;:::-;;;;;;;;46167:13;;46153:10;;46146:4;:17;;;;:::i;:::-;46145:35;;;;:::i;:::-;46129:12;;:51;;;;;;;:::i;:::-;;;;;;;;46249:13;;46229:16;;46222:4;:23;;;;:::i;:::-;46221:41;;;;:::i;:::-;46199:18;;:63;;;;;;;:::i;:::-;;;;;;;;45912:768;;;46324:25;:31;46350:4;46324:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46374:1;46359:12;;:16;46324:51;46320:360;;;46403:33;46432:3;46403:24;46414:12;;46403:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46396:40;;46504:12;;46485:15;;46478:4;:22;;;;:::i;:::-;46477:39;;;;:::i;:::-;46455:18;;:61;;;;;;;:::i;:::-;;;;;;;;46572:12;;46559:9;;46552:4;:16;;;;:::i;:::-;46551:33;;;;:::i;:::-;46535:12;;:49;;;;;;;:::i;:::-;;;;;;;;46652:12;;46633:15;;46626:4;:22;;;;:::i;:::-;46625:39;;;;:::i;:::-;46603:18;;:61;;;;;;;:::i;:::-;;;;;;;;46320:360;45912:768;46707:1;46700:4;:8;46696:91;;;46729:42;46745:4;46759;46766;46729:15;:42::i;:::-;46696:91;46813:4;46803:14;;;;;:::i;:::-;;;45860:969;46841:33;46857:4;46863:2;46867:6;46841:15;:33::i;:::-;41984:4898;;;;41871:5011;;;;:::o;3570:191::-;3644:16;3663:6;;;;;;;;;;;3644:25;;3689:8;3680:6;;:17;;;;;;;;;;;;;;;;;;3744:8;3713:40;;3734:8;3713:40;;;;;;;;;;;;3633:128;3570:191;:::o;41087:188::-;41204:5;41170:25;:31;41196:4;41170:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41261:5;41227:40;;41255:4;41227:40;;;;;;;;;;;;41087:188;;:::o;23290:98::-;23348:7;23379:1;23375;:5;;;;:::i;:::-;23368:12;;23290:98;;;;:::o;23689:::-;23747:7;23778:1;23774;:5;;;;:::i;:::-;23767:12;;23689:98;;;;:::o;15056:733::-;15214:1;15196:20;;:6;:20;;;;15188:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15298:1;15277:23;;:9;:23;;;;15269:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15353:47;15374:6;15382:9;15393:6;15353:20;:47::i;:::-;15413:21;15437:9;:17;15447:6;15437:17;;;;;;;;;;;;;;;;15413:41;;15490:6;15473:13;:23;;15465:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15611:6;15595:13;:22;15575:9;:17;15585:6;15575:17;;;;;;;;;;;;;;;:42;;;;15663:6;15639:9;:20;15649:9;15639:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15704:9;15687:35;;15696:6;15687:35;;;15715:6;15687:35;;;;;;:::i;:::-;;;;;;;;15735:46;15755:6;15763:9;15774:6;15735:19;:46::i;:::-;15177:612;15056:733;;;:::o;48012:1756::-;48051:23;48077:24;48095:4;48077:9;:24::i;:::-;48051:50;;48112:25;48208:12;;48174:18;;48140;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48112:108;;48231:12;48279:1;48260:15;:20;:46;;;;48305:1;48284:17;:22;48260:46;48256:85;;;48323:7;;;;;48256:85;48396:2;48375:18;;:23;;;;:::i;:::-;48357:15;:41;48353:115;;;48454:2;48433:18;;:23;;;;:::i;:::-;48415:41;;48353:115;48529:23;48642:1;48609:17;48574:18;;48556:15;:36;;;;:::i;:::-;48555:71;;;;:::i;:::-;:88;;;;:::i;:::-;48529:114;;48654:26;48683:36;48703:15;48683;:19;;:36;;;;:::i;:::-;48654:65;;48732:25;48760:21;48732:49;;48794:36;48811:18;48794:16;:36::i;:::-;48843:18;48864:44;48890:17;48864:21;:25;;:44;;;;:::i;:::-;48843:65;;48921:23;48947:81;49000:17;48947:34;48962:18;;48947:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48921:107;;49039:17;49059:51;49092:17;49059:28;49074:12;;49059:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49039:71;;49123:23;49180:9;49162:15;49149:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49123:66;;49223:1;49202:18;:22;;;;49256:1;49235:18;:22;;;;49283:1;49268:12;:16;;;;49319:9;;;;;;;;;;;49311:23;;49342:9;49311:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49297:59;;;;;49391:1;49373:15;:19;:42;;;;;49414:1;49396:15;:19;49373:42;49369:278;;;49432:46;49445:15;49462;49432:12;:46::i;:::-;49498:137;49531:18;49568:15;49602:18;;49498:137;;;;;;;;:::i;:::-;;;;;;;;49369:278;49681:15;;;;;;;;;;;49673:29;;49724:21;49673:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49659:101;;;;;48040:1728;;;;;;;;;;48012:1756;:::o;50339:788::-;50396:4;50430:15;50413:14;:32;;;;50500:28;50531:4;:14;;;50546:13;50531:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50500:60;;50610:20;50633:77;50694:5;50633:42;50658:16;;50633:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50610:100;;50830:1;50815:12;:16;50811:110;;;50848:61;50864:13;50887:6;50896:12;50848:15;:61::i;:::-;50811:110;50996:19;51033:13;50996:51;;51058:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51085:12;;;;;;;;;;51115:4;51108:11;;;;;50339:788;:::o;18817:125::-;;;;:::o;19546:124::-;;;;:::o;22933:98::-;22991:7;23022:1;23018;:5;;;;:::i;:::-;23011:12;;22933:98;;;;:::o;46890:589::-;47016:21;47054:1;47040:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47016:40;;47085:4;47067;47072:1;47067:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47111:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47101:4;47106:1;47101:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47146:62;47163:4;47178:15;47196:11;47146:8;:62::i;:::-;47247:15;:66;;;47328:11;47354:1;47398:4;47425;47445:15;47247:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46945:534;46890:589;:::o;47487:517::-;47635:62;47652:4;47667:15;47685:11;47635:8;:62::i;:::-;47740:15;:31;;;47779:9;47812:4;47832:11;47858:1;47901;33130:6;47970:15;47740:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47487: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:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:179::-;15286:31;15282:1;15274:6;15270:14;15263:55;15146:179;:::o;15331:366::-;15473:3;15494:67;15558:2;15553:3;15494:67;:::i;:::-;15487:74;;15570:93;15659:3;15570:93;:::i;:::-;15688:2;15683:3;15679:12;15672:19;;15331:366;;;:::o;15703:419::-;15869:4;15907:2;15896:9;15892:18;15884:26;;15956:9;15950:4;15946:20;15942:1;15931:9;15927:17;15920:47;15984:131;16110:4;15984:131;:::i;:::-;15976:139;;15703:419;;;:::o;16128:244::-;16268:34;16264:1;16256:6;16252:14;16245:58;16337:27;16332:2;16324:6;16320:15;16313:52;16128:244;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:224::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:7;17379:2;17371:6;17367:15;17360:32;17175:224;:::o;17405:366::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:419::-;17943:4;17981:2;17970:9;17966:18;17958:26;;18030:9;18024:4;18020:20;18016:1;18005:9;18001:17;17994:47;18058:131;18184:4;18058:131;:::i;:::-;18050:139;;17777:419;;;:::o;18202:180::-;18250:77;18247:1;18240:88;18347:4;18344:1;18337:15;18371:4;18368:1;18361:15;18388:185;18428:1;18445:20;18463:1;18445:20;:::i;:::-;18440:25;;18479:20;18497:1;18479:20;:::i;:::-;18474:25;;18518:1;18508:35;;18523:18;;:::i;:::-;18508:35;18565:1;18562;18558:9;18553:14;;18388:185;;;;:::o;18579:223::-;18719:34;18715:1;18707:6;18703:14;18696:58;18788:6;18783:2;18775:6;18771:15;18764:31;18579:223;:::o;18808:366::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:419::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:131;19587:4;19461:131;:::i;:::-;19453:139;;19180:419;;;:::o;19605:240::-;19745:34;19741:1;19733:6;19729:14;19722:58;19814:23;19809:2;19801:6;19797:15;19790:48;19605:240;:::o;19851:366::-;19993:3;20014:67;20078:2;20073:3;20014:67;:::i;:::-;20007:74;;20090:93;20179:3;20090:93;:::i;:::-;20208:2;20203:3;20199:12;20192:19;;19851:366;;;:::o;20223:419::-;20389:4;20427:2;20416:9;20412:18;20404:26;;20476:9;20470:4;20466:20;20462:1;20451:9;20447:17;20440:47;20504:131;20630:4;20504:131;:::i;:::-;20496:139;;20223:419;;;:::o;20648:239::-;20788:34;20784:1;20776:6;20772:14;20765:58;20857:22;20852:2;20844:6;20840:15;20833:47;20648:239;:::o;20893:366::-;21035:3;21056:67;21120:2;21115:3;21056:67;:::i;:::-;21049:74;;21132:93;21221:3;21132:93;:::i;:::-;21250:2;21245:3;21241:12;21234:19;;20893:366;;;:::o;21265:419::-;21431:4;21469:2;21458:9;21454:18;21446:26;;21518:9;21512:4;21508:20;21504:1;21493:9;21489:17;21482:47;21546:131;21672:4;21546:131;:::i;:::-;21538:139;;21265:419;;;:::o;21690:225::-;21830:34;21826:1;21818:6;21814:14;21807:58;21899:8;21894:2;21886:6;21882:15;21875:33;21690:225;:::o;21921:366::-;22063:3;22084:67;22148:2;22143:3;22084:67;:::i;:::-;22077:74;;22160:93;22249:3;22160:93;:::i;:::-;22278:2;22273:3;22269:12;22262:19;;21921:366;;;:::o;22293:419::-;22459:4;22497:2;22486:9;22482:18;22474:26;;22546:9;22540:4;22536:20;22532:1;22521:9;22517:17;22510:47;22574:131;22700:4;22574:131;:::i;:::-;22566:139;;22293:419;;;:::o;22718:182::-;22858:34;22854:1;22846:6;22842:14;22835:58;22718:182;:::o;22906:366::-;23048:3;23069:67;23133:2;23128:3;23069:67;:::i;:::-;23062:74;;23145:93;23234:3;23145:93;:::i;:::-;23263:2;23258:3;23254:12;23247:19;;22906:366;;;:::o;23278:419::-;23444:4;23482:2;23471:9;23467:18;23459:26;;23531:9;23525:4;23521:20;23517:1;23506:9;23502:17;23495:47;23559:131;23685:4;23559:131;:::i;:::-;23551:139;;23278:419;;;:::o;23703:229::-;23843:34;23839:1;23831:6;23827:14;23820:58;23912:12;23907:2;23899:6;23895:15;23888:37;23703:229;:::o;23938:366::-;24080:3;24101:67;24165:2;24160:3;24101:67;:::i;:::-;24094:74;;24177:93;24266:3;24177:93;:::i;:::-;24295:2;24290:3;24286:12;24279:19;;23938:366;;;:::o;24310:419::-;24476:4;24514:2;24503:9;24499:18;24491:26;;24563:9;24557:4;24553:20;24549:1;24538:9;24534:17;24527:47;24591:131;24717:4;24591:131;:::i;:::-;24583:139;;24310:419;;;:::o;24735:143::-;24792:5;24823:6;24817:13;24808:22;;24839:33;24866:5;24839:33;:::i;:::-;24735:143;;;;:::o;24884:351::-;24954:6;25003:2;24991:9;24982:7;24978:23;24974:32;24971:119;;;25009:79;;:::i;:::-;24971:119;25129:1;25154:64;25210:7;25201:6;25190:9;25186:22;25154:64;:::i;:::-;25144:74;;25100:128;24884:351;;;;:::o;25241:223::-;25381:34;25377:1;25369:6;25365:14;25358:58;25450:6;25445:2;25437:6;25433:15;25426:31;25241:223;:::o;25470:366::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:419::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26095:9;26089:4;26085:20;26081:1;26070:9;26066:17;26059:47;26123:131;26249:4;26123:131;:::i;:::-;26115:139;;25842:419;;;:::o;26267:221::-;26407:34;26403:1;26395:6;26391:14;26384:58;26476:4;26471:2;26463:6;26459:15;26452:29;26267:221;:::o;26494:366::-;26636:3;26657:67;26721:2;26716:3;26657:67;:::i;:::-;26650:74;;26733:93;26822:3;26733:93;:::i;:::-;26851:2;26846:3;26842:12;26835:19;;26494:366;;;:::o;26866:419::-;27032:4;27070:2;27059:9;27055:18;27047:26;;27119:9;27113:4;27109:20;27105:1;27094:9;27090:17;27083:47;27147:131;27273:4;27147:131;:::i;:::-;27139:139;;26866:419;;;:::o;27291:224::-;27431:34;27427:1;27419:6;27415:14;27408:58;27500:7;27495:2;27487:6;27483:15;27476:32;27291:224;:::o;27521:366::-;27663:3;27684:67;27748:2;27743:3;27684:67;:::i;:::-;27677:74;;27760:93;27849:3;27760:93;:::i;:::-;27878:2;27873:3;27869:12;27862:19;;27521:366;;;:::o;27893:419::-;28059:4;28097:2;28086:9;28082:18;28074:26;;28146:9;28140:4;28136:20;28132:1;28121:9;28117:17;28110:47;28174:131;28300:4;28174:131;:::i;:::-;28166:139;;27893:419;;;:::o;28318:222::-;28458:34;28454:1;28446:6;28442:14;28435:58;28527:5;28522:2;28514:6;28510:15;28503:30;28318:222;:::o;28546:366::-;28688:3;28709:67;28773:2;28768:3;28709:67;:::i;:::-;28702:74;;28785:93;28874:3;28785:93;:::i;:::-;28903:2;28898:3;28894:12;28887:19;;28546:366;;;:::o;28918:419::-;29084:4;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:131;29325:4;29199:131;:::i;:::-;29191:139;;28918:419;;;:::o;29343:172::-;29483:24;29479:1;29471:6;29467:14;29460:48;29343:172;:::o;29521:366::-;29663:3;29684:67;29748:2;29743:3;29684:67;:::i;:::-;29677:74;;29760:93;29849:3;29760:93;:::i;:::-;29878:2;29873:3;29869:12;29862:19;;29521:366;;;:::o;29893:419::-;30059:4;30097:2;30086:9;30082:18;30074:26;;30146:9;30140:4;30136:20;30132:1;30121:9;30117:17;30110:47;30174:131;30300:4;30174:131;:::i;:::-;30166:139;;29893:419;;;:::o;30318:297::-;30458:34;30454:1;30446:6;30442:14;30435:58;30527:34;30522:2;30514:6;30510:15;30503:59;30596:11;30591:2;30583:6;30579:15;30572:36;30318:297;:::o;30621:366::-;30763:3;30784:67;30848:2;30843:3;30784:67;:::i;:::-;30777:74;;30860:93;30949:3;30860:93;:::i;:::-;30978:2;30973:3;30969:12;30962:19;;30621:366;;;:::o;30993:419::-;31159:4;31197:2;31186:9;31182:18;31174:26;;31246:9;31240:4;31236:20;31232:1;31221:9;31217:17;31210:47;31274:131;31400:4;31274:131;:::i;:::-;31266:139;;30993:419;;;:::o;31418:240::-;31558:34;31554:1;31546:6;31542:14;31535:58;31627:23;31622:2;31614:6;31610:15;31603:48;31418:240;:::o;31664:366::-;31806:3;31827:67;31891:2;31886:3;31827:67;:::i;:::-;31820:74;;31903:93;31992:3;31903:93;:::i;:::-;32021:2;32016:3;32012:12;32005:19;;31664:366;;;:::o;32036:419::-;32202:4;32240:2;32229:9;32225:18;32217:26;;32289:9;32283:4;32279:20;32275:1;32264:9;32260:17;32253:47;32317:131;32443:4;32317:131;:::i;:::-;32309:139;;32036:419;;;:::o;32461:169::-;32601:21;32597:1;32589:6;32585:14;32578:45;32461:169;:::o;32636:366::-;32778:3;32799:67;32863:2;32858:3;32799:67;:::i;:::-;32792:74;;32875:93;32964:3;32875:93;:::i;:::-;32993:2;32988:3;32984:12;32977:19;;32636:366;;;:::o;33008:419::-;33174:4;33212:2;33201:9;33197:18;33189:26;;33261:9;33255:4;33251:20;33247:1;33236:9;33232:17;33225:47;33289:131;33415:4;33289:131;:::i;:::-;33281:139;;33008:419;;;:::o;33433:241::-;33573:34;33569:1;33561:6;33557:14;33550:58;33642:24;33637:2;33629:6;33625:15;33618:49;33433:241;:::o;33680:366::-;33822:3;33843:67;33907:2;33902:3;33843:67;:::i;:::-;33836:74;;33919:93;34008:3;33919:93;:::i;:::-;34037:2;34032:3;34028:12;34021:19;;33680:366;;;:::o;34052:419::-;34218:4;34256:2;34245:9;34241:18;34233:26;;34305:9;34299:4;34295:20;34291:1;34280:9;34276:17;34269:47;34333:131;34459:4;34333:131;:::i;:::-;34325:139;;34052:419;;;:::o;34477:191::-;34517:4;34537:20;34555:1;34537:20;:::i;:::-;34532:25;;34571:20;34589:1;34571:20;:::i;:::-;34566:25;;34610:1;34607;34604:8;34601:34;;;34615:18;;:::i;:::-;34601:34;34660:1;34657;34653:9;34645:17;;34477:191;;;;:::o;34674:225::-;34814:34;34810:1;34802:6;34798:14;34791:58;34883:8;34878:2;34870:6;34866:15;34859:33;34674:225;:::o;34905:366::-;35047:3;35068:67;35132:2;35127:3;35068:67;:::i;:::-;35061:74;;35144:93;35233:3;35144:93;:::i;:::-;35262:2;35257:3;35253:12;35246:19;;34905:366;;;:::o;35277:419::-;35443:4;35481:2;35470:9;35466:18;35458:26;;35530:9;35524:4;35520:20;35516:1;35505:9;35501:17;35494:47;35558:131;35684:4;35558:131;:::i;:::-;35550:139;;35277:419;;;:::o;35702:147::-;35803:11;35840:3;35825:18;;35702:147;;;;:::o;35855:114::-;;:::o;35975:398::-;36134:3;36155:83;36236:1;36231:3;36155:83;:::i;:::-;36148:90;;36247:93;36336:3;36247:93;:::i;:::-;36365:1;36360:3;36356:11;36349:18;;35975:398;;;:::o;36379:379::-;36563:3;36585:147;36728:3;36585:147;:::i;:::-;36578:154;;36749:3;36742:10;;36379:379;;;:::o;36764:442::-;36913:4;36951:2;36940:9;36936:18;36928:26;;36964:71;37032:1;37021:9;37017:17;37008:6;36964:71;:::i;:::-;37045:72;37113:2;37102:9;37098:18;37089:6;37045:72;:::i;:::-;37127;37195:2;37184:9;37180:18;37171:6;37127:72;:::i;:::-;36764:442;;;;;;:::o;37212:180::-;37260:77;37257:1;37250:88;37357:4;37354:1;37347:15;37381:4;37378:1;37371:15;37398:180;37446:77;37443:1;37436:88;37543:4;37540:1;37533:15;37567:4;37564:1;37557:15;37584:143;37641:5;37672:6;37666:13;37657:22;;37688:33;37715:5;37688:33;:::i;:::-;37584:143;;;;:::o;37733:351::-;37803:6;37852:2;37840:9;37831:7;37827:23;37823:32;37820:119;;;37858:79;;:::i;:::-;37820:119;37978:1;38003:64;38059:7;38050:6;38039:9;38035:22;38003:64;:::i;:::-;37993:74;;37949:128;37733:351;;;;:::o;38090:85::-;38135:7;38164:5;38153:16;;38090:85;;;:::o;38181:158::-;38239:9;38272:61;38290:42;38299:32;38325:5;38299:32;:::i;:::-;38290:42;:::i;:::-;38272:61;:::i;:::-;38259:74;;38181:158;;;:::o;38345:147::-;38440:45;38479:5;38440:45;:::i;:::-;38435:3;38428:58;38345:147;;:::o;38498:114::-;38565:6;38599:5;38593:12;38583:22;;38498:114;;;:::o;38618:184::-;38717:11;38751:6;38746:3;38739:19;38791:4;38786:3;38782:14;38767:29;;38618:184;;;;:::o;38808:132::-;38875:4;38898:3;38890:11;;38928:4;38923:3;38919:14;38911:22;;38808:132;;;:::o;38946:108::-;39023:24;39041:5;39023:24;:::i;:::-;39018:3;39011:37;38946:108;;:::o;39060:179::-;39129:10;39150:46;39192:3;39184:6;39150:46;:::i;:::-;39228:4;39223:3;39219:14;39205:28;;39060:179;;;;:::o;39245:113::-;39315:4;39347;39342:3;39338:14;39330:22;;39245:113;;;:::o;39394:732::-;39513:3;39542:54;39590:5;39542:54;:::i;:::-;39612:86;39691:6;39686:3;39612:86;:::i;:::-;39605:93;;39722:56;39772:5;39722:56;:::i;:::-;39801:7;39832:1;39817:284;39842:6;39839:1;39836:13;39817:284;;;39918:6;39912:13;39945:63;40004:3;39989:13;39945:63;:::i;:::-;39938:70;;40031:60;40084:6;40031:60;:::i;:::-;40021:70;;39877:224;39864:1;39861;39857:9;39852:14;;39817:284;;;39821:14;40117:3;40110:10;;39518:608;;;39394:732;;;;:::o;40132:831::-;40395:4;40433:3;40422:9;40418:19;40410:27;;40447:71;40515:1;40504:9;40500:17;40491:6;40447:71;:::i;:::-;40528:80;40604:2;40593:9;40589:18;40580:6;40528:80;:::i;:::-;40655:9;40649:4;40645:20;40640:2;40629:9;40625:18;40618:48;40683:108;40786:4;40777:6;40683:108;:::i;:::-;40675:116;;40801:72;40869:2;40858:9;40854:18;40845:6;40801:72;:::i;:::-;40883:73;40951:3;40940:9;40936:19;40927:6;40883:73;:::i;:::-;40132:831;;;;;;;;:::o;40969:807::-;41218:4;41256:3;41245:9;41241:19;41233:27;;41270:71;41338:1;41327:9;41323:17;41314:6;41270:71;:::i;:::-;41351:72;41419:2;41408:9;41404:18;41395:6;41351:72;:::i;:::-;41433:80;41509:2;41498:9;41494:18;41485:6;41433:80;:::i;:::-;41523;41599:2;41588:9;41584:18;41575:6;41523:80;:::i;:::-;41613:73;41681:3;41670:9;41666:19;41657:6;41613:73;:::i;:::-;41696;41764:3;41753:9;41749:19;41740:6;41696:73;:::i;:::-;40969:807;;;;;;;;;:::o;41782:663::-;41870:6;41878;41886;41935:2;41923:9;41914:7;41910:23;41906:32;41903:119;;;41941:79;;:::i;:::-;41903:119;42061:1;42086:64;42142:7;42133:6;42122:9;42118:22;42086:64;:::i;:::-;42076:74;;42032:128;42199:2;42225:64;42281:7;42272:6;42261:9;42257:22;42225:64;:::i;:::-;42215:74;;42170:129;42338:2;42364:64;42420:7;42411:6;42400:9;42396:22;42364:64;:::i;:::-;42354:74;;42309:129;41782:663;;;;;:::o

Swarm Source

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