ETH Price: $3,278.15 (-0.53%)

Token

The Xperiment (XPRMNT)
 

Overview

Max Total Supply

1,000,000,000 XPRMNT

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,731,890.983962639437884796 XPRMNT

Value
$0.00
0xb82bb59f0a55bd3554321a7257d532f725b41adc
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:
TheXperiment

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-10
*/

// File: TheXperiment.sol



// Join the biggest & Most Ambitious Xperiment on Ethereum.

// A unique ecosystem with hidden utility that is unprecedented.

// Website: https://TheXperiment.org

// Twitter: https://twitter.com/TheXperimentETH

// Telegram: t.me/TheXperimentETH


pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/
/* pragma solidity >=0.8.10; */

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

contract TheXperiment 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 buyReflectionsFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellReflectionsFee;

    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("The Xperiment", "XPRMNT") {
        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 = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyReflectionsFee = 1;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellReflectionsFee = 1;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyReflectionsFee = _buyReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellReflectionsFee = _sellReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;

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

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

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

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

    receive() external payable {}

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

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

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

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        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 _ReflectionsFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyReflectionsFee = _ReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellReflectionsFee) / 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 * buyReflectionsFee) / 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":"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":"buyReflectionsFee","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":"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":"sellReflectionsFee","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":"_ReflectionsFee","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":"_ReflectionsFee","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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600d81526020017f5468652058706572696d656e74000000000000000000000000000000000000008152506040518060400160405280600681526020017f5850524d4e54000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b1f565b5080600490805190602001906200014792919062000b1f565b5050506200016a6200015e620005df60201b60201c565b620005e760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c39565b6040518363ffffffff1660e01b8152600401620002e992919062000c7c565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006ad60201b60201c565b6200038c60a05160016200079760201b60201c565b60006001905060006001905060006001905060006001905060006001905060006001905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a18d0bf423c03d8de000000600a81905550612710600582620003f7919062000ce2565b62000403919062000d72565b60098190555086601581905550856016819055508460178190555060175460165460155462000433919062000daa565b6200043f919062000daa565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046f919062000daa565b6200047b919062000daa565b601881905550734c6f56a8a9a6066e1421fd5be55173ae06c51642600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c6f56a8a9a6066e1421fd5be55173ae06c51642600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054d6200053f6200083860201b60201c565b60016200086260201b60201c565b620005603060016200086260201b60201c565b6200057561dead60016200086260201b60201c565b62000597620005896200083860201b60201c565b6001620006ad60201b60201c565b620005aa306001620006ad60201b60201c565b620005bf61dead6001620006ad60201b60201c565b620005d133826200099c60201b60201c565b505050505050505062000fc9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bd620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e36200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007339062000e68565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000872620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008986200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e89062000e68565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000990919062000ea7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a069062000f14565b60405180910390fd5b62000a236000838362000b1560201b60201c565b806002600082825462000a37919062000daa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8e919062000daa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af5919062000f47565b60405180910390a362000b116000838362000b1a60201b60201c565b5050565b505050565b505050565b82805462000b2d9062000f93565b90600052602060002090601f01602090048101928262000b51576000855562000b9d565b82601f1062000b6c57805160ff191683800117855562000b9d565b8280016001018555821562000b9d579182015b8281111562000b9c57825182559160200191906001019062000b7f565b5b50905062000bac919062000bb0565b5090565b5b8082111562000bcb57600081600090555060010162000bb1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c018262000bd4565b9050919050565b62000c138162000bf4565b811462000c1f57600080fd5b50565b60008151905062000c338162000c08565b92915050565b60006020828403121562000c525762000c5162000bcf565b5b600062000c628482850162000c22565b91505092915050565b62000c768162000bf4565b82525050565b600060408201905062000c93600083018562000c6b565b62000ca2602083018462000c6b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cef8262000ca9565b915062000cfc8362000ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d385762000d3762000cb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d7f8262000ca9565b915062000d8c8362000ca9565b92508262000d9f5762000d9e62000d43565b5b828204905092915050565b600062000db78262000ca9565b915062000dc48362000ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfc5762000dfb62000cb3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e5060208362000e07565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b60008115159050919050565b62000ea18162000e8a565b82525050565b600060208201905062000ebe600083018462000e96565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000efc601f8362000e07565b915062000f098262000ec4565b602082019050919050565b6000602082019050818103600083015262000f2f8162000eed565b9050919050565b62000f418162000ca9565b82525050565b600060208201905062000f5e600083018462000f36565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fac57607f821691505b6020821081141562000fc35762000fc262000f64565b5b50919050565b60805160a0516159bc620010516000396000818161137701528181611b930152818161265b015281816127120152818161273f01528181612d8301528181613e8701528181613f400152613f6d015260008181610f9001528181612d2b015281816140e3015281816141c4015281816141eb0152818161428701526142ae01526159bc6000f3fe6080604052600436106103b15760003560e01c80638095d564116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a805780639fccce3214610aab578063a457c2d714610ad6576103b8565b80638ea5220f116101c15780638ea5220f146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80638095d564146109425780638a8c523c1461096b5780638da5cb5b14610982576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637bce5a0414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b80634fbee193116102a65780634fbee1931461073257806359e1ee0d1461076f5780635dfba9001461079a5780636a486a8e146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614625565b6111a9565b6040516105ea919061450c565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614687565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145dd565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b919061450c565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146be565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906144b1565b6112c9565b6040516106d3919061450c565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614687565b60405180910390f35b34801561071357600080fd5b5061071c611399565b604051610729919061450c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614527565b6113ac565b604051610766919061450c565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145dd565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906145dd565b60405180910390f35b3480156107d157600080fd5b506107da61140e565b6040516107e791906145dd565b60405180910390f35b3480156107fc57600080fd5b50610805611414565b604051610812919061450c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190614527565b611427565b60405161084f91906145dd565b60405180910390f35b34801561086457600080fd5b5061086d61146f565b005b34801561087b57600080fd5b5061089660048036038101906108919190614705565b6114f7565b005b3480156108a457600080fd5b506108ad611637565b6040516108ba919061450c565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614758565b6116d7565b005b3480156108f857600080fd5b506109016117ae565b60405161090e9190614687565b60405180910390f35b34801561092357600080fd5b5061092c6117d4565b60405161093991906145dd565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614798565b6117da565b005b34801561097757600080fd5b506109806118d9565b005b34801561098e57600080fd5b50610997611994565b6040516109a49190614687565b60405180910390f35b3480156109b957600080fd5b506109c26119be565b6040516109cf9190614687565b60405180910390f35b3480156109e457600080fd5b506109ed6119e4565b6040516109fa91906145dd565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906147eb565b6119ea565b005b348015610a3857600080fd5b50610a41611a83565b604051610a4e91906143f6565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614758565b611b15565b005b348015610a8c57600080fd5b50610a95611c2e565b604051610aa291906145dd565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd91906145dd565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906144b1565b611c3a565b604051610b0a919061450c565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b3591906145dd565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906144b1565b611d2b565b604051610b72919061450c565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614527565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614527565b611e85565b604051610bd8919061450c565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c03919061450c565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614758565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614798565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145f8565b6120dc565b005b348015610c9357600080fd5b50610c9c612175565b604051610ca9919061450c565b60405180910390f35b348015610cbe57600080fd5b50610cc7612188565b604051610cd491906145dd565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145f8565b61218e565b604051610d11919061450c565b60405180910390f35b348015610d2657600080fd5b50610d2f6122e3565b604051610d3c91906145dd565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614818565b6122e9565b604051610d7991906145dd565b60405180910390f35b348015610d8e57600080fd5b50610d97612370565b604051610da491906145dd565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf919061450c565b60405180910390f35b348015610de457600080fd5b50610ded612416565b604051610dfa91906145dd565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614527565b61241c565b005b348015610e3857600080fd5b50610e41612514565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e6c61251a565b604051610e7991906145dd565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145f8565b612520565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611994565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611136611994565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614905565b60405180910390fd5b670de0b6b3a7640000816111a09190614954565b60088190555050565b60006111b68484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a20565b60405180910390fd5b6112958561128d6127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127f8565b8484600160006112e46127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a40565b612800565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114776127f8565b73ffffffffffffffffffffffffffffffffffffffff16611495611994565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614905565b60405180910390fd5b6114f56000613763565b565b6114ff6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661151d611994565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614905565b60405180910390fd5b6102588310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614b08565b60405180910390fd5b6103e882111580156115cb575060008210155b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614b9a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116416127f8565b73ffffffffffffffffffffffffffffffffffffffff1661165f611994565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116df6127f8565b73ffffffffffffffffffffffffffffffffffffffff166116fd611994565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611800611994565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461187e9190614a40565b6118889190614a40565b601481905550601960145411156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614c06565b60405180910390fd5b505050565b6118e16127f8565b73ffffffffffffffffffffffffffffffffffffffff166118ff611994565b73ffffffffffffffffffffffffffffffffffffffff1614611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a10611994565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9290614887565b80601f0160208091040260200160405190810160405280929190818152602001828054611abe90614887565b8015611b0b5780601f10611ae057610100808354040283529160200191611b0b565b820191906000526020600020905b815481529060010190602001808311611aee57829003601f168201915b5050505050905090565b611b1d6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611994565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614905565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614c98565b60405180910390fd5b611c2a8282613829565b5050565b60105481565b601e5481565b60008060016000611c496127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614d2a565b60405180910390fd5b611d1a611d116127f8565b85858403612800565b600191505092915050565b600e5481565b6000611d3f611d386127f8565b84846129cb565b6001905092915050565b611d516127f8565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611994565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec06127f8565b73ffffffffffffffffffffffffffffffffffffffff16611ede611994565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd1919061450c565b60405180910390a25050565b611fe56127f8565b73ffffffffffffffffffffffffffffffffffffffff16612003611994565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614a40565b61208b9190614a40565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c06565b60405180910390fd5b505050565b6120e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16612102611994565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614905565b60405180910390fd5b670de0b6b3a76400008161216c9190614954565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121986127f8565b73ffffffffffffffffffffffffffffffffffffffff166121b6611994565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614905565b60405180910390fd5b620186a0600161221a610fb2565b6122249190614954565b61222e9190614d79565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e1c565b60405180910390fd5b6103e8600561227d610fb2565b6122879190614954565b6122919190614d79565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123806127f8565b73ffffffffffffffffffffffffffffffffffffffff1661239e611994565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124246127f8565b73ffffffffffffffffffffffffffffffffffffffff16612442611994565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f40565b60405180910390fd5b61251181613763565b50565b601a5481565b600a5481565b600061252a6127f8565b73ffffffffffffffffffffffffffffffffffffffff16612548611994565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614905565b60405180910390fd5b600f546010546125ae9190614a40565b42116125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614fac565b60405180910390fd5b6103e8821115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126969190614687565b602060405180830381865afa1580156126b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d79190615073565b905060006127026127106126f486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561273b5761273a7f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a857600080fd5b505af11580156127bc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae2611994565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b20611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf3611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f9783611427565b82612fa29190614a40565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a5461313783611427565b826131429190614a40565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b600061319330611427565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac9190614a40565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614954565b6135829190614d79565b601d60008282546135939190614a40565b92505081905550601854601b54826135ab9190614954565b6135b59190614d79565b601e60008282546135c69190614a40565b92505081905550601854601954826135de9190614954565b6135e89190614d79565b601c60008282546135f99190614a40565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614954565b6136aa9190614d79565b601d60008282546136bb9190614a40565b92505081905550601454601754826136d39190614954565b6136dd9190614d79565b601e60008282546136ee9190614a40565b92505081905550601454601554826137069190614954565b6137109190614d79565b601c60008282546137219190614a40565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614954565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa9190614a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b8230611427565b90506000601e54601c54601d54613b999190614a40565b613ba39190614a40565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614954565b831115613bea576014600954613be79190614954565b92505b6000600283601d5486613bfd9190614954565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613ec29190614687565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60006020828403121561460e5761460d614418565b5b600061461c8482850161449c565b91505092915050565b60008060006060848603121561463e5761463d614418565b5b600061464c86828701614466565b935050602061465d86828701614466565b925050604061466e8682870161449c565b9150509250925092565b6146818161443d565b82525050565b600060208201905061469c6000830184614678565b92915050565b600060ff82169050919050565b6146b8816146a2565b82525050565b60006020820190506146d360008301846146af565b92915050565b6146e2816144f1565b81146146ed57600080fd5b50565b6000813590506146ff816146d9565b92915050565b60008060006060848603121561471e5761471d614418565b5b600061472c8682870161449c565b935050602061473d8682870161449c565b925050604061474e868287016146f0565b9150509250925092565b6000806040838503121561476f5761476e614418565b5b600061477d85828601614466565b925050602061478e858286016146f0565b9150509250929050565b6000806000606084860312156147b1576147b0614418565b5b60006147bf8682870161449c565b93505060206147d08682870161449c565b92505060406147e18682870161449c565b9150509250925092565b60006020828403121561480157614800614418565b5b600061480f848285016146f0565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061495f8261447b565b915061496a8361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a3576149a2614925565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a0a602883614368565b9150614a15826149ae565b604082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b6000614a4b8261447b565b9150614a568361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8b57614a8a614925565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614af2603383614368565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b84603083614368565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614bf0601d83614368565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c82603983614368565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d14602583614368565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c4614925565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb6060830185614678565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e76000830189614678565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b6080830185614678565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220ea54b49d40880bedb922bf708bd061082285bd5b4057769fe34ac5606af0918d64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638095d564116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a805780639fccce3214610aab578063a457c2d714610ad6576103b8565b80638ea5220f116101c15780638ea5220f146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80638095d564146109425780638a8c523c1461096b5780638da5cb5b14610982576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637bce5a0414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b80634fbee193116102a65780634fbee1931461073257806359e1ee0d1461076f5780635dfba9001461079a5780636a486a8e146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614625565b6111a9565b6040516105ea919061450c565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614687565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145dd565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b919061450c565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146be565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906144b1565b6112c9565b6040516106d3919061450c565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614687565b60405180910390f35b34801561071357600080fd5b5061071c611399565b604051610729919061450c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614527565b6113ac565b604051610766919061450c565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145dd565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906145dd565b60405180910390f35b3480156107d157600080fd5b506107da61140e565b6040516107e791906145dd565b60405180910390f35b3480156107fc57600080fd5b50610805611414565b604051610812919061450c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190614527565b611427565b60405161084f91906145dd565b60405180910390f35b34801561086457600080fd5b5061086d61146f565b005b34801561087b57600080fd5b5061089660048036038101906108919190614705565b6114f7565b005b3480156108a457600080fd5b506108ad611637565b6040516108ba919061450c565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614758565b6116d7565b005b3480156108f857600080fd5b506109016117ae565b60405161090e9190614687565b60405180910390f35b34801561092357600080fd5b5061092c6117d4565b60405161093991906145dd565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614798565b6117da565b005b34801561097757600080fd5b506109806118d9565b005b34801561098e57600080fd5b50610997611994565b6040516109a49190614687565b60405180910390f35b3480156109b957600080fd5b506109c26119be565b6040516109cf9190614687565b60405180910390f35b3480156109e457600080fd5b506109ed6119e4565b6040516109fa91906145dd565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906147eb565b6119ea565b005b348015610a3857600080fd5b50610a41611a83565b604051610a4e91906143f6565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614758565b611b15565b005b348015610a8c57600080fd5b50610a95611c2e565b604051610aa291906145dd565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd91906145dd565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906144b1565b611c3a565b604051610b0a919061450c565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b3591906145dd565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906144b1565b611d2b565b604051610b72919061450c565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614527565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614527565b611e85565b604051610bd8919061450c565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c03919061450c565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614758565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614798565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145f8565b6120dc565b005b348015610c9357600080fd5b50610c9c612175565b604051610ca9919061450c565b60405180910390f35b348015610cbe57600080fd5b50610cc7612188565b604051610cd491906145dd565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145f8565b61218e565b604051610d11919061450c565b60405180910390f35b348015610d2657600080fd5b50610d2f6122e3565b604051610d3c91906145dd565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614818565b6122e9565b604051610d7991906145dd565b60405180910390f35b348015610d8e57600080fd5b50610d97612370565b604051610da491906145dd565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf919061450c565b60405180910390f35b348015610de457600080fd5b50610ded612416565b604051610dfa91906145dd565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614527565b61241c565b005b348015610e3857600080fd5b50610e41612514565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e6c61251a565b604051610e7991906145dd565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145f8565b612520565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611994565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611136611994565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614905565b60405180910390fd5b670de0b6b3a7640000816111a09190614954565b60088190555050565b60006111b68484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a20565b60405180910390fd5b6112958561128d6127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127f8565b8484600160006112e46127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a40565b612800565b6001905092915050565b7f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114776127f8565b73ffffffffffffffffffffffffffffffffffffffff16611495611994565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614905565b60405180910390fd5b6114f56000613763565b565b6114ff6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661151d611994565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614905565b60405180910390fd5b6102588310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614b08565b60405180910390fd5b6103e882111580156115cb575060008210155b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614b9a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116416127f8565b73ffffffffffffffffffffffffffffffffffffffff1661165f611994565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116df6127f8565b73ffffffffffffffffffffffffffffffffffffffff166116fd611994565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611800611994565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461187e9190614a40565b6118889190614a40565b601481905550601960145411156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614c06565b60405180910390fd5b505050565b6118e16127f8565b73ffffffffffffffffffffffffffffffffffffffff166118ff611994565b73ffffffffffffffffffffffffffffffffffffffff1614611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a10611994565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9290614887565b80601f0160208091040260200160405190810160405280929190818152602001828054611abe90614887565b8015611b0b5780601f10611ae057610100808354040283529160200191611b0b565b820191906000526020600020905b815481529060010190602001808311611aee57829003601f168201915b5050505050905090565b611b1d6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611994565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614905565b60405180910390fd5b7f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614c98565b60405180910390fd5b611c2a8282613829565b5050565b60105481565b601e5481565b60008060016000611c496127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614d2a565b60405180910390fd5b611d1a611d116127f8565b85858403612800565b600191505092915050565b600e5481565b6000611d3f611d386127f8565b84846129cb565b6001905092915050565b611d516127f8565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611994565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec06127f8565b73ffffffffffffffffffffffffffffffffffffffff16611ede611994565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd1919061450c565b60405180910390a25050565b611fe56127f8565b73ffffffffffffffffffffffffffffffffffffffff16612003611994565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614a40565b61208b9190614a40565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c06565b60405180910390fd5b505050565b6120e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16612102611994565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614905565b60405180910390fd5b670de0b6b3a76400008161216c9190614954565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121986127f8565b73ffffffffffffffffffffffffffffffffffffffff166121b6611994565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614905565b60405180910390fd5b620186a0600161221a610fb2565b6122249190614954565b61222e9190614d79565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e1c565b60405180910390fd5b6103e8600561227d610fb2565b6122879190614954565b6122919190614d79565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123806127f8565b73ffffffffffffffffffffffffffffffffffffffff1661239e611994565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124246127f8565b73ffffffffffffffffffffffffffffffffffffffff16612442611994565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f40565b60405180910390fd5b61251181613763565b50565b601a5481565b600a5481565b600061252a6127f8565b73ffffffffffffffffffffffffffffffffffffffff16612548611994565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614905565b60405180910390fd5b600f546010546125ae9190614a40565b42116125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614fac565b60405180910390fd5b6103e8821115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d866040518263ffffffff1660e01b81526004016126969190614687565b602060405180830381865afa1580156126b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d79190615073565b905060006127026127106126f486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561273b5761273a7f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8661dead836138f6565b5b60007f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a857600080fd5b505af11580156127bc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae2611994565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b20611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf3611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f9783611427565b82612fa29190614a40565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a5461313783611427565b826131429190614a40565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b600061319330611427565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac9190614a40565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614954565b6135829190614d79565b601d60008282546135939190614a40565b92505081905550601854601b54826135ab9190614954565b6135b59190614d79565b601e60008282546135c69190614a40565b92505081905550601854601954826135de9190614954565b6135e89190614d79565b601c60008282546135f99190614a40565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614954565b6136aa9190614d79565b601d60008282546136bb9190614a40565b92505081905550601454601754826136d39190614954565b6136dd9190614d79565b601e60008282546136ee9190614a40565b92505081905550601454601554826137069190614954565b6137109190614d79565b601c60008282546137219190614a40565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614954565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa9190614a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b8230611427565b90506000601e54601c54601d54613b999190614a40565b613ba39190614a40565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614954565b831115613bea576014600954613be79190614954565b92505b6000600283601d5486613bfd9190614954565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d866040518263ffffffff1660e01b8152600401613ec29190614687565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8661dead836138f6565b5b60007f00000000000000000000000019af5b9fa8be4f93f28a5f615e3ed1811d050d8690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60006020828403121561460e5761460d614418565b5b600061461c8482850161449c565b91505092915050565b60008060006060848603121561463e5761463d614418565b5b600061464c86828701614466565b935050602061465d86828701614466565b925050604061466e8682870161449c565b9150509250925092565b6146818161443d565b82525050565b600060208201905061469c6000830184614678565b92915050565b600060ff82169050919050565b6146b8816146a2565b82525050565b60006020820190506146d360008301846146af565b92915050565b6146e2816144f1565b81146146ed57600080fd5b50565b6000813590506146ff816146d9565b92915050565b60008060006060848603121561471e5761471d614418565b5b600061472c8682870161449c565b935050602061473d8682870161449c565b925050604061474e868287016146f0565b9150509250925092565b6000806040838503121561476f5761476e614418565b5b600061477d85828601614466565b925050602061478e858286016146f0565b9150509250929050565b6000806000606084860312156147b1576147b0614418565b5b60006147bf8682870161449c565b93505060206147d08682870161449c565b92505060406147e18682870161449c565b9150509250925092565b60006020828403121561480157614800614418565b5b600061480f848285016146f0565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061495f8261447b565b915061496a8361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a3576149a2614925565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a0a602883614368565b9150614a15826149ae565b604082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b6000614a4b8261447b565b9150614a568361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8b57614a8a614925565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614af2603383614368565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b84603083614368565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614bf0601d83614368565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c82603983614368565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d14602583614368565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c4614925565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb6060830185614678565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e76000830189614678565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b6080830185614678565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220ea54b49d40880bedb922bf708bd061082285bd5b4057769fe34ac5606af0918d64736f6c634300080a0033

Deployed Bytecode Sourcemap

33001:19323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11983:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34650:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33083:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10936:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41636:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33648:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33463:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34434:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34394;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39181:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12634:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33186:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33558:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33519:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10778:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13535:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33141:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33746:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41801:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34200:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34352:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34241:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33826:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11107:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3051:103;;;;;;;;;;;;;:::i;:::-;;49906:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38289:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39433:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33278:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34126;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39804:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38082:155;;;;;;;;;;;;;:::i;:::-;;2400:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33315:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34276:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39696:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10035:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40889:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33702:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34474:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14253:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33610:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11447:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41397:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34871:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33786:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40699:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40247:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39311:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34044:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33348:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38676:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34092:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11685:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33390:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38471:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34163:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3309:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34314:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33430:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51265:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9816:100;9870:13;9903:5;9896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9816:100;:::o;11983:169::-;12066:4;12083:39;12092:12;:10;:12::i;:::-;12106:7;12115:6;12083:8;:39::i;:::-;12140:4;12133:11;;11983:169;;;;:::o;34650:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33083:51::-;;;:::o;10936:108::-;10997:7;11024:12;;11017:19;;10936:108;:::o;41636:157::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41743:9:::1;;;;;;;;;;;41715:38;;41732:9;41715:38;;;;;;;;;;;;41776:9;41764;;:21;;;;;;;;;;;;;;;;;;41636:157:::0;:::o;33648:47::-;;;;:::o;33463:36::-;;;;:::o;34434:33::-;;;;:::o;34394:::-;;;;:::o;39181:122::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39288:6:::1;39278;:17;;;;:::i;:::-;39255:20;:40;;;;39181:122:::0;:::o;12634:492::-;12774:4;12791:36;12801:6;12809:9;12820:6;12791:9;:36::i;:::-;12840:24;12867:11;:19;12879:6;12867:19;;;;;;;;;;;;;;;:33;12887:12;:10;:12::i;:::-;12867:33;;;;;;;;;;;;;;;;12840:60;;12939:6;12919:16;:26;;12911:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13026:57;13035:6;13043:12;:10;:12::i;:::-;13076:6;13057:16;:25;13026:8;:57::i;:::-;13114:4;13107:11;;;12634:492;;;;;:::o;33186:53::-;33232:6;33186:53;:::o;33558:45::-;;;;:::o;33519:32::-;;;;;;;;;;;;;:::o;10778:93::-;10836:5;10861:2;10854:9;;10778:93;:::o;13535:215::-;13623:4;13640:80;13649:12;:10;:12::i;:::-;13663:7;13709:10;13672:11;:25;13684:12;:10;:12::i;:::-;13672:25;;;;;;;;;;;;;;;:34;13698:7;13672:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13640:8;:80::i;:::-;13738:4;13731:11;;13535:215;;;;:::o;33141:38::-;;;:::o;33746:33::-;;;;;;;;;;;;;:::o;41801:126::-;41867:4;41891:19;:28;41911:7;41891:28;;;;;;;;;;;;;;;;;;;;;;;;;41884:35;;41801:126;;;:::o;34200:32::-;;;;:::o;34352:33::-;;;;:::o;34241:28::-;;;;:::o;33826:31::-;;;;;;;;;;;;;:::o;11107:127::-;11181:7;11208:9;:18;11218:7;11208:18;;;;;;;;;;;;;;;;11201:25;;11107:127;;;:::o;3051:103::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3116:30:::1;3143:1;3116:18;:30::i;:::-;3051:103::o:0;49906:555::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50108:3:::1;50085:19;:26;;50063:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50235:4;50223:8;:16;;:33;;;;;50255:1;50243:8;:13;;50223:33;50201:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50361:19;50343:15;:37;;;;50410:8;50391:16;:27;;;;50445:8;50429:13;;:24;;;;;;;;;;;;;;;;;;49906:555:::0;;;:::o;38289:121::-;38341:4;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38375:5:::1;38358:14;;:22;;;;;;;;;;;;;;;;;;38398:4;38391:11;;38289:121:::0;:::o;39433:167::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39588:4:::1;39546:31;:39;39578:6;39546:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39433:167:::0;;:::o;33278:30::-;;;;;;;;;;;;;:::o;34126:::-;;;;:::o;39804:435::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39980:13:::1;39962:15;:31;;;;40022:13;40004:15;:31;;;;40066:15;40046:17;:35;;;;40143:17;;40125:15;;40107;;:33;;;;:::i;:::-;:53;;;;:::i;:::-;40092:12;:68;;;;40195:2;40179:12;;:18;;40171:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39804:435:::0;;;:::o;38082:155::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38153:4:::1;38137:13;;:20;;;;;;;;;;;;;;;;;;38182:4;38168:11;;:18;;;;;;;;;;;;;;;;;;38214:15;38197:14;:32;;;;38082:155::o:0;2400:87::-;2446:7;2473:6;;;;;;;;;;;2466:13;;2400:87;:::o;33315:24::-;;;;;;;;;;;;;:::o;34276:31::-;;;;:::o;39696:100::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39781:7:::1;39767:11;;:21;;;;;;;;;;;;;;;;;;39696:100:::0;:::o;10035:104::-;10091:13;10124:7;10117:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10035:104;:::o;40889:304::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41033:13:::1;41025:21;;:4;:21;;;;41003:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41144:41;41173:4;41179:5;41144:28;:41::i;:::-;40889:304:::0;;:::o;33702:35::-;;;;:::o;34474:27::-;;;;:::o;14253:413::-;14346:4;14363:24;14390:11;:25;14402:12;:10;:12::i;:::-;14390:25;;;;;;;;;;;;;;;:34;14416:7;14390:34;;;;;;;;;;;;;;;;14363:61;;14463:15;14443:16;:35;;14435:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14556:67;14565:12;:10;:12::i;:::-;14579:7;14607:15;14588:16;:34;14556:8;:67::i;:::-;14654:4;14647:11;;;14253:413;;;;:::o;33610:29::-;;;;:::o;11447:175::-;11533:4;11550:42;11560:12;:10;:12::i;:::-;11574:9;11585:6;11550:9;:42::i;:::-;11610:4;11603:11;;11447:175;;;;:::o;41397:231::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41557:15:::1;;;;;;;;;;;41514:59;;41537:18;41514:59;;;;;;;;;;;;41602:18;41584:15;;:36;;;;;;;;;;;;;;;;;;41397:231:::0;:::o;34871:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33786:33::-;;;;;;;;;;;;;:::o;40699:182::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40815:8:::1;40784:19;:28;40804:7;40784:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40855:7;40839:34;;;40864:8;40839:34;;;;;;:::i;:::-;;;;;;;;40699:182:::0;;:::o;40247:444::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40425:13:::1;40406:16;:32;;;;40468:13;40449:16;:32;;;;40513:15;40492:18;:36;;;;40593:18;;40574:16;;40555;;:35;;;;:::i;:::-;:56;;;;:::i;:::-;40539:13;:72;;;;40647:2;40630:13;;:19;;40622:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40247:444:::0;;;:::o;39311:114::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39410:6:::1;39400;:17;;;;:::i;:::-;39388:9;:29;;;;39311:114:::0;:::o;34044:39::-;;;;;;;;;;;;;:::o;33348:35::-;;;;:::o;38676:497::-;38784:4;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38863:6:::1;38858:1;38842:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38841:28;;;;:::i;:::-;38828:9;:41;;38806:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39018:4;39013:1;38997:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38996:26;;;;:::i;:::-;38983:9;:39;;38961:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39134:9;39113:18;:30;;;;39161:4;39154:11;;38676:497:::0;;;:::o;34092:27::-;;;;:::o;11685:151::-;11774:7;11801:11;:18;11813:5;11801:18;;;;;;;;;;;;;;;:27;11820:7;11801:27;;;;;;;;;;;;;;;;11794:34;;11685:151;;;;:::o;33390:33::-;;;;:::o;38471:135::-;38531:4;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38571:5:::1;38548:20;;:28;;;;;;;;;;;;;;;;;;38594:4;38587:11;;38471:135:::0;:::o;34163:30::-;;;;:::o;3309:201::-;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3418:1:::1;3398:22;;:8;:22;;;;3390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3474:28;3493:8;3474:18;:28::i;:::-;3309:201:::0;:::o;34314:31::-;;;;:::o;33430:24::-;;;;:::o;51265:1056::-;51376:4;2631:12;:10;:12::i;:::-;2620:23;;:7;:5;:7::i;:::-;:23;;;2612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51461:19:::1;;51438:20;;:42;;;;:::i;:::-;51420:15;:60;51398:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51570:4;51559:7;:15;;51551:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51655:15;51632:20;:38;;;;51725:28;51756:4;:14;;;51771:13;51756:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51725:60;;51835:20;51858:44;51896:5;51858:33;51883:7;51858:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51835:67;;52022:1;52007:12;:16;52003:110;;;52040:61;52056:13;52079:6;52088:12;52040:15;:61::i;:::-;52003:110;52188:19;52225:13;52188:51;;52250:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52277:14;;;;;;;;;;52309:4;52302:11;;;;;51265:1056:::0;;;:::o;1073:98::-;1126:7;1153:10;1146:17;;1073:98;:::o;17937:380::-;18090:1;18073:19;;:5;:19;;;;18065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18171:1;18152:21;;:7;:21;;;;18144:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18255:6;18225:11;:18;18237:5;18225:18;;;;;;;;;;;;;;;:27;18244:7;18225:27;;;;;;;;;;;;;;;:36;;;;18293:7;18277:32;;18286:5;18277:32;;;18302:6;18277:32;;;;;;:::i;:::-;;;;;;;;17937:380;;;:::o;41985:5027::-;42133:1;42117:18;;:4;:18;;;;42109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42210:1;42196:16;;:2;:16;;;;42188:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42279:1;42269:6;:11;42265:93;;;42297:28;42313:4;42319:2;42323:1;42297:15;:28::i;:::-;42340:7;;42265:93;42374:14;;;;;;;;;;;42370:2487;;;42435:7;:5;:7::i;:::-;42427:15;;:4;:15;;;;:49;;;;;42469:7;:5;:7::i;:::-;42463:13;;:2;:13;;;;42427:49;:86;;;;;42511:1;42497:16;;:2;:16;;;;42427:86;:128;;;;;42548:6;42534:21;;:2;:21;;;;42427:128;:158;;;;;42577:8;;;;;;;;;;;42576:9;42427:158;42405:2441;;;42625:13;;;;;;;;;;;42620:223;;42697:19;:25;42717:4;42697:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42726:19;:23;42746:2;42726:23;;;;;;;;;;;;;;;;;;;;;;;;;42697:52;42663:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42620:223;42999:20;;;;;;;;;;;42995:641;;;43080:7;:5;:7::i;:::-;43074:13;;:2;:13;;;;:72;;;;;43130:15;43116:30;;:2;:30;;;;43074:72;:129;;;;;43189:13;43175:28;;:2;:28;;;;43074:129;43044:573;;;43367:12;43292:28;:39;43321:9;43292:39;;;;;;;;;;;;;;;;:87;43254:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43581:12;43539:28;:39;43568:9;43539:39;;;;;;;;;;;;;;;:54;;;;43044:573;42995:641;43710:25;:31;43736:4;43710:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43767:31;:35;43799:2;43767:35;;;;;;;;;;;;;;;;;;;;;;;;;43766:36;43710:92;43684:1147;;;43889:20;;43879:6;:30;;43845:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44097:9;;44080:13;44090:2;44080:9;:13::i;:::-;44071:6;:22;;;;:::i;:::-;:35;;44037:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43684:1147;;;44275:25;:29;44301:2;44275:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44330:31;:37;44362:4;44330:37;;;;;;;;;;;;;;;;;;;;;;;;;44329:38;44275:92;44249:582;;;44454:20;;44444:6;:30;;44410:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44249:582;;;44611:31;:35;44643:2;44611:35;;;;;;;;;;;;;;;;;;;;;;;;;44606:225;;44731:9;;44714:13;44724:2;44714:9;:13::i;:::-;44705:6;:22;;;;:::i;:::-;:35;;44671:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44606:225;44249:582;43684:1147;42405:2441;42370:2487;44869:28;44900:24;44918:4;44900:9;:24::i;:::-;44869:55;;44937:12;44976:18;;44952:20;:42;;44937:57;;45025:7;:35;;;;;45049:11;;;;;;;;;;;45025:35;:61;;;;;45078:8;;;;;;;;;;;45077:9;45025:61;:110;;;;;45104:25;:31;45130:4;45104:31;;;;;;;;;;;;;;;;;;;;;;;;;45103:32;45025:110;:153;;;;;45153:19;:25;45173:4;45153:25;;;;;;;;;;;;;;;;;;;;;;;;;45152:26;45025:153;:194;;;;;45196:19;:23;45216:2;45196:23;;;;;;;;;;;;;;;;;;;;;;;;;45195:24;45025:194;45007:326;;;45257:4;45246:8;;:15;;;;;;;;;;;;;;;;;;45278:10;:8;:10::i;:::-;45316:5;45305:8;;:16;;;;;;;;;;;;;;;;;;45007:326;45364:8;;;;;;;;;;;45363:9;:55;;;;;45389:25;:29;45415:2;45389:29;;;;;;;;;;;;;;;;;;;;;;;;;45363:55;:85;;;;;45435:13;;;;;;;;;;;45363:85;:153;;;;;45501:15;;45484:14;;:32;;;;:::i;:::-;45465:15;:51;;45363:153;:196;;;;;45534:19;:25;45554:4;45534:25;;;;;;;;;;;;;;;;;;;;;;;;;45533:26;45363:196;45345:282;;;45586:29;:27;:29::i;:::-;;45345:282;45639:12;45655:8;;;;;;;;;;;45654:9;45639:24;;45765:19;:25;45785:4;45765:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45794:19;:23;45814:2;45794:23;;;;;;;;;;;;;;;;;;;;;;;;;45765:52;45761:100;;;45844:5;45834:15;;45761:100;45873:12;45978:7;45974:985;;;46030:25;:29;46056:2;46030:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46079:1;46063:13;;:17;46030:50;46026:784;;;46108:34;46138:3;46108:25;46119:13;;46108:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46101:41;;46211:13;;46191:16;;46184:4;:23;;;;:::i;:::-;46183:41;;;;:::i;:::-;46161:18;;:63;;;;;;;:::i;:::-;;;;;;;;46289:13;;46267:18;;46260:4;:25;;;;:::i;:::-;46259:43;;;;:::i;:::-;46243:12;;:59;;;;;;;:::i;:::-;;;;;;;;46371:13;;46351:16;;46344:4;:23;;;;:::i;:::-;46343:41;;;;:::i;:::-;46321:18;;:63;;;;;;;:::i;:::-;;;;;;;;46026:784;;;46446:25;:31;46472:4;46446:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46496:1;46481:12;;:16;46446:51;46442:368;;;46525:33;46554:3;46525:24;46536:12;;46525:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46518:40;;46626:12;;46607:15;;46600:4;:22;;;;:::i;:::-;46599:39;;;;:::i;:::-;46577:18;;:61;;;;;;;:::i;:::-;;;;;;;;46702:12;;46681:17;;46674:4;:24;;;;:::i;:::-;46673:41;;;;:::i;:::-;46657:12;;:57;;;;;;;:::i;:::-;;;;;;;;46782:12;;46763:15;;46756:4;:22;;;;:::i;:::-;46755:39;;;;:::i;:::-;46733:18;;:61;;;;;;;:::i;:::-;;;;;;;;46442:368;46026:784;46837:1;46830:4;:8;46826:91;;;46859:42;46875:4;46889;46896;46859:15;:42::i;:::-;46826:91;46943:4;46933:14;;;;;:::i;:::-;;;45974:985;46971:33;46987:4;46993:2;46997:6;46971:15;:33::i;:::-;42098:4914;;;;41985:5027;;;;:::o;3670:191::-;3744:16;3763:6;;;;;;;;;;;3744:25;;3789:8;3780:6;;:17;;;;;;;;;;;;;;;;;;3844:8;3813:40;;3834:8;3813:40;;;;;;;;;;;;3733:128;3670:191;:::o;41201:188::-;41318:5;41284:25;:31;41310:4;41284:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41375:5;41341:40;;41369:4;41341:40;;;;;;;;;;;;41201:188;;:::o;23390:98::-;23448:7;23479:1;23475;:5;;;;:::i;:::-;23468:12;;23390:98;;;;:::o;23789:::-;23847:7;23878:1;23874;:5;;;;:::i;:::-;23867:12;;23789:98;;;;:::o;15156:733::-;15314:1;15296:20;;:6;:20;;;;15288:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15398:1;15377:23;;:9;:23;;;;15369:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15453:47;15474:6;15482:9;15493:6;15453:20;:47::i;:::-;15513:21;15537:9;:17;15547:6;15537:17;;;;;;;;;;;;;;;;15513:41;;15590:6;15573:13;:23;;15565:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15711:6;15695:13;:22;15675:9;:17;15685:6;15675:17;;;;;;;;;;;;;;;:42;;;;15763:6;15739:9;:20;15749:9;15739:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15804:9;15787:35;;15796:6;15787:35;;;15815:6;15787:35;;;;;;:::i;:::-;;;;;;;;15835:46;15855:6;15863:9;15874:6;15835:19;:46::i;:::-;15277:612;15156:733;;;:::o;48142:1756::-;48181:23;48207:24;48225:4;48207:9;:24::i;:::-;48181:50;;48242:25;48338:12;;48304:18;;48270;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48242:108;;48361:12;48409:1;48390:15;:20;:46;;;;48435:1;48414:17;:22;48390:46;48386:85;;;48453:7;;;;;48386:85;48526:2;48505:18;;:23;;;;:::i;:::-;48487:15;:41;48483:115;;;48584:2;48563:18;;:23;;;;:::i;:::-;48545:41;;48483:115;48659:23;48772:1;48739:17;48704:18;;48686:15;:36;;;;:::i;:::-;48685:71;;;;:::i;:::-;:88;;;;:::i;:::-;48659:114;;48784:26;48813:36;48833:15;48813;:19;;:36;;;;:::i;:::-;48784:65;;48862:25;48890:21;48862:49;;48924:36;48941:18;48924:16;:36::i;:::-;48973:18;48994:44;49020:17;48994:21;:25;;:44;;;;:::i;:::-;48973:65;;49051:23;49077:81;49130:17;49077:34;49092:18;;49077:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49051:107;;49169:17;49189:51;49222:17;49189:28;49204:12;;49189:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49169:71;;49253:23;49310:9;49292:15;49279:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49253:66;;49353:1;49332:18;:22;;;;49386:1;49365:18;:22;;;;49413:1;49398:12;:16;;;;49449:9;;;;;;;;;;;49441:23;;49472:9;49441:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49427:59;;;;;49521:1;49503:15;:19;:42;;;;;49544:1;49526:15;:19;49503:42;49499:278;;;49562:46;49575:15;49592;49562:12;:46::i;:::-;49628:137;49661:18;49698:15;49732:18;;49628:137;;;;;;;;:::i;:::-;;;;;;;;49499:278;49811:15;;;;;;;;;;;49803:29;;49854:21;49803:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49789:101;;;;;48170:1728;;;;;;;;;;48142:1756;:::o;50469:788::-;50526:4;50560:15;50543:14;:32;;;;50630:28;50661:4;:14;;;50676:13;50661:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50630:60;;50740:20;50763:77;50824:5;50763:42;50788:16;;50763:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50740:100;;50960:1;50945:12;:16;50941:110;;;50978:61;50994:13;51017:6;51026:12;50978:15;:61::i;:::-;50941:110;51126:19;51163:13;51126:51;;51188:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51215:12;;;;;;;;;;51245:4;51238:11;;;;;50469:788;:::o;18917:125::-;;;;:::o;19646:124::-;;;;:::o;23033:98::-;23091:7;23122:1;23118;:5;;;;:::i;:::-;23111:12;;23033:98;;;;:::o;47020:589::-;47146:21;47184:1;47170:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47146:40;;47215:4;47197;47202:1;47197:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47241:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47231:4;47236:1;47231:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47276:62;47293:4;47308:15;47326:11;47276:8;:62::i;:::-;47377:15;:66;;;47458:11;47484:1;47528:4;47555;47575:15;47377:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47075:534;47020:589;:::o;47617:517::-;47765:62;47782:4;47797:15;47815:11;47765:8;:62::i;:::-;47870:15;:31;;;47909:9;47942:4;47962:11;47988:1;48031;33232:6;48100:15;47870:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47617:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:179::-;15286:31;15282:1;15274:6;15270:14;15263:55;15146:179;:::o;15331:366::-;15473:3;15494:67;15558:2;15553:3;15494:67;:::i;:::-;15487:74;;15570:93;15659:3;15570:93;:::i;:::-;15688:2;15683:3;15679:12;15672:19;;15331:366;;;:::o;15703:419::-;15869:4;15907:2;15896:9;15892:18;15884:26;;15956:9;15950:4;15946:20;15942:1;15931:9;15927:17;15920:47;15984:131;16110:4;15984:131;:::i;:::-;15976:139;;15703:419;;;:::o;16128:244::-;16268:34;16264:1;16256:6;16252:14;16245:58;16337:27;16332:2;16324:6;16320:15;16313:52;16128:244;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:224::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:7;17379:2;17371:6;17367:15;17360:32;17175:224;:::o;17405:366::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:419::-;17943:4;17981:2;17970:9;17966:18;17958:26;;18030:9;18024:4;18020:20;18016:1;18005:9;18001:17;17994:47;18058:131;18184:4;18058:131;:::i;:::-;18050:139;;17777:419;;;:::o;18202:180::-;18250:77;18247:1;18240:88;18347:4;18344:1;18337:15;18371:4;18368:1;18361:15;18388:185;18428:1;18445:20;18463:1;18445:20;:::i;:::-;18440:25;;18479:20;18497:1;18479:20;:::i;:::-;18474:25;;18518:1;18508:35;;18523:18;;:::i;:::-;18508:35;18565:1;18562;18558:9;18553:14;;18388:185;;;;:::o;18579:240::-;18719:34;18715:1;18707:6;18703:14;18696:58;18788:23;18783:2;18775:6;18771:15;18764:48;18579:240;:::o;18825:366::-;18967:3;18988:67;19052:2;19047:3;18988:67;:::i;:::-;18981:74;;19064:93;19153:3;19064:93;:::i;:::-;19182:2;19177:3;19173:12;19166:19;;18825:366;;;:::o;19197:419::-;19363:4;19401:2;19390:9;19386:18;19378:26;;19450:9;19444:4;19440:20;19436:1;19425:9;19421:17;19414:47;19478:131;19604:4;19478:131;:::i;:::-;19470:139;;19197:419;;;:::o;19622:239::-;19762:34;19758:1;19750:6;19746:14;19739:58;19831:22;19826:2;19818:6;19814:15;19807:47;19622:239;:::o;19867:366::-;20009:3;20030:67;20094:2;20089:3;20030:67;:::i;:::-;20023:74;;20106:93;20195:3;20106:93;:::i;:::-;20224:2;20219:3;20215:12;20208:19;;19867:366;;;:::o;20239:419::-;20405:4;20443:2;20432:9;20428:18;20420:26;;20492:9;20486:4;20482:20;20478:1;20467:9;20463:17;20456:47;20520:131;20646:4;20520:131;:::i;:::-;20512:139;;20239:419;;;:::o;20664:225::-;20804:34;20800:1;20792:6;20788:14;20781:58;20873:8;20868:2;20860:6;20856:15;20849:33;20664:225;:::o;20895:366::-;21037:3;21058:67;21122:2;21117:3;21058:67;:::i;:::-;21051:74;;21134:93;21223:3;21134:93;:::i;:::-;21252:2;21247:3;21243:12;21236:19;;20895:366;;;:::o;21267:419::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21520:9;21514:4;21510:20;21506:1;21495:9;21491:17;21484:47;21548:131;21674:4;21548:131;:::i;:::-;21540:139;;21267:419;;;:::o;21692:182::-;21832:34;21828:1;21820:6;21816:14;21809:58;21692:182;:::o;21880:366::-;22022:3;22043:67;22107:2;22102:3;22043:67;:::i;:::-;22036:74;;22119:93;22208:3;22119:93;:::i;:::-;22237:2;22232:3;22228:12;22221:19;;21880:366;;;:::o;22252:419::-;22418:4;22456:2;22445:9;22441:18;22433:26;;22505:9;22499:4;22495:20;22491:1;22480:9;22476:17;22469:47;22533:131;22659:4;22533:131;:::i;:::-;22525:139;;22252:419;;;:::o;22677:229::-;22817:34;22813:1;22805:6;22801:14;22794:58;22886:12;22881:2;22873:6;22869:15;22862:37;22677:229;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:143::-;23766:5;23797:6;23791:13;23782:22;;23813:33;23840:5;23813:33;:::i;:::-;23709:143;;;;:::o;23858:351::-;23928:6;23977:2;23965:9;23956:7;23952:23;23948:32;23945:119;;;23983:79;;:::i;:::-;23945:119;24103:1;24128:64;24184:7;24175:6;24164:9;24160:22;24128:64;:::i;:::-;24118:74;;24074:128;23858:351;;;;:::o;24215:223::-;24355:34;24351:1;24343:6;24339:14;24332:58;24424:6;24419:2;24411:6;24407:15;24400:31;24215:223;:::o;24444:366::-;24586:3;24607:67;24671:2;24666:3;24607:67;:::i;:::-;24600:74;;24683:93;24772:3;24683:93;:::i;:::-;24801:2;24796:3;24792:12;24785:19;;24444:366;;;:::o;24816:419::-;24982:4;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24816:419;;;:::o;25241:221::-;25381:34;25377:1;25369:6;25365:14;25358:58;25450:4;25445:2;25437:6;25433:15;25426:29;25241:221;:::o;25468:366::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:419::-;26006:4;26044:2;26033:9;26029:18;26021:26;;26093:9;26087:4;26083:20;26079:1;26068:9;26064:17;26057:47;26121:131;26247:4;26121:131;:::i;:::-;26113:139;;25840:419;;;:::o;26265:224::-;26405:34;26401:1;26393:6;26389:14;26382:58;26474:7;26469:2;26461:6;26457:15;26450:32;26265:224;:::o;26495:366::-;26637:3;26658:67;26722:2;26717:3;26658:67;:::i;:::-;26651:74;;26734:93;26823:3;26734:93;:::i;:::-;26852:2;26847:3;26843:12;26836:19;;26495:366;;;:::o;26867:419::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;26867:419;;;:::o;27292:222::-;27432:34;27428:1;27420:6;27416:14;27409:58;27501:5;27496:2;27488:6;27484:15;27477:30;27292:222;:::o;27520:366::-;27662:3;27683:67;27747:2;27742:3;27683:67;:::i;:::-;27676:74;;27759:93;27848:3;27759:93;:::i;:::-;27877:2;27872:3;27868:12;27861:19;;27520:366;;;:::o;27892:419::-;28058:4;28096:2;28085:9;28081:18;28073:26;;28145:9;28139:4;28135:20;28131:1;28120:9;28116:17;28109:47;28173:131;28299:4;28173:131;:::i;:::-;28165:139;;27892:419;;;:::o;28317:172::-;28457:24;28453:1;28445:6;28441:14;28434:48;28317:172;:::o;28495:366::-;28637:3;28658:67;28722:2;28717:3;28658:67;:::i;:::-;28651:74;;28734:93;28823:3;28734:93;:::i;:::-;28852:2;28847:3;28843:12;28836:19;;28495:366;;;:::o;28867:419::-;29033:4;29071:2;29060:9;29056:18;29048:26;;29120:9;29114:4;29110:20;29106:1;29095:9;29091:17;29084:47;29148:131;29274:4;29148:131;:::i;:::-;29140:139;;28867:419;;;:::o;29292:297::-;29432:34;29428:1;29420:6;29416:14;29409:58;29501:34;29496:2;29488:6;29484:15;29477:59;29570:11;29565:2;29557:6;29553:15;29546:36;29292:297;:::o;29595:366::-;29737:3;29758:67;29822:2;29817:3;29758:67;:::i;:::-;29751:74;;29834:93;29923:3;29834:93;:::i;:::-;29952:2;29947:3;29943:12;29936:19;;29595:366;;;:::o;29967:419::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:240::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:23;30596:2;30588:6;30584:15;30577:48;30392:240;:::o;30638:366::-;30780:3;30801:67;30865:2;30860:3;30801:67;:::i;:::-;30794:74;;30877:93;30966:3;30877:93;:::i;:::-;30995:2;30990:3;30986:12;30979:19;;30638:366;;;:::o;31010:419::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:169::-;31575:21;31571:1;31563:6;31559:14;31552:45;31435:169;:::o;31610:366::-;31752:3;31773:67;31837:2;31832:3;31773:67;:::i;:::-;31766:74;;31849:93;31938:3;31849:93;:::i;:::-;31967:2;31962:3;31958:12;31951:19;;31610:366;;;:::o;31982:419::-;32148:4;32186:2;32175:9;32171:18;32163:26;;32235:9;32229:4;32225:20;32221:1;32210:9;32206:17;32199:47;32263:131;32389:4;32263:131;:::i;:::-;32255:139;;31982:419;;;:::o;32407:241::-;32547:34;32543:1;32535:6;32531:14;32524:58;32616:24;32611:2;32603:6;32599:15;32592:49;32407:241;:::o;32654:366::-;32796:3;32817:67;32881:2;32876:3;32817:67;:::i;:::-;32810:74;;32893:93;32982:3;32893:93;:::i;:::-;33011:2;33006:3;33002:12;32995:19;;32654:366;;;:::o;33026:419::-;33192:4;33230:2;33219:9;33215:18;33207:26;;33279:9;33273:4;33269:20;33265:1;33254:9;33250:17;33243:47;33307:131;33433:4;33307:131;:::i;:::-;33299:139;;33026:419;;;:::o;33451:191::-;33491:4;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33581;33578:8;33575:34;;;33589:18;;:::i;:::-;33575:34;33634:1;33631;33627:9;33619:17;;33451:191;;;;:::o;33648:225::-;33788:34;33784:1;33776:6;33772:14;33765:58;33857:8;33852:2;33844:6;33840:15;33833:33;33648:225;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:147::-;34777:11;34814:3;34799:18;;34676:147;;;;:::o;34829:114::-;;:::o;34949:398::-;35108:3;35129:83;35210:1;35205:3;35129:83;:::i;:::-;35122:90;;35221:93;35310:3;35221:93;:::i;:::-;35339:1;35334:3;35330:11;35323:18;;34949:398;;;:::o;35353:379::-;35537:3;35559:147;35702:3;35559:147;:::i;:::-;35552:154;;35723:3;35716:10;;35353:379;;;:::o;35738:442::-;35887:4;35925:2;35914:9;35910:18;35902:26;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;35738:442;;;;;;:::o;36186:180::-;36234:77;36231:1;36224:88;36331:4;36328:1;36321:15;36355:4;36352:1;36345:15;36372:180;36420:77;36417:1;36410:88;36517:4;36514:1;36507:15;36541:4;36538:1;36531:15;36558:143;36615:5;36646:6;36640:13;36631:22;;36662:33;36689:5;36662:33;:::i;:::-;36558:143;;;;:::o;36707:351::-;36777:6;36826:2;36814:9;36805:7;36801:23;36797:32;36794:119;;;36832:79;;:::i;:::-;36794:119;36952:1;36977:64;37033:7;37024:6;37013:9;37009:22;36977:64;:::i;:::-;36967:74;;36923:128;36707:351;;;;:::o;37064:85::-;37109:7;37138:5;37127:16;;37064:85;;;:::o;37155:158::-;37213:9;37246:61;37264:42;37273:32;37299:5;37273:32;:::i;:::-;37264:42;:::i;:::-;37246:61;:::i;:::-;37233:74;;37155:158;;;:::o;37319:147::-;37414:45;37453:5;37414:45;:::i;:::-;37409:3;37402:58;37319:147;;:::o;37472:114::-;37539:6;37573:5;37567:12;37557:22;;37472:114;;;:::o;37592:184::-;37691:11;37725:6;37720:3;37713:19;37765:4;37760:3;37756:14;37741:29;;37592:184;;;;:::o;37782:132::-;37849:4;37872:3;37864:11;;37902:4;37897:3;37893:14;37885:22;;37782:132;;;:::o;37920:108::-;37997:24;38015:5;37997:24;:::i;:::-;37992:3;37985:37;37920:108;;:::o;38034:179::-;38103:10;38124:46;38166:3;38158:6;38124:46;:::i;:::-;38202:4;38197:3;38193:14;38179:28;;38034:179;;;;:::o;38219:113::-;38289:4;38321;38316:3;38312:14;38304:22;;38219:113;;;:::o;38368:732::-;38487:3;38516:54;38564:5;38516:54;:::i;:::-;38586:86;38665:6;38660:3;38586:86;:::i;:::-;38579:93;;38696:56;38746:5;38696:56;:::i;:::-;38775:7;38806:1;38791:284;38816:6;38813:1;38810:13;38791:284;;;38892:6;38886:13;38919:63;38978:3;38963:13;38919:63;:::i;:::-;38912:70;;39005:60;39058:6;39005:60;:::i;:::-;38995:70;;38851:224;38838:1;38835;38831:9;38826:14;;38791:284;;;38795:14;39091:3;39084:10;;38492:608;;;38368:732;;;;:::o;39106:831::-;39369:4;39407:3;39396:9;39392:19;39384:27;;39421:71;39489:1;39478:9;39474:17;39465:6;39421:71;:::i;:::-;39502:80;39578:2;39567:9;39563:18;39554:6;39502:80;:::i;:::-;39629:9;39623:4;39619:20;39614:2;39603:9;39599:18;39592:48;39657:108;39760:4;39751:6;39657:108;:::i;:::-;39649:116;;39775:72;39843:2;39832:9;39828:18;39819:6;39775:72;:::i;:::-;39857:73;39925:3;39914:9;39910:19;39901:6;39857:73;:::i;:::-;39106:831;;;;;;;;:::o;39943:807::-;40192:4;40230:3;40219:9;40215:19;40207:27;;40244:71;40312:1;40301:9;40297:17;40288:6;40244:71;:::i;:::-;40325:72;40393:2;40382:9;40378:18;40369:6;40325:72;:::i;:::-;40407:80;40483:2;40472:9;40468:18;40459:6;40407:80;:::i;:::-;40497;40573:2;40562:9;40558:18;40549:6;40497:80;:::i;:::-;40587:73;40655:3;40644:9;40640:19;40631:6;40587:73;:::i;:::-;40670;40738:3;40727:9;40723:19;40714:6;40670:73;:::i;:::-;39943:807;;;;;;;;;:::o;40756:663::-;40844:6;40852;40860;40909:2;40897:9;40888:7;40884:23;40880:32;40877:119;;;40915:79;;:::i;:::-;40877:119;41035:1;41060:64;41116:7;41107:6;41096:9;41092:22;41060:64;:::i;:::-;41050:74;;41006:128;41173:2;41199:64;41255:7;41246:6;41235:9;41231:22;41199:64;:::i;:::-;41189:74;;41144:129;41312:2;41338:64;41394:7;41385:6;41374:9;41370:22;41338:64;:::i;:::-;41328:74;;41283:129;40756:663;;;;;:::o

Swarm Source

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