ETH Price: $3,257.72 (+3.70%)
Gas: 5 Gwei

Token

lpscanner.ai (LPS)
 

Overview

Max Total Supply

1,000,000 LPS

Holders

217

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,872.872696575487323592 LPS

Value
$0.00
0x464132D57420c1b1fCc36F7979B1c5126a13A9C5
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:
LPS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/** 
Telegram : https://t.me/LPScannerERC
Website : https://lpscanner.ai
Twitter : https://twitter.com/LPScanner
Medium : https://medium.com/@LPScanner/introducing-lp-watcher-ai-ede3897f5464
Bot : https://t.me/LPScannerBot
**/
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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 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;
        }
    }
}

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

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

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

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

contract LPS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD);
    address public ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    bool private swapping;
    
    uint256 public genesis_block;

    address public deployerAddress;
    address public lpLocker;

    address private devWallet;
    address private WatcherWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyWatcherfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellWatcherfee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("lpscanner.ai", "LPS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buydevfee = 20;
        uint256 _buyWatcherfee = 0;
        uint256 _buyLiquidityFee = 0;

        uint256 _selldevfee = 20;
        uint256 _sellWatcherfee = 0;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_0 * 1e18;

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

        buydevfee = _buydevfee;
        buyWatcherfee = _buyWatcherfee;

        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellWatcherfee = _sellWatcherfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet
        WatcherWallet = address(msg.sender);
        deployerAddress = address(msg.sender); 
        lpLocker = address(msg.sender); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0x000000000000000000000000000000000000dEaD), true);
        excludeFromFees(deployerAddress, true); // Deployer Address
        excludeFromFees(lpLocker, true); // LP Locker

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0x000000000000000000000000000000000000dEaD), true);
        excludeFromMaxTransaction(deployerAddress, true); // Deployer Address
        excludeFromMaxTransaction(lpLocker, true); // LP Locker

        /*
            _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;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _devfee,
        uint256 _Watcherfee,
        
        uint256 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyWatcherfee = _Watcherfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee + buyWatcherfee;
        require(buyTotalFees <= 30, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _Watcherfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellWatcherfee = _Watcherfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee + _Watcherfee;
        require(sellTotalFees <= 50, "Must keep fees at 10% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

        function updateWatcherWallet(address newWatcherWallet)
        external
        onlyOwner
    {
        emit WatcherWalletUpdated(newWatcherWallet, WatcherWallet);
        WatcherWallet = newWatcherWallet;
    }
    


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

    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(0x000000000000000000000000000000000000dEaD) &&
                !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.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        uint256 tokensForWatcher = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * selldevfee) / sellTotalFees;
                tokensForWatcher = (fees * selldevfee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buydevfee) / buyTotalFees;
                tokensForWatcher = (fees * buydevfee) / buyTotalFees;
            }

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

            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] = ETH;

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

    // make the swap
    uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
        tokenAmount,
        0, // accept any amount of WETH
        path,
        devWallet,
        block.timestamp
    );

    // Send ETH to the WatcherWallet
    payable(WatcherWallet).transfer(address(this).balance);
}


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForETH(contractBalance);
    }

}

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"WatcherWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyWatcherfee","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":"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":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellWatcherfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"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":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_Watcherfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_Watcherfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWatcherWallet","type":"address"}],"name":"updateWatcherWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600c81526020017f6c707363616e6e65722e616900000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c50530000000000000000000000000000000000000000000000000000000000815250816003908162000135919062000db3565b50806004908162000147919062000db3565b5050506200016a6200015e6200069b60201b60201c565b620006a360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200076960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f04565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000f47565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000f04565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200076960201b60201c565b600060149050600080600060149050600080600069d3c21bcecceda100000090506103e86014826200035b919062000fa3565b6200036791906200101d565b600c819055506103e86014826200037f919062000fa3565b6200038b91906200101d565b600e81905550612710600582620003a3919062000fa3565b620003af91906200101d565b600d81905550866011819055508560128190555084601381905550601354601154620003dc919062001055565b60108190555083601581905550826016819055508160178190555060175460155462000409919062001055565b60148190555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000535620005276200085360201b60201c565b60016200087d60201b60201c565b620005483060016200087d60201b60201c565b6200055d61dead60016200087d60201b60201c565b62000592600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087d60201b60201c565b620005c7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087d60201b60201c565b620005e9620005db6200085360201b60201c565b60016200076960201b60201c565b620005fc3060016200076960201b60201c565b6200061161dead60016200076960201b60201c565b62000646600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076960201b60201c565b6200067b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076960201b60201c565b6200068d3382620009b760201b60201c565b5050505050505050620011ed565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007796200069b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200079f6200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ef90620010f1565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088d6200069b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b36200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090390620010f1565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009ab919062001130565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a20906200119d565b60405180910390fd5b62000a3d6000838362000b2f60201b60201c565b806002600082825462000a51919062001055565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aa8919062001055565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0f9190620011d0565b60405180910390a362000b2b6000838362000b3460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bbb57607f821691505b60208210810362000bd15762000bd062000b73565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c3b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bfc565b62000c47868362000bfc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c9462000c8e62000c888462000c5f565b62000c69565b62000c5f565b9050919050565b6000819050919050565b62000cb08362000c73565b62000cc862000cbf8262000c9b565b84845462000c09565b825550505050565b600090565b62000cdf62000cd0565b62000cec81848462000ca5565b505050565b5b8181101562000d145762000d0860008262000cd5565b60018101905062000cf2565b5050565b601f82111562000d635762000d2d8162000bd7565b62000d388462000bec565b8101602085101562000d48578190505b62000d6062000d578562000bec565b83018262000cf1565b50505b505050565b600082821c905092915050565b600062000d886000198460080262000d68565b1980831691505092915050565b600062000da3838362000d75565b9150826002028217905092915050565b62000dbe8262000b39565b67ffffffffffffffff81111562000dda5762000dd962000b44565b5b62000de6825462000ba2565b62000df382828562000d18565b600060209050601f83116001811462000e2b576000841562000e16578287015190505b62000e22858262000d95565b86555062000e92565b601f19841662000e3b8662000bd7565b60005b8281101562000e655784890151825560018201915060208501945060208101905062000e3e565b8683101562000e85578489015162000e81601f89168262000d75565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ecc8262000e9f565b9050919050565b62000ede8162000ebf565b811462000eea57600080fd5b50565b60008151905062000efe8162000ed3565b92915050565b60006020828403121562000f1d5762000f1c62000e9a565b5b600062000f2d8482850162000eed565b91505092915050565b62000f418162000ebf565b82525050565b600060408201905062000f5e600083018562000f36565b62000f6d602083018462000f36565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fb08262000c5f565b915062000fbd8362000c5f565b925082820262000fcd8162000c5f565b9150828204841483151762000fe75762000fe662000f74565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200102a8262000c5f565b9150620010378362000c5f565b9250826200104a576200104962000fee565b5b828204905092915050565b6000620010628262000c5f565b91506200106f8362000c5f565b92508282019050808211156200108a576200108962000f74565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010d960208362001090565b9150620010e682620010a1565b602082019050919050565b600060208201905081810360008301526200110c81620010ca565b9050919050565b60008115159050919050565b6200112a8162001113565b82525050565b60006020820190506200114760008301846200111f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001185601f8362001090565b915062001192826200114d565b602082019050919050565b60006020820190508181036000830152620011b88162001176565b9050919050565b620011ca8162000c5f565b82525050565b6000602082019050620011e76000830184620011bf565b92915050565b60805160a051613f756200124460003960008181610f55015281816122160152818161245f0152818161266b01528181612753015261285a015260008181610bc901528181612d860152612dad0152613f756000f3fe60806040526004361061028c5760003560e01c80637571336a1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b806393ee19ea1161011357806393ee19ea1461079f57806395d89b41146107c8578063a9059cbb146107f3578063b3ac68b514610830578063bbc0c7421461085b578063c02466681461088657610293565b80637571336a146106b75780638095d564146106e05780638322fff2146107095780638a8c523c146107345780638da5cb5b1461074b578063924de9b71461077657610293565b8063313ce567116101fe57806365c1bef8116101b757806365c1bef8146105b75780636a486a8e146105e25780636ddd17131461060d57806370a0823114610638578063715018a614610675578063751039fc1461068c57610293565b8063313ce567146104a3578063489ae78d146104ce57806349bd5a5e146104f95780634a62bb65146105245780634c2693031461054f5780634fbee1931461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b9190612f0f565b60405180910390f35b34801561053057600080fd5b50610539610f77565b604051610546919061309e565b60405180910390f35b34801561055b57600080fd5b50610564610f8a565b604051610571919061316f565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906130b9565b610f90565b6040516105ae919061309e565b60405180910390f35b3480156105c357600080fd5b506105cc610fe6565b6040516105d9919061316f565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061309e565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906130b9565b611005565b60405161066c919061316f565b60405180910390f35b34801561068157600080fd5b5061068a61104d565b005b34801561069857600080fd5b506106a16110d5565b6040516106ae919061309e565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061326d565b611175565b005b3480156106ec57600080fd5b50610707600480360381019061070291906132ad565b61124c565b005b34801561071557600080fd5b5061071e61134b565b60405161072b9190612f0f565b60405180910390f35b34801561074057600080fd5b50610749611371565b005b34801561075757600080fd5b50610760611425565b60405161076d9190612f0f565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613300565b61144f565b005b3480156107ab57600080fd5b506107c660048036038101906107c191906130b9565b6114e8565b005b3480156107d457600080fd5b506107dd611624565b6040516107ea9190612fba565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613043565b6116b6565b604051610827919061309e565b60405180910390f35b34801561083c57600080fd5b506108456116d4565b604051610852919061316f565b60405180910390f35b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b611425565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d57611425565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60115481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b60165481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611055611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611073611425565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613419565b60405180910390fd5b6110d360006128a7565b565b60006110df611d3b565b73ffffffffffffffffffffffffffffffffffffffff166110fd611425565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b61117d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661119b611425565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611254611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611272611425565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f0919061362e565b6112fa919061362e565b601081905550601e6010541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611379611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611397611425565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611457611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611475611425565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6114f0611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661150e611425565b73ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7fa4444d18cc8e7ef7c5241e15cf1af389a10bfa8b12bdbd49512a16bc71f4c560405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600480546116339061339c565b80601f016020809104026020016040519081016040528092919081815260200182805461165f9061339c565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b60006116ca6116c3611d3b565b8484611f0c565b6001905092915050565b60125481565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611713611425565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611838611425565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611935611425565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c611425565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e611425565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d57612020611425565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e611425565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f83611005565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd83611005565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b600061241830611005565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f00000000000000000000000000000000000000000000000000000000000000008561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf730611005565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f000000000000000000000000000000000000000000000000000000000000000084611d43565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea26469706673582212207ad54e8425f3e133d0a090a278fc1cd4864382d3b67781be405ff6169ffdf32364736f6c63430008120033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80637571336a1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b806393ee19ea1161011357806393ee19ea1461079f57806395d89b41146107c8578063a9059cbb146107f3578063b3ac68b514610830578063bbc0c7421461085b578063c02466681461088657610293565b80637571336a146106b75780638095d564146106e05780638322fff2146107095780638a8c523c146107345780638da5cb5b1461074b578063924de9b71461077657610293565b8063313ce567116101fe57806365c1bef8116101b757806365c1bef8146105b75780636a486a8e146105e25780636ddd17131461060d57806370a0823114610638578063715018a614610675578063751039fc1461068c57610293565b8063313ce567146104a3578063489ae78d146104ce57806349bd5a5e146104f95780634a62bb65146105245780634c2693031461054f5780634fbee1931461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b9190612f0f565b60405180910390f35b34801561053057600080fd5b50610539610f77565b604051610546919061309e565b60405180910390f35b34801561055b57600080fd5b50610564610f8a565b604051610571919061316f565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906130b9565b610f90565b6040516105ae919061309e565b60405180910390f35b3480156105c357600080fd5b506105cc610fe6565b6040516105d9919061316f565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061309e565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906130b9565b611005565b60405161066c919061316f565b60405180910390f35b34801561068157600080fd5b5061068a61104d565b005b34801561069857600080fd5b506106a16110d5565b6040516106ae919061309e565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061326d565b611175565b005b3480156106ec57600080fd5b50610707600480360381019061070291906132ad565b61124c565b005b34801561071557600080fd5b5061071e61134b565b60405161072b9190612f0f565b60405180910390f35b34801561074057600080fd5b50610749611371565b005b34801561075757600080fd5b50610760611425565b60405161076d9190612f0f565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613300565b61144f565b005b3480156107ab57600080fd5b506107c660048036038101906107c191906130b9565b6114e8565b005b3480156107d457600080fd5b506107dd611624565b6040516107ea9190612fba565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613043565b6116b6565b604051610827919061309e565b60405180910390f35b34801561083c57600080fd5b506108456116d4565b604051610852919061316f565b60405180910390f35b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b611425565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d57611425565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60115481565b7f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b81565b600f60009054906101000a900460ff1681565b60165481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611055611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611073611425565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613419565b60405180910390fd5b6110d360006128a7565b565b60006110df611d3b565b73ffffffffffffffffffffffffffffffffffffffff166110fd611425565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b61117d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661119b611425565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611254611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611272611425565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f0919061362e565b6112fa919061362e565b601081905550601e6010541115611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611379611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611397611425565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611457611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611475611425565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6114f0611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661150e611425565b73ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7fa4444d18cc8e7ef7c5241e15cf1af389a10bfa8b12bdbd49512a16bc71f4c560405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600480546116339061339c565b80601f016020809104026020016040519081016040528092919081815260200182805461165f9061339c565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b60006116ca6116c3611d3b565b8484611f0c565b6001905092915050565b60125481565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611713611425565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611838611425565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611935611425565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c611425565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e611425565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d57612020611425565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e611425565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f83611005565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd83611005565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b600061241830611005565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f000000000000000000000000ad677d6fe85492a84d3b6ea73802211a20d2fb0b8561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf730611005565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d43565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea26469706673582212207ad54e8425f3e133d0a090a278fc1cd4864382d3b67781be405ff6169ffdf32364736f6c63430008120033

Deployed Bytecode Sourcemap

24911:12408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25363:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9767:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11934:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26121:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24984:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10887:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31880:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29950:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12585:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25289:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25087:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25733:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25042:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25580:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25905:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32314:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25873:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25838:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25660:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11058:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:103;;;;;;;;;;;;;:::i;:::-;;29254:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30497:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30868:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25183:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29090:112;;;;;;;;;;;;;:::i;:::-;;2351:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30760:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32081:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9986:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11398:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25764:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25620:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31690:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31281:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30233:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25465:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29445:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25699:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11636:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25507:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25326:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25799;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3260:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25941:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25547:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25363:23;;;;;;;;;;;;;:::o;9767:100::-;9821:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9767:100;:::o;11934:169::-;12017:4;12034:39;12043:12;:10;:12::i;:::-;12057:7;12066:6;12034:8;:39::i;:::-;12091:4;12084:11;;11934:169;;;;:::o;26121:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24984:51::-;;;:::o;10887:108::-;10948:7;10975:12;;10968:19;;10887:108;:::o;31880:189::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32016:9:::1;;;;;;;;;;;31985:41;;32002:12;31985:41;;;;;;;;;;;;32049:12;32037:9;;:24;;;;;;;;;;;;;;;;;;31880:189:::0;:::o;29950:275::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30087:4:::1;30079;30074:1;30058:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30057:26;;;;:::i;:::-;30056:35;;;;:::i;:::-;30046:6;:45;;30024:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;30210:6;30200;:17;;;;:::i;:::-;30177:20;:40;;;;29950:275:::0;:::o;12585:492::-;12725:4;12742:36;12752:6;12760:9;12771:6;12742:9;:36::i;:::-;12791:24;12818:11;:19;12830:6;12818:19;;;;;;;;;;;;;;;:33;12838:12;:10;:12::i;:::-;12818:33;;;;;;;;;;;;;;;;12791:60;;12890:6;12870:16;:26;;12862:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12977:57;12986:6;12994:12;:10;:12::i;:::-;13027:6;13008:16;:25;12977:8;:57::i;:::-;13065:4;13058:11;;;12585:492;;;;;:::o;25289:28::-;;;;:::o;25087:89::-;25133:42;25087:89;:::o;10729:93::-;10787:5;10812:2;10805:9;;10729:93;:::o;25733:24::-;;;;:::o;25042:38::-;;;:::o;25580:33::-;;;;;;;;;;;;;:::o;25905:29::-;;;;:::o;32314:126::-;32380:4;32404:19;:28;32424:7;32404:28;;;;;;;;;;;;;;;;;;;;;;;;;32397:35;;32314:126;;;:::o;25873:25::-;;;;:::o;25838:28::-;;;;:::o;25660:30::-;;;;;;;;;;;;;:::o;11058:127::-;11132:7;11159:9;:18;11169:7;11159:18;;;;;;;;;;;;;;;;11152:25;;11058:127;;;:::o;3002:103::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3067:30:::1;3094:1;3067:18;:30::i;:::-;3002:103::o:0;29254:121::-;29306:4;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29340:5:::1;29323:14;;:22;;;;;;;;;;;;;;;;;;29363:4;29356:11;;29254:121:::0;:::o;30497:167::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30652:4:::1;30610:31;:39;30642:6;30610:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30497:167:::0;;:::o;30868:405::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31038:7:::1;31026:9;:19;;;;31072:11;31056:13;:27;;;;31112:13;31094:15;:31;;;;31181:13;;31163:15;;31151:9;;:27;;;;:::i;:::-;:43;;;;:::i;:::-;31136:12;:58;;;;31229:2;31213:12;;:18;;31205:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30868:405:::0;;;:::o;25183:63::-;;;;;;;;;;;;;:::o;29090:112::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29161:4:::1;29145:13;;:20;;;;;;;;;;;;;;;;;;29190:4;29176:11;;:18;;;;;;;;;;;;;;;;;;29090:112::o:0;2351:87::-;2397:7;2424:6;;;;;;;;;;;2417:13;;2351:87;:::o;30760:100::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30845:7:::1;30831:11;;:21;;;;;;;;;;;;;;;;;;30760:100:::0;:::o;32081:217::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32233:13:::1;;;;;;;;;;;32194:53;;32215:16;32194:53;;;;;;;;;;;;32274:16;32258:13;;:32;;;;;;;;;;;;;;;;;;32081:217:::0;:::o;9986:104::-;10042:13;10075:7;10068:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9986:104;:::o;11398:175::-;11484:4;11501:42;11511:12;:10;:12::i;:::-;11525:9;11536:6;11501:9;:42::i;:::-;11561:4;11554:11;;11398:175;;;;:::o;25764:28::-;;;;:::o;25620:33::-;;;;;;;;;;;;;:::o;31690:182::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31806:8:::1;31775:19;:28;31795:7;31775:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31846:7;31830:34;;;31855:8;31830:34;;;;;;:::i;:::-;;;;;;;;31690:182:::0;;:::o;31281:401::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31443:7:::1;31430:10;:20;;;;31478:11;31461:14;:28;;;;31519:13;31500:16;:32;;;;31591:11;31572:16;;31559:10;;:29;;;;:::i;:::-;:43;;;;:::i;:::-;31543:13;:59;;;;31638:2;31621:13;;:19;;31613:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31281:401:::0;;;:::o;30233:256::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30373:4:::1;30365;30360:1;30344:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30343:26;;;;:::i;:::-;30342:35;;;;:::i;:::-;30332:6;:45;;30310:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;30474:6;30464;:17;;;;:::i;:::-;30452:9;:29;;;;30233:256:::0;:::o;25465:35::-;;;;:::o;29445:497::-;29553:4;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29632:6:::1;29627:1;29611:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29610:28;;;;:::i;:::-;29597:9;:41;;29575:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29787:4;29782:1;29766:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29765:26;;;;:::i;:::-;29752:9;:39;;29730:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29903:9;29882:18;:30;;;;29930:4;29923:11;;29445:497:::0;;;:::o;25699:27::-;;;;:::o;11636:151::-;11725:7;11752:11;:18;11764:5;11752:18;;;;;;;;;;;;;;;:27;11771:7;11752:27;;;;;;;;;;;;;;;;11745:34;;11636:151;;;;:::o;25507:33::-;;;;:::o;25326:30::-;;;;;;;;;;;;;:::o;25799:::-;;;;:::o;3260:201::-;2582:12;:10;:12::i;:::-;2571:23;;:7;:5;:7::i;:::-;:23;;;2563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3369:1:::1;3349:22;;:8;:22;;::::0;3341:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3425:28;3444:8;3425:18;:28::i;:::-;3260:201:::0;:::o;25941:31::-;;;;:::o;25547:24::-;;;;:::o;1024:98::-;1077:7;1104:10;1097:17;;1024:98;:::o;15426:380::-;15579:1;15562:19;;:5;:19;;;15554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15660:1;15641:21;;:7;:21;;;15633:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15744:6;15714:11;:18;15726:5;15714:18;;;;;;;;;;;;;;;:27;15733:7;15714:27;;;;;;;;;;;;;;;:36;;;;15782:7;15766:32;;15775:5;15766:32;;;15791:6;15766:32;;;;;;:::i;:::-;;;;;;;;15426:380;;;:::o;32448:3898::-;32596:1;32580:18;;:4;:18;;;32572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32673:1;32659:16;;:2;:16;;;32651:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32742:1;32732:6;:11;32728:93;;32760:28;32776:4;32782:2;32786:1;32760:15;:28::i;:::-;32803:7;;32728:93;32837:14;;;;;;;;;;;32833:1466;;;32898:7;:5;:7::i;:::-;32890:15;;:4;:15;;;;:49;;;;;32932:7;:5;:7::i;:::-;32926:13;;:2;:13;;;;32890:49;:86;;;;;32974:1;32960:16;;:2;:16;;;;32890:86;:164;;;;;33011:42;32997:57;;:2;:57;;;;32890:164;:194;;;;;33076:8;;;;;;;;;;;33075:9;32890:194;32868:1420;;;33124:13;;;;;;;;;;;33119:223;;33196:19;:25;33216:4;33196:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33225:19;:23;33245:2;33225:23;;;;;;;;;;;;;;;;;;;;;;;;;33196:52;33162:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;33119:223;33556:13;33548:21;;:4;:21;;;:82;;;;;33595:31;:35;33627:2;33595:35;;;;;;;;;;;;;;;;;;;;;;;;;33594:36;33548:82;33522:751;;;33717:20;;33707:6;:30;;33673:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33925:9;;33908:13;33918:2;33908:9;:13::i;:::-;33899:6;:22;;;;:::i;:::-;:35;;33865:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33522:751;;;34053:31;:35;34085:2;34053:35;;;;;;;;;;;;;;;;;;;;;;;;;34048:225;;34173:9;;34156:13;34166:2;34156:9;:13::i;:::-;34147:6;:22;;;;:::i;:::-;:35;;34113:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;34048:225;33522:751;32868:1420;32833:1466;34311:28;34342:24;34360:4;34342:9;:24::i;:::-;34311:55;;34379:12;34418:18;;34394:20;:42;;34379:57;;34467:7;:35;;;;;34491:11;;;;;;;;;;;34467:35;:61;;;;;34520:8;;;;;;;;;;;34519:9;34467:61;:97;;;;;34551:13;34545:19;;:2;:19;;;34467:97;:140;;;;;34582:19;:25;34602:4;34582:25;;;;;;;;;;;;;;;;;;;;;;;;;34581:26;34467:140;:181;;;;;34625:19;:23;34645:2;34625:23;;;;;;;;;;;;;;;;;;;;;;;;;34624:24;34467:181;34449:313;;;34686:4;34675:8;;:15;;;;;;;;;;;;;;;;;;34707:10;:8;:10::i;:::-;34745:5;34734:8;;:16;;;;;;;;;;;;;;;;;;34449:313;34774:12;34790:8;;;;;;;;;;;34789:9;34774:24;;34900:19;:25;34920:4;34900:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34929:19;:23;34949:2;34929:23;;;;;;;;;;;;;;;;;;;;;;;;;34900:52;34896:100;;;34979:5;34969:15;;34896:100;35008:12;35035:26;35076:20;35111:24;35228:7;35224:1069;;;35286:13;35280:19;;:2;:19;;;:40;;;;;35319:1;35303:13;;:17;35280:40;35276:727;;;35348:34;35378:3;35348:25;35359:13;;35348:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35341:41;;35450:13;;35430:16;;35423:4;:23;;;;:::i;:::-;35422:41;;;;:::i;:::-;35401:62;;35519:13;;35505:10;;35498:4;:17;;;;:::i;:::-;35497:35;;;;:::i;:::-;35482:50;;35592:13;;35578:10;;35571:4;:17;;;;:::i;:::-;35570:35;;;;:::i;:::-;35551:54;;35276:727;;;35675:13;35667:21;;:4;:21;;;:41;;;;;35707:1;35692:12;;:16;35667:41;35663:340;;;35736:33;35765:3;35736:24;35747:12;;35736:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35729:40;;35836:12;;35817:15;;35810:4;:22;;;;:::i;:::-;35809:39;;;;:::i;:::-;35788:60;;35904:12;;35891:9;;35884:4;:16;;;;:::i;:::-;35883:33;;;;:::i;:::-;35868:48;;35975:12;;35962:9;;35955:4;:16;;;;:::i;:::-;35954:33;;;;:::i;:::-;35935:52;;35663:340;35276:727;36029:1;36023:4;:7;36019:90;;;36051:42;36067:4;36081;36088;36051:15;:42::i;:::-;36019:90;36148:1;36127:18;:22;36123:128;;;36170:65;36194:4;36201:13;36216:18;36170:15;:65::i;:::-;36123:128;36277:4;36267:14;;;;;:::i;:::-;;;35224:1069;36305:33;36321:4;36327:2;36331:6;36305:15;:33::i;:::-;32561:3785;;;;;;;32448:3898;;;;:::o;3621:191::-;3695:16;3714:6;;;;;;;;;;;3695:25;;3740:8;3731:6;;:17;;;;;;;;;;;;;;;;;;3795:8;3764:40;;3785:8;3764:40;;;;;;;;;;;;3684:128;3621:191;:::o;13567:733::-;13725:1;13707:20;;:6;:20;;;13699:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13809:1;13788:23;;:9;:23;;;13780:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13864:47;13885:6;13893:9;13904:6;13864:20;:47::i;:::-;13924:21;13948:9;:17;13958:6;13948:17;;;;;;;;;;;;;;;;13924:41;;14001:6;13984:13;:23;;13976:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14122:6;14106:13;:22;14086:9;:17;14096:6;14086:17;;;;;;;;;;;;;;;:42;;;;14174:6;14150:9;:20;14160:9;14150:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14215:9;14198:35;;14207:6;14198:35;;;14226:6;14198:35;;;;;;:::i;:::-;;;;;;;;14246:46;14266:6;14274:9;14285:6;14246:19;:46::i;:::-;13688:612;13567:733;;;:::o;36975:339::-;37014:23;37040:24;37058:4;37040:9;:24::i;:::-;37014:50;;37098:1;37079:15;:20;37075:59;;37116:7;;;37075:59;37189:2;37168:18;;:23;;;;:::i;:::-;37150:15;:41;37146:115;;;37247:2;37226:18;;:23;;;;:::i;:::-;37208:41;;37146:115;37273:33;37290:15;37273:16;:33::i;:::-;37003:311;36975:339;:::o;20879:98::-;20937:7;20968:1;20964;:5;;;;:::i;:::-;20957:12;;20879:98;;;;:::o;21278:::-;21336:7;21367:1;21363;:5;;;;:::i;:::-;21356:12;;21278:98;;;;:::o;16406:125::-;;;;:::o;17135:124::-;;;;:::o;36350:615::-;36468:21;36506:1;36492:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36468:40;;36533:4;36515;36520:1;36515:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36555:3;;;;;;;;;;;36545:4;36550:1;36545:7;;;;;;;;:::i;:::-;;;;;;;:13;;;;;;;;;;;36567:62;36584:4;36599:15;36617:11;36567:8;:62::i;:::-;36660:15;:69;;;36740:11;36762:1;36803:4;36818:9;;;;;;;;;;;36838:15;36660:200;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36915:13;;;;;;;;;;;36907:31;;:54;36939:21;36907:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36405:560;36350:615;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:152::-;4555:9;4588:37;4619:5;4588:37;:::i;:::-;4575:50;;4479:152;;;:::o;4637:183::-;4750:63;4807:5;4750:63;:::i;:::-;4745:3;4738:76;4637:183;;:::o;4826:274::-;4945:4;4983:2;4972:9;4968:18;4960:26;;4996:97;5090:1;5079:9;5075:17;5066:6;4996:97;:::i;:::-;4826:274;;;;:::o;5106:118::-;5193:24;5211:5;5193:24;:::i;:::-;5188:3;5181:37;5106:118;;:::o;5230:222::-;5323:4;5361:2;5350:9;5346:18;5338:26;;5374:71;5442:1;5431:9;5427:17;5418:6;5374:71;:::i;:::-;5230:222;;;;:::o;5458:329::-;5517:6;5566:2;5554:9;5545:7;5541:23;5537:32;5534:119;;;5572:79;;:::i;:::-;5534:119;5692:1;5717:53;5762:7;5753:6;5742:9;5738:22;5717:53;:::i;:::-;5707:63;;5663:117;5458:329;;;;:::o;5793:619::-;5870:6;5878;5886;5935:2;5923:9;5914:7;5910:23;5906:32;5903:119;;;5941:79;;:::i;:::-;5903:119;6061:1;6086:53;6131:7;6122:6;6111:9;6107:22;6086:53;:::i;:::-;6076:63;;6032:117;6188:2;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6159:118;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;5793:619;;;;;:::o;6418:86::-;6453:7;6493:4;6486:5;6482:16;6471:27;;6418:86;;;:::o;6510:112::-;6593:22;6609:5;6593:22;:::i;:::-;6588:3;6581:35;6510:112;;:::o;6628:214::-;6717:4;6755:2;6744:9;6740:18;6732:26;;6768:67;6832:1;6821:9;6817:17;6808:6;6768:67;:::i;:::-;6628:214;;;;:::o;6848:116::-;6918:21;6933:5;6918:21;:::i;:::-;6911:5;6908:32;6898:60;;6954:1;6951;6944:12;6898:60;6848:116;:::o;6970:133::-;7013:5;7051:6;7038:20;7029:29;;7067:30;7091:5;7067:30;:::i;:::-;6970:133;;;;:::o;7109:468::-;7174:6;7182;7231:2;7219:9;7210:7;7206:23;7202:32;7199:119;;;7237:79;;:::i;:::-;7199:119;7357:1;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7328:117;7484:2;7510:50;7552:7;7543:6;7532:9;7528:22;7510:50;:::i;:::-;7500:60;;7455:115;7109:468;;;;;:::o;7583:619::-;7660:6;7668;7676;7725:2;7713:9;7704:7;7700:23;7696:32;7693:119;;;7731:79;;:::i;:::-;7693:119;7851:1;7876:53;7921:7;7912:6;7901:9;7897:22;7876:53;:::i;:::-;7866:63;;7822:117;7978:2;8004:53;8049:7;8040:6;8029:9;8025:22;8004:53;:::i;:::-;7994:63;;7949:118;8106:2;8132:53;8177:7;8168:6;8157:9;8153:22;8132:53;:::i;:::-;8122:63;;8077:118;7583:619;;;;;:::o;8208:323::-;8264:6;8313:2;8301:9;8292:7;8288:23;8284:32;8281:119;;;8319:79;;:::i;:::-;8281:119;8439:1;8464:50;8506:7;8497:6;8486:9;8482:22;8464:50;:::i;:::-;8454:60;;8410:114;8208:323;;;;:::o;8537:474::-;8605:6;8613;8662:2;8650:9;8641:7;8637:23;8633:32;8630:119;;;8668:79;;:::i;:::-;8630:119;8788:1;8813:53;8858:7;8849:6;8838:9;8834:22;8813:53;:::i;:::-;8803:63;;8759:117;8915:2;8941:53;8986:7;8977:6;8966:9;8962:22;8941:53;:::i;:::-;8931:63;;8886:118;8537:474;;;;;:::o;9017:180::-;9065:77;9062:1;9055:88;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9203:320;9247:6;9284:1;9278:4;9274:12;9264:22;;9331:1;9325:4;9321:12;9352:18;9342:81;;9408:4;9400:6;9396:17;9386:27;;9342:81;9470:2;9462:6;9459:14;9439:18;9436:38;9433:84;;9489:18;;:::i;:::-;9433:84;9254:269;9203:320;;;:::o;9529:182::-;9669:34;9665:1;9657:6;9653:14;9646:58;9529:182;:::o;9717:366::-;9859:3;9880:67;9944:2;9939:3;9880:67;:::i;:::-;9873:74;;9956:93;10045:3;9956:93;:::i;:::-;10074:2;10069:3;10065:12;10058:19;;9717:366;;;:::o;10089:419::-;10255:4;10293:2;10282:9;10278:18;10270:26;;10342:9;10336:4;10332:20;10328:1;10317:9;10313:17;10306:47;10370:131;10496:4;10370:131;:::i;:::-;10362:139;;10089:419;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:410;10740:7;10763:20;10781:1;10763:20;:::i;:::-;10758:25;;10797:20;10815:1;10797:20;:::i;:::-;10792:25;;10852:1;10849;10845:9;10874:30;10892:11;10874:30;:::i;:::-;10863:41;;11053:1;11044:7;11040:15;11037:1;11034:22;11014:1;11007:9;10987:83;10964:139;;11083:18;;:::i;:::-;10964:139;10748:362;10700:410;;;;:::o;11116:180::-;11164:77;11161:1;11154:88;11261:4;11258:1;11251:15;11285:4;11282:1;11275:15;11302:185;11342:1;11359:20;11377:1;11359:20;:::i;:::-;11354:25;;11393:20;11411:1;11393:20;:::i;:::-;11388:25;;11432:1;11422:35;;11437:18;;:::i;:::-;11422:35;11479:1;11476;11472:9;11467:14;;11302:185;;;;:::o;11493:234::-;11633:34;11629:1;11621:6;11617:14;11610:58;11702:17;11697:2;11689:6;11685:15;11678:42;11493:234;:::o;11733:366::-;11875:3;11896:67;11960:2;11955:3;11896:67;:::i;:::-;11889:74;;11972:93;12061:3;11972:93;:::i;:::-;12090:2;12085:3;12081:12;12074:19;;11733:366;;;:::o;12105:419::-;12271:4;12309:2;12298:9;12294:18;12286:26;;12358:9;12352:4;12348:20;12344:1;12333:9;12329:17;12322:47;12386:131;12512:4;12386:131;:::i;:::-;12378:139;;12105:419;;;:::o;12530:227::-;12670:34;12666:1;12658:6;12654:14;12647:58;12739:10;12734:2;12726:6;12722:15;12715:35;12530:227;:::o;12763:366::-;12905:3;12926:67;12990:2;12985:3;12926:67;:::i;:::-;12919:74;;13002:93;13091:3;13002:93;:::i;:::-;13120:2;13115:3;13111:12;13104:19;;12763:366;;;:::o;13135:419::-;13301:4;13339:2;13328:9;13324:18;13316:26;;13388:9;13382:4;13378:20;13374:1;13363:9;13359:17;13352:47;13416:131;13542:4;13416:131;:::i;:::-;13408:139;;13135:419;;;:::o;13560:191::-;13600:3;13619:20;13637:1;13619:20;:::i;:::-;13614:25;;13653:20;13671:1;13653:20;:::i;:::-;13648:25;;13696:1;13693;13689:9;13682:16;;13717:3;13714:1;13711:10;13708:36;;;13724:18;;:::i;:::-;13708:36;13560:191;;;;:::o;13757:179::-;13897:31;13893:1;13885:6;13881:14;13874:55;13757:179;:::o;13942:366::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:419::-;14480:4;14518:2;14507:9;14503:18;14495:26;;14567:9;14561:4;14557:20;14553:1;14542:9;14538:17;14531:47;14595:131;14721:4;14595:131;:::i;:::-;14587:139;;14314:419;;;:::o;14739:223::-;14879:34;14875:1;14867:6;14863:14;14856:58;14948:6;14943:2;14935:6;14931:15;14924:31;14739:223;:::o;14968:366::-;15110:3;15131:67;15195:2;15190:3;15131:67;:::i;:::-;15124:74;;15207:93;15296:3;15207:93;:::i;:::-;15325:2;15320:3;15316:12;15309:19;;14968:366;;;:::o;15340:419::-;15506:4;15544:2;15533:9;15529:18;15521:26;;15593:9;15587:4;15583:20;15579:1;15568:9;15564:17;15557:47;15621:131;15747:4;15621:131;:::i;:::-;15613:139;;15340:419;;;:::o;15765:240::-;15905:34;15901:1;15893:6;15889:14;15882:58;15974:23;15969:2;15961:6;15957:15;15950:48;15765:240;:::o;16011:366::-;16153:3;16174:67;16238:2;16233:3;16174:67;:::i;:::-;16167:74;;16250:93;16339:3;16250:93;:::i;:::-;16368:2;16363:3;16359:12;16352:19;;16011:366;;;:::o;16383:419::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16636:9;16630:4;16626:20;16622:1;16611:9;16607:17;16600:47;16664:131;16790:4;16664:131;:::i;:::-;16656:139;;16383:419;;;:::o;16808:239::-;16948:34;16944:1;16936:6;16932:14;16925:58;17017:22;17012:2;17004:6;17000:15;16993:47;16808:239;:::o;17053:366::-;17195:3;17216:67;17280:2;17275:3;17216:67;:::i;:::-;17209:74;;17292:93;17381:3;17292:93;:::i;:::-;17410:2;17405:3;17401:12;17394:19;;17053:366;;;:::o;17425:419::-;17591:4;17629:2;17618:9;17614:18;17606:26;;17678:9;17672:4;17668:20;17664:1;17653:9;17649:17;17642:47;17706:131;17832:4;17706:131;:::i;:::-;17698:139;;17425:419;;;:::o;17850:225::-;17990:34;17986:1;17978:6;17974:14;17967:58;18059:8;18054:2;18046:6;18042:15;18035:33;17850:225;:::o;18081:366::-;18223:3;18244:67;18308:2;18303:3;18244:67;:::i;:::-;18237:74;;18320:93;18409:3;18320:93;:::i;:::-;18438:2;18433:3;18429:12;18422:19;;18081:366;;;:::o;18453:419::-;18619:4;18657:2;18646:9;18642:18;18634:26;;18706:9;18700:4;18696:20;18692:1;18681:9;18677:17;18670:47;18734:131;18860:4;18734:131;:::i;:::-;18726:139;;18453:419;;;:::o;18878:223::-;19018:34;19014:1;19006:6;19002:14;18995:58;19087:6;19082:2;19074:6;19070:15;19063:31;18878:223;:::o;19107:366::-;19249:3;19270:67;19334:2;19329:3;19270:67;:::i;:::-;19263:74;;19346:93;19435:3;19346:93;:::i;:::-;19464:2;19459:3;19455:12;19448:19;;19107:366;;;:::o;19479:419::-;19645:4;19683:2;19672:9;19668:18;19660:26;;19732:9;19726:4;19722:20;19718:1;19707:9;19703:17;19696:47;19760:131;19886:4;19760:131;:::i;:::-;19752:139;;19479:419;;;:::o;19904:221::-;20044:34;20040:1;20032:6;20028:14;20021:58;20113:4;20108:2;20100:6;20096:15;20089:29;19904:221;:::o;20131:366::-;20273:3;20294:67;20358:2;20353:3;20294:67;:::i;:::-;20287:74;;20370:93;20459:3;20370:93;:::i;:::-;20488:2;20483:3;20479:12;20472:19;;20131:366;;;:::o;20503:419::-;20669:4;20707:2;20696:9;20692:18;20684:26;;20756:9;20750:4;20746:20;20742:1;20731:9;20727:17;20720:47;20784:131;20910:4;20784:131;:::i;:::-;20776:139;;20503:419;;;:::o;20928:224::-;21068:34;21064:1;21056:6;21052:14;21045:58;21137:7;21132:2;21124:6;21120:15;21113:32;20928:224;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:222::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:5;22159:2;22151:6;22147:15;22140:30;21955:222;:::o;22183:366::-;22325:3;22346:67;22410:2;22405:3;22346:67;:::i;:::-;22339:74;;22422:93;22511:3;22422:93;:::i;:::-;22540:2;22535:3;22531:12;22524:19;;22183:366;;;:::o;22555:419::-;22721:4;22759:2;22748:9;22744:18;22736:26;;22808:9;22802:4;22798:20;22794:1;22783:9;22779:17;22772:47;22836:131;22962:4;22836:131;:::i;:::-;22828:139;;22555:419;;;:::o;22980:172::-;23120:24;23116:1;23108:6;23104:14;23097:48;22980:172;:::o;23158:366::-;23300:3;23321:67;23385:2;23380:3;23321:67;:::i;:::-;23314:74;;23397:93;23486:3;23397:93;:::i;:::-;23515:2;23510:3;23506:12;23499:19;;23158:366;;;:::o;23530:419::-;23696:4;23734:2;23723:9;23719:18;23711:26;;23783:9;23777:4;23773:20;23769:1;23758:9;23754:17;23747:47;23811:131;23937:4;23811:131;:::i;:::-;23803:139;;23530:419;;;:::o;23955:240::-;24095:34;24091:1;24083:6;24079:14;24072:58;24164:23;24159:2;24151:6;24147:15;24140:48;23955:240;:::o;24201:366::-;24343:3;24364:67;24428:2;24423:3;24364:67;:::i;:::-;24357:74;;24440:93;24529:3;24440:93;:::i;:::-;24558:2;24553:3;24549:12;24542:19;;24201:366;;;:::o;24573:419::-;24739:4;24777:2;24766:9;24762:18;24754:26;;24826:9;24820:4;24816:20;24812:1;24801:9;24797:17;24790:47;24854:131;24980:4;24854:131;:::i;:::-;24846:139;;24573:419;;;:::o;24998:169::-;25138:21;25134:1;25126:6;25122:14;25115:45;24998:169;:::o;25173:366::-;25315:3;25336:67;25400:2;25395:3;25336:67;:::i;:::-;25329:74;;25412:93;25501:3;25412:93;:::i;:::-;25530:2;25525:3;25521:12;25514:19;;25173:366;;;:::o;25545:419::-;25711:4;25749:2;25738:9;25734:18;25726:26;;25798:9;25792:4;25788:20;25784:1;25773:9;25769:17;25762:47;25826:131;25952:4;25826:131;:::i;:::-;25818:139;;25545:419;;;:::o;25970:194::-;26010:4;26030:20;26048:1;26030:20;:::i;:::-;26025:25;;26064:20;26082:1;26064:20;:::i;:::-;26059:25;;26108:1;26105;26101:9;26093:17;;26132:1;26126:4;26123:11;26120:37;;;26137:18;;:::i;:::-;26120:37;25970:194;;;;:::o;26170:225::-;26310:34;26306:1;26298:6;26294:14;26287:58;26379:8;26374:2;26366:6;26362:15;26355:33;26170:225;:::o;26401:366::-;26543:3;26564:67;26628:2;26623:3;26564:67;:::i;:::-;26557:74;;26640:93;26729:3;26640:93;:::i;:::-;26758:2;26753:3;26749:12;26742:19;;26401:366;;;:::o;26773:419::-;26939:4;26977:2;26966:9;26962:18;26954:26;;27026:9;27020:4;27016:20;27012:1;27001:9;26997:17;26990:47;27054:131;27180:4;27054:131;:::i;:::-;27046:139;;26773:419;;;:::o;27198:180::-;27246:77;27243:1;27236:88;27343:4;27340:1;27333:15;27367:4;27364:1;27357:15;27384:180;27432:77;27429:1;27422:88;27529:4;27526:1;27519:15;27553:4;27550:1;27543:15;27570:85;27615:7;27644:5;27633:16;;27570:85;;;:::o;27661:158::-;27719:9;27752:61;27770:42;27779:32;27805:5;27779:32;:::i;:::-;27770:42;:::i;:::-;27752:61;:::i;:::-;27739:74;;27661:158;;;:::o;27825:147::-;27920:45;27959:5;27920:45;:::i;:::-;27915:3;27908:58;27825:147;;:::o;27978:114::-;28045:6;28079:5;28073:12;28063:22;;27978:114;;;:::o;28098:184::-;28197:11;28231:6;28226:3;28219:19;28271:4;28266:3;28262:14;28247:29;;28098:184;;;;:::o;28288:132::-;28355:4;28378:3;28370:11;;28408:4;28403:3;28399:14;28391:22;;28288:132;;;:::o;28426:108::-;28503:24;28521:5;28503:24;:::i;:::-;28498:3;28491:37;28426:108;;:::o;28540:179::-;28609:10;28630:46;28672:3;28664:6;28630:46;:::i;:::-;28708:4;28703:3;28699:14;28685:28;;28540:179;;;;:::o;28725:113::-;28795:4;28827;28822:3;28818:14;28810:22;;28725:113;;;:::o;28874:732::-;28993:3;29022:54;29070:5;29022:54;:::i;:::-;29092:86;29171:6;29166:3;29092:86;:::i;:::-;29085:93;;29202:56;29252:5;29202:56;:::i;:::-;29281:7;29312:1;29297:284;29322:6;29319:1;29316:13;29297:284;;;29398:6;29392:13;29425:63;29484:3;29469:13;29425:63;:::i;:::-;29418:70;;29511:60;29564:6;29511:60;:::i;:::-;29501:70;;29357:224;29344:1;29341;29337:9;29332:14;;29297:284;;;29301:14;29597:3;29590:10;;28998:608;;;28874:732;;;;:::o;29612:831::-;29875:4;29913:3;29902:9;29898:19;29890:27;;29927:71;29995:1;29984:9;29980:17;29971:6;29927:71;:::i;:::-;30008:80;30084:2;30073:9;30069:18;30060:6;30008:80;:::i;:::-;30135:9;30129:4;30125:20;30120:2;30109:9;30105:18;30098:48;30163:108;30266:4;30257:6;30163:108;:::i;:::-;30155:116;;30281:72;30349:2;30338:9;30334:18;30325:6;30281:72;:::i;:::-;30363:73;30431:3;30420:9;30416:19;30407:6;30363:73;:::i;:::-;29612:831;;;;;;;;:::o

Swarm Source

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