ETH Price: $3,252.76 (+3.12%)
Gas: 4 Gwei

Token

Snailbrook (SNAIL)
 

Overview

Max Total Supply

1,000,000,000 SNAIL

Holders

223

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Snailbrook

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-29
*/

/**

Snailbrook is a town built by Elon Musk in Texas. It's made for Space X and Boring employees. 

Telegram: https://t.me/SnailbrookERC

Twitter: https://twitter.com/SnailbrookERC

https://www.dailymail.co.uk/news/article-11855297/See-images-Elon-Musks-Texas-utopia-town-Snailbrook.html

*/


// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Snailbrook", "SNAIL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

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

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

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

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f536e61696c62726f6f6b000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f534e41494c00000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b0d565b5080600490805190602001906200014792919062000b0d565b5050506200016a6200015e620005cd60201b60201c565b620005d560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c27565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c27565b6040518363ffffffff1660e01b8152600401620002e992919062000c6a565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c27565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069b60201b60201c565b6200038c60a05160016200078560201b60201c565b6000806000600f905060006014905060008060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550614e20600a82620003e5919062000cd0565b620003f1919062000d60565b60098190555086601581905550856016819055508460178190555060175460165460155462000421919062000d98565b6200042d919062000d98565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045d919062000d98565b62000469919062000d98565b60188190555073e7e8e6ab08860cda0b228cab3dca2859a1326501600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e7e8e6ab08860cda0b228cab3dca2859a1326501600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053b6200052d6200082660201b60201c565b60016200085060201b60201c565b6200054e3060016200085060201b60201c565b6200056361dead60016200085060201b60201c565b62000585620005776200082660201b60201c565b60016200069b60201b60201c565b620005983060016200069b60201b60201c565b620005ad61dead60016200069b60201b60201c565b620005bf33826200098a60201b60201c565b505050505050505062000fb7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ab620005cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d16200082660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007219062000e56565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000860620005cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008866200082660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d69062000e56565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097e919062000e95565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f49062000f02565b60405180910390fd5b62000a116000838362000b0360201b60201c565b806002600082825462000a25919062000d98565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7c919062000d98565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae3919062000f35565b60405180910390a362000aff6000838362000b0860201b60201c565b5050565b505050565b505050565b82805462000b1b9062000f81565b90600052602060002090601f01602090048101928262000b3f576000855562000b8b565b82601f1062000b5a57805160ff191683800117855562000b8b565b8280016001018555821562000b8b579182015b8281111562000b8a57825182559160200191906001019062000b6d565b5b50905062000b9a919062000b9e565b5090565b5b8082111562000bb957600081600090555060010162000b9f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bef8262000bc2565b9050919050565b62000c018162000be2565b811462000c0d57600080fd5b50565b60008151905062000c218162000bf6565b92915050565b60006020828403121562000c405762000c3f62000bbd565b5b600062000c508482850162000c10565b91505092915050565b62000c648162000be2565b82525050565b600060408201905062000c81600083018562000c59565b62000c90602083018462000c59565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cdd8262000c97565b915062000cea8362000c97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d265762000d2562000ca1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6d8262000c97565b915062000d7a8362000c97565b92508262000d8d5762000d8c62000d31565b5b828204905092915050565b600062000da58262000c97565b915062000db28362000c97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dea5762000de962000ca1565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3e60208362000df5565b915062000e4b8262000e06565b602082019050919050565b6000602082019050818103600083015262000e718162000e2f565b9050919050565b60008115159050919050565b62000e8f8162000e78565b82525050565b600060208201905062000eac600083018462000e84565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eea601f8362000df5565b915062000ef78262000eb2565b602082019050919050565b6000602082019050818103600083015262000f1d8162000edb565b9050919050565b62000f2f8162000c97565b82525050565b600060208201905062000f4c600083018462000f24565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9a57607f821691505b6020821081141562000fb15762000fb062000f52565b5b50919050565b60805160a051615bca6200103f600039600081816113ec01528181611bfc01528181612745015281816127fc0152818161282901528181612e6d01528181613f710152818161402a0152614057015260008181610f9001528181612e15015281816141cd015281816142ae015281816142d50152818161437101526143980152615bca6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459b565b610f51565b60405161041c91906145f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614611565b610f6f565b60405161045991906145f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614611565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061470f565b61121e565b6040516105ea91906145f6565b60405180910390f35b3480156105ff57600080fd5b50610608611316565b6040516106159190614771565b60405180910390f35b34801561062a57600080fd5b5061063361131c565b60405161064091906146c7565b60405180910390f35b34801561065557600080fd5b5061065e611322565b60405161066b91906145f6565b60405180910390f35b34801561068057600080fd5b50610689611335565b60405161069691906147a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459b565b61133e565b6040516106d391906145f6565b60405180910390f35b3480156106e857600080fd5b506106f16113ea565b6040516106fe9190614771565b60405180910390f35b34801561071357600080fd5b5061071c61140e565b60405161072991906145f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614611565b611421565b60405161076691906145f6565b60405180910390f35b34801561077b57600080fd5b50610784611477565b60405161079191906146c7565b60405180910390f35b3480156107a657600080fd5b506107af61147d565b6040516107bc91906145f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614611565b611490565b6040516107f991906146c7565b60405180910390f35b34801561080e57600080fd5b506108176114d8565b005b34801561082557600080fd5b50610840600480360381019061083b91906147ef565b611560565b005b34801561084e57600080fd5b506108576116a0565b60405161086491906145f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614842565b611740565b005b3480156108a257600080fd5b506108ab611817565b6040516108b89190614771565b60405180910390f35b3480156108cd57600080fd5b506108d661183d565b6040516108e391906146c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614882565b611843565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614771565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614771565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d5565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614842565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459b565b611caf565b604051610b0a91906145f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459b565b611da0565b604051610b7291906145f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614611565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614611565b611efa565b604051610bd891906145f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614842565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614882565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e2565b612151565b005b348015610c9357600080fd5b50610c9c61225f565b604051610ca991906145f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612272565b604051610cd491906146c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e2565b612278565b604051610d1191906145f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cd565b604051610d3c91906146c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614902565b6123d3565b604051610d7991906146c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245a565b604051610da491906146c7565b60405180910390f35b348015610db957600080fd5b50610dc2612460565b604051610dcf91906145f6565b60405180910390f35b348015610de457600080fd5b50610ded612500565b604051610dfa91906146c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614611565b612506565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e2565b61260a565b604051610eb691906145f6565b60405180910390f35b606060038054610ece90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614971565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149ef565b60405180910390fd5b670de0b6b3a7640000606460016111a1610fb2565b6111ab9190614a3e565b6111b59190614ac7565b6111bf9190614ac7565b811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890614b6a565b60405180910390fd5b670de0b6b3a7640000816112159190614a3e565b60088190555050565b600061122b848484612ab5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112766128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614bfc565b60405180910390fd5b61130a856113026128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e061134b6128e2565b8484600160006113596128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113db9190614c1c565b6128ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e06128e2565b73ffffffffffffffffffffffffffffffffffffffff166114fe6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906149ef565b60405180910390fd5b61155e600061384d565b565b6115686128e2565b73ffffffffffffffffffffffffffffffffffffffff166115866119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906149ef565b60405180910390fd5b610258831015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614ce4565b60405180910390fd5b6103e88211158015611634575060008210155b611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116aa6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c86119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117486128e2565b73ffffffffffffffffffffffffffffffffffffffff166117666119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166118696119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906149ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e79190614c1c565b6118f19190614c1c565b601481905550600a601454111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de2565b60405180910390fd5b505050565b61194a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614971565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e74565b60405180910390fd5b611c938282613913565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f06565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab5565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1c565b6121009190614c1c565b601881905550600a601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614de2565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149ef565b60405180910390fd5b670de0b6b3a7640000606460016121e2610fb2565b6121ec9190614a3e565b6121f69190614ac7565b6122009190614ac7565b811015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614f98565b60405180910390fd5b670de0b6b3a7640000816122569190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122826128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a06119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906149ef565b60405180910390fd5b620186a06001612304610fb2565b61230e9190614a3e565b6123189190614ac7565b82101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061502a565b60405180910390fd5b6103e86005612367610fb2565b6123719190614a3e565b61237b9190614ac7565b8211156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906150bc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124886119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250e6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99061514e565b60405180910390fd5b6125fb8161384d565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149ef565b60405180910390fd5b600f546010546126989190614c1c565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d0906151ba565b60405180910390fd5b6103e882111561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127159061524c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127809190614771565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615281565b905060006127ec6127106127de86856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115612825576128247f000000000000000000000000000000000000000000000000000000000000000061dead836139e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906153b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa891906146c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906154d6565b60405180910390fd5b6000811415612baf57612baa838360006139e0565b613848565b601160009054906101000a900460ff161561327257612bcc6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3a5750612c0a6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc65750600560149054906101000a900460ff16155b1561327157601160019054906101000a900460ff16612dc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690615542565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8857612ddd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906155fa565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d257600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c9061568c565b60405180910390fd5b600a5461308183611490565b8261308c9190614c1c565b11156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c4906156f8565b60405180910390fd5b613270565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c4576008548111156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b69061578a565b60405180910390fd5b61326f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326e57600a5461322183611490565b8261322c9190614c1c565b111561326d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613264906156f8565b60405180910390fd5b5b5b5b5b5b600061327d30611490565b9050600060095482101590508080156132a25750601160029054906101000a900460ff165b80156132bb5750600560149054906101000a900460ff16155b80156133115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613401576001600560146101000a81548160ff0219169083151502179055506133e5613c61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347f5750600c60009054906101000a900460ff165b801561349a5750600d54600e546134969190614c1c565b4210155b80156134f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ff576134fd613f48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135bf57600090505b6000811561383857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362257506000601854115b156136ef5761364f6064613641601854886139b490919063ffffffff16565b6139ca90919063ffffffff16565b9050601854601a54826136629190614a3e565b61366c9190614ac7565b601d600082825461367d9190614c1c565b92505081905550601854601b54826136959190614a3e565b61369f9190614ac7565b601e60008282546136b09190614c1c565b92505081905550601854601954826136c89190614a3e565b6136d29190614ac7565b601c60008282546136e39190614c1c565b92505081905550613814565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374a57506000601454115b15613813576137776064613769601454886139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506014546016548261378a9190614a3e565b6137949190614ac7565b601d60008282546137a59190614c1c565b92505081905550601454601754826137bd9190614a3e565b6137c79190614ac7565b601e60008282546137d89190614c1c565b92505081905550601454601554826137f09190614a3e565b6137fa9190614ac7565b601c600082825461380b9190614c1c565b925050819055505b5b6000811115613829576138288730836139e0565b5b808561383591906157aa565b94505b6138438787876139e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c29190614a3e565b905092915050565b600081836139d89190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4790615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab7906154d6565b60405180910390fd5b613acb83838361410e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890615850565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be49190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4891906146c7565b60405180910390a3613c5b848484614113565b50505050565b6000613c6c30611490565b90506000601e54601c54601d54613c839190614c1c565b613c8d9190614c1c565b9050600080831480613c9f5750600082145b15613cac57505050613f46565b6014600954613cbb9190614a3e565b831115613cd4576014600954613cd19190614a3e565b92505b6000600283601d5486613ce79190614a3e565b613cf19190614ac7565b613cfb9190614ac7565b90506000613d12828661411890919063ffffffff16565b90506000479050613d228261412e565b6000613d37824761411890919063ffffffff16565b90506000613d6287613d54601c54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000613d8d88613d7f601e54866139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000818385613d9e91906157aa565b613da891906157aa565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e08906158a1565b60006040518083038185875af1925050503d8060008114613e45576040519150601f19603f3d011682016040523d82523d6000602084013e613e4a565b606091505b505080985050600087118015613e605750600081115b15613ead57613e6f878261436b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea4939291906158b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef3906158a1565b60006040518083038185875af1925050503d8060008114613f30576040519150601f19603f3d011682016040523d82523d6000602084013e613f35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fac9190614771565b602060405180830381865afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed9190615281565b9050600061401a61271061400c600b54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115614053576140527f000000000000000000000000000000000000000000000000000000000000000061dead836139e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c057600080fd5b505af11580156140d4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412691906157aa565b905092915050565b6000600267ffffffffffffffff81111561414b5761414a6158ed565b5b6040519080825280602002602001820160405280156141795781602001602082028036833780820191505090505b50905030816000815181106141915761419061591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425a9190615960565b8160018151811061426e5761426d61591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d3307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614335959493929190615a86565b600060405180830381600087803b15801561434f57600080fd5b505af1158015614363573d6000803e3d6000fd5b505050505050565b614396307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fd96959493929190615ae0565b60606040518083038185885af115801561441b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144409190615b41565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b282614447565b6144bc8185614452565b93506144cc818560208601614463565b6144d581614496565b840191505092915050565b600060208201905081810360008301526144fa81846144a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453282614507565b9050919050565b61454281614527565b811461454d57600080fd5b50565b60008135905061455f81614539565b92915050565b6000819050919050565b61457881614565565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b600080604083850312156145b2576145b1614502565b5b60006145c085828601614550565b92505060206145d185828601614586565b9150509250929050565b60008115159050919050565b6145f0816145db565b82525050565b600060208201905061460b60008301846145e7565b92915050565b60006020828403121561462757614626614502565b5b600061463584828501614550565b91505092915050565b6000819050919050565b600061466361465e61465984614507565b61463e565b614507565b9050919050565b600061467582614648565b9050919050565b60006146878261466a565b9050919050565b6146978161467c565b82525050565b60006020820190506146b2600083018461468e565b92915050565b6146c181614565565b82525050565b60006020820190506146dc60008301846146b8565b92915050565b6000602082840312156146f8576146f7614502565b5b600061470684828501614586565b91505092915050565b60008060006060848603121561472857614727614502565b5b600061473686828701614550565b935050602061474786828701614550565b925050604061475886828701614586565b9150509250925092565b61476b81614527565b82525050565b60006020820190506147866000830184614762565b92915050565b600060ff82169050919050565b6147a28161478c565b82525050565b60006020820190506147bd6000830184614799565b92915050565b6147cc816145db565b81146147d757600080fd5b50565b6000813590506147e9816147c3565b92915050565b60008060006060848603121561480857614807614502565b5b600061481686828701614586565b935050602061482786828701614586565b9250506040614838868287016147da565b9150509250925092565b6000806040838503121561485957614858614502565b5b600061486785828601614550565b9250506020614878858286016147da565b9150509250929050565b60008060006060848603121561489b5761489a614502565b5b60006148a986828701614586565b93505060206148ba86828701614586565b92505060406148cb86828701614586565b9150509250925092565b6000602082840312156148eb576148ea614502565b5b60006148f9848285016147da565b91505092915050565b6000806040838503121561491957614918614502565b5b600061492785828601614550565b925050602061493885828601614550565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614452565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614565565b9150614a5483614565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614565565b9150614add83614565565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614b54602d83614452565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614452565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614565565b9150614c3283614565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614452565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614452565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614dcc601d83614452565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614452565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614452565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f82602283614452565b9150614f8d82614f26565b604082019050919050565b60006020820190508181036000830152614fb181614f75565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615014603583614452565b915061501f82614fb8565b604082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a6603483614452565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615138602683614452565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a4602083614452565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615236602a83614452565b9150615241826151da565b604082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60008151905061527b8161456f565b92915050565b60006020828403121561529757615296614502565b5b60006152a58482850161526c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530a602483614452565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539c602283614452565b91506153a782615340565b604082019050919050565b600060208201905081810360008301526153cb8161538f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061542e602583614452565b9150615439826153d2565b604082019050919050565b6000602082019050818103600083015261545d81615421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c0602383614452565b91506154cb82615464565b604082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552c601683614452565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e4604983614452565b91506155ef82615562565b606082019050919050565b60006020820190508181036000830152615613816155d7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615676603583614452565b91506156818261561a565b604082019050919050565b600060208201905081810360008301526156a581615669565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e2601383614452565b91506156ed826156ac565b602082019050919050565b60006020820190508181036000830152615711816156d5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615774603683614452565b915061577f82615718565b604082019050919050565b600060208201905081810360008301526157a381615767565b9050919050565b60006157b582614565565b91506157c083614565565b9250828210156157d3576157d2614a0f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583a602683614452565b9150615845826157de565b604082019050919050565b600060208201905081810360008301526158698161582d565b9050919050565b600081905092915050565b50565b600061588b600083615870565b91506158968261587b565b600082019050919050565b60006158ac8261587e565b9150819050919050565b60006060820190506158cb60008301866146b8565b6158d860208301856146b8565b6158e560408301846146b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595a81614539565b92915050565b60006020828403121561597657615975614502565b5b60006159848482850161594b565b91505092915050565b6000819050919050565b60006159b26159ad6159a88461598d565b61463e565b614565565b9050919050565b6159c281615997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159fd81614527565b82525050565b6000615a0f83836159f4565b60208301905092915050565b6000602082019050919050565b6000615a33826159c8565b615a3d81856159d3565b9350615a48836159e4565b8060005b83811015615a79578151615a608882615a03565b9750615a6b83615a1b565b925050600181019050615a4c565b5085935050505092915050565b600060a082019050615a9b60008301886146b8565b615aa860208301876159b9565b8181036040830152615aba8186615a28565b9050615ac96060830185614762565b615ad660808301846146b8565b9695505050505050565b600060c082019050615af56000830189614762565b615b0260208301886146b8565b615b0f60408301876159b9565b615b1c60608301866159b9565b615b296080830185614762565b615b3660a08301846146b8565b979650505050505050565b600080600060608486031215615b5a57615b59614502565b5b6000615b688682870161526c565b9350506020615b798682870161526c565b9250506040615b8a8682870161526c565b915050925092509256fea26469706673582212201fd12acfd34616e52544fe1daa78d0cd7102a8fbbe8f77101efe227f50c5c24164736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459b565b610f51565b60405161041c91906145f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614611565b610f6f565b60405161045991906145f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614611565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061470f565b61121e565b6040516105ea91906145f6565b60405180910390f35b3480156105ff57600080fd5b50610608611316565b6040516106159190614771565b60405180910390f35b34801561062a57600080fd5b5061063361131c565b60405161064091906146c7565b60405180910390f35b34801561065557600080fd5b5061065e611322565b60405161066b91906145f6565b60405180910390f35b34801561068057600080fd5b50610689611335565b60405161069691906147a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459b565b61133e565b6040516106d391906145f6565b60405180910390f35b3480156106e857600080fd5b506106f16113ea565b6040516106fe9190614771565b60405180910390f35b34801561071357600080fd5b5061071c61140e565b60405161072991906145f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614611565b611421565b60405161076691906145f6565b60405180910390f35b34801561077b57600080fd5b50610784611477565b60405161079191906146c7565b60405180910390f35b3480156107a657600080fd5b506107af61147d565b6040516107bc91906145f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614611565b611490565b6040516107f991906146c7565b60405180910390f35b34801561080e57600080fd5b506108176114d8565b005b34801561082557600080fd5b50610840600480360381019061083b91906147ef565b611560565b005b34801561084e57600080fd5b506108576116a0565b60405161086491906145f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614842565b611740565b005b3480156108a257600080fd5b506108ab611817565b6040516108b89190614771565b60405180910390f35b3480156108cd57600080fd5b506108d661183d565b6040516108e391906146c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614882565b611843565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614771565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614771565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d5565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614842565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459b565b611caf565b604051610b0a91906145f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459b565b611da0565b604051610b7291906145f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614611565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614611565b611efa565b604051610bd891906145f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614842565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614882565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e2565b612151565b005b348015610c9357600080fd5b50610c9c61225f565b604051610ca991906145f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612272565b604051610cd491906146c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e2565b612278565b604051610d1191906145f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123cd565b604051610d3c91906146c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614902565b6123d3565b604051610d7991906146c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245a565b604051610da491906146c7565b60405180910390f35b348015610db957600080fd5b50610dc2612460565b604051610dcf91906145f6565b60405180910390f35b348015610de457600080fd5b50610ded612500565b604051610dfa91906146c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614611565b612506565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e2565b61260a565b604051610eb691906145f6565b60405180910390f35b606060038054610ece90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614971565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149ef565b60405180910390fd5b670de0b6b3a7640000606460016111a1610fb2565b6111ab9190614a3e565b6111b59190614ac7565b6111bf9190614ac7565b811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890614b6a565b60405180910390fd5b670de0b6b3a7640000816112159190614a3e565b60088190555050565b600061122b848484612ab5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112766128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614bfc565b60405180910390fd5b61130a856113026128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e061134b6128e2565b8484600160006113596128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113db9190614c1c565b6128ea565b6001905092915050565b7f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24881565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e06128e2565b73ffffffffffffffffffffffffffffffffffffffff166114fe6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b906149ef565b60405180910390fd5b61155e600061384d565b565b6115686128e2565b73ffffffffffffffffffffffffffffffffffffffff166115866119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906149ef565b60405180910390fd5b610258831015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614ce4565b60405180910390fd5b6103e88211158015611634575060008210155b611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614d76565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116aa6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c86119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906149ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117486128e2565b73ffffffffffffffffffffffffffffffffffffffff166117666119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906149ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166118696119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906149ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e79190614c1c565b6118f19190614c1c565b601481905550600a601454111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de2565b60405180910390fd5b505050565b61194a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614971565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614971565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149ef565b60405180910390fd5b7f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e74565b60405180910390fd5b611c938282613913565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f06565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab5565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1c565b6121009190614c1c565b601881905550600a601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614de2565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149ef565b60405180910390fd5b670de0b6b3a7640000606460016121e2610fb2565b6121ec9190614a3e565b6121f69190614ac7565b6122009190614ac7565b811015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614f98565b60405180910390fd5b670de0b6b3a7640000816122569190614a3e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122826128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a06119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906149ef565b60405180910390fd5b620186a06001612304610fb2565b61230e9190614a3e565b6123189190614ac7565b82101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061502a565b60405180910390fd5b6103e86005612367610fb2565b6123719190614a3e565b61237b9190614ac7565b8211156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b4906150bc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124886119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906149ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250e6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252c6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906149ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e99061514e565b60405180910390fd5b6125fb8161384d565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149ef565b60405180910390fd5b600f546010546126989190614c1c565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d0906151ba565b60405180910390fd5b6103e882111561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127159061524c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c2486040518263ffffffff1660e01b81526004016127809190614771565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615281565b905060006127ec6127106127de86856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115612825576128247f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24861dead836139e0565b5b60007f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c1906153b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa891906146c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c906154d6565b60405180910390fd5b6000811415612baf57612baa838360006139e0565b613848565b601160009054906101000a900460ff161561327257612bcc6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3a5750612c0a6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc65750600560149054906101000a900460ff16155b1561327157601160019054906101000a900460ff16612dc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690615542565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8857612ddd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebc57507f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f39906155fa565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d257600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c9061568c565b60405180910390fd5b600a5461308183611490565b8261308c9190614c1c565b11156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c4906156f8565b60405180910390fd5b613270565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c4576008548111156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b69061578a565b60405180910390fd5b61326f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326e57600a5461322183611490565b8261322c9190614c1c565b111561326d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613264906156f8565b60405180910390fd5b5b5b5b5b5b600061327d30611490565b9050600060095482101590508080156132a25750601160029054906101000a900460ff165b80156132bb5750600560149054906101000a900460ff16155b80156133115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613401576001600560146101000a81548160ff0219169083151502179055506133e5613c61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347f5750600c60009054906101000a900460ff165b801561349a5750600d54600e546134969190614c1c565b4210155b80156134f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ff576134fd613f48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135bf57600090505b6000811561383857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362257506000601854115b156136ef5761364f6064613641601854886139b490919063ffffffff16565b6139ca90919063ffffffff16565b9050601854601a54826136629190614a3e565b61366c9190614ac7565b601d600082825461367d9190614c1c565b92505081905550601854601b54826136959190614a3e565b61369f9190614ac7565b601e60008282546136b09190614c1c565b92505081905550601854601954826136c89190614a3e565b6136d29190614ac7565b601c60008282546136e39190614c1c565b92505081905550613814565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374a57506000601454115b15613813576137776064613769601454886139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506014546016548261378a9190614a3e565b6137949190614ac7565b601d60008282546137a59190614c1c565b92505081905550601454601754826137bd9190614a3e565b6137c79190614ac7565b601e60008282546137d89190614c1c565b92505081905550601454601554826137f09190614a3e565b6137fa9190614ac7565b601c600082825461380b9190614c1c565b925050819055505b5b6000811115613829576138288730836139e0565b5b808561383591906157aa565b94505b6138438787876139e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c29190614a3e565b905092915050565b600081836139d89190614ac7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4790615444565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab7906154d6565b60405180910390fd5b613acb83838361410e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890615850565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be49190614c1c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4891906146c7565b60405180910390a3613c5b848484614113565b50505050565b6000613c6c30611490565b90506000601e54601c54601d54613c839190614c1c565b613c8d9190614c1c565b9050600080831480613c9f5750600082145b15613cac57505050613f46565b6014600954613cbb9190614a3e565b831115613cd4576014600954613cd19190614a3e565b92505b6000600283601d5486613ce79190614a3e565b613cf19190614ac7565b613cfb9190614ac7565b90506000613d12828661411890919063ffffffff16565b90506000479050613d228261412e565b6000613d37824761411890919063ffffffff16565b90506000613d6287613d54601c54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000613d8d88613d7f601e54866139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000818385613d9e91906157aa565b613da891906157aa565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e08906158a1565b60006040518083038185875af1925050503d8060008114613e45576040519150601f19603f3d011682016040523d82523d6000602084013e613e4a565b606091505b505080985050600087118015613e605750600081115b15613ead57613e6f878261436b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea4939291906158b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef3906158a1565b60006040518083038185875af1925050503d8060008114613f30576040519150601f19603f3d011682016040523d82523d6000602084013e613f35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c2486040518263ffffffff1660e01b8152600401613fac9190614771565b602060405180830381865afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed9190615281565b9050600061401a61271061400c600b54856139b490919063ffffffff16565b6139ca90919063ffffffff16565b90506000811115614053576140527f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24861dead836139e0565b5b60007f000000000000000000000000bb8dce1ca00150846d011d406eb603de2409c24890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c057600080fd5b505af11580156140d4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361412691906157aa565b905092915050565b6000600267ffffffffffffffff81111561414b5761414a6158ed565b5b6040519080825280602002602001820160405280156141795781602001602082028036833780820191505090505b50905030816000815181106141915761419061591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425a9190615960565b8160018151811061426e5761426d61591c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614335959493929190615a86565b600060405180830381600087803b15801561434f57600080fd5b505af1158015614363573d6000803e3d6000fd5b505050505050565b614396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fd96959493929190615ae0565b60606040518083038185885af115801561441b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144409190615b41565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b282614447565b6144bc8185614452565b93506144cc818560208601614463565b6144d581614496565b840191505092915050565b600060208201905081810360008301526144fa81846144a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453282614507565b9050919050565b61454281614527565b811461454d57600080fd5b50565b60008135905061455f81614539565b92915050565b6000819050919050565b61457881614565565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b600080604083850312156145b2576145b1614502565b5b60006145c085828601614550565b92505060206145d185828601614586565b9150509250929050565b60008115159050919050565b6145f0816145db565b82525050565b600060208201905061460b60008301846145e7565b92915050565b60006020828403121561462757614626614502565b5b600061463584828501614550565b91505092915050565b6000819050919050565b600061466361465e61465984614507565b61463e565b614507565b9050919050565b600061467582614648565b9050919050565b60006146878261466a565b9050919050565b6146978161467c565b82525050565b60006020820190506146b2600083018461468e565b92915050565b6146c181614565565b82525050565b60006020820190506146dc60008301846146b8565b92915050565b6000602082840312156146f8576146f7614502565b5b600061470684828501614586565b91505092915050565b60008060006060848603121561472857614727614502565b5b600061473686828701614550565b935050602061474786828701614550565b925050604061475886828701614586565b9150509250925092565b61476b81614527565b82525050565b60006020820190506147866000830184614762565b92915050565b600060ff82169050919050565b6147a28161478c565b82525050565b60006020820190506147bd6000830184614799565b92915050565b6147cc816145db565b81146147d757600080fd5b50565b6000813590506147e9816147c3565b92915050565b60008060006060848603121561480857614807614502565b5b600061481686828701614586565b935050602061482786828701614586565b9250506040614838868287016147da565b9150509250925092565b6000806040838503121561485957614858614502565b5b600061486785828601614550565b9250506020614878858286016147da565b9150509250929050565b60008060006060848603121561489b5761489a614502565b5b60006148a986828701614586565b93505060206148ba86828701614586565b92505060406148cb86828701614586565b9150509250925092565b6000602082840312156148eb576148ea614502565b5b60006148f9848285016147da565b91505092915050565b6000806040838503121561491957614918614502565b5b600061492785828601614550565b925050602061493885828601614550565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498957607f821691505b6020821081141561499d5761499c614942565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149d9602083614452565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4982614565565b9150614a5483614565565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8d57614a8c614a0f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad282614565565b9150614add83614565565b925082614aed57614aec614a98565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614b54602d83614452565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be6602883614452565b9150614bf182614b8a565b604082019050919050565b60006020820190508181036000830152614c1581614bd9565b9050919050565b6000614c2782614565565b9150614c3283614565565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6757614c66614a0f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cce603383614452565b9150614cd982614c72565b604082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d60603083614452565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614dcc601d83614452565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5e603983614452565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef0602583614452565b9150614efb82614e94565b604082019050919050565b60006020820190508181036000830152614f1f81614ee3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f82602283614452565b9150614f8d82614f26565b604082019050919050565b60006020820190508181036000830152614fb181614f75565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615014603583614452565b915061501f82614fb8565b604082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a6603483614452565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615138602683614452565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a4602083614452565b91506151af8261516e565b602082019050919050565b600060208201905081810360008301526151d381615197565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615236602a83614452565b9150615241826151da565b604082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60008151905061527b8161456f565b92915050565b60006020828403121561529757615296614502565b5b60006152a58482850161526c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530a602483614452565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539c602283614452565b91506153a782615340565b604082019050919050565b600060208201905081810360008301526153cb8161538f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061542e602583614452565b9150615439826153d2565b604082019050919050565b6000602082019050818103600083015261545d81615421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c0602383614452565b91506154cb82615464565b604082019050919050565b600060208201905081810360008301526154ef816154b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552c601683614452565b9150615537826154f6565b602082019050919050565b6000602082019050818103600083015261555b8161551f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e4604983614452565b91506155ef82615562565b606082019050919050565b60006020820190508181036000830152615613816155d7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615676603583614452565b91506156818261561a565b604082019050919050565b600060208201905081810360008301526156a581615669565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156e2601383614452565b91506156ed826156ac565b602082019050919050565b60006020820190508181036000830152615711816156d5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615774603683614452565b915061577f82615718565b604082019050919050565b600060208201905081810360008301526157a381615767565b9050919050565b60006157b582614565565b91506157c083614565565b9250828210156157d3576157d2614a0f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061583a602683614452565b9150615845826157de565b604082019050919050565b600060208201905081810360008301526158698161582d565b9050919050565b600081905092915050565b50565b600061588b600083615870565b91506158968261587b565b600082019050919050565b60006158ac8261587e565b9150819050919050565b60006060820190506158cb60008301866146b8565b6158d860208301856146b8565b6158e560408301846146b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061595a81614539565b92915050565b60006020828403121561597657615975614502565b5b60006159848482850161594b565b91505092915050565b6000819050919050565b60006159b26159ad6159a88461598d565b61463e565b614565565b9050919050565b6159c281615997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159fd81614527565b82525050565b6000615a0f83836159f4565b60208301905092915050565b6000602082019050919050565b6000615a33826159c8565b615a3d81856159d3565b9350615a48836159e4565b8060005b83811015615a79578151615a608882615a03565b9750615a6b83615a1b565b925050600181019050615a4c565b5085935050505092915050565b600060a082019050615a9b60008301886146b8565b615aa860208301876159b9565b8181036040830152615aba8186615a28565b9050615ac96060830185614762565b615ad660808301846146b8565b9695505050505050565b600060c082019050615af56000830189614762565b615b0260208301886146b8565b615b0f60408301876159b9565b615b1c60608301866159b9565b615b296080830185614762565b615b3660a08301846146b8565b979650505050505050565b600080600060608486031215615b5a57615b59614502565b5b6000615b688682870161526c565b9350506020615b798682870161526c565b9250506040615b8a8682870161526c565b915050925092509256fea26469706673582212201fd12acfd34616e52544fe1daa78d0cd7102a8fbbe8f77101efe227f50c5c24164736f6c634300080a0033

Deployed Bytecode Sourcemap

33035:19445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9863:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12030:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34666:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33115:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10983:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41808:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33680:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33495:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34450:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34410;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39128:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12681:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33218:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33590:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33551:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10825:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13582:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33173:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33778:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41973:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34265:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33858:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11154:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3098:103;;;;;;;;;;;;;:::i;:::-;;50062:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38236:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39669:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33310:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34158;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40040:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38029:155;;;;;;;;;;;;;:::i;:::-;;2447:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33347:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34300:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39932:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10082:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41061:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34232:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33734:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34490:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34376:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14300:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33642:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11494:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41569:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34887:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40871:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40451:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39408:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34076:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33380:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38623:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34124:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11732:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33422:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38418:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34195:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3356:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34338:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33462:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51421:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9863:100;9917:13;9950:5;9943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9863:100;:::o;12030:169::-;12113:4;12130:39;12139:12;:10;:12::i;:::-;12153:7;12162:6;12130:8;:39::i;:::-;12187:4;12180:11;;12030:169;;;;:::o;34666:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33115:51::-;;;:::o;10983:108::-;11044:7;11071:12;;11064:19;;10983:108;:::o;41808:157::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41915:9:::1;;;;;;;;;;;41887:38;;41904:9;41887:38;;;;;;;;;;;;41948:9;41936;;:21;;;;;;;;;;;;;;;;;;41808:157:::0;:::o;33680:47::-;;;;:::o;33495:36::-;;;;:::o;34450:33::-;;;;:::o;34410:::-;;;;:::o;39128:272::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39264:4:::1;39257:3;39252:1;39236:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39235:25;;;;:::i;:::-;39234:34;;;;:::i;:::-;39224:6;:44;;39202:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;39385:6;39375;:17;;;;:::i;:::-;39352:20;:40;;;;39128:272:::0;:::o;12681:492::-;12821:4;12838:36;12848:6;12856:9;12867:6;12838:9;:36::i;:::-;12887:24;12914:11;:19;12926:6;12914:19;;;;;;;;;;;;;;;:33;12934:12;:10;:12::i;:::-;12914:33;;;;;;;;;;;;;;;;12887:60;;12986:6;12966:16;:26;;12958:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13073:57;13082:6;13090:12;:10;:12::i;:::-;13123:6;13104:16;:25;13073:8;:57::i;:::-;13161:4;13154:11;;;12681:492;;;;;:::o;33218:53::-;33264:6;33218:53;:::o;33590:45::-;;;;:::o;33551:32::-;;;;;;;;;;;;;:::o;10825:93::-;10883:5;10908:2;10901:9;;10825:93;:::o;13582:215::-;13670:4;13687:80;13696:12;:10;:12::i;:::-;13710:7;13756:10;13719:11;:25;13731:12;:10;:12::i;:::-;13719:25;;;;;;;;;;;;;;;:34;13745:7;13719:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13687:8;:80::i;:::-;13785:4;13778:11;;13582:215;;;;:::o;33173:38::-;;;:::o;33778:33::-;;;;;;;;;;;;;:::o;41973:126::-;42039:4;42063:19;:28;42083:7;42063:28;;;;;;;;;;;;;;;;;;;;;;;;;42056:35;;41973:126;;;:::o;34265:28::-;;;;:::o;33858:31::-;;;;;;;;;;;;;:::o;11154:127::-;11228:7;11255:9;:18;11265:7;11255:18;;;;;;;;;;;;;;;;11248:25;;11154:127;;;:::o;3098:103::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3163:30:::1;3190:1;3163:18;:30::i;:::-;3098:103::o:0;50062:555::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50264:3:::1;50241:19;:26;;50219:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50391:4;50379:8;:16;;:33;;;;;50411:1;50399:8;:13;;50379:33;50357:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50517:19;50499:15;:37;;;;50566:8;50547:16;:27;;;;50601:8;50585:13;;:24;;;;;;;;;;;;;;;;;;50062:555:::0;;;:::o;38236:121::-;38288:4;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38322:5:::1;38305:14;;:22;;;;;;;;;;;;;;;;;;38345:4;38338:11;;38236:121:::0;:::o;39669:167::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39824:4:::1;39782:31;:39;39814:6;39782:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39669:167:::0;;:::o;33310:30::-;;;;;;;;;;;;;:::o;34158:::-;;;;:::o;40040:403::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40208:13:::1;40190:15;:31;;;;40250:13;40232:15;:31;;;;40286:7;40274:9;:19;;;;40355:9;;40337:15;;40319;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40304:12;:60;;;;40399:2;40383:12;;:18;;40375:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40040:403:::0;;;:::o;38029:155::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38100:4:::1;38084:13;;:20;;;;;;;;;;;;;;;;;;38129:4;38115:11;;:18;;;;;;;;;;;;;;;;;;38161:15;38144:14;:32;;;;38029:155::o:0;2447:87::-;2493:7;2520:6;;;;;;;;;;;2513:13;;2447:87;:::o;33347:24::-;;;;;;;;;;;;;:::o;34300:31::-;;;;:::o;39932:100::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40017:7:::1;40003:11;;:21;;;;;;;;;;;;;;;;;;39932:100:::0;:::o;10082:104::-;10138:13;10171:7;10164:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10082:104;:::o;41061:304::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41205:13:::1;41197:21;;:4;:21;;;;41175:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41316:41;41345:4;41351:5;41316:28;:41::i;:::-;41061:304:::0;;:::o;34232:24::-;;;;:::o;33734:35::-;;;;:::o;34490:27::-;;;;:::o;34376:25::-;;;;:::o;14300:413::-;14393:4;14410:24;14437:11;:25;14449:12;:10;:12::i;:::-;14437:25;;;;;;;;;;;;;;;:34;14463:7;14437:34;;;;;;;;;;;;;;;;14410:61;;14510:15;14490:16;:35;;14482:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14603:67;14612:12;:10;:12::i;:::-;14626:7;14654:15;14635:16;:34;14603:8;:67::i;:::-;14701:4;14694:11;;;14300:413;;;;:::o;33642:29::-;;;;:::o;11494:175::-;11580:4;11597:42;11607:12;:10;:12::i;:::-;11621:9;11632:6;11597:9;:42::i;:::-;11657:4;11650:11;;11494:175;;;;:::o;41569:231::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41729:15:::1;;;;;;;;;;;41686:59;;41709:18;41686:59;;;;;;;;;;;;41774:18;41756:15;;:36;;;;;;;;;;;;;;;;;;41569:231:::0;:::o;34887:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33818:33::-;;;;;;;;;;;;;:::o;40871:182::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40987:8:::1;40956:19;:28;40976:7;40956:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41027:7;41011:34;;;41036:8;41011:34;;;;;;:::i;:::-;;;;;;;;40871:182:::0;;:::o;40451:412::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40621:13:::1;40602:16;:32;;;;40664:13;40645:16;:32;;;;40701:7;40688:10;:20;;;;40773:10;;40754:16;;40735;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40719:13;:64;;;;40819:2;40802:13;;:19;;40794:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40451:412:::0;;;:::o;39408:253::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39547:4:::1;39540:3;39535:1;39519:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39518:25;;;;:::i;:::-;39517:34;;;;:::i;:::-;39507:6;:44;;39485:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;39646:6;39636;:17;;;;:::i;:::-;39624:9;:29;;;;39408:253:::0;:::o;34076:39::-;;;;;;;;;;;;;:::o;33380:35::-;;;;:::o;38623:497::-;38731:4;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38810:6:::1;38805:1;38789:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38788:28;;;;:::i;:::-;38775:9;:41;;38753:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38965:4;38960:1;38944:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38943:26;;;;:::i;:::-;38930:9;:39;;38908:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39081:9;39060:18;:30;;;;39108:4;39101:11;;38623:497:::0;;;:::o;34124:27::-;;;;:::o;11732:151::-;11821:7;11848:11;:18;11860:5;11848:18;;;;;;;;;;;;;;;:27;11867:7;11848:27;;;;;;;;;;;;;;;;11841:34;;11732:151;;;;:::o;33422:33::-;;;;:::o;38418:135::-;38478:4;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38518:5:::1;38495:20;;:28;;;;;;;;;;;;;;;;;;38541:4;38534:11;;38418:135:::0;:::o;34195:30::-;;;;:::o;3356:201::-;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3465:1:::1;3445:22;;:8;:22;;;;3437:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3521:28;3540:8;3521:18;:28::i;:::-;3356:201:::0;:::o;34338:31::-;;;;:::o;33462:24::-;;;;:::o;51421:1056::-;51532:4;2678:12;:10;:12::i;:::-;2667:23;;:7;:5;:7::i;:::-;:23;;;2659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51617:19:::1;;51594:20;;:42;;;;:::i;:::-;51576:15;:60;51554:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51726:4;51715:7;:15;;51707:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51811:15;51788:20;:38;;;;51881:28;51912:4;:14;;;51927:13;51912:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51881:60;;51991:20;52014:44;52052:5;52014:33;52039:7;52014:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51991:67;;52178:1;52163:12;:16;52159:110;;;52196:61;52212:13;52235:6;52244:12;52196:15;:61::i;:::-;52159:110;52344:19;52381:13;52344:51;;52406:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52433:14;;;;;;;;;;52465:4;52458:11;;;;;51421:1056:::0;;;:::o;1120:98::-;1173:7;1200:10;1193:17;;1120:98;:::o;17984:380::-;18137:1;18120:19;;:5;:19;;;;18112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18218:1;18199:21;;:7;:21;;;;18191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18302:6;18272:11;:18;18284:5;18272:18;;;;;;;;;;;;;;;:27;18291:7;18272:27;;;;;;;;;;;;;;;:36;;;;18340:7;18324:32;;18333:5;18324:32;;;18349:6;18324:32;;;;;;:::i;:::-;;;;;;;;17984:380;;;:::o;42157:5011::-;42305:1;42289:18;;:4;:18;;;;42281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42382:1;42368:16;;:2;:16;;;;42360:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42451:1;42441:6;:11;42437:93;;;42469:28;42485:4;42491:2;42495:1;42469:15;:28::i;:::-;42512:7;;42437:93;42546:14;;;;;;;;;;;42542:2487;;;42607:7;:5;:7::i;:::-;42599:15;;:4;:15;;;;:49;;;;;42641:7;:5;:7::i;:::-;42635:13;;:2;:13;;;;42599:49;:86;;;;;42683:1;42669:16;;:2;:16;;;;42599:86;:128;;;;;42720:6;42706:21;;:2;:21;;;;42599:128;:158;;;;;42749:8;;;;;;;;;;;42748:9;42599:158;42577:2441;;;42797:13;;;;;;;;;;;42792:223;;42869:19;:25;42889:4;42869:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42898:19;:23;42918:2;42898:23;;;;;;;;;;;;;;;;;;;;;;;;;42869:52;42835:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42792:223;43171:20;;;;;;;;;;;43167:641;;;43252:7;:5;:7::i;:::-;43246:13;;:2;:13;;;;:72;;;;;43302:15;43288:30;;:2;:30;;;;43246:72;:129;;;;;43361:13;43347:28;;:2;:28;;;;43246:129;43216:573;;;43539:12;43464:28;:39;43493:9;43464:39;;;;;;;;;;;;;;;;:87;43426:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43753:12;43711:28;:39;43740:9;43711:39;;;;;;;;;;;;;;;:54;;;;43216:573;43167:641;43882:25;:31;43908:4;43882:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43939:31;:35;43971:2;43939:35;;;;;;;;;;;;;;;;;;;;;;;;;43938:36;43882:92;43856:1147;;;44061:20;;44051:6;:30;;44017:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44269:9;;44252:13;44262:2;44252:9;:13::i;:::-;44243:6;:22;;;;:::i;:::-;:35;;44209:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43856:1147;;;44447:25;:29;44473:2;44447:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44502:31;:37;44534:4;44502:37;;;;;;;;;;;;;;;;;;;;;;;;;44501:38;44447:92;44421:582;;;44626:20;;44616:6;:30;;44582:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44421:582;;;44783:31;:35;44815:2;44783:35;;;;;;;;;;;;;;;;;;;;;;;;;44778:225;;44903:9;;44886:13;44896:2;44886:9;:13::i;:::-;44877:6;:22;;;;:::i;:::-;:35;;44843:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44778:225;44421:582;43856:1147;42577:2441;42542:2487;45041:28;45072:24;45090:4;45072:9;:24::i;:::-;45041:55;;45109:12;45148:18;;45124:20;:42;;45109:57;;45197:7;:35;;;;;45221:11;;;;;;;;;;;45197:35;:61;;;;;45250:8;;;;;;;;;;;45249:9;45197:61;:110;;;;;45276:25;:31;45302:4;45276:31;;;;;;;;;;;;;;;;;;;;;;;;;45275:32;45197:110;:153;;;;;45325:19;:25;45345:4;45325:25;;;;;;;;;;;;;;;;;;;;;;;;;45324:26;45197:153;:194;;;;;45368:19;:23;45388:2;45368:23;;;;;;;;;;;;;;;;;;;;;;;;;45367:24;45197:194;45179:326;;;45429:4;45418:8;;:15;;;;;;;;;;;;;;;;;;45450:10;:8;:10::i;:::-;45488:5;45477:8;;:16;;;;;;;;;;;;;;;;;;45179:326;45536:8;;;;;;;;;;;45535:9;:55;;;;;45561:25;:29;45587:2;45561:29;;;;;;;;;;;;;;;;;;;;;;;;;45535:55;:85;;;;;45607:13;;;;;;;;;;;45535:85;:153;;;;;45673:15;;45656:14;;:32;;;;:::i;:::-;45637:15;:51;;45535:153;:196;;;;;45706:19;:25;45726:4;45706:25;;;;;;;;;;;;;;;;;;;;;;;;;45705:26;45535:196;45517:282;;;45758:29;:27;:29::i;:::-;;45517:282;45811:12;45827:8;;;;;;;;;;;45826:9;45811:24;;45937:19;:25;45957:4;45937:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45966:19;:23;45986:2;45966:23;;;;;;;;;;;;;;;;;;;;;;;;;45937:52;45933:100;;;46016:5;46006:15;;45933:100;46045:12;46150:7;46146:969;;;46202:25;:29;46228:2;46202:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46251:1;46235:13;;:17;46202:50;46198:768;;;46280:34;46310:3;46280:25;46291:13;;46280:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46273:41;;46383:13;;46363:16;;46356:4;:23;;;;:::i;:::-;46355:41;;;;:::i;:::-;46333:18;;:63;;;;;;;:::i;:::-;;;;;;;;46453:13;;46439:10;;46432:4;:17;;;;:::i;:::-;46431:35;;;;:::i;:::-;46415:12;;:51;;;;;;;:::i;:::-;;;;;;;;46535:13;;46515:16;;46508:4;:23;;;;:::i;:::-;46507:41;;;;:::i;:::-;46485:18;;:63;;;;;;;:::i;:::-;;;;;;;;46198:768;;;46610:25;:31;46636:4;46610:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46660:1;46645:12;;:16;46610:51;46606:360;;;46689:33;46718:3;46689:24;46700:12;;46689:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46682:40;;46790:12;;46771:15;;46764:4;:22;;;;:::i;:::-;46763:39;;;;:::i;:::-;46741:18;;:61;;;;;;;:::i;:::-;;;;;;;;46858:12;;46845:9;;46838:4;:16;;;;:::i;:::-;46837:33;;;;:::i;:::-;46821:12;;:49;;;;;;;:::i;:::-;;;;;;;;46938:12;;46919:15;;46912:4;:22;;;;:::i;:::-;46911:39;;;;:::i;:::-;46889:18;;:61;;;;;;;:::i;:::-;;;;;;;;46606:360;46198:768;46993:1;46986:4;:8;46982:91;;;47015:42;47031:4;47045;47052;47015:15;:42::i;:::-;46982:91;47099:4;47089:14;;;;;:::i;:::-;;;46146:969;47127:33;47143:4;47149:2;47153:6;47127:15;:33::i;:::-;42270:4898;;;;42157:5011;;;;:::o;3717:191::-;3791:16;3810:6;;;;;;;;;;;3791:25;;3836:8;3827:6;;:17;;;;;;;;;;;;;;;;;;3891:8;3860:40;;3881:8;3860:40;;;;;;;;;;;;3780:128;3717:191;:::o;41373:188::-;41490:5;41456:25;:31;41482:4;41456:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41547:5;41513:40;;41541:4;41513:40;;;;;;;;;;;;41373:188;;:::o;23437:98::-;23495:7;23526:1;23522;:5;;;;:::i;:::-;23515:12;;23437:98;;;;:::o;23836:::-;23894:7;23925:1;23921;:5;;;;:::i;:::-;23914:12;;23836:98;;;;:::o;15203:733::-;15361:1;15343:20;;:6;:20;;;;15335:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15445:1;15424:23;;:9;:23;;;;15416:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15500:47;15521:6;15529:9;15540:6;15500:20;:47::i;:::-;15560:21;15584:9;:17;15594:6;15584:17;;;;;;;;;;;;;;;;15560:41;;15637:6;15620:13;:23;;15612:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15758:6;15742:13;:22;15722:9;:17;15732:6;15722:17;;;;;;;;;;;;;;;:42;;;;15810:6;15786:9;:20;15796:9;15786:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15851:9;15834:35;;15843:6;15834:35;;;15862:6;15834:35;;;;;;:::i;:::-;;;;;;;;15882:46;15902:6;15910:9;15921:6;15882:19;:46::i;:::-;15324:612;15203:733;;;:::o;48298:1756::-;48337:23;48363:24;48381:4;48363:9;:24::i;:::-;48337:50;;48398:25;48494:12;;48460:18;;48426;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48398:108;;48517:12;48565:1;48546:15;:20;:46;;;;48591:1;48570:17;:22;48546:46;48542:85;;;48609:7;;;;;48542:85;48682:2;48661:18;;:23;;;;:::i;:::-;48643:15;:41;48639:115;;;48740:2;48719:18;;:23;;;;:::i;:::-;48701:41;;48639:115;48815:23;48928:1;48895:17;48860:18;;48842:15;:36;;;;:::i;:::-;48841:71;;;;:::i;:::-;:88;;;;:::i;:::-;48815:114;;48940:26;48969:36;48989:15;48969;:19;;:36;;;;:::i;:::-;48940:65;;49018:25;49046:21;49018:49;;49080:36;49097:18;49080:16;:36::i;:::-;49129:18;49150:44;49176:17;49150:21;:25;;:44;;;;:::i;:::-;49129:65;;49207:23;49233:81;49286:17;49233:34;49248:18;;49233:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49207:107;;49325:17;49345:51;49378:17;49345:28;49360:12;;49345:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49325:71;;49409:23;49466:9;49448:15;49435:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49409:66;;49509:1;49488:18;:22;;;;49542:1;49521:18;:22;;;;49569:1;49554:12;:16;;;;49605:9;;;;;;;;;;;49597:23;;49628:9;49597:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49583:59;;;;;49677:1;49659:15;:19;:42;;;;;49700:1;49682:15;:19;49659:42;49655:278;;;49718:46;49731:15;49748;49718:12;:46::i;:::-;49784:137;49817:18;49854:15;49888:18;;49784:137;;;;;;;;:::i;:::-;;;;;;;;49655:278;49967:15;;;;;;;;;;;49959:29;;50010:21;49959:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49945:101;;;;;48326:1728;;;;;;;;;;48298:1756;:::o;50625:788::-;50682:4;50716:15;50699:14;:32;;;;50786:28;50817:4;:14;;;50832:13;50817:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50786:60;;50896:20;50919:77;50980:5;50919:42;50944:16;;50919:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50896:100;;51116:1;51101:12;:16;51097:110;;;51134:61;51150:13;51173:6;51182:12;51134:15;:61::i;:::-;51097:110;51282:19;51319:13;51282:51;;51344:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51371:12;;;;;;;;;;51401:4;51394:11;;;;;50625:788;:::o;18964:125::-;;;;:::o;19693:124::-;;;;:::o;23080:98::-;23138:7;23169:1;23165;:5;;;;:::i;:::-;23158:12;;23080:98;;;;:::o;47176:589::-;47302:21;47340:1;47326:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47302:40;;47371:4;47353;47358:1;47353:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47397:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47387:4;47392:1;47387:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47432:62;47449:4;47464:15;47482:11;47432:8;:62::i;:::-;47533:15;:66;;;47614:11;47640:1;47684:4;47711;47731:15;47533:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47231:534;47176:589;:::o;47773:517::-;47921:62;47938:4;47953:15;47971:11;47921:8;:62::i;:::-;48026:15;:31;;;48065:9;48098:4;48118:11;48144:1;48187;33264:6;48256:15;48026:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47773:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:232::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:15;12307:2;12299:6;12295:15;12288:40;12103:232;:::o;12341:366::-;12483:3;12504:67;12568:2;12563:3;12504:67;:::i;:::-;12497:74;;12580:93;12669:3;12580:93;:::i;:::-;12698:2;12693:3;12689:12;12682:19;;12341:366;;;:::o;12713:419::-;12879:4;12917:2;12906:9;12902:18;12894:26;;12966:9;12960:4;12956:20;12952:1;12941:9;12937:17;12930:47;12994:131;13120:4;12994:131;:::i;:::-;12986:139;;12713:419;;;:::o;13138:227::-;13278:34;13274:1;13266:6;13262:14;13255:58;13347:10;13342:2;13334:6;13330:15;13323:35;13138:227;:::o;13371:366::-;13513:3;13534:67;13598:2;13593:3;13534:67;:::i;:::-;13527:74;;13610:93;13699:3;13610:93;:::i;:::-;13728:2;13723:3;13719:12;13712:19;;13371:366;;;:::o;13743:419::-;13909:4;13947:2;13936:9;13932:18;13924:26;;13996:9;13990:4;13986:20;13982:1;13971:9;13967:17;13960:47;14024:131;14150:4;14024:131;:::i;:::-;14016:139;;13743:419;;;:::o;14168:305::-;14208:3;14227:20;14245:1;14227:20;:::i;:::-;14222:25;;14261:20;14279:1;14261:20;:::i;:::-;14256:25;;14415:1;14347:66;14343:74;14340:1;14337:81;14334:107;;;14421:18;;:::i;:::-;14334:107;14465:1;14462;14458:9;14451:16;;14168:305;;;;:::o;14479:238::-;14619:34;14615:1;14607:6;14603:14;14596:58;14688:21;14683:2;14675:6;14671:15;14664:46;14479:238;:::o;14723:366::-;14865:3;14886:67;14950:2;14945:3;14886:67;:::i;:::-;14879:74;;14962:93;15051:3;14962:93;:::i;:::-;15080:2;15075:3;15071:12;15064:19;;14723:366;;;:::o;15095:419::-;15261:4;15299:2;15288:9;15284:18;15276:26;;15348:9;15342:4;15338:20;15334:1;15323:9;15319:17;15312:47;15376:131;15502:4;15376:131;:::i;:::-;15368:139;;15095:419;;;:::o;15520:235::-;15660:34;15656:1;15648:6;15644:14;15637:58;15729:18;15724:2;15716:6;15712:15;15705:43;15520:235;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:179::-;16698:31;16694:1;16686:6;16682:14;16675:55;16558:179;:::o;16743:366::-;16885:3;16906:67;16970:2;16965:3;16906:67;:::i;:::-;16899:74;;16982:93;17071:3;16982:93;:::i;:::-;17100:2;17095:3;17091:12;17084:19;;16743:366;;;:::o;17115:419::-;17281:4;17319:2;17308:9;17304:18;17296:26;;17368:9;17362:4;17358:20;17354:1;17343:9;17339:17;17332:47;17396:131;17522:4;17396:131;:::i;:::-;17388:139;;17115:419;;;:::o;17540:244::-;17680:34;17676:1;17668:6;17664:14;17657:58;17749:27;17744:2;17736:6;17732:15;17725:52;17540:244;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:224::-;18727:34;18723:1;18715:6;18711:14;18704:58;18796:7;18791:2;18783:6;18779:15;18772:32;18587:224;:::o;18817:366::-;18959:3;18980:67;19044:2;19039:3;18980:67;:::i;:::-;18973:74;;19056:93;19145:3;19056:93;:::i;:::-;19174:2;19169:3;19165:12;19158:19;;18817:366;;;:::o;19189:419::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:221::-;19754:34;19750:1;19742:6;19738:14;19731:58;19823:4;19818:2;19810:6;19806:15;19799:29;19614:221;:::o;19841:366::-;19983:3;20004:67;20068:2;20063:3;20004:67;:::i;:::-;19997:74;;20080:93;20169:3;20080:93;:::i;:::-;20198:2;20193:3;20189:12;20182:19;;19841:366;;;:::o;20213:419::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20466:9;20460:4;20456:20;20452:1;20441:9;20437:17;20430:47;20494:131;20620:4;20494:131;:::i;:::-;20486:139;;20213:419;;;:::o;20638:240::-;20778:34;20774:1;20766:6;20762:14;20755:58;20847:23;20842:2;20834:6;20830:15;20823:48;20638:240;:::o;20884:366::-;21026:3;21047:67;21111:2;21106:3;21047:67;:::i;:::-;21040:74;;21123:93;21212:3;21123:93;:::i;:::-;21241:2;21236:3;21232:12;21225:19;;20884:366;;;:::o;21256:419::-;21422:4;21460:2;21449:9;21445:18;21437:26;;21509:9;21503:4;21499:20;21495:1;21484:9;21480:17;21473:47;21537:131;21663:4;21537:131;:::i;:::-;21529:139;;21256:419;;;:::o;21681:239::-;21821:34;21817:1;21809:6;21805:14;21798:58;21890:22;21885:2;21877:6;21873:15;21866:47;21681:239;:::o;21926:366::-;22068:3;22089:67;22153:2;22148:3;22089:67;:::i;:::-;22082:74;;22165:93;22254:3;22165:93;:::i;:::-;22283:2;22278:3;22274:12;22267:19;;21926:366;;;:::o;22298:419::-;22464:4;22502:2;22491:9;22487:18;22479:26;;22551:9;22545:4;22541:20;22537:1;22526:9;22522:17;22515:47;22579:131;22705:4;22579:131;:::i;:::-;22571:139;;22298:419;;;:::o;22723:225::-;22863:34;22859:1;22851:6;22847:14;22840:58;22932:8;22927:2;22919:6;22915:15;22908:33;22723:225;:::o;22954:366::-;23096:3;23117:67;23181:2;23176:3;23117:67;:::i;:::-;23110:74;;23193:93;23282:3;23193:93;:::i;:::-;23311:2;23306:3;23302:12;23295:19;;22954:366;;;:::o;23326:419::-;23492:4;23530:2;23519:9;23515:18;23507:26;;23579:9;23573:4;23569:20;23565:1;23554:9;23550:17;23543:47;23607:131;23733:4;23607:131;:::i;:::-;23599:139;;23326:419;;;:::o;23751:182::-;23891:34;23887:1;23879:6;23875:14;23868:58;23751:182;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:229::-;24876:34;24872:1;24864:6;24860:14;24853:58;24945:12;24940:2;24932:6;24928:15;24921:37;24736:229;:::o;24971:366::-;25113:3;25134:67;25198:2;25193:3;25134:67;:::i;:::-;25127:74;;25210:93;25299:3;25210:93;:::i;:::-;25328:2;25323:3;25319:12;25312:19;;24971:366;;;:::o;25343:419::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:143::-;25825:5;25856:6;25850:13;25841:22;;25872:33;25899:5;25872:33;:::i;:::-;25768:143;;;;:::o;25917:351::-;25987:6;26036:2;26024:9;26015:7;26011:23;26007:32;26004:119;;;26042:79;;:::i;:::-;26004:119;26162:1;26187:64;26243:7;26234:6;26223:9;26219:22;26187:64;:::i;:::-;26177:74;;26133:128;25917:351;;;;:::o;26274:223::-;26414:34;26410:1;26402:6;26398:14;26391:58;26483:6;26478:2;26470:6;26466:15;26459:31;26274:223;:::o;26503:366::-;26645:3;26666:67;26730:2;26725:3;26666:67;:::i;:::-;26659:74;;26742:93;26831:3;26742:93;:::i;:::-;26860:2;26855:3;26851:12;26844:19;;26503:366;;;:::o;26875:419::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:221::-;27440:34;27436:1;27428:6;27424:14;27417:58;27509:4;27504:2;27496:6;27492:15;27485:29;27300:221;:::o;27527:366::-;27669:3;27690:67;27754:2;27749:3;27690:67;:::i;:::-;27683:74;;27766:93;27855:3;27766:93;:::i;:::-;27884:2;27879:3;27875:12;27868:19;;27527:366;;;:::o;27899:419::-;28065:4;28103:2;28092:9;28088:18;28080:26;;28152:9;28146:4;28142:20;28138:1;28127:9;28123:17;28116:47;28180:131;28306:4;28180:131;:::i;:::-;28172:139;;27899:419;;;:::o;28324:224::-;28464:34;28460:1;28452:6;28448:14;28441:58;28533:7;28528:2;28520:6;28516:15;28509:32;28324:224;:::o;28554:366::-;28696:3;28717:67;28781:2;28776:3;28717:67;:::i;:::-;28710:74;;28793:93;28882:3;28793:93;:::i;:::-;28911:2;28906:3;28902:12;28895:19;;28554:366;;;:::o;28926:419::-;29092:4;29130:2;29119:9;29115:18;29107:26;;29179:9;29173:4;29169:20;29165:1;29154:9;29150:17;29143:47;29207:131;29333:4;29207:131;:::i;:::-;29199:139;;28926:419;;;:::o;29351:222::-;29491:34;29487:1;29479:6;29475:14;29468:58;29560:5;29555:2;29547:6;29543:15;29536:30;29351:222;:::o;29579:366::-;29721:3;29742:67;29806:2;29801:3;29742:67;:::i;:::-;29735:74;;29818:93;29907:3;29818:93;:::i;:::-;29936:2;29931:3;29927:12;29920:19;;29579:366;;;:::o;29951:419::-;30117:4;30155:2;30144:9;30140:18;30132:26;;30204:9;30198:4;30194:20;30190:1;30179:9;30175:17;30168:47;30232:131;30358:4;30232:131;:::i;:::-;30224:139;;29951:419;;;:::o;30376:172::-;30516:24;30512:1;30504:6;30500:14;30493:48;30376:172;:::o;30554:366::-;30696:3;30717:67;30781:2;30776:3;30717:67;:::i;:::-;30710:74;;30793:93;30882:3;30793:93;:::i;:::-;30911:2;30906:3;30902:12;30895:19;;30554:366;;;:::o;30926:419::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;30926:419;;;:::o;31351:297::-;31491:34;31487:1;31479:6;31475:14;31468:58;31560:34;31555:2;31547:6;31543:15;31536:59;31629:11;31624:2;31616:6;31612:15;31605:36;31351:297;:::o;31654:366::-;31796:3;31817:67;31881:2;31876:3;31817:67;:::i;:::-;31810:74;;31893:93;31982:3;31893:93;:::i;:::-;32011:2;32006:3;32002:12;31995:19;;31654:366;;;:::o;32026:419::-;32192:4;32230:2;32219:9;32215:18;32207:26;;32279:9;32273:4;32269:20;32265:1;32254:9;32250:17;32243:47;32307:131;32433:4;32307:131;:::i;:::-;32299:139;;32026:419;;;:::o;32451:240::-;32591:34;32587:1;32579:6;32575:14;32568:58;32660:23;32655:2;32647:6;32643:15;32636:48;32451:240;:::o;32697:366::-;32839:3;32860:67;32924:2;32919:3;32860:67;:::i;:::-;32853:74;;32936:93;33025:3;32936:93;:::i;:::-;33054:2;33049:3;33045:12;33038:19;;32697:366;;;:::o;33069:419::-;33235:4;33273:2;33262:9;33258:18;33250:26;;33322:9;33316:4;33312:20;33308:1;33297:9;33293:17;33286:47;33350:131;33476:4;33350:131;:::i;:::-;33342:139;;33069:419;;;:::o;33494:169::-;33634:21;33630:1;33622:6;33618:14;33611:45;33494:169;:::o;33669:366::-;33811:3;33832:67;33896:2;33891:3;33832:67;:::i;:::-;33825:74;;33908:93;33997:3;33908:93;:::i;:::-;34026:2;34021:3;34017:12;34010:19;;33669:366;;;:::o;34041:419::-;34207:4;34245:2;34234:9;34230:18;34222:26;;34294:9;34288:4;34284:20;34280:1;34269:9;34265:17;34258:47;34322:131;34448:4;34322:131;:::i;:::-;34314:139;;34041:419;;;:::o;34466:241::-;34606:34;34602:1;34594:6;34590:14;34583:58;34675:24;34670:2;34662:6;34658:15;34651:49;34466:241;:::o;34713:366::-;34855:3;34876:67;34940:2;34935:3;34876:67;:::i;:::-;34869:74;;34952:93;35041:3;34952:93;:::i;:::-;35070:2;35065:3;35061:12;35054:19;;34713:366;;;:::o;35085:419::-;35251:4;35289:2;35278:9;35274:18;35266:26;;35338:9;35332:4;35328:20;35324:1;35313:9;35309:17;35302:47;35366:131;35492:4;35366:131;:::i;:::-;35358:139;;35085:419;;;:::o;35510:191::-;35550:4;35570:20;35588:1;35570:20;:::i;:::-;35565:25;;35604:20;35622:1;35604:20;:::i;:::-;35599:25;;35643:1;35640;35637:8;35634:34;;;35648:18;;:::i;:::-;35634:34;35693:1;35690;35686:9;35678:17;;35510:191;;;;:::o;35707:225::-;35847:34;35843:1;35835:6;35831:14;35824:58;35916:8;35911:2;35903:6;35899:15;35892:33;35707:225;:::o;35938:366::-;36080:3;36101:67;36165:2;36160:3;36101:67;:::i;:::-;36094:74;;36177:93;36266:3;36177:93;:::i;:::-;36295:2;36290:3;36286:12;36279:19;;35938:366;;;:::o;36310:419::-;36476:4;36514:2;36503:9;36499:18;36491:26;;36563:9;36557:4;36553:20;36549:1;36538:9;36534:17;36527:47;36591:131;36717:4;36591:131;:::i;:::-;36583:139;;36310:419;;;:::o;36735:147::-;36836:11;36873:3;36858:18;;36735:147;;;;:::o;36888:114::-;;:::o;37008:398::-;37167:3;37188:83;37269:1;37264:3;37188:83;:::i;:::-;37181:90;;37280:93;37369:3;37280:93;:::i;:::-;37398:1;37393:3;37389:11;37382:18;;37008:398;;;:::o;37412:379::-;37596:3;37618:147;37761:3;37618:147;:::i;:::-;37611:154;;37782:3;37775:10;;37412:379;;;:::o;37797:442::-;37946:4;37984:2;37973:9;37969:18;37961:26;;37997:71;38065:1;38054:9;38050:17;38041:6;37997:71;:::i;:::-;38078:72;38146:2;38135:9;38131:18;38122:6;38078:72;:::i;:::-;38160;38228:2;38217:9;38213:18;38204:6;38160:72;:::i;:::-;37797:442;;;;;;:::o;38245:180::-;38293:77;38290:1;38283:88;38390:4;38387:1;38380:15;38414:4;38411:1;38404:15;38431:180;38479:77;38476:1;38469:88;38576:4;38573:1;38566:15;38600:4;38597:1;38590:15;38617:143;38674:5;38705:6;38699:13;38690:22;;38721:33;38748:5;38721:33;:::i;:::-;38617:143;;;;:::o;38766:351::-;38836:6;38885:2;38873:9;38864:7;38860:23;38856:32;38853:119;;;38891:79;;:::i;:::-;38853:119;39011:1;39036:64;39092:7;39083:6;39072:9;39068:22;39036:64;:::i;:::-;39026:74;;38982:128;38766:351;;;;:::o;39123:85::-;39168:7;39197:5;39186:16;;39123:85;;;:::o;39214:158::-;39272:9;39305:61;39323:42;39332:32;39358:5;39332:32;:::i;:::-;39323:42;:::i;:::-;39305:61;:::i;:::-;39292:74;;39214:158;;;:::o;39378:147::-;39473:45;39512:5;39473:45;:::i;:::-;39468:3;39461:58;39378:147;;:::o;39531:114::-;39598:6;39632:5;39626:12;39616:22;;39531:114;;;:::o;39651:184::-;39750:11;39784:6;39779:3;39772:19;39824:4;39819:3;39815:14;39800:29;;39651:184;;;;:::o;39841:132::-;39908:4;39931:3;39923:11;;39961:4;39956:3;39952:14;39944:22;;39841:132;;;:::o;39979:108::-;40056:24;40074:5;40056:24;:::i;:::-;40051:3;40044:37;39979:108;;:::o;40093:179::-;40162:10;40183:46;40225:3;40217:6;40183:46;:::i;:::-;40261:4;40256:3;40252:14;40238:28;;40093:179;;;;:::o;40278:113::-;40348:4;40380;40375:3;40371:14;40363:22;;40278:113;;;:::o;40427:732::-;40546:3;40575:54;40623:5;40575:54;:::i;:::-;40645:86;40724:6;40719:3;40645:86;:::i;:::-;40638:93;;40755:56;40805:5;40755:56;:::i;:::-;40834:7;40865:1;40850:284;40875:6;40872:1;40869:13;40850:284;;;40951:6;40945:13;40978:63;41037:3;41022:13;40978:63;:::i;:::-;40971:70;;41064:60;41117:6;41064:60;:::i;:::-;41054:70;;40910:224;40897:1;40894;40890:9;40885:14;;40850:284;;;40854:14;41150:3;41143:10;;40551:608;;;40427:732;;;;:::o;41165:831::-;41428:4;41466:3;41455:9;41451:19;41443:27;;41480:71;41548:1;41537:9;41533:17;41524:6;41480:71;:::i;:::-;41561:80;41637:2;41626:9;41622:18;41613:6;41561:80;:::i;:::-;41688:9;41682:4;41678:20;41673:2;41662:9;41658:18;41651:48;41716:108;41819:4;41810:6;41716:108;:::i;:::-;41708:116;;41834:72;41902:2;41891:9;41887:18;41878:6;41834:72;:::i;:::-;41916:73;41984:3;41973:9;41969:19;41960:6;41916:73;:::i;:::-;41165:831;;;;;;;;:::o;42002:807::-;42251:4;42289:3;42278:9;42274:19;42266:27;;42303:71;42371:1;42360:9;42356:17;42347:6;42303:71;:::i;:::-;42384:72;42452:2;42441:9;42437:18;42428:6;42384:72;:::i;:::-;42466:80;42542:2;42531:9;42527:18;42518:6;42466:80;:::i;:::-;42556;42632:2;42621:9;42617:18;42608:6;42556:80;:::i;:::-;42646:73;42714:3;42703:9;42699:19;42690:6;42646:73;:::i;:::-;42729;42797:3;42786:9;42782:19;42773:6;42729:73;:::i;:::-;42002:807;;;;;;;;;:::o;42815:663::-;42903:6;42911;42919;42968:2;42956:9;42947:7;42943:23;42939:32;42936:119;;;42974:79;;:::i;:::-;42936:119;43094:1;43119:64;43175:7;43166:6;43155:9;43151:22;43119:64;:::i;:::-;43109:74;;43065:128;43232:2;43258:64;43314:7;43305:6;43294:9;43290:22;43258:64;:::i;:::-;43248:74;;43203:129;43371:2;43397:64;43453:7;43444:6;43433:9;43429:22;43397:64;:::i;:::-;43387:74;;43342:129;42815:663;;;;;:::o

Swarm Source

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