ETH Price: $2,679.25 (-2.17%)
Gas: 0.93 Gwei

Token

XlabAI (LAB)
 

Overview

Max Total Supply

100,000,000 LAB

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
96,750.742883723439999879 LAB

Value
$0.00
0x542ba7e5f37e1c11aafdd9f22de3506991370122
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:
XlabAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

🌎 Website: https://xlabai.com/
🌐 Twitter: https://twitter.com/XlabAI
📱 Telegram: https://t.me/xlabai

*/


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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


contract XlabAI 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 marketingWallet;
    address public devWallet;

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

    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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

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

    // 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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );



    constructor(address wallet1) ERC20("XlabAI", "LAB") {
        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 = 4;
        uint256 _buyLiquidityFee = 1;

        uint256 _sellMarketingFee = 4;
        uint256 _sellLiquidityFee = 1;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 100_000_000 * 1e18;
        maxWallet = 100_000_000 * 1e18;
        swapTokensAtAmount = 100_000 * 1e18;

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

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

        marketingWallet = wallet1; // set as marketing wallet
        devWallet = owner();

        // 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;
        buyMarketingFee = 91;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellMarketingFee = 85;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
    }

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


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

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

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

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

    function AIactivate() external onlyOwner {
        buyMarketingFee = 5;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellMarketingFee = 5;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        maxTransactionAmount = 2_000_000 * 1e18;
        maxWallet = 2_000_000 * 1e18;
    }

    // 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 40, "Must keep fees at 20% or less");
    }

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

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

    function manualswap(uint256 amount) external {
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

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

    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 newDevWallet)
        external
        onlyOwner
    {
        devWallet = newDevWallet;
    }

    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."
                    );
                }

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

        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;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / 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
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing;
        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 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"AIactivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"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":"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"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"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","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"}],"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162005cde38038062005cde833981810160405281019062000088919062000af2565b6040518060400160405280600681526020017f586c6162414900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c41420000000000000000000000000000000000000000000000000000000000815250816003908162000105919062000d9e565b50806004908162000117919062000d9e565b5050506200013a6200012e6200054960201b60201c565b6200055160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001668160016200061760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020c919062000af2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029a919062000af2565b6040518363ffffffff1660e01b8152600401620002b992919062000e96565b6020604051808303816000875af1158015620002d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ff919062000af2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034760a05160016200061760201b60201c565b6200035c60a05160016200070160201b60201c565b60006004905060006001905060006004905060006001905060006a52b7d2dcc80cd2e400000090506a52b7d2dcc80cd2e40000006008819055506a52b7d2dcc80cd2e4000000600a8190555069152d02c7e14af680000060098190555084600e8190555083600f81905550600f54600e54620003d9919062000ef2565b600d819055508260118190555081601281905550601254601154620003ff919062000ef2565b60108190555086600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000456620007a260201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b8620004aa620007a260201b60201c565b6001620007cc60201b60201c565b620004cb306001620007cc60201b60201c565b620004e061dead6001620007cc60201b60201c565b62000502620004f4620007a260201b60201c565b60016200061760201b60201c565b620005153060016200061760201b60201c565b6200052a61dead60016200061760201b60201c565b6200053c33826200090660201b60201c565b505050505050506200108a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006276200054960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200064d620007a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069d9062000f8e565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007dc6200054960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000802620007a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008529062000f8e565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008fa919062000fcd565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000978576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096f906200103a565b60405180910390fd5b6200098c6000838362000a7e60201b60201c565b8060026000828254620009a0919062000ef2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009f7919062000ef2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a5e91906200106d565b60405180910390a362000a7a6000838362000a8360201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aba8262000a8d565b9050919050565b62000acc8162000aad565b811462000ad857600080fd5b50565b60008151905062000aec8162000ac1565b92915050565b60006020828403121562000b0b5762000b0a62000a88565b5b600062000b1b8482850162000adb565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ba657607f821691505b60208210810362000bbc5762000bbb62000b5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000be7565b62000c32868362000be7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c7f62000c7962000c738462000c4a565b62000c54565b62000c4a565b9050919050565b6000819050919050565b62000c9b8362000c5e565b62000cb362000caa8262000c86565b84845462000bf4565b825550505050565b600090565b62000cca62000cbb565b62000cd781848462000c90565b505050565b5b8181101562000cff5762000cf360008262000cc0565b60018101905062000cdd565b5050565b601f82111562000d4e5762000d188162000bc2565b62000d238462000bd7565b8101602085101562000d33578190505b62000d4b62000d428562000bd7565b83018262000cdc565b50505b505050565b600082821c905092915050565b600062000d736000198460080262000d53565b1980831691505092915050565b600062000d8e838362000d60565b9150826002028217905092915050565b62000da98262000b24565b67ffffffffffffffff81111562000dc55762000dc462000b2f565b5b62000dd1825462000b8d565b62000dde82828562000d03565b600060209050601f83116001811462000e16576000841562000e01578287015190505b62000e0d858262000d80565b86555062000e7d565b601f19841662000e268662000bc2565b60005b8281101562000e505784890151825560018201915060208501945060208101905062000e29565b8683101562000e70578489015162000e6c601f89168262000d60565b8355505b6001600288020188555050505b505050505050565b62000e908162000aad565b82525050565b600060408201905062000ead600083018562000e85565b62000ebc602083018462000e85565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000eff8262000c4a565b915062000f0c8362000c4a565b925082820190508082111562000f275762000f2662000ec3565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f7660208362000f2d565b915062000f838262000f3e565b602082019050919050565b6000602082019050818103600083015262000fa98162000f67565b9050919050565b60008115159050919050565b62000fc78162000fb0565b82525050565b600060208201905062000fe4600083018462000fbc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001022601f8362000f2d565b91506200102f8262000fea565b602082019050919050565b60006020820190508181036000830152620010558162001013565b9050919050565b620010678162000c4a565b82525050565b60006020820190506200108460008301846200105c565b92915050565b60805160a051614c04620010da600039600081816111f1015261196b015260008181610d4701528181612f47015281816130280152818161304f01528181613664015261368b0152614c046000f3fe6080604052600436106102cd5760003560e01c80637bce5a0411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610ae1578063f2fde38b14610b0c578063f637434214610b35578063f8b45b0514610b60576102d4565b8063d85ba06314610a4e578063dd62ed3e14610a79578063e2f4560514610ab6576102d4565b8063b62496f51461092c578063bbc0c74214610969578063c024666814610994578063c18bc195146109bd578063c8c8ebe4146109e6578063d257b34f14610a11576102d4565b8063924de9b71161012e578063924de9b71461080c57806395d89b41146108355780639a7a23d614610860578063a457c2d714610889578063a9059cbb146108c6578063aacebbe314610903576102d4565b80637bce5a0414610720578063881dce601461074b5780638a8c523c146107745780638da5cb5b1461078b5780638ea5220f146107b657806392136913146107e1576102d4565b8063313ce567116102345780636a486a8e116101ed57806370a08231116101c757806370a0823114610678578063715018a6146106b5578063751039fc146106cc5780637571336a146106f7576102d4565b80636a486a8e1461060b5780636ddd1713146106365780636fc3eaec14610661576102d4565b8063313ce5671461050d578063395093511461053857806341c9541a1461057557806349bd5a5e1461058c5780634a62bb65146105b757806366ca9b83146105e2576102d4565b80631816467f116102865780631816467f146103fd5780631a8145bb146104265780631f3fed8f14610451578063203e727e1461047c57806323b872dd146104a557806327c8f835146104e2576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb9190613795565b610b8b565b005b34801561030e57600080fd5b50610317610c75565b6040516103249190613865565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906138e5565b610d07565b6040516103619190613940565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061395b565b610d25565b60405161039e9190613940565b60405180910390f35b3480156103b357600080fd5b506103bc610d45565b6040516103c991906139e7565b60405180910390f35b3480156103de57600080fd5b506103e7610d69565b6040516103f49190613a11565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f919061395b565b610d73565b005b34801561043257600080fd5b5061043b610e33565b6040516104489190613a11565b60405180910390f35b34801561045d57600080fd5b50610466610e39565b6040516104739190613a11565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613a2c565b610e3f565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613a59565b610f4e565b6040516104d99190613940565b60405180910390f35b3480156104ee57600080fd5b506104f7611046565b6040516105049190613abb565b60405180910390f35b34801561051957600080fd5b5061052261104c565b60405161052f9190613af2565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906138e5565b611055565b60405161056c9190613940565b60405180910390f35b34801561058157600080fd5b5061058a611101565b005b34801561059857600080fd5b506105a16111ef565b6040516105ae9190613abb565b60405180910390f35b3480156105c357600080fd5b506105cc611213565b6040516105d99190613940565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613795565b611226565b005b34801561061757600080fd5b50610620611310565b60405161062d9190613a11565b60405180910390f35b34801561064257600080fd5b5061064b611316565b6040516106589190613940565b60405180910390f35b34801561066d57600080fd5b50610676611329565b005b34801561068457600080fd5b5061069f600480360381019061069a919061395b565b6113bc565b6040516106ac9190613a11565b60405180910390f35b3480156106c157600080fd5b506106ca611404565b005b3480156106d857600080fd5b506106e161148c565b6040516106ee9190613940565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613b39565b61152c565b005b34801561072c57600080fd5b50610735611603565b6040516107429190613a11565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613a2c565b611609565b005b34801561078057600080fd5b5061078961166c565b005b34801561079757600080fd5b506107a061176c565b6040516107ad9190613abb565b60405180910390f35b3480156107c257600080fd5b506107cb611796565b6040516107d89190613abb565b60405180910390f35b3480156107ed57600080fd5b506107f66117bc565b6040516108039190613a11565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613b79565b6117c2565b005b34801561084157600080fd5b5061084a61185b565b6040516108579190613865565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613b39565b6118ed565b005b34801561089557600080fd5b506108b060048036038101906108ab91906138e5565b611a05565b6040516108bd9190613940565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e891906138e5565b611af0565b6040516108fa9190613940565b60405180910390f35b34801561090f57600080fd5b5061092a6004803603810190610925919061395b565b611b0e565b005b34801561093857600080fd5b50610953600480360381019061094e919061395b565b611c4a565b6040516109609190613940565b60405180910390f35b34801561097557600080fd5b5061097e611c6a565b60405161098b9190613940565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190613b39565b611c7d565b005b3480156109c957600080fd5b506109e460048036038101906109df9190613a2c565b611da2565b005b3480156109f257600080fd5b506109fb611eb1565b604051610a089190613a11565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190613a2c565b611eb7565b604051610a459190613940565b60405180910390f35b348015610a5a57600080fd5b50610a6361200c565b604051610a709190613a11565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613ba6565b612012565b604051610aad9190613a11565b60405180910390f35b348015610ac257600080fd5b50610acb612099565b604051610ad89190613a11565b60405180910390f35b348015610aed57600080fd5b50610af661209f565b604051610b039190613a11565b60405180910390f35b348015610b1857600080fd5b50610b336004803603810190610b2e919061395b565b6120a5565b005b348015610b4157600080fd5b50610b4a61219c565b604051610b579190613a11565b60405180910390f35b348015610b6c57600080fd5b50610b756121a2565b604051610b829190613a11565b60405180910390f35b610b936121a8565b73ffffffffffffffffffffffffffffffffffffffff16610bb161176c565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90613c32565b60405180910390fd5b8160118190555080601281905550601254601154610c259190613c81565b60108190555060286010541115610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613d01565b60405180910390fd5b5050565b606060038054610c8490613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090613d50565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b5050505050905090565b6000610d1b610d146121a8565b84846121b0565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d7b6121a8565b73ffffffffffffffffffffffffffffffffffffffff16610d9961176c565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613c32565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610e476121a8565b73ffffffffffffffffffffffffffffffffffffffff16610e6561176c565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613c32565b60405180910390fd5b670de0b6b3a76400006103e86001610ed1610d69565b610edb9190613d81565b610ee59190613df2565b610eef9190613df2565b811015610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613e95565b60405180910390fd5b670de0b6b3a764000081610f459190613d81565b60088190555050565b6000610f5b848484612379565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa66121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613f27565b60405180910390fd5b61103a856110326121a8565b8584036121b0565b60019150509392505050565b61dead81565b60006012905090565b60006110f76110626121a8565b8484600160006110706121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f29190613c81565b6121b0565b6001905092915050565b6111096121a8565b73ffffffffffffffffffffffffffffffffffffffff1661112761176c565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613c32565b60405180910390fd5b6005600e819055506000600f81905550600f54600e5461119d9190613c81565b600d81905550600560118190555060006012819055506012546011546111c39190613c81565b6010819055506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b61122e6121a8565b73ffffffffffffffffffffffffffffffffffffffff1661124c61176c565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613c32565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112c09190613c81565b600d819055506028600d54111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613f93565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161137190613fe4565b60006040518083038185875af1925050503d80600081146113ae576040519150601f19603f3d011682016040523d82523d6000602084013e6113b3565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140c6121a8565b73ffffffffffffffffffffffffffffffffffffffff1661142a61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613c32565b60405180910390fd5b61148a6000612de2565b565b60006114966121a8565b73ffffffffffffffffffffffffffffffffffffffff166114b461176c565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613c32565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115346121a8565b73ffffffffffffffffffffffffffffffffffffffff1661155261176c565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613c32565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b611612306113bc565b81111580156116215750600081115b611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790614045565b60405180910390fd5b61166981612ea8565b50565b6116746121a8565b73ffffffffffffffffffffffffffffffffffffffff1661169261176c565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613c32565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550605b600e819055506000600f81905550600f54600e5461173e9190613c81565b600d81905550605560118190555060006012819055506012546011546117649190613c81565b601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6117ca6121a8565b73ffffffffffffffffffffffffffffffffffffffff166117e861176c565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590613c32565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461186a90613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461189690613d50565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b5050505050905090565b6118f56121a8565b73ffffffffffffffffffffffffffffffffffffffff1661191361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613c32565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906140d7565b60405180910390fd5b611a0182826130e5565b5050565b60008060016000611a146121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614169565b60405180910390fd5b611ae5611adc6121a8565b858584036121b0565b600191505092915050565b6000611b04611afd6121a8565b8484612379565b6001905092915050565b611b166121a8565b73ffffffffffffffffffffffffffffffffffffffff16611b3461176c565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8190613c32565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c856121a8565b73ffffffffffffffffffffffffffffffffffffffff16611ca361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613c32565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d969190613940565b60405180910390a25050565b611daa6121a8565b73ffffffffffffffffffffffffffffffffffffffff16611dc861176c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613c32565b60405180910390fd5b670de0b6b3a76400006103e86005611e34610d69565b611e3e9190613d81565b611e489190613df2565b611e529190613df2565b811015611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906141fb565b60405180910390fd5b670de0b6b3a764000081611ea89190613d81565b600a8190555050565b60085481565b6000611ec16121a8565b73ffffffffffffffffffffffffffffffffffffffff16611edf61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c32565b60405180910390fd5b620186a06001611f43610d69565b611f4d9190613d81565b611f579190613df2565b821015611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061428d565b60405180910390fd5b6103e86005611fa6610d69565b611fb09190613d81565b611fba9190613df2565b821115611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061431f565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120ad6121a8565b73ffffffffffffffffffffffffffffffffffffffff166120cb61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612187906143b1565b60405180910390fd5b61219981612de2565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614443565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906144d5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161236c9190613a11565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90614567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e906145f9565b60405180910390fd5b600081036124705761246b83836000613186565b612ddd565b600b60009054906101000a900460ff161561296b5761248d61176c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124fb57506124cb61176c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125875750600560149054906101000a900460ff16155b1561296a57600b60019054906101000a900460ff1661268157601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126415750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790614665565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127245750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127cb5760085481111561276e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612765906146f7565b60405180910390fd5b600a5461277a836113bc565b826127859190613c81565b11156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614763565b60405180910390fd5b612969565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561286e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128bd576008548111156128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af906147f5565b60405180910390fd5b612968565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661296757600a5461291a836113bc565b826129259190613c81565b1115612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614763565b60405180910390fd5b5b5b5b5b5b6000612976306113bc565b90506000600954821015905080801561299b5750600b60029054906101000a900460ff165b80156129b45750600560149054906101000a900460ff16155b8015612a0a5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a605750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ab65750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612afa576001600560146101000a81548160ff021916908315150217905550612ade613405565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bb05750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bba57600090505b60008115612dcd57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1d57506000601054115b15612cb757612c4a6064612c3c6010548861361290919063ffffffff16565b61362890919063ffffffff16565b905060105460125482612c5d9190613d81565b612c679190613df2565b60146000828254612c789190613c81565b9250508190555060105460115482612c909190613d81565b612c9a9190613df2565b60136000828254612cab9190613c81565b92505081905550612da9565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d1257506000600d54115b15612da857612d3f6064612d31600d548861361290919063ffffffff16565b61362890919063ffffffff16565b9050600d54600f5482612d529190613d81565b612d5c9190613df2565b60146000828254612d6d9190613c81565b92505081905550600d54600e5482612d859190613d81565b612d8f9190613df2565b60136000828254612da09190613c81565b925050819055505b5b6000811115612dbe57612dbd873083613186565b5b8085612dca9190614815565b94505b612dd8878787613186565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612ec557612ec4614849565b5b604051908082528060200260200182016040528015612ef35781602001602082028036833780820191505090505b5090503081600081518110612f0b57612f0a614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd491906148bc565b81600181518110612fe857612fe7614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061304d307f0000000000000000000000000000000000000000000000000000000000000000846121b0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130af9594939291906149e2565b600060405180830381600087803b1580156130c957600080fd5b505af11580156130dd573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b906145f9565b60405180910390fd5b61326f83838361363e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec90614aae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133889190613c81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133ec9190613a11565b60405180910390a36133ff848484613643565b50505050565b6000613410306113bc565b905060006013546014546134249190613c81565b90506000808314806134365750600082145b1561344357505050613610565b60146009546134529190613d81565b83111561346b5760146009546134689190613d81565b92505b60006002836014548661347e9190613d81565b6134889190613df2565b6134929190613df2565b905060006134a9828661364890919063ffffffff16565b905060004790506134b982612ea8565b60006134ce824761364890919063ffffffff16565b905060006134f9876134eb6013548561361290919063ffffffff16565b61362890919063ffffffff16565b9050600081836135099190614815565b90506000601481905550600060138190555060008611801561352b5750600081115b156135785761353a868261365e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161356f93929190614ace565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135be90613fe4565b60006040518083038185875af1925050503d80600081146135fb576040519150601f19603f3d011682016040523d82523d6000602084013e613600565b606091505b5050809750505050505050505050505b565b600081836136209190613d81565b905092915050565b600081836136369190613df2565b905092915050565b505050565b505050565b600081836136569190614815565b905092915050565b613689307f0000000000000000000000000000000000000000000000000000000000000000846121b0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161371096959493929190614b05565b60606040518083038185885af115801561372e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137539190614b7b565b5050505050565b600080fd5b6000819050919050565b6137728161375f565b811461377d57600080fd5b50565b60008135905061378f81613769565b92915050565b600080604083850312156137ac576137ab61375a565b5b60006137ba85828601613780565b92505060206137cb85828601613780565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561380f5780820151818401526020810190506137f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000613837826137d5565b61384181856137e0565b93506138518185602086016137f1565b61385a8161381b565b840191505092915050565b6000602082019050818103600083015261387f818461382c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138b282613887565b9050919050565b6138c2816138a7565b81146138cd57600080fd5b50565b6000813590506138df816138b9565b92915050565b600080604083850312156138fc576138fb61375a565b5b600061390a858286016138d0565b925050602061391b85828601613780565b9150509250929050565b60008115159050919050565b61393a81613925565b82525050565b60006020820190506139556000830184613931565b92915050565b6000602082840312156139715761397061375a565b5b600061397f848285016138d0565b91505092915050565b6000819050919050565b60006139ad6139a86139a384613887565b613988565b613887565b9050919050565b60006139bf82613992565b9050919050565b60006139d1826139b4565b9050919050565b6139e1816139c6565b82525050565b60006020820190506139fc60008301846139d8565b92915050565b613a0b8161375f565b82525050565b6000602082019050613a266000830184613a02565b92915050565b600060208284031215613a4257613a4161375a565b5b6000613a5084828501613780565b91505092915050565b600080600060608486031215613a7257613a7161375a565b5b6000613a80868287016138d0565b9350506020613a91868287016138d0565b9250506040613aa286828701613780565b9150509250925092565b613ab5816138a7565b82525050565b6000602082019050613ad06000830184613aac565b92915050565b600060ff82169050919050565b613aec81613ad6565b82525050565b6000602082019050613b076000830184613ae3565b92915050565b613b1681613925565b8114613b2157600080fd5b50565b600081359050613b3381613b0d565b92915050565b60008060408385031215613b5057613b4f61375a565b5b6000613b5e858286016138d0565b9250506020613b6f85828601613b24565b9150509250929050565b600060208284031215613b8f57613b8e61375a565b5b6000613b9d84828501613b24565b91505092915050565b60008060408385031215613bbd57613bbc61375a565b5b6000613bcb858286016138d0565b9250506020613bdc858286016138d0565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c1c6020836137e0565b9150613c2782613be6565b602082019050919050565b60006020820190508181036000830152613c4b81613c0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c8c8261375f565b9150613c978361375f565b9250828201905080821115613caf57613cae613c52565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613ceb601d836137e0565b9150613cf682613cb5565b602082019050919050565b60006020820190508181036000830152613d1a81613cde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6857607f821691505b602082108103613d7b57613d7a613d21565b5b50919050565b6000613d8c8261375f565b9150613d978361375f565b9250828202613da58161375f565b91508282048414831517613dbc57613dbb613c52565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dfd8261375f565b9150613e088361375f565b925082613e1857613e17613dc3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e7f602f836137e0565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f116028836137e0565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613f7d601d836137e0565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b600081905092915050565b50565b6000613fce600083613fb3565b9150613fd982613fbe565b600082019050919050565b6000613fef82613fc1565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061402f600c836137e0565b915061403a82613ff9565b602082019050919050565b6000602082019050818103600083015261405e81614022565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140c16039836137e0565b91506140cc82614065565b604082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141536025836137e0565b915061415e826140f7565b604082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006141e56024836137e0565b91506141f082614189565b604082019050919050565b60006020820190508181036000830152614214816141d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142776035836137e0565b91506142828261421b565b604082019050919050565b600060208201905081810360008301526142a68161426a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143096034836137e0565b9150614314826142ad565b604082019050919050565b60006020820190508181036000830152614338816142fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061439b6026836137e0565b91506143a68261433f565b604082019050919050565b600060208201905081810360008301526143ca8161438e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061442d6024836137e0565b9150614438826143d1565b604082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144bf6022836137e0565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145516025836137e0565b915061455c826144f5565b604082019050919050565b6000602082019050818103600083015261458081614544565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145e36023836137e0565b91506145ee82614587565b604082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061464f6016836137e0565b915061465a82614619565b602082019050919050565b6000602082019050818103600083015261467e81614642565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146e16035836137e0565b91506146ec82614685565b604082019050919050565b60006020820190508181036000830152614710816146d4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061474d6013836137e0565b915061475882614717565b602082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147df6036836137e0565b91506147ea82614783565b604082019050919050565b6000602082019050818103600083015261480e816147d2565b9050919050565b60006148208261375f565b915061482b8361375f565b925082820390508181111561484357614842613c52565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b6816138b9565b92915050565b6000602082840312156148d2576148d161375a565b5b60006148e0848285016148a7565b91505092915050565b6000819050919050565b600061490e614909614904846148e9565b613988565b61375f565b9050919050565b61491e816148f3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614959816138a7565b82525050565b600061496b8383614950565b60208301905092915050565b6000602082019050919050565b600061498f82614924565b614999818561492f565b93506149a483614940565b8060005b838110156149d55781516149bc888261495f565b97506149c783614977565b9250506001810190506149a8565b5085935050505092915050565b600060a0820190506149f76000830188613a02565b614a046020830187614915565b8181036040830152614a168186614984565b9050614a256060830185613aac565b614a326080830184613a02565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614a986026836137e0565b9150614aa382614a3c565b604082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b6000606082019050614ae36000830186613a02565b614af06020830185613a02565b614afd6040830184613a02565b949350505050565b600060c082019050614b1a6000830189613aac565b614b276020830188613a02565b614b346040830187614915565b614b416060830186614915565b614b4e6080830185613aac565b614b5b60a0830184613a02565b979650505050505050565b600081519050614b7581613769565b92915050565b600080600060608486031215614b9457614b9361375a565b5b6000614ba286828701614b66565b9350506020614bb386828701614b66565b9250506040614bc486828701614b66565b915050925092509256fea264697066735822122056c12fa8b543c851db424ac9af6a41f2027b5bf4e5fc502e1e69587d6e542efc64736f6c63430008110033000000000000000000000000ef8df0b503f5366aacd8a02de4dd8cf96c859a5d

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80637bce5a0411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610ae1578063f2fde38b14610b0c578063f637434214610b35578063f8b45b0514610b60576102d4565b8063d85ba06314610a4e578063dd62ed3e14610a79578063e2f4560514610ab6576102d4565b8063b62496f51461092c578063bbc0c74214610969578063c024666814610994578063c18bc195146109bd578063c8c8ebe4146109e6578063d257b34f14610a11576102d4565b8063924de9b71161012e578063924de9b71461080c57806395d89b41146108355780639a7a23d614610860578063a457c2d714610889578063a9059cbb146108c6578063aacebbe314610903576102d4565b80637bce5a0414610720578063881dce601461074b5780638a8c523c146107745780638da5cb5b1461078b5780638ea5220f146107b657806392136913146107e1576102d4565b8063313ce567116102345780636a486a8e116101ed57806370a08231116101c757806370a0823114610678578063715018a6146106b5578063751039fc146106cc5780637571336a146106f7576102d4565b80636a486a8e1461060b5780636ddd1713146106365780636fc3eaec14610661576102d4565b8063313ce5671461050d578063395093511461053857806341c9541a1461057557806349bd5a5e1461058c5780634a62bb65146105b757806366ca9b83146105e2576102d4565b80631816467f116102865780631816467f146103fd5780631a8145bb146104265780631f3fed8f14610451578063203e727e1461047c57806323b872dd146104a557806327c8f835146104e2576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb9190613795565b610b8b565b005b34801561030e57600080fd5b50610317610c75565b6040516103249190613865565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906138e5565b610d07565b6040516103619190613940565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061395b565b610d25565b60405161039e9190613940565b60405180910390f35b3480156103b357600080fd5b506103bc610d45565b6040516103c991906139e7565b60405180910390f35b3480156103de57600080fd5b506103e7610d69565b6040516103f49190613a11565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f919061395b565b610d73565b005b34801561043257600080fd5b5061043b610e33565b6040516104489190613a11565b60405180910390f35b34801561045d57600080fd5b50610466610e39565b6040516104739190613a11565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613a2c565b610e3f565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613a59565b610f4e565b6040516104d99190613940565b60405180910390f35b3480156104ee57600080fd5b506104f7611046565b6040516105049190613abb565b60405180910390f35b34801561051957600080fd5b5061052261104c565b60405161052f9190613af2565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906138e5565b611055565b60405161056c9190613940565b60405180910390f35b34801561058157600080fd5b5061058a611101565b005b34801561059857600080fd5b506105a16111ef565b6040516105ae9190613abb565b60405180910390f35b3480156105c357600080fd5b506105cc611213565b6040516105d99190613940565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613795565b611226565b005b34801561061757600080fd5b50610620611310565b60405161062d9190613a11565b60405180910390f35b34801561064257600080fd5b5061064b611316565b6040516106589190613940565b60405180910390f35b34801561066d57600080fd5b50610676611329565b005b34801561068457600080fd5b5061069f600480360381019061069a919061395b565b6113bc565b6040516106ac9190613a11565b60405180910390f35b3480156106c157600080fd5b506106ca611404565b005b3480156106d857600080fd5b506106e161148c565b6040516106ee9190613940565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613b39565b61152c565b005b34801561072c57600080fd5b50610735611603565b6040516107429190613a11565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613a2c565b611609565b005b34801561078057600080fd5b5061078961166c565b005b34801561079757600080fd5b506107a061176c565b6040516107ad9190613abb565b60405180910390f35b3480156107c257600080fd5b506107cb611796565b6040516107d89190613abb565b60405180910390f35b3480156107ed57600080fd5b506107f66117bc565b6040516108039190613a11565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613b79565b6117c2565b005b34801561084157600080fd5b5061084a61185b565b6040516108579190613865565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613b39565b6118ed565b005b34801561089557600080fd5b506108b060048036038101906108ab91906138e5565b611a05565b6040516108bd9190613940565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e891906138e5565b611af0565b6040516108fa9190613940565b60405180910390f35b34801561090f57600080fd5b5061092a6004803603810190610925919061395b565b611b0e565b005b34801561093857600080fd5b50610953600480360381019061094e919061395b565b611c4a565b6040516109609190613940565b60405180910390f35b34801561097557600080fd5b5061097e611c6a565b60405161098b9190613940565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190613b39565b611c7d565b005b3480156109c957600080fd5b506109e460048036038101906109df9190613a2c565b611da2565b005b3480156109f257600080fd5b506109fb611eb1565b604051610a089190613a11565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190613a2c565b611eb7565b604051610a459190613940565b60405180910390f35b348015610a5a57600080fd5b50610a6361200c565b604051610a709190613a11565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613ba6565b612012565b604051610aad9190613a11565b60405180910390f35b348015610ac257600080fd5b50610acb612099565b604051610ad89190613a11565b60405180910390f35b348015610aed57600080fd5b50610af661209f565b604051610b039190613a11565b60405180910390f35b348015610b1857600080fd5b50610b336004803603810190610b2e919061395b565b6120a5565b005b348015610b4157600080fd5b50610b4a61219c565b604051610b579190613a11565b60405180910390f35b348015610b6c57600080fd5b50610b756121a2565b604051610b829190613a11565b60405180910390f35b610b936121a8565b73ffffffffffffffffffffffffffffffffffffffff16610bb161176c565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90613c32565b60405180910390fd5b8160118190555080601281905550601254601154610c259190613c81565b60108190555060286010541115610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613d01565b60405180910390fd5b5050565b606060038054610c8490613d50565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090613d50565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b5050505050905090565b6000610d1b610d146121a8565b84846121b0565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d7b6121a8565b73ffffffffffffffffffffffffffffffffffffffff16610d9961176c565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613c32565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610e476121a8565b73ffffffffffffffffffffffffffffffffffffffff16610e6561176c565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613c32565b60405180910390fd5b670de0b6b3a76400006103e86001610ed1610d69565b610edb9190613d81565b610ee59190613df2565b610eef9190613df2565b811015610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613e95565b60405180910390fd5b670de0b6b3a764000081610f459190613d81565b60088190555050565b6000610f5b848484612379565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa66121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613f27565b60405180910390fd5b61103a856110326121a8565b8584036121b0565b60019150509392505050565b61dead81565b60006012905090565b60006110f76110626121a8565b8484600160006110706121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f29190613c81565b6121b0565b6001905092915050565b6111096121a8565b73ffffffffffffffffffffffffffffffffffffffff1661112761176c565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613c32565b60405180910390fd5b6005600e819055506000600f81905550600f54600e5461119d9190613c81565b600d81905550600560118190555060006012819055506012546011546111c39190613c81565b6010819055506a01a784379d99db420000006008819055506a01a784379d99db42000000600a81905550565b7f000000000000000000000000898e6a25df3f935359262542473555b03eac96cc81565b600b60009054906101000a900460ff1681565b61122e6121a8565b73ffffffffffffffffffffffffffffffffffffffff1661124c61176c565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613c32565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112c09190613c81565b600d819055506028600d54111561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613f93565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161137190613fe4565b60006040518083038185875af1925050503d80600081146113ae576040519150601f19603f3d011682016040523d82523d6000602084013e6113b3565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140c6121a8565b73ffffffffffffffffffffffffffffffffffffffff1661142a61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613c32565b60405180910390fd5b61148a6000612de2565b565b60006114966121a8565b73ffffffffffffffffffffffffffffffffffffffff166114b461176c565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613c32565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115346121a8565b73ffffffffffffffffffffffffffffffffffffffff1661155261176c565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613c32565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b611612306113bc565b81111580156116215750600081115b611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790614045565b60405180910390fd5b61166981612ea8565b50565b6116746121a8565b73ffffffffffffffffffffffffffffffffffffffff1661169261176c565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613c32565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550605b600e819055506000600f81905550600f54600e5461173e9190613c81565b600d81905550605560118190555060006012819055506012546011546117649190613c81565b601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6117ca6121a8565b73ffffffffffffffffffffffffffffffffffffffff166117e861176c565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590613c32565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461186a90613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461189690613d50565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b5050505050905090565b6118f56121a8565b73ffffffffffffffffffffffffffffffffffffffff1661191361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613c32565b60405180910390fd5b7f000000000000000000000000898e6a25df3f935359262542473555b03eac96cc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906140d7565b60405180910390fd5b611a0182826130e5565b5050565b60008060016000611a146121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614169565b60405180910390fd5b611ae5611adc6121a8565b858584036121b0565b600191505092915050565b6000611b04611afd6121a8565b8484612379565b6001905092915050565b611b166121a8565b73ffffffffffffffffffffffffffffffffffffffff16611b3461176c565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8190613c32565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c856121a8565b73ffffffffffffffffffffffffffffffffffffffff16611ca361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613c32565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d969190613940565b60405180910390a25050565b611daa6121a8565b73ffffffffffffffffffffffffffffffffffffffff16611dc861176c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613c32565b60405180910390fd5b670de0b6b3a76400006103e86005611e34610d69565b611e3e9190613d81565b611e489190613df2565b611e529190613df2565b811015611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906141fb565b60405180910390fd5b670de0b6b3a764000081611ea89190613d81565b600a8190555050565b60085481565b6000611ec16121a8565b73ffffffffffffffffffffffffffffffffffffffff16611edf61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c32565b60405180910390fd5b620186a06001611f43610d69565b611f4d9190613d81565b611f579190613df2565b821015611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061428d565b60405180910390fd5b6103e86005611fa6610d69565b611fb09190613d81565b611fba9190613df2565b821115611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061431f565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b6120ad6121a8565b73ffffffffffffffffffffffffffffffffffffffff166120cb61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612187906143b1565b60405180910390fd5b61219981612de2565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614443565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906144d5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161236c9190613a11565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90614567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e906145f9565b60405180910390fd5b600081036124705761246b83836000613186565b612ddd565b600b60009054906101000a900460ff161561296b5761248d61176c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124fb57506124cb61176c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125875750600560149054906101000a900460ff16155b1561296a57600b60019054906101000a900460ff1661268157601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126415750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790614665565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127245750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127cb5760085481111561276e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612765906146f7565b60405180910390fd5b600a5461277a836113bc565b826127859190613c81565b11156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614763565b60405180910390fd5b612969565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561286e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128bd576008548111156128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af906147f5565b60405180910390fd5b612968565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661296757600a5461291a836113bc565b826129259190613c81565b1115612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614763565b60405180910390fd5b5b5b5b5b5b6000612976306113bc565b90506000600954821015905080801561299b5750600b60029054906101000a900460ff165b80156129b45750600560149054906101000a900460ff16155b8015612a0a5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a605750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ab65750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612afa576001600560146101000a81548160ff021916908315150217905550612ade613405565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bb05750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bba57600090505b60008115612dcd57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1d57506000601054115b15612cb757612c4a6064612c3c6010548861361290919063ffffffff16565b61362890919063ffffffff16565b905060105460125482612c5d9190613d81565b612c679190613df2565b60146000828254612c789190613c81565b9250508190555060105460115482612c909190613d81565b612c9a9190613df2565b60136000828254612cab9190613c81565b92505081905550612da9565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d1257506000600d54115b15612da857612d3f6064612d31600d548861361290919063ffffffff16565b61362890919063ffffffff16565b9050600d54600f5482612d529190613d81565b612d5c9190613df2565b60146000828254612d6d9190613c81565b92505081905550600d54600e5482612d859190613d81565b612d8f9190613df2565b60136000828254612da09190613c81565b925050819055505b5b6000811115612dbe57612dbd873083613186565b5b8085612dca9190614815565b94505b612dd8878787613186565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612ec557612ec4614849565b5b604051908082528060200260200182016040528015612ef35781602001602082028036833780820191505090505b5090503081600081518110612f0b57612f0a614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd491906148bc565b81600181518110612fe857612fe7614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061304d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121b0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016130af9594939291906149e2565b600060405180830381600087803b1580156130c957600080fd5b505af11580156130dd573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b906145f9565b60405180910390fd5b61326f83838361363e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec90614aae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133889190613c81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133ec9190613a11565b60405180910390a36133ff848484613643565b50505050565b6000613410306113bc565b905060006013546014546134249190613c81565b90506000808314806134365750600082145b1561344357505050613610565b60146009546134529190613d81565b83111561346b5760146009546134689190613d81565b92505b60006002836014548661347e9190613d81565b6134889190613df2565b6134929190613df2565b905060006134a9828661364890919063ffffffff16565b905060004790506134b982612ea8565b60006134ce824761364890919063ffffffff16565b905060006134f9876134eb6013548561361290919063ffffffff16565b61362890919063ffffffff16565b9050600081836135099190614815565b90506000601481905550600060138190555060008611801561352b5750600081115b156135785761353a868261365e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161356f93929190614ace565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135be90613fe4565b60006040518083038185875af1925050503d80600081146135fb576040519150601f19603f3d011682016040523d82523d6000602084013e613600565b606091505b5050809750505050505050505050505b565b600081836136209190613d81565b905092915050565b600081836136369190613df2565b905092915050565b505050565b505050565b600081836136569190614815565b905092915050565b613689307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121b0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161371096959493929190614b05565b60606040518083038185885af115801561372e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137539190614b7b565b5050505050565b600080fd5b6000819050919050565b6137728161375f565b811461377d57600080fd5b50565b60008135905061378f81613769565b92915050565b600080604083850312156137ac576137ab61375a565b5b60006137ba85828601613780565b92505060206137cb85828601613780565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561380f5780820151818401526020810190506137f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000613837826137d5565b61384181856137e0565b93506138518185602086016137f1565b61385a8161381b565b840191505092915050565b6000602082019050818103600083015261387f818461382c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138b282613887565b9050919050565b6138c2816138a7565b81146138cd57600080fd5b50565b6000813590506138df816138b9565b92915050565b600080604083850312156138fc576138fb61375a565b5b600061390a858286016138d0565b925050602061391b85828601613780565b9150509250929050565b60008115159050919050565b61393a81613925565b82525050565b60006020820190506139556000830184613931565b92915050565b6000602082840312156139715761397061375a565b5b600061397f848285016138d0565b91505092915050565b6000819050919050565b60006139ad6139a86139a384613887565b613988565b613887565b9050919050565b60006139bf82613992565b9050919050565b60006139d1826139b4565b9050919050565b6139e1816139c6565b82525050565b60006020820190506139fc60008301846139d8565b92915050565b613a0b8161375f565b82525050565b6000602082019050613a266000830184613a02565b92915050565b600060208284031215613a4257613a4161375a565b5b6000613a5084828501613780565b91505092915050565b600080600060608486031215613a7257613a7161375a565b5b6000613a80868287016138d0565b9350506020613a91868287016138d0565b9250506040613aa286828701613780565b9150509250925092565b613ab5816138a7565b82525050565b6000602082019050613ad06000830184613aac565b92915050565b600060ff82169050919050565b613aec81613ad6565b82525050565b6000602082019050613b076000830184613ae3565b92915050565b613b1681613925565b8114613b2157600080fd5b50565b600081359050613b3381613b0d565b92915050565b60008060408385031215613b5057613b4f61375a565b5b6000613b5e858286016138d0565b9250506020613b6f85828601613b24565b9150509250929050565b600060208284031215613b8f57613b8e61375a565b5b6000613b9d84828501613b24565b91505092915050565b60008060408385031215613bbd57613bbc61375a565b5b6000613bcb858286016138d0565b9250506020613bdc858286016138d0565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c1c6020836137e0565b9150613c2782613be6565b602082019050919050565b60006020820190508181036000830152613c4b81613c0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c8c8261375f565b9150613c978361375f565b9250828201905080821115613caf57613cae613c52565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613ceb601d836137e0565b9150613cf682613cb5565b602082019050919050565b60006020820190508181036000830152613d1a81613cde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6857607f821691505b602082108103613d7b57613d7a613d21565b5b50919050565b6000613d8c8261375f565b9150613d978361375f565b9250828202613da58161375f565b91508282048414831517613dbc57613dbb613c52565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dfd8261375f565b9150613e088361375f565b925082613e1857613e17613dc3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e7f602f836137e0565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f116028836137e0565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613f7d601d836137e0565b9150613f8882613f47565b602082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b600081905092915050565b50565b6000613fce600083613fb3565b9150613fd982613fbe565b600082019050919050565b6000613fef82613fc1565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061402f600c836137e0565b915061403a82613ff9565b602082019050919050565b6000602082019050818103600083015261405e81614022565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140c16039836137e0565b91506140cc82614065565b604082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141536025836137e0565b915061415e826140f7565b604082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006141e56024836137e0565b91506141f082614189565b604082019050919050565b60006020820190508181036000830152614214816141d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006142776035836137e0565b91506142828261421b565b604082019050919050565b600060208201905081810360008301526142a68161426a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143096034836137e0565b9150614314826142ad565b604082019050919050565b60006020820190508181036000830152614338816142fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061439b6026836137e0565b91506143a68261433f565b604082019050919050565b600060208201905081810360008301526143ca8161438e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061442d6024836137e0565b9150614438826143d1565b604082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144bf6022836137e0565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145516025836137e0565b915061455c826144f5565b604082019050919050565b6000602082019050818103600083015261458081614544565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145e36023836137e0565b91506145ee82614587565b604082019050919050565b60006020820190508181036000830152614612816145d6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061464f6016836137e0565b915061465a82614619565b602082019050919050565b6000602082019050818103600083015261467e81614642565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146e16035836137e0565b91506146ec82614685565b604082019050919050565b60006020820190508181036000830152614710816146d4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061474d6013836137e0565b915061475882614717565b602082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147df6036836137e0565b91506147ea82614783565b604082019050919050565b6000602082019050818103600083015261480e816147d2565b9050919050565b60006148208261375f565b915061482b8361375f565b925082820390508181111561484357614842613c52565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b6816138b9565b92915050565b6000602082840312156148d2576148d161375a565b5b60006148e0848285016148a7565b91505092915050565b6000819050919050565b600061490e614909614904846148e9565b613988565b61375f565b9050919050565b61491e816148f3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614959816138a7565b82525050565b600061496b8383614950565b60208301905092915050565b6000602082019050919050565b600061498f82614924565b614999818561492f565b93506149a483614940565b8060005b838110156149d55781516149bc888261495f565b97506149c783614977565b9250506001810190506149a8565b5085935050505092915050565b600060a0820190506149f76000830188613a02565b614a046020830187614915565b8181036040830152614a168186614984565b9050614a256060830185613aac565b614a326080830184613a02565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614a986026836137e0565b9150614aa382614a3c565b604082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b6000606082019050614ae36000830186613a02565b614af06020830185613a02565b614afd6040830184613a02565b949350505050565b600060c082019050614b1a6000830189613aac565b614b276020830188613a02565b614b346040830187614915565b614b416060830186614915565b614b4e6080830185613aac565b614b5b60a0830184613a02565b979650505050505050565b600081519050614b7581613769565b92915050565b600080600060608486031215614b9457614b9361375a565b5b6000614ba286828701614b66565b9350506020614bb386828701614b66565b9250506040614bc486828701614b66565b915050925092509256fea264697066735822122056c12fa8b543c851db424ac9af6a41f2027b5bf4e5fc502e1e69587d6e542efc64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ef8df0b503f5366aacd8a02de4dd8cf96c859a5d

-----Decoded View---------------
Arg [0] : wallet1 (address): 0xEf8DF0b503F5366aaCd8A02DE4Dd8Cf96C859A5d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ef8df0b503f5366aacd8a02de4dd8cf96c859a5d


Deployed Bytecode Sourcemap

32055:15018:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38830:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9474:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11641:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33249:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32131:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10594:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40479:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33067:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33027;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37180:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12292:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32234:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10436:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13193:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37902:381;;;;;;;;;;;;;:::i;:::-;;32189:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32504:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38487:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32914:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32584:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39550:174;;;;;;;;;;;;;:::i;:::-;;10765:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:103;;;;;;;;;;;;;:::i;:::-;;36482:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37727:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32838:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39370:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36073:357;;;;;;;;;;;;;:::i;:::-;;2058:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32356:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32949:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38379:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9693:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39732:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13911:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11105:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40240:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33470:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32544:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39180:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37463:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32389:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36675:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32804:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11343:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32431:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32875:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2967:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32987:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32471:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38830:342;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38974:13:::1;38955:16;:32;;;;39017:13;38998:16;:32;;;;39076:16;;39057;;:35;;;;:::i;:::-;39041:13;:51;;;;39128:2;39111:13;;:19;;39103:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38830:342:::0;;:::o;9474:100::-;9528:13;9561:5;9554:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9474:100;:::o;11641:169::-;11724:4;11741:39;11750:12;:10;:12::i;:::-;11764:7;11773:6;11741:8;:39::i;:::-;11798:4;11791:11;;11641:169;;;;:::o;33249:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32131:51::-;;;:::o;10594:108::-;10655:7;10682:12;;10675:19;;10594:108;:::o;40479:132::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40591:12:::1;40579:9;;:24;;;;;;;;;;;;;;;;;;40479:132:::0;:::o;33067:33::-;;;;:::o;33027:::-;;;;:::o;37180:275::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37317:4:::1;37309;37304:1;37288:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37287:26;;;;:::i;:::-;37286:35;;;;:::i;:::-;37276:6;:45;;37254:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37440:6;37430;:17;;;;:::i;:::-;37407:20;:40;;;;37180:275:::0;:::o;12292:492::-;12432:4;12449:36;12459:6;12467:9;12478:6;12449:9;:36::i;:::-;12498:24;12525:11;:19;12537:6;12525:19;;;;;;;;;;;;;;;:33;12545:12;:10;:12::i;:::-;12525:33;;;;;;;;;;;;;;;;12498:60;;12597:6;12577:16;:26;;12569:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12684:57;12693:6;12701:12;:10;:12::i;:::-;12734:6;12715:16;:25;12684:8;:57::i;:::-;12772:4;12765:11;;;12292:492;;;;;:::o;32234:53::-;32280:6;32234:53;:::o;10436:93::-;10494:5;10519:2;10512:9;;10436:93;:::o;13193:215::-;13281:4;13298:80;13307:12;:10;:12::i;:::-;13321:7;13367:10;13330:11;:25;13342:12;:10;:12::i;:::-;13330:25;;;;;;;;;;;;;;;:34;13356:7;13330:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13298:8;:80::i;:::-;13396:4;13389:11;;13193:215;;;;:::o;37902:381::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37972:1:::1;37954:15;:19;;;;38002:1;37984:15;:19;;;;38047:15;;38029;;:33;;;;:::i;:::-;38014:12;:48;;;;38092:1;38073:16;:20;;;;38123:1;38104:16;:20;;;;38170:16;;38151;;:35;;;;:::i;:::-;38135:13;:51;;;;38220:16;38197:20;:39;;;;38259:16;38247:9;:28;;;;37902:381::o:0;32189:38::-;;;:::o;32504:33::-;;;;;;;;;;;;;:::o;38487:335::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38629:13:::1;38611:15;:31;;;;38671:13;38653:15;:31;;;;38728:15;;38710;;:33;;;;:::i;:::-;38695:12;:48;;;;38778:2;38762:12;;:18;;38754:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;38487:335:::0;;:::o;32914:28::-;;;;:::o;32584:31::-;;;;;;;;;;;;;:::o;39550:174::-;39592:12;39637:15;;;;;;;;;;;39629:29;;39680:21;39629:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39615:101;;;;;39581:143;39550:174::o;10765:127::-;10839:7;10866:9;:18;10876:7;10866:18;;;;;;;;;;;;;;;;10859:25;;10765:127;;;:::o;2709:103::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2774:30:::1;2801:1;2774:18;:30::i;:::-;2709:103::o:0;36482:121::-;36534:4;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36568:5:::1;36551:14;;:22;;;;;;;;;;;;;;;;;;36591:4;36584:11;;36482:121:::0;:::o;37727:167::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37882:4:::1;37840:31;:39;37872:6;37840:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37727:167:::0;;:::o;32838:30::-;;;;:::o;39370:172::-;39444:24;39462:4;39444:9;:24::i;:::-;39434:6;:34;;:48;;;;;39481:1;39472:6;:10;39434:48;39426:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39510:24;39527:6;39510:16;:24::i;:::-;39370:172;:::o;36073:357::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36144:4:::1;36128:13;;:20;;;;;;;;;;;;;;;;;;36173:4;36159:11;;:18;;;;;;;;;;;;;;;;;;36206:2;36188:15;:20;;;;36237:1;36219:15;:19;;;;36282:15;;36264;;:33;;;;:::i;:::-;36249:12;:48;;;;36327:2;36308:16;:21;;;;36359:1;36340:16;:20;;;;36406:16;;36387;;:35;;;;:::i;:::-;36371:13;:51;;;;36073:357::o:0;2058:87::-;2104:7;2131:6;;;;;;;;;;;2124:13;;2058:87;:::o;32356:24::-;;;;;;;;;;;;;:::o;32949:31::-;;;;:::o;38379:100::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38464:7:::1;38450:11;;:21;;;;;;;;;;;;;;;;;;38379:100:::0;:::o;9693:104::-;9749:13;9782:7;9775:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9693:104;:::o;39732:304::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39876:13:::1;39868:21;;:4;:21;;::::0;39846:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39987:41;40016:4;40022:5;39987:28;:41::i;:::-;39732:304:::0;;:::o;13911:413::-;14004:4;14021:24;14048:11;:25;14060:12;:10;:12::i;:::-;14048:25;;;;;;;;;;;;;;;:34;14074:7;14048:34;;;;;;;;;;;;;;;;14021:61;;14121:15;14101:16;:35;;14093:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14214:67;14223:12;:10;:12::i;:::-;14237:7;14265:15;14246:16;:34;14214:8;:67::i;:::-;14312:4;14305:11;;;13911:413;;;;:::o;11105:175::-;11191:4;11208:42;11218:12;:10;:12::i;:::-;11232:9;11243:6;11208:9;:42::i;:::-;11268:4;11261:11;;11105:175;;;;:::o;40240:231::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40400:15:::1;;;;;;;;;;;40357:59;;40380:18;40357:59;;;;;;;;;;;;40445:18;40427:15;;:36;;;;;;;;;;;;;;;;;;40240:231:::0;:::o;33470:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32544:33::-;;;;;;;;;;;;;:::o;39180:182::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39296:8:::1;39265:19;:28;39285:7;39265:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39336:7;39320:34;;;39345:8;39320:34;;;;;;:::i;:::-;;;;;;;;39180:182:::0;;:::o;37463:256::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37603:4:::1;37595;37590:1;37574:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37573:26;;;;:::i;:::-;37572:35;;;;:::i;:::-;37562:6;:45;;37540:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;37704:6;37694;:17;;;;:::i;:::-;37682:9;:29;;;;37463:256:::0;:::o;32389:35::-;;;;:::o;36675:497::-;36783:4;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36862:6:::1;36857:1;36841:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36840:28;;;;:::i;:::-;36827:9;:41;;36805:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37017:4;37012:1;36996:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36995:26;;;;:::i;:::-;36982:9;:39;;36960:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37133:9;37112:18;:30;;;;37160:4;37153:11;;36675:497:::0;;;:::o;32804:27::-;;;;:::o;11343:151::-;11432:7;11459:11;:18;11471:5;11459:18;;;;;;;;;;;;;;;:27;11478:7;11459:27;;;;;;;;;;;;;;;;11452:34;;11343:151;;;;:::o;32431:33::-;;;;:::o;32875:30::-;;;;:::o;2967:201::-;2289:12;:10;:12::i;:::-;2278:23;;:7;:5;:7::i;:::-;:23;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3076:1:::1;3056:22;;:8;:22;;::::0;3048:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3132:28;3151:8;3132:18;:28::i;:::-;2967:201:::0;:::o;32987:31::-;;;;:::o;32471:24::-;;;;:::o;731:98::-;784:7;811:10;804:17;;731:98;:::o;17595:380::-;17748:1;17731:19;;:5;:19;;;17723:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17829:1;17810:21;;:7;:21;;;17802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17913:6;17883:11;:18;17895:5;17883:18;;;;;;;;;;;;;;;:27;17902:7;17883:27;;;;;;;;;;;;;;;:36;;;;17951:7;17935:32;;17944:5;17935:32;;;17960:6;17935:32;;;;;;:::i;:::-;;;;;;;;17595:380;;;:::o;40619:3786::-;40767:1;40751:18;;:4;:18;;;40743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40844:1;40830:16;;:2;:16;;;40822:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40913:1;40903:6;:11;40899:93;;40931:28;40947:4;40953:2;40957:1;40931:15;:28::i;:::-;40974:7;;40899:93;41008:14;;;;;;;;;;;41004:1694;;;41069:7;:5;:7::i;:::-;41061:15;;:4;:15;;;;:49;;;;;41103:7;:5;:7::i;:::-;41097:13;;:2;:13;;;;41061:49;:86;;;;;41145:1;41131:16;;:2;:16;;;;41061:86;:128;;;;;41182:6;41168:21;;:2;:21;;;;41061:128;:158;;;;;41211:8;;;;;;;;;;;41210:9;41061:158;41039:1648;;;41259:13;;;;;;;;;;;41254:223;;41331:19;:25;41351:4;41331:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41360:19;:23;41380:2;41360:23;;;;;;;;;;;;;;;;;;;;;;;;;41331:52;41297:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41254:223;41551:25;:31;41577:4;41551:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41608:31;:35;41640:2;41608:35;;;;;;;;;;;;;;;;;;;;;;;;;41607:36;41551:92;41525:1147;;;41730:20;;41720:6;:30;;41686:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41938:9;;41921:13;41931:2;41921:9;:13::i;:::-;41912:6;:22;;;;:::i;:::-;:35;;41878:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41525:1147;;;42116:25;:29;42142:2;42116:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42171:31;:37;42203:4;42171:37;;;;;;;;;;;;;;;;;;;;;;;;;42170:38;42116:92;42090:582;;;42295:20;;42285:6;:30;;42251:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42090:582;;;42452:31;:35;42484:2;42452:35;;;;;;;;;;;;;;;;;;;;;;;;;42447:225;;42572:9;;42555:13;42565:2;42555:9;:13::i;:::-;42546:6;:22;;;;:::i;:::-;:35;;42512:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42447:225;42090:582;41525:1147;41039:1648;41004:1694;42710:28;42741:24;42759:4;42741:9;:24::i;:::-;42710:55;;42778:12;42817:18;;42793:20;:42;;42778:57;;42866:7;:35;;;;;42890:11;;;;;;;;;;;42866:35;:61;;;;;42919:8;;;;;;;;;;;42918:9;42866:61;:110;;;;;42945:25;:31;42971:4;42945:31;;;;;;;;;;;;;;;;;;;;;;;;;42944:32;42866:110;:153;;;;;42994:19;:25;43014:4;42994:25;;;;;;;;;;;;;;;;;;;;;;;;;42993:26;42866:153;:194;;;;;43037:19;:23;43057:2;43037:23;;;;;;;;;;;;;;;;;;;;;;;;;43036:24;42866:194;42848:326;;;43098:4;43087:8;;:15;;;;;;;;;;;;;;;;;;43119:10;:8;:10::i;:::-;43157:5;43146:8;;:16;;;;;;;;;;;;;;;;;;42848:326;43186:12;43202:8;;;;;;;;;;;43201:9;43186:24;;43312:19;:25;43332:4;43312:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43341:19;:23;43361:2;43341:23;;;;;;;;;;;;;;;;;;;;;;;;;43312:52;43308:100;;;43391:5;43381:15;;43308:100;43420:12;43525:7;43521:831;;;43577:25;:29;43603:2;43577:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43626:1;43610:13;;:17;43577:50;43573:630;;;43655:34;43685:3;43655:25;43666:13;;43655:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43648:41;;43758:13;;43738:16;;43731:4;:23;;;;:::i;:::-;43730:41;;;;:::i;:::-;43708:18;;:63;;;;;;;:::i;:::-;;;;;;;;43840:13;;43820:16;;43813:4;:23;;;;:::i;:::-;43812:41;;;;:::i;:::-;43790:18;;:63;;;;;;;:::i;:::-;;;;;;;;43573:630;;;43915:25;:31;43941:4;43915:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43965:1;43950:12;;:16;43915:51;43911:292;;;43994:33;44023:3;43994:24;44005:12;;43994:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43987:40;;44095:12;;44076:15;;44069:4;:22;;;;:::i;:::-;44068:39;;;;:::i;:::-;44046:18;;:61;;;;;;;:::i;:::-;;;;;;;;44175:12;;44156:15;;44149:4;:22;;;;:::i;:::-;44148:39;;;;:::i;:::-;44126:18;;:61;;;;;;;:::i;:::-;;;;;;;;43911:292;43573:630;44230:1;44223:4;:8;44219:91;;;44252:42;44268:4;44282;44289;44252:15;:42::i;:::-;44219:91;44336:4;44326:14;;;;;:::i;:::-;;;43521:831;44364:33;44380:4;44386:2;44390:6;44364:15;:33::i;:::-;40732:3673;;;;40619:3786;;;;:::o;3328:191::-;3402:16;3421:6;;;;;;;;;;;3402:25;;3447:8;3438:6;;:17;;;;;;;;;;;;;;;;;;3502:8;3471:40;;3492:8;3471:40;;;;;;;;;;;;3391:128;3328:191;:::o;44413:589::-;44539:21;44577:1;44563:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44539:40;;44608:4;44590;44595:1;44590:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44634:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44624:4;44629:1;44624:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44669:62;44686:4;44701:15;44719:11;44669:8;:62::i;:::-;44770:15;:66;;;44851:11;44877:1;44921:4;44948;44968:15;44770:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44468:534;44413:589;:::o;40044:188::-;40161:5;40127:25;:31;40153:4;40127:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40218:5;40184:40;;40212:4;40184:40;;;;;;;;;;;;40044:188;;:::o;14814:733::-;14972:1;14954:20;;:6;:20;;;14946:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15056:1;15035:23;;:9;:23;;;15027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15111:47;15132:6;15140:9;15151:6;15111:20;:47::i;:::-;15171:21;15195:9;:17;15205:6;15195:17;;;;;;;;;;;;;;;;15171:41;;15248:6;15231:13;:23;;15223:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15369:6;15353:13;:22;15333:9;:17;15343:6;15333:17;;;;;;;;;;;;;;;:42;;;;15421:6;15397:9;:20;15407:9;15397:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15462:9;15445:35;;15454:6;15445:35;;;15473:6;15445:35;;;;;;:::i;:::-;;;;;;;;15493:46;15513:6;15521:9;15532:6;15493:19;:46::i;:::-;14935:612;14814:733;;;:::o;45533:1535::-;45572:23;45598:24;45616:4;45598:9;:24::i;:::-;45572:50;;45633:25;45695:18;;45661;;:52;;;;:::i;:::-;45633:80;;45724:12;45772:1;45753:15;:20;:46;;;;45798:1;45777:17;:22;45753:46;45749:85;;;45816:7;;;;;45749:85;45889:2;45868:18;;:23;;;;:::i;:::-;45850:15;:41;45846:115;;;45947:2;45926:18;;:23;;;;:::i;:::-;45908:41;;45846:115;46022:23;46135:1;46102:17;46067:18;;46049:15;:36;;;;:::i;:::-;46048:71;;;;:::i;:::-;:88;;;;:::i;:::-;46022:114;;46147:26;46176:36;46196:15;46176;:19;;:36;;;;:::i;:::-;46147:65;;46225:25;46253:21;46225:49;;46287:36;46304:18;46287:16;:36::i;:::-;46336:18;46357:44;46383:17;46357:21;:25;;:44;;;;:::i;:::-;46336:65;;46414:23;46440:81;46493:17;46440:34;46455:18;;46440:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;46414:107;;46534:23;46573:15;46560:10;:28;;;;:::i;:::-;46534:54;;46622:1;46601:18;:22;;;;46655:1;46634:18;:22;;;;46691:1;46673:15;:19;:42;;;;;46714:1;46696:15;:19;46673:42;46669:278;;;46732:46;46745:15;46762;46732:12;:46::i;:::-;46798:137;46831:18;46868:15;46902:18;;46798:137;;;;;;;;:::i;:::-;;;;;;;;46669:278;46981:15;;;;;;;;;;;46973:29;;47024:21;46973:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46959:101;;;;;45561:1507;;;;;;;;;45533:1535;:::o;23048:98::-;23106:7;23137:1;23133;:5;;;;:::i;:::-;23126:12;;23048:98;;;;:::o;23447:::-;23505:7;23536:1;23532;:5;;;;:::i;:::-;23525:12;;23447:98;;;;:::o;18575:125::-;;;;:::o;19304:124::-;;;;:::o;22691:98::-;22749:7;22780:1;22776;:5;;;;:::i;:::-;22769:12;;22691:98;;;;:::o;45010:515::-;45158:62;45175:4;45190:15;45208:11;45158:8;:62::i;:::-;45263:15;:31;;;45302:9;45335:4;45355:11;45381:1;45424;45467:9;;;;;;;;;;;45491:15;45263:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45010:515;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:153::-;4684:9;4717:37;4748:5;4717:37;:::i;:::-;4704:50;;4607:153;;;:::o;4766:185::-;4880:64;4938:5;4880:64;:::i;:::-;4875:3;4868:77;4766:185;;:::o;4957:276::-;5077:4;5115:2;5104:9;5100:18;5092:26;;5128:98;5223:1;5212:9;5208:17;5199:6;5128:98;:::i;:::-;4957:276;;;;:::o;5239:118::-;5326:24;5344:5;5326:24;:::i;:::-;5321:3;5314:37;5239:118;;:::o;5363:222::-;5456:4;5494:2;5483:9;5479:18;5471:26;;5507:71;5575:1;5564:9;5560:17;5551:6;5507:71;:::i;:::-;5363:222;;;;:::o;5591:329::-;5650:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5591:329;;;;:::o;5926:619::-;6003:6;6011;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;6449:2;6475:53;6520:7;6511:6;6500:9;6496:22;6475:53;:::i;:::-;6465:63;;6420:118;5926:619;;;;;:::o;6551:118::-;6638:24;6656:5;6638:24;:::i;:::-;6633:3;6626:37;6551:118;;:::o;6675:222::-;6768:4;6806:2;6795:9;6791:18;6783:26;;6819:71;6887:1;6876:9;6872:17;6863:6;6819:71;:::i;:::-;6675:222;;;;:::o;6903:86::-;6938:7;6978:4;6971:5;6967:16;6956:27;;6903:86;;;:::o;6995:112::-;7078:22;7094:5;7078:22;:::i;:::-;7073:3;7066:35;6995:112;;:::o;7113:214::-;7202:4;7240:2;7229:9;7225:18;7217:26;;7253:67;7317:1;7306:9;7302:17;7293:6;7253:67;:::i;:::-;7113:214;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:468::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:119;;;7722:79;;:::i;:::-;7684:119;7842:1;7867:53;7912:7;7903:6;7892:9;7888:22;7867:53;:::i;:::-;7857:63;;7813:117;7969:2;7995:50;8037:7;8028:6;8017:9;8013:22;7995:50;:::i;:::-;7985:60;;7940:115;7594:468;;;;;:::o;8068:323::-;8124:6;8173:2;8161:9;8152:7;8148:23;8144:32;8141:119;;;8179:79;;:::i;:::-;8141:119;8299:1;8324:50;8366:7;8357:6;8346:9;8342:22;8324:50;:::i;:::-;8314:60;;8270:114;8068:323;;;;:::o;8397:474::-;8465:6;8473;8522:2;8510:9;8501:7;8497:23;8493:32;8490:119;;;8528:79;;:::i;:::-;8490:119;8648:1;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8619:117;8775:2;8801:53;8846:7;8837:6;8826:9;8822:22;8801:53;:::i;:::-;8791:63;;8746:118;8397:474;;;;;:::o;8877:182::-;9017:34;9013:1;9005:6;9001:14;8994:58;8877:182;:::o;9065:366::-;9207:3;9228:67;9292:2;9287:3;9228:67;:::i;:::-;9221:74;;9304:93;9393:3;9304:93;:::i;:::-;9422:2;9417:3;9413:12;9406:19;;9065:366;;;:::o;9437:419::-;9603:4;9641:2;9630:9;9626:18;9618:26;;9690:9;9684:4;9680:20;9676:1;9665:9;9661:17;9654:47;9718:131;9844:4;9718:131;:::i;:::-;9710:139;;9437:419;;;:::o;9862:180::-;9910:77;9907:1;9900:88;10007:4;10004:1;9997:15;10031:4;10028:1;10021:15;10048:191;10088:3;10107:20;10125:1;10107:20;:::i;:::-;10102:25;;10141:20;10159:1;10141:20;:::i;:::-;10136:25;;10184:1;10181;10177:9;10170:16;;10205:3;10202:1;10199:10;10196:36;;;10212:18;;:::i;:::-;10196:36;10048:191;;;;:::o;10245:179::-;10385:31;10381:1;10373:6;10369:14;10362:55;10245:179;:::o;10430:366::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:419::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11055:9;11049:4;11045:20;11041:1;11030:9;11026:17;11019:47;11083:131;11209:4;11083:131;:::i;:::-;11075:139;;10802:419;;;:::o;11227:180::-;11275:77;11272:1;11265:88;11372:4;11369:1;11362:15;11396:4;11393:1;11386:15;11413:320;11457:6;11494:1;11488:4;11484:12;11474:22;;11541:1;11535:4;11531:12;11562:18;11552:81;;11618:4;11610:6;11606:17;11596:27;;11552:81;11680:2;11672:6;11669:14;11649:18;11646:38;11643:84;;11699:18;;:::i;:::-;11643:84;11464:269;11413:320;;;:::o;11739:410::-;11779:7;11802:20;11820:1;11802:20;:::i;:::-;11797:25;;11836:20;11854:1;11836:20;:::i;:::-;11831:25;;11891:1;11888;11884:9;11913:30;11931:11;11913:30;:::i;:::-;11902:41;;12092:1;12083:7;12079:15;12076:1;12073:22;12053:1;12046:9;12026:83;12003:139;;12122:18;;:::i;:::-;12003:139;11787:362;11739:410;;;;:::o;12155:180::-;12203:77;12200:1;12193:88;12300:4;12297:1;12290:15;12324:4;12321:1;12314:15;12341:185;12381:1;12398:20;12416:1;12398:20;:::i;:::-;12393:25;;12432:20;12450:1;12432:20;:::i;:::-;12427:25;;12471:1;12461:35;;12476:18;;:::i;:::-;12461:35;12518:1;12515;12511:9;12506:14;;12341:185;;;;:::o;12532:234::-;12672:34;12668:1;12660:6;12656:14;12649:58;12741:17;12736:2;12728:6;12724:15;12717:42;12532:234;:::o;12772:366::-;12914:3;12935:67;12999:2;12994:3;12935:67;:::i;:::-;12928:74;;13011:93;13100:3;13011:93;:::i;:::-;13129:2;13124:3;13120:12;13113:19;;12772:366;;;:::o;13144:419::-;13310:4;13348:2;13337:9;13333:18;13325:26;;13397:9;13391:4;13387:20;13383:1;13372:9;13368:17;13361:47;13425:131;13551:4;13425:131;:::i;:::-;13417:139;;13144:419;;;:::o;13569:227::-;13709:34;13705:1;13697:6;13693:14;13686:58;13778:10;13773:2;13765:6;13761:15;13754:35;13569:227;:::o;13802:366::-;13944:3;13965:67;14029:2;14024:3;13965:67;:::i;:::-;13958:74;;14041:93;14130:3;14041:93;:::i;:::-;14159:2;14154:3;14150:12;14143:19;;13802:366;;;:::o;14174:419::-;14340:4;14378:2;14367:9;14363:18;14355:26;;14427:9;14421:4;14417:20;14413:1;14402:9;14398:17;14391:47;14455:131;14581:4;14455:131;:::i;:::-;14447:139;;14174:419;;;:::o;14599:179::-;14739:31;14735:1;14727:6;14723:14;14716:55;14599:179;:::o;14784:366::-;14926:3;14947:67;15011:2;15006:3;14947:67;:::i;:::-;14940:74;;15023:93;15112:3;15023:93;:::i;:::-;15141:2;15136:3;15132:12;15125:19;;14784:366;;;:::o;15156:419::-;15322:4;15360:2;15349:9;15345:18;15337:26;;15409:9;15403:4;15399:20;15395:1;15384:9;15380:17;15373:47;15437:131;15563:4;15437:131;:::i;:::-;15429:139;;15156:419;;;:::o;15581:147::-;15682:11;15719:3;15704:18;;15581:147;;;;:::o;15734:114::-;;:::o;15854:398::-;16013:3;16034:83;16115:1;16110:3;16034:83;:::i;:::-;16027:90;;16126:93;16215:3;16126:93;:::i;:::-;16244:1;16239:3;16235:11;16228:18;;15854:398;;;:::o;16258:379::-;16442:3;16464:147;16607:3;16464:147;:::i;:::-;16457:154;;16628:3;16621:10;;16258:379;;;:::o;16643:162::-;16783:14;16779:1;16771:6;16767:14;16760:38;16643:162;:::o;16811:366::-;16953:3;16974:67;17038:2;17033:3;16974:67;:::i;:::-;16967:74;;17050:93;17139:3;17050:93;:::i;:::-;17168:2;17163:3;17159:12;17152:19;;16811:366;;;:::o;17183:419::-;17349:4;17387:2;17376:9;17372:18;17364:26;;17436:9;17430:4;17426:20;17422:1;17411:9;17407:17;17400:47;17464:131;17590:4;17464:131;:::i;:::-;17456:139;;17183:419;;;:::o;17608:244::-;17748:34;17744:1;17736:6;17732:14;17725:58;17817:27;17812:2;17804:6;17800:15;17793:52;17608:244;:::o;17858:366::-;18000:3;18021:67;18085:2;18080:3;18021:67;:::i;:::-;18014:74;;18097:93;18186:3;18097:93;:::i;:::-;18215:2;18210:3;18206:12;18199:19;;17858:366;;;:::o;18230:419::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18230:419;;;:::o;18655:224::-;18795:34;18791:1;18783:6;18779:14;18772:58;18864:7;18859:2;18851:6;18847:15;18840:32;18655:224;:::o;18885:366::-;19027:3;19048:67;19112:2;19107:3;19048:67;:::i;:::-;19041:74;;19124:93;19213:3;19124:93;:::i;:::-;19242:2;19237:3;19233:12;19226:19;;18885:366;;;:::o;19257:419::-;19423:4;19461:2;19450:9;19446:18;19438:26;;19510:9;19504:4;19500:20;19496:1;19485:9;19481:17;19474:47;19538:131;19664:4;19538:131;:::i;:::-;19530:139;;19257:419;;;:::o;19682:223::-;19822:34;19818:1;19810:6;19806:14;19799:58;19891:6;19886:2;19878:6;19874:15;19867:31;19682:223;:::o;19911:366::-;20053:3;20074:67;20138:2;20133:3;20074:67;:::i;:::-;20067:74;;20150:93;20239:3;20150:93;:::i;:::-;20268:2;20263:3;20259:12;20252:19;;19911:366;;;:::o;20283:419::-;20449:4;20487:2;20476:9;20472:18;20464:26;;20536:9;20530:4;20526:20;20522:1;20511:9;20507:17;20500:47;20564:131;20690:4;20564:131;:::i;:::-;20556:139;;20283:419;;;:::o;20708:240::-;20848:34;20844:1;20836:6;20832:14;20825:58;20917:23;20912:2;20904:6;20900:15;20893:48;20708:240;:::o;20954:366::-;21096:3;21117:67;21181:2;21176:3;21117:67;:::i;:::-;21110:74;;21193:93;21282:3;21193:93;:::i;:::-;21311:2;21306:3;21302:12;21295:19;;20954:366;;;:::o;21326:419::-;21492:4;21530:2;21519:9;21515:18;21507:26;;21579:9;21573:4;21569:20;21565:1;21554:9;21550:17;21543:47;21607:131;21733:4;21607:131;:::i;:::-;21599:139;;21326:419;;;:::o;21751:239::-;21891:34;21887:1;21879:6;21875:14;21868:58;21960:22;21955:2;21947:6;21943:15;21936:47;21751:239;:::o;21996:366::-;22138:3;22159:67;22223:2;22218:3;22159:67;:::i;:::-;22152:74;;22235:93;22324:3;22235:93;:::i;:::-;22353:2;22348:3;22344:12;22337:19;;21996:366;;;:::o;22368:419::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:225::-;22933:34;22929:1;22921:6;22917:14;22910:58;23002:8;22997:2;22989:6;22985:15;22978:33;22793:225;:::o;23024:366::-;23166:3;23187:67;23251:2;23246:3;23187:67;:::i;:::-;23180:74;;23263:93;23352:3;23263:93;:::i;:::-;23381:2;23376:3;23372:12;23365:19;;23024:366;;;:::o;23396:419::-;23562:4;23600:2;23589:9;23585:18;23577:26;;23649:9;23643:4;23639:20;23635:1;23624:9;23620:17;23613:47;23677:131;23803:4;23677:131;:::i;:::-;23669:139;;23396:419;;;:::o;23821:223::-;23961:34;23957:1;23949:6;23945:14;23938:58;24030:6;24025:2;24017:6;24013:15;24006:31;23821:223;:::o;24050:366::-;24192:3;24213:67;24277:2;24272:3;24213:67;:::i;:::-;24206:74;;24289:93;24378:3;24289:93;:::i;:::-;24407:2;24402:3;24398:12;24391:19;;24050:366;;;:::o;24422:419::-;24588:4;24626:2;24615:9;24611:18;24603:26;;24675:9;24669:4;24665:20;24661:1;24650:9;24646:17;24639:47;24703:131;24829:4;24703:131;:::i;:::-;24695:139;;24422:419;;;:::o;24847:221::-;24987:34;24983:1;24975:6;24971:14;24964:58;25056:4;25051:2;25043:6;25039:15;25032:29;24847:221;:::o;25074:366::-;25216:3;25237:67;25301:2;25296:3;25237:67;:::i;:::-;25230:74;;25313:93;25402:3;25313:93;:::i;:::-;25431:2;25426:3;25422:12;25415:19;;25074:366;;;:::o;25446:419::-;25612:4;25650:2;25639:9;25635:18;25627:26;;25699:9;25693:4;25689:20;25685:1;25674:9;25670:17;25663:47;25727:131;25853:4;25727:131;:::i;:::-;25719:139;;25446:419;;;:::o;25871:224::-;26011:34;26007:1;25999:6;25995:14;25988:58;26080:7;26075:2;26067:6;26063:15;26056:32;25871:224;:::o;26101:366::-;26243:3;26264:67;26328:2;26323:3;26264:67;:::i;:::-;26257:74;;26340:93;26429:3;26340:93;:::i;:::-;26458:2;26453:3;26449:12;26442:19;;26101:366;;;:::o;26473:419::-;26639:4;26677:2;26666:9;26662:18;26654:26;;26726:9;26720:4;26716:20;26712:1;26701:9;26697:17;26690:47;26754:131;26880:4;26754:131;:::i;:::-;26746:139;;26473:419;;;:::o;26898:222::-;27038:34;27034:1;27026:6;27022:14;27015:58;27107:5;27102:2;27094:6;27090:15;27083:30;26898:222;:::o;27126:366::-;27268:3;27289:67;27353:2;27348:3;27289:67;:::i;:::-;27282:74;;27365:93;27454:3;27365:93;:::i;:::-;27483:2;27478:3;27474:12;27467:19;;27126:366;;;:::o;27498:419::-;27664:4;27702:2;27691:9;27687:18;27679:26;;27751:9;27745:4;27741:20;27737:1;27726:9;27722:17;27715:47;27779:131;27905:4;27779:131;:::i;:::-;27771:139;;27498:419;;;:::o;27923:172::-;28063:24;28059:1;28051:6;28047:14;28040:48;27923:172;:::o;28101:366::-;28243:3;28264:67;28328:2;28323:3;28264:67;:::i;:::-;28257:74;;28340:93;28429:3;28340:93;:::i;:::-;28458:2;28453:3;28449:12;28442:19;;28101:366;;;:::o;28473:419::-;28639:4;28677:2;28666:9;28662:18;28654:26;;28726:9;28720:4;28716:20;28712:1;28701:9;28697:17;28690:47;28754:131;28880:4;28754:131;:::i;:::-;28746:139;;28473:419;;;:::o;28898:240::-;29038:34;29034:1;29026:6;29022:14;29015:58;29107:23;29102:2;29094:6;29090:15;29083:48;28898:240;:::o;29144:366::-;29286:3;29307:67;29371:2;29366:3;29307:67;:::i;:::-;29300:74;;29383:93;29472:3;29383:93;:::i;:::-;29501:2;29496:3;29492:12;29485:19;;29144:366;;;:::o;29516:419::-;29682:4;29720:2;29709:9;29705:18;29697:26;;29769:9;29763:4;29759:20;29755:1;29744:9;29740:17;29733:47;29797:131;29923:4;29797:131;:::i;:::-;29789:139;;29516:419;;;:::o;29941:169::-;30081:21;30077:1;30069:6;30065:14;30058:45;29941:169;:::o;30116:366::-;30258:3;30279:67;30343:2;30338:3;30279:67;:::i;:::-;30272:74;;30355:93;30444:3;30355:93;:::i;:::-;30473:2;30468:3;30464:12;30457:19;;30116:366;;;:::o;30488:419::-;30654:4;30692:2;30681:9;30677:18;30669:26;;30741:9;30735:4;30731:20;30727:1;30716:9;30712:17;30705:47;30769:131;30895:4;30769:131;:::i;:::-;30761:139;;30488:419;;;:::o;30913:241::-;31053:34;31049:1;31041:6;31037:14;31030:58;31122:24;31117:2;31109:6;31105:15;31098:49;30913:241;:::o;31160:366::-;31302:3;31323:67;31387:2;31382:3;31323:67;:::i;:::-;31316:74;;31399:93;31488:3;31399:93;:::i;:::-;31517:2;31512:3;31508:12;31501:19;;31160:366;;;:::o;31532:419::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31785:9;31779:4;31775:20;31771:1;31760:9;31756:17;31749:47;31813:131;31939:4;31813:131;:::i;:::-;31805:139;;31532:419;;;:::o;31957:194::-;31997:4;32017:20;32035:1;32017:20;:::i;:::-;32012:25;;32051:20;32069:1;32051:20;:::i;:::-;32046:25;;32095:1;32092;32088:9;32080:17;;32119:1;32113:4;32110:11;32107:37;;;32124:18;;:::i;:::-;32107:37;31957:194;;;;:::o;32157:180::-;32205:77;32202:1;32195:88;32302:4;32299:1;32292:15;32326:4;32323:1;32316:15;32343:180;32391:77;32388:1;32381:88;32488:4;32485:1;32478:15;32512:4;32509:1;32502:15;32529:143;32586:5;32617:6;32611:13;32602:22;;32633:33;32660:5;32633:33;:::i;:::-;32529:143;;;;:::o;32678:351::-;32748:6;32797:2;32785:9;32776:7;32772:23;32768:32;32765:119;;;32803:79;;:::i;:::-;32765:119;32923:1;32948:64;33004:7;32995:6;32984:9;32980:22;32948:64;:::i;:::-;32938:74;;32894:128;32678:351;;;;:::o;33035:85::-;33080:7;33109:5;33098:16;;33035:85;;;:::o;33126:158::-;33184:9;33217:61;33235:42;33244:32;33270:5;33244:32;:::i;:::-;33235:42;:::i;:::-;33217:61;:::i;:::-;33204:74;;33126:158;;;:::o;33290:147::-;33385:45;33424:5;33385:45;:::i;:::-;33380:3;33373:58;33290:147;;:::o;33443:114::-;33510:6;33544:5;33538:12;33528:22;;33443:114;;;:::o;33563:184::-;33662:11;33696:6;33691:3;33684:19;33736:4;33731:3;33727:14;33712:29;;33563:184;;;;:::o;33753:132::-;33820:4;33843:3;33835:11;;33873:4;33868:3;33864:14;33856:22;;33753:132;;;:::o;33891:108::-;33968:24;33986:5;33968:24;:::i;:::-;33963:3;33956:37;33891:108;;:::o;34005:179::-;34074:10;34095:46;34137:3;34129:6;34095:46;:::i;:::-;34173:4;34168:3;34164:14;34150:28;;34005:179;;;;:::o;34190:113::-;34260:4;34292;34287:3;34283:14;34275:22;;34190:113;;;:::o;34339:732::-;34458:3;34487:54;34535:5;34487:54;:::i;:::-;34557:86;34636:6;34631:3;34557:86;:::i;:::-;34550:93;;34667:56;34717:5;34667:56;:::i;:::-;34746:7;34777:1;34762:284;34787:6;34784:1;34781:13;34762:284;;;34863:6;34857:13;34890:63;34949:3;34934:13;34890:63;:::i;:::-;34883:70;;34976:60;35029:6;34976:60;:::i;:::-;34966:70;;34822:224;34809:1;34806;34802:9;34797:14;;34762:284;;;34766:14;35062:3;35055:10;;34463:608;;;34339:732;;;;:::o;35077:831::-;35340:4;35378:3;35367:9;35363:19;35355:27;;35392:71;35460:1;35449:9;35445:17;35436:6;35392:71;:::i;:::-;35473:80;35549:2;35538:9;35534:18;35525:6;35473:80;:::i;:::-;35600:9;35594:4;35590:20;35585:2;35574:9;35570:18;35563:48;35628:108;35731:4;35722:6;35628:108;:::i;:::-;35620:116;;35746:72;35814:2;35803:9;35799:18;35790:6;35746:72;:::i;:::-;35828:73;35896:3;35885:9;35881:19;35872:6;35828:73;:::i;:::-;35077:831;;;;;;;;:::o;35914:225::-;36054:34;36050:1;36042:6;36038:14;36031:58;36123:8;36118:2;36110:6;36106:15;36099:33;35914:225;:::o;36145:366::-;36287:3;36308:67;36372:2;36367:3;36308:67;:::i;:::-;36301:74;;36384:93;36473:3;36384:93;:::i;:::-;36502:2;36497:3;36493:12;36486:19;;36145:366;;;:::o;36517:419::-;36683:4;36721:2;36710:9;36706:18;36698:26;;36770:9;36764:4;36760:20;36756:1;36745:9;36741:17;36734:47;36798:131;36924:4;36798:131;:::i;:::-;36790:139;;36517:419;;;:::o;36942:442::-;37091:4;37129:2;37118:9;37114:18;37106:26;;37142:71;37210:1;37199:9;37195:17;37186:6;37142:71;:::i;:::-;37223:72;37291:2;37280:9;37276:18;37267:6;37223:72;:::i;:::-;37305;37373:2;37362:9;37358:18;37349:6;37305:72;:::i;:::-;36942:442;;;;;;:::o;37390:807::-;37639:4;37677:3;37666:9;37662:19;37654:27;;37691:71;37759:1;37748:9;37744:17;37735:6;37691:71;:::i;:::-;37772:72;37840:2;37829:9;37825:18;37816:6;37772:72;:::i;:::-;37854:80;37930:2;37919:9;37915:18;37906:6;37854:80;:::i;:::-;37944;38020:2;38009:9;38005:18;37996:6;37944:80;:::i;:::-;38034:73;38102:3;38091:9;38087:19;38078:6;38034:73;:::i;:::-;38117;38185:3;38174:9;38170:19;38161:6;38117:73;:::i;:::-;37390:807;;;;;;;;;:::o;38203:143::-;38260:5;38291:6;38285:13;38276:22;;38307:33;38334:5;38307:33;:::i;:::-;38203:143;;;;:::o;38352:663::-;38440:6;38448;38456;38505:2;38493:9;38484:7;38480:23;38476:32;38473:119;;;38511:79;;:::i;:::-;38473:119;38631:1;38656:64;38712:7;38703:6;38692:9;38688:22;38656:64;:::i;:::-;38646:74;;38602:128;38769:2;38795:64;38851:7;38842:6;38831:9;38827:22;38795:64;:::i;:::-;38785:74;;38740:129;38908:2;38934:64;38990:7;38981:6;38970:9;38966:22;38934:64;:::i;:::-;38924:74;;38879:129;38352:663;;;;;:::o

Swarm Source

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