ETH Price: $2,439.24 (-8.97%)

Token

ERC20 ***
 

Overview

Max Total Supply

1,000,000,000 ERC20 ***

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,472,289.080623649735287299 ERC20 ***

Value
$0.00
0xaFeedAE457D7cc66C49A35fCb01c05686b663921
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:
GoodAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

Website: https://www.goodai.gg/

Twitter: https://twitter.com/GOOD_AIGG

Telegram: https://t.me/GoodAIPortal

Telegram Announcement Channel: https://t.me/GoodAI_GG

Medium: https://goodaigg.medium.com/goodai-good-game-411c502c8597

Discord: https://discord.gg/fR3YCFnryg
/*

// SPDX-License-Identifier: MIT

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("GoodAI", "GoodAi") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

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

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

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 10000000  * 1e18;
        maxWallet = 10000000  * 1e18; 
        swapTokensAtAmount = (totalSupply * 10) / 100000; 

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

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

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

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 99);
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99);
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600681526020017f476f6f64414900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f476f6f644169000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b0e565b5080600490805190602001906200014792919062000b0e565b5050506200016a6200015e620005ce60201b60201c565b620005d660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c28565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c28565b6040518363ffffffff1660e01b8152600401620002e992919062000c6b565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c28565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069c60201b60201c565b6200038c60a05160016200078660201b60201c565b60008060006014905060008060006014905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a084595161401484a000000600a81905550620186a0600a82620003e6919062000cd1565b620003f2919062000d61565b60098190555086601581905550856016819055508460178190555060175460165460155462000422919062000d99565b6200042e919062000d99565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045e919062000d99565b6200046a919062000d99565b60188190555073f65216170a218986d84e961f5f94b96ee29a17cf600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f65216170a218986d84e961f5f94b96ee29a17cf600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053c6200052e6200082760201b60201c565b60016200085160201b60201c565b6200054f3060016200085160201b60201c565b6200056461dead60016200085160201b60201c565b62000586620005786200082760201b60201c565b60016200069c60201b60201c565b620005993060016200069c60201b60201c565b620005ae61dead60016200069c60201b60201c565b620005c033826200098b60201b60201c565b505050505050505062000fb8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ac620005ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d26200082760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007229062000e57565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000861620005ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008876200082760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d79062000e57565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097f919062000e96565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f59062000f03565b60405180910390fd5b62000a126000838362000b0460201b60201c565b806002600082825462000a26919062000d99565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7d919062000d99565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae4919062000f36565b60405180910390a362000b006000838362000b0960201b60201c565b5050565b505050565b505050565b82805462000b1c9062000f82565b90600052602060002090601f01602090048101928262000b40576000855562000b8c565b82601f1062000b5b57805160ff191683800117855562000b8c565b8280016001018555821562000b8c579182015b8281111562000b8b57825182559160200191906001019062000b6e565b5b50905062000b9b919062000b9f565b5090565b5b8082111562000bba57600081600090555060010162000ba0565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf08262000bc3565b9050919050565b62000c028162000be3565b811462000c0e57600080fd5b50565b60008151905062000c228162000bf7565b92915050565b60006020828403121562000c415762000c4062000bbe565b5b600062000c518482850162000c11565b91505092915050565b62000c658162000be3565b82525050565b600060408201905062000c82600083018562000c5a565b62000c91602083018462000c5a565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cde8262000c98565b915062000ceb8362000c98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d275762000d2662000ca2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6e8262000c98565b915062000d7b8362000c98565b92508262000d8e5762000d8d62000d32565b5b828204905092915050565b600062000da68262000c98565b915062000db38362000c98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000deb5762000dea62000ca2565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3f60208362000df6565b915062000e4c8262000e07565b602082019050919050565b6000602082019050818103600083015262000e728162000e30565b9050919050565b60008115159050919050565b62000e908162000e79565b82525050565b600060208201905062000ead600083018462000e85565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eeb601f8362000df6565b915062000ef88262000eb3565b602082019050919050565b6000602082019050818103600083015262000f1e8162000edc565b9050919050565b62000f308162000c98565b82525050565b600060208201905062000f4d600083018462000f25565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9b57607f821691505b6020821081141562000fb25762000fb162000f53565b5b50919050565b60805160a051615afc62001040600039600081816113ef01528181611bc9015281816126e30152818161279a015281816127c701528181612e0b01528181613f0f01528181613fc80152613ff5015260008181610f9001528181612db30152818161416b0152818161424c015281816142730152818161430f01526143360152615afc6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061447e565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614539565b610f51565b60405161041c9190614594565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145af565b610f6f565b6040516104599190614594565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061463b565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614665565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145af565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614665565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614665565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614665565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614665565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190614680565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ad565b611221565b6040516105ea9190614594565b60405180910390f35b3480156105ff57600080fd5b50610608611319565b604051610615919061470f565b60405180910390f35b34801561062a57600080fd5b5061063361131f565b6040516106409190614665565b60405180910390f35b34801561065557600080fd5b5061065e611325565b60405161066b9190614594565b60405180910390f35b34801561068057600080fd5b50610689611338565b6040516106969190614746565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614539565b611341565b6040516106d39190614594565b60405180910390f35b3480156106e857600080fd5b506106f16113ed565b6040516106fe919061470f565b60405180910390f35b34801561071357600080fd5b5061071c611411565b6040516107299190614594565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906145af565b611424565b6040516107669190614594565b60405180910390f35b34801561077b57600080fd5b5061078461147a565b6040516107919190614665565b60405180910390f35b3480156107a657600080fd5b506107af611480565b6040516107bc9190614594565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906145af565b611493565b6040516107f99190614665565b60405180910390f35b34801561080e57600080fd5b506108176114db565b005b34801561082557600080fd5b50610840600480360381019061083b919061478d565b611563565b005b34801561084e57600080fd5b506108576116a3565b6040516108649190614594565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147e0565b611743565b005b3480156108a257600080fd5b506108ab61181a565b6040516108b8919061470f565b60405180910390f35b3480156108cd57600080fd5b506108d6611840565b6040516108e39190614665565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614820565b611846565b005b34801561092157600080fd5b5061092a61190f565b005b34801561093857600080fd5b506109416119ca565b60405161094e919061470f565b60405180910390f35b34801561096357600080fd5b5061096c6119f4565b604051610979919061470f565b60405180910390f35b34801561098e57600080fd5b50610997611a1a565b6040516109a49190614665565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614873565b611a20565b005b3480156109e257600080fd5b506109eb611ab9565b6040516109f8919061447e565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147e0565b611b4b565b005b348015610a3657600080fd5b50610a3f611c64565b604051610a4c9190614665565b60405180910390f35b348015610a6157600080fd5b50610a6a611c6a565b604051610a779190614665565b60405180910390f35b348015610a8c57600080fd5b50610a95611c70565b604051610aa29190614665565b60405180910390f35b348015610ab757600080fd5b50610ac0611c76565b604051610acd9190614665565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614539565b611c7c565b604051610b0a9190614594565b60405180910390f35b348015610b1f57600080fd5b50610b28611d67565b604051610b359190614665565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614539565b611d6d565b604051610b729190614594565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145af565b611d8b565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145af565b611ec7565b604051610bd89190614594565b60405180910390f35b348015610bed57600080fd5b50610bf6611ee7565b604051610c039190614594565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147e0565b611efa565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614820565b61201f565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614680565b6120e8565b005b348015610c9357600080fd5b50610c9c6121f9565b604051610ca99190614594565b60405180910390f35b348015610cbe57600080fd5b50610cc761220c565b604051610cd49190614665565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614680565b612212565b604051610d119190614594565b60405180910390f35b348015610d2657600080fd5b50610d2f61236b565b604051610d3c9190614665565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148a0565b612371565b604051610d799190614665565b60405180910390f35b348015610d8e57600080fd5b50610d976123f8565b604051610da49190614665565b60405180910390f35b348015610db957600080fd5b50610dc26123fe565b604051610dcf9190614594565b60405180910390f35b348015610de457600080fd5b50610ded61249e565b604051610dfa9190614665565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145af565b6124a4565b005b348015610e3857600080fd5b50610e4161259c565b604051610e4e9190614665565b60405180910390f35b348015610e6357600080fd5b50610e6c6125a2565b604051610e799190614665565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614680565b6125a8565b604051610eb69190614594565b60405180910390f35b606060038054610ece9061490f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061490f565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e612880565b8484612888565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc4612880565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061498d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b611118612880565b73ffffffffffffffffffffffffffffffffffffffff166111366119ca565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061498d565b60405180910390fd5b670de0b6b3a76400006103e8624c4b406111a4610fb2565b6111ae91906149dc565b6111b89190614a65565b6111c29190614a65565b811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614b08565b60405180910390fd5b670de0b6b3a76400008161121891906149dc565b60088190555050565b600061122e848484612a53565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611279612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090614b9a565b60405180910390fd5b61130d85611305612880565b858403612888565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e361134e612880565b84846001600061135c612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9190614bba565b612888565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e3612880565b73ffffffffffffffffffffffffffffffffffffffff166115016119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e9061498d565b60405180910390fd5b61156160006137eb565b565b61156b612880565b73ffffffffffffffffffffffffffffffffffffffff166115896119ca565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061498d565b60405180910390fd5b610258831015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90614c82565b60405180910390fd5b6103e88211158015611637575060008210155b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614d14565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ad612880565b73ffffffffffffffffffffffffffffffffffffffff166116cb6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061498d565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61174b612880565b73ffffffffffffffffffffffffffffffffffffffff166117696119ca565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061498d565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184e612880565b73ffffffffffffffffffffffffffffffffffffffff1661186c6119ca565b73ffffffffffffffffffffffffffffffffffffffff16146118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b99061498d565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118ea9190614bba565b6118f49190614bba565b6014819055506063601454111561190a57600080fd5b505050565b611917612880565b73ffffffffffffffffffffffffffffffffffffffff166119356119ca565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061498d565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a28612880565b73ffffffffffffffffffffffffffffffffffffffff16611a466119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061498d565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ac89061490f565b80601f0160208091040260200160405190810160405280929190818152602001828054611af49061490f565b8015611b415780601f10611b1657610100808354040283529160200191611b41565b820191906000526020600020905b815481529060010190602001808311611b2457829003601f168201915b5050505050905090565b611b53612880565b73ffffffffffffffffffffffffffffffffffffffff16611b716119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe9061498d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614da6565b60405180910390fd5b611c6082826138b1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c8b612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614e38565b60405180910390fd5b611d5c611d53612880565b85858403612888565b600191505092915050565b600e5481565b6000611d81611d7a612880565b8484612a53565b6001905092915050565b611d93612880565b73ffffffffffffffffffffffffffffffffffffffff16611db16119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061498d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f02612880565b73ffffffffffffffffffffffffffffffffffffffff16611f206119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9061498d565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120139190614594565b60405180910390a25050565b612027612880565b73ffffffffffffffffffffffffffffffffffffffff166120456119ca565b73ffffffffffffffffffffffffffffffffffffffff161461209b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120929061498d565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120c39190614bba565b6120cd9190614bba565b601881905550606360185411156120e357600080fd5b505050565b6120f0612880565b73ffffffffffffffffffffffffffffffffffffffff1661210e6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061498d565b60405180910390fd5b670de0b6b3a76400006103e8624c4b4061217c610fb2565b61218691906149dc565b6121909190614a65565b61219a9190614a65565b8110156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614eca565b60405180910390fd5b670de0b6b3a7640000816121f091906149dc565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061221c612880565b73ffffffffffffffffffffffffffffffffffffffff1661223a6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061498d565b60405180910390fd5b620186a0624c4b406122a0610fb2565b6122aa91906149dc565b6122b49190614a65565b8210156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614f5c565b60405180910390fd5b6103e8624c4b40612305610fb2565b61230f91906149dc565b6123199190614a65565b82111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fee565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000612408612880565b73ffffffffffffffffffffffffffffffffffffffff166124266119ca565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061498d565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124ac612880565b73ffffffffffffffffffffffffffffffffffffffff166124ca6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125179061498d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790615080565b60405180910390fd5b612599816137eb565b50565b601a5481565b600a5481565b60006125b2612880565b73ffffffffffffffffffffffffffffffffffffffff166125d06119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d9061498d565b60405180910390fd5b600f546010546126369190614bba565b4211612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e906150ec565b60405180910390fd5b6103e88211156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b39061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161271e919061470f565b602060405180830381865afa15801561273b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061275f91906151b3565b9050600061278a61271061277c868561395290919063ffffffff16565b61396890919063ffffffff16565b905060008111156127c3576127c27f000000000000000000000000000000000000000000000000000000000000000061dead8361397e565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561283057600080fd5b505af1158015612844573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a469190614665565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a90615408565b60405180910390fd5b6000811415612b4d57612b488383600061397e565b6137e6565b601160009054906101000a900460ff161561321057612b6a6119ca565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bd85750612ba86119ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c115750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c645750600560149054906101000a900460ff16155b1561320f57601160019054906101000a900460ff16612d5e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d1e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612f2657612d7b6119ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e0257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e5a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f255743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed79061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fc95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307057600854811115613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a906155be565b60405180910390fd5b600a5461301f83611493565b8261302a9190614bba565b111561306b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130629061562a565b60405180910390fd5b61320e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131135750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131625760085481111561315d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613154906156bc565b60405180910390fd5b61320d565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320c57600a546131bf83611493565b826131ca9190614bba565b111561320b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132029061562a565b60405180910390fd5b5b5b5b5b5b600061321b30611493565b9050600060095482101590508080156132405750601160029054906101000a900460ff165b80156132595750600560149054906101000a900460ff16155b80156132af5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133055750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561335b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561339f576001600560146101000a81548160ff021916908315150217905550613383613bff565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134055750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561341d5750600c60009054906101000a900460ff165b80156134385750600d54600e546134349190614bba565b4210155b801561348e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349d5761349b613ee6565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135535750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355d57600090505b600081156137d657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135c057506000601854115b1561368d576135ed60646135df6018548861395290919063ffffffff16565b61396890919063ffffffff16565b9050601854601a548261360091906149dc565b61360a9190614a65565b601d600082825461361b9190614bba565b92505081905550601854601b548261363391906149dc565b61363d9190614a65565b601e600082825461364e9190614bba565b925050819055506018546019548261366691906149dc565b6136709190614a65565b601c60008282546136819190614bba565b925050819055506137b2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e857506000601454115b156137b15761371560646137076014548861395290919063ffffffff16565b61396890919063ffffffff16565b90506014546016548261372891906149dc565b6137329190614a65565b601d60008282546137439190614bba565b925050819055506014546017548261375b91906149dc565b6137659190614a65565b601e60008282546137769190614bba565b925050819055506014546015548261378e91906149dc565b6137989190614a65565b601c60008282546137a99190614bba565b925050819055505b5b60008111156137c7576137c687308361397e565b5b80856137d391906156dc565b94505b6137e187878761397e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361396091906149dc565b905092915050565b600081836139769190614a65565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e590615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5590615408565b60405180910390fd5b613a698383836140ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae690615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b829190614bba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613be69190614665565b60405180910390a3613bf98484846140b1565b50505050565b6000613c0a30611493565b90506000601e54601c54601d54613c219190614bba565b613c2b9190614bba565b9050600080831480613c3d5750600082145b15613c4a57505050613ee4565b6014600954613c5991906149dc565b831115613c72576014600954613c6f91906149dc565b92505b6000600283601d5486613c8591906149dc565b613c8f9190614a65565b613c999190614a65565b90506000613cb082866140b690919063ffffffff16565b90506000479050613cc0826140cc565b6000613cd582476140b690919063ffffffff16565b90506000613d0087613cf2601c548561395290919063ffffffff16565b61396890919063ffffffff16565b90506000613d2b88613d1d601e548661395290919063ffffffff16565b61396890919063ffffffff16565b90506000818385613d3c91906156dc565b613d4691906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613da6906157d3565b60006040518083038185875af1925050503d8060008114613de3576040519150601f19603f3d011682016040523d82523d6000602084013e613de8565b606091505b505080985050600087118015613dfe5750600081115b15613e4b57613e0d8782614309565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e42939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e91906157d3565b60006040518083038185875af1925050503d8060008114613ece576040519150601f19603f3d011682016040523d82523d6000602084013e613ed3565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f4a919061470f565b602060405180830381865afa158015613f67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f8b91906151b3565b90506000613fb8612710613faa600b548561395290919063ffffffff16565b61396890919063ffffffff16565b90506000811115613ff157613ff07f000000000000000000000000000000000000000000000000000000000000000061dead8361397e565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405e57600080fd5b505af1158015614072573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140c491906156dc565b905092915050565b6000600267ffffffffffffffff8111156140e9576140e861581f565b5b6040519080825280602002602001820160405280156141175781602001602082028036833780820191505090505b509050308160008151811061412f5761412e61584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f89190615892565b8160018151811061420c5761420b61584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614271307f000000000000000000000000000000000000000000000000000000000000000084612888565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142d39594939291906159b8565b600060405180830381600087803b1580156142ed57600080fd5b505af1158015614301573d6000803e3d6000fd5b505050505050565b614334307f000000000000000000000000000000000000000000000000000000000000000084612888565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161439b96959493929190615a12565b60606040518083038185885af11580156143b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143de9190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561441f578082015181840152602081019050614404565b8381111561442e576000848401525b50505050565b6000601f19601f8301169050919050565b6000614450826143e5565b61445a81856143f0565b935061446a818560208601614401565b61447381614434565b840191505092915050565b600060208201905081810360008301526144988184614445565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144d0826144a5565b9050919050565b6144e0816144c5565b81146144eb57600080fd5b50565b6000813590506144fd816144d7565b92915050565b6000819050919050565b61451681614503565b811461452157600080fd5b50565b6000813590506145338161450d565b92915050565b600080604083850312156145505761454f6144a0565b5b600061455e858286016144ee565b925050602061456f85828601614524565b9150509250929050565b60008115159050919050565b61458e81614579565b82525050565b60006020820190506145a96000830184614585565b92915050565b6000602082840312156145c5576145c46144a0565b5b60006145d3848285016144ee565b91505092915050565b6000819050919050565b60006146016145fc6145f7846144a5565b6145dc565b6144a5565b9050919050565b6000614613826145e6565b9050919050565b600061462582614608565b9050919050565b6146358161461a565b82525050565b6000602082019050614650600083018461462c565b92915050565b61465f81614503565b82525050565b600060208201905061467a6000830184614656565b92915050565b600060208284031215614696576146956144a0565b5b60006146a484828501614524565b91505092915050565b6000806000606084860312156146c6576146c56144a0565b5b60006146d4868287016144ee565b93505060206146e5868287016144ee565b92505060406146f686828701614524565b9150509250925092565b614709816144c5565b82525050565b60006020820190506147246000830184614700565b92915050565b600060ff82169050919050565b6147408161472a565b82525050565b600060208201905061475b6000830184614737565b92915050565b61476a81614579565b811461477557600080fd5b50565b60008135905061478781614761565b92915050565b6000806000606084860312156147a6576147a56144a0565b5b60006147b486828701614524565b93505060206147c586828701614524565b92505060406147d686828701614778565b9150509250925092565b600080604083850312156147f7576147f66144a0565b5b6000614805858286016144ee565b925050602061481685828601614778565b9150509250929050565b600080600060608486031215614839576148386144a0565b5b600061484786828701614524565b935050602061485886828701614524565b925050604061486986828701614524565b9150509250925092565b600060208284031215614889576148886144a0565b5b600061489784828501614778565b91505092915050565b600080604083850312156148b7576148b66144a0565b5b60006148c5858286016144ee565b92505060206148d6858286016144ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492757607f821691505b6020821081141561493b5761493a6148e0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149776020836143f0565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e782614503565b91506149f283614503565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2b57614a2a6149ad565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a7082614503565b9150614a7b83614503565b925082614a8b57614a8a614a36565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614af2602f836143f0565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b846028836143f0565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b6000614bc582614503565b9150614bd083614503565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c0557614c046149ad565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c6c6033836143f0565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cfe6030836143f0565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614d906039836143f0565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e226025836143f0565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46024836143f0565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e352520746f74616c20737570706c792e00000000000000000000000000602082015250565b6000614f466033836143f0565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fd86034836143f0565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a6026836143f0565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d66020836143f0565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a836143f0565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad8161450d565b92915050565b6000602082840312156151c9576151c86144a0565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c6024836143f0565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce6022836143f0565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153606025836143f0565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f26023836143f0565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e6016836143f0565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155166049836143f0565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a86035836143f0565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156146013836143f0565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a66036836143f0565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e782614503565b91506156f283614503565b925082821015615705576157046149ad565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c6026836143f0565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614656565b61580a6020830185614656565b6158176040830184614656565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816144d7565b92915050565b6000602082840312156158a8576158a76144a0565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6145dc565b614503565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816144c5565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614656565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb6060830185614700565b615a086080830184614656565b9695505050505050565b600060c082019050615a276000830189614700565b615a346020830188614656565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b6080830185614700565b615a6860a0830184614656565b979650505050505050565b600080600060608486031215615a8c57615a8b6144a0565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220e210e6a3172ce75c4b5edae831c6e3add55bc8928456e6cbd04f3528b747476664736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061447e565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614539565b610f51565b60405161041c9190614594565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145af565b610f6f565b6040516104599190614594565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061463b565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614665565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145af565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614665565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614665565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614665565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614665565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190614680565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ad565b611221565b6040516105ea9190614594565b60405180910390f35b3480156105ff57600080fd5b50610608611319565b604051610615919061470f565b60405180910390f35b34801561062a57600080fd5b5061063361131f565b6040516106409190614665565b60405180910390f35b34801561065557600080fd5b5061065e611325565b60405161066b9190614594565b60405180910390f35b34801561068057600080fd5b50610689611338565b6040516106969190614746565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614539565b611341565b6040516106d39190614594565b60405180910390f35b3480156106e857600080fd5b506106f16113ed565b6040516106fe919061470f565b60405180910390f35b34801561071357600080fd5b5061071c611411565b6040516107299190614594565b60405180910390f35b34801561073e57600080fd5b50610759600480360381019061075491906145af565b611424565b6040516107669190614594565b60405180910390f35b34801561077b57600080fd5b5061078461147a565b6040516107919190614665565b60405180910390f35b3480156107a657600080fd5b506107af611480565b6040516107bc9190614594565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906145af565b611493565b6040516107f99190614665565b60405180910390f35b34801561080e57600080fd5b506108176114db565b005b34801561082557600080fd5b50610840600480360381019061083b919061478d565b611563565b005b34801561084e57600080fd5b506108576116a3565b6040516108649190614594565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147e0565b611743565b005b3480156108a257600080fd5b506108ab61181a565b6040516108b8919061470f565b60405180910390f35b3480156108cd57600080fd5b506108d6611840565b6040516108e39190614665565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614820565b611846565b005b34801561092157600080fd5b5061092a61190f565b005b34801561093857600080fd5b506109416119ca565b60405161094e919061470f565b60405180910390f35b34801561096357600080fd5b5061096c6119f4565b604051610979919061470f565b60405180910390f35b34801561098e57600080fd5b50610997611a1a565b6040516109a49190614665565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614873565b611a20565b005b3480156109e257600080fd5b506109eb611ab9565b6040516109f8919061447e565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147e0565b611b4b565b005b348015610a3657600080fd5b50610a3f611c64565b604051610a4c9190614665565b60405180910390f35b348015610a6157600080fd5b50610a6a611c6a565b604051610a779190614665565b60405180910390f35b348015610a8c57600080fd5b50610a95611c70565b604051610aa29190614665565b60405180910390f35b348015610ab757600080fd5b50610ac0611c76565b604051610acd9190614665565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614539565b611c7c565b604051610b0a9190614594565b60405180910390f35b348015610b1f57600080fd5b50610b28611d67565b604051610b359190614665565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614539565b611d6d565b604051610b729190614594565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906145af565b611d8b565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc691906145af565b611ec7565b604051610bd89190614594565b60405180910390f35b348015610bed57600080fd5b50610bf6611ee7565b604051610c039190614594565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147e0565b611efa565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614820565b61201f565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614680565b6120e8565b005b348015610c9357600080fd5b50610c9c6121f9565b604051610ca99190614594565b60405180910390f35b348015610cbe57600080fd5b50610cc761220c565b604051610cd49190614665565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614680565b612212565b604051610d119190614594565b60405180910390f35b348015610d2657600080fd5b50610d2f61236b565b604051610d3c9190614665565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148a0565b612371565b604051610d799190614665565b60405180910390f35b348015610d8e57600080fd5b50610d976123f8565b604051610da49190614665565b60405180910390f35b348015610db957600080fd5b50610dc26123fe565b604051610dcf9190614594565b60405180910390f35b348015610de457600080fd5b50610ded61249e565b604051610dfa9190614665565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e2591906145af565b6124a4565b005b348015610e3857600080fd5b50610e4161259c565b604051610e4e9190614665565b60405180910390f35b348015610e6357600080fd5b50610e6c6125a2565b604051610e799190614665565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614680565b6125a8565b604051610eb69190614594565b60405180910390f35b606060038054610ece9061490f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061490f565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e612880565b8484612888565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc4612880565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061498d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b611118612880565b73ffffffffffffffffffffffffffffffffffffffff166111366119ca565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061498d565b60405180910390fd5b670de0b6b3a76400006103e8624c4b406111a4610fb2565b6111ae91906149dc565b6111b89190614a65565b6111c29190614a65565b811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614b08565b60405180910390fd5b670de0b6b3a76400008161121891906149dc565b60088190555050565b600061122e848484612a53565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611279612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090614b9a565b60405180910390fd5b61130d85611305612880565b858403612888565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e361134e612880565b84846001600061135c612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9190614bba565b612888565b6001905092915050565b7f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e3612880565b73ffffffffffffffffffffffffffffffffffffffff166115016119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e9061498d565b60405180910390fd5b61156160006137eb565b565b61156b612880565b73ffffffffffffffffffffffffffffffffffffffff166115896119ca565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061498d565b60405180910390fd5b610258831015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90614c82565b60405180910390fd5b6103e88211158015611637575060008210155b611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614d14565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ad612880565b73ffffffffffffffffffffffffffffffffffffffff166116cb6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061498d565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61174b612880565b73ffffffffffffffffffffffffffffffffffffffff166117696119ca565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061498d565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184e612880565b73ffffffffffffffffffffffffffffffffffffffff1661186c6119ca565b73ffffffffffffffffffffffffffffffffffffffff16146118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b99061498d565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118ea9190614bba565b6118f49190614bba565b6014819055506063601454111561190a57600080fd5b505050565b611917612880565b73ffffffffffffffffffffffffffffffffffffffff166119356119ca565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061498d565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a28612880565b73ffffffffffffffffffffffffffffffffffffffff16611a466119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061498d565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611ac89061490f565b80601f0160208091040260200160405190810160405280929190818152602001828054611af49061490f565b8015611b415780601f10611b1657610100808354040283529160200191611b41565b820191906000526020600020905b815481529060010190602001808311611b2457829003601f168201915b5050505050905090565b611b53612880565b73ffffffffffffffffffffffffffffffffffffffff16611b716119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe9061498d565b60405180910390fd5b7f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614da6565b60405180910390fd5b611c6082826138b1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c8b612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614e38565b60405180910390fd5b611d5c611d53612880565b85858403612888565b600191505092915050565b600e5481565b6000611d81611d7a612880565b8484612a53565b6001905092915050565b611d93612880565b73ffffffffffffffffffffffffffffffffffffffff16611db16119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061498d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f02612880565b73ffffffffffffffffffffffffffffffffffffffff16611f206119ca565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9061498d565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120139190614594565b60405180910390a25050565b612027612880565b73ffffffffffffffffffffffffffffffffffffffff166120456119ca565b73ffffffffffffffffffffffffffffffffffffffff161461209b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120929061498d565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120c39190614bba565b6120cd9190614bba565b601881905550606360185411156120e357600080fd5b505050565b6120f0612880565b73ffffffffffffffffffffffffffffffffffffffff1661210e6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061498d565b60405180910390fd5b670de0b6b3a76400006103e8624c4b4061217c610fb2565b61218691906149dc565b6121909190614a65565b61219a9190614a65565b8110156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614eca565b60405180910390fd5b670de0b6b3a7640000816121f091906149dc565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061221c612880565b73ffffffffffffffffffffffffffffffffffffffff1661223a6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061498d565b60405180910390fd5b620186a0624c4b406122a0610fb2565b6122aa91906149dc565b6122b49190614a65565b8210156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614f5c565b60405180910390fd5b6103e8624c4b40612305610fb2565b61230f91906149dc565b6123199190614a65565b82111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fee565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000612408612880565b73ffffffffffffffffffffffffffffffffffffffff166124266119ca565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061498d565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124ac612880565b73ffffffffffffffffffffffffffffffffffffffff166124ca6119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125179061498d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790615080565b60405180910390fd5b612599816137eb565b50565b601a5481565b600a5481565b60006125b2612880565b73ffffffffffffffffffffffffffffffffffffffff166125d06119ca565b73ffffffffffffffffffffffffffffffffffffffff1614612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d9061498d565b60405180910390fd5b600f546010546126369190614bba565b4211612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e906150ec565b60405180910390fd5b6103e88211156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b39061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b6040518263ffffffff1660e01b815260040161271e919061470f565b602060405180830381865afa15801561273b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061275f91906151b3565b9050600061278a61271061277c868561395290919063ffffffff16565b61396890919063ffffffff16565b905060008111156127c3576127c27f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b61dead8361397e565b5b60007f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561283057600080fd5b505af1158015612844573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a469190614665565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a90615408565b60405180910390fd5b6000811415612b4d57612b488383600061397e565b6137e6565b601160009054906101000a900460ff161561321057612b6a6119ca565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bd85750612ba86119ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c115750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c645750600560149054906101000a900460ff16155b1561320f57601160019054906101000a900460ff16612d5e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d1e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612f2657612d7b6119ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e0257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e5a57507f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f255743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed79061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fc95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307057600854811115613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a906155be565b60405180910390fd5b600a5461301f83611493565b8261302a9190614bba565b111561306b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130629061562a565b60405180910390fd5b61320e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131135750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131625760085481111561315d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613154906156bc565b60405180910390fd5b61320d565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320c57600a546131bf83611493565b826131ca9190614bba565b111561320b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132029061562a565b60405180910390fd5b5b5b5b5b5b600061321b30611493565b9050600060095482101590508080156132405750601160029054906101000a900460ff165b80156132595750600560149054906101000a900460ff16155b80156132af5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133055750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561335b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561339f576001600560146101000a81548160ff021916908315150217905550613383613bff565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134055750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561341d5750600c60009054906101000a900460ff165b80156134385750600d54600e546134349190614bba565b4210155b801561348e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349d5761349b613ee6565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135535750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355d57600090505b600081156137d657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135c057506000601854115b1561368d576135ed60646135df6018548861395290919063ffffffff16565b61396890919063ffffffff16565b9050601854601a548261360091906149dc565b61360a9190614a65565b601d600082825461361b9190614bba565b92505081905550601854601b548261363391906149dc565b61363d9190614a65565b601e600082825461364e9190614bba565b925050819055506018546019548261366691906149dc565b6136709190614a65565b601c60008282546136819190614bba565b925050819055506137b2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e857506000601454115b156137b15761371560646137076014548861395290919063ffffffff16565b61396890919063ffffffff16565b90506014546016548261372891906149dc565b6137329190614a65565b601d60008282546137439190614bba565b925050819055506014546017548261375b91906149dc565b6137659190614a65565b601e60008282546137769190614bba565b925050819055506014546015548261378e91906149dc565b6137989190614a65565b601c60008282546137a99190614bba565b925050819055505b5b60008111156137c7576137c687308361397e565b5b80856137d391906156dc565b94505b6137e187878761397e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361396091906149dc565b905092915050565b600081836139769190614a65565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e590615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5590615408565b60405180910390fd5b613a698383836140ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae690615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b829190614bba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613be69190614665565b60405180910390a3613bf98484846140b1565b50505050565b6000613c0a30611493565b90506000601e54601c54601d54613c219190614bba565b613c2b9190614bba565b9050600080831480613c3d5750600082145b15613c4a57505050613ee4565b6014600954613c5991906149dc565b831115613c72576014600954613c6f91906149dc565b92505b6000600283601d5486613c8591906149dc565b613c8f9190614a65565b613c999190614a65565b90506000613cb082866140b690919063ffffffff16565b90506000479050613cc0826140cc565b6000613cd582476140b690919063ffffffff16565b90506000613d0087613cf2601c548561395290919063ffffffff16565b61396890919063ffffffff16565b90506000613d2b88613d1d601e548661395290919063ffffffff16565b61396890919063ffffffff16565b90506000818385613d3c91906156dc565b613d4691906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613da6906157d3565b60006040518083038185875af1925050503d8060008114613de3576040519150601f19603f3d011682016040523d82523d6000602084013e613de8565b606091505b505080985050600087118015613dfe5750600081115b15613e4b57613e0d8782614309565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e42939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e91906157d3565b60006040518083038185875af1925050503d8060008114613ece576040519150601f19603f3d011682016040523d82523d6000602084013e613ed3565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b6040518263ffffffff1660e01b8152600401613f4a919061470f565b602060405180830381865afa158015613f67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f8b91906151b3565b90506000613fb8612710613faa600b548561395290919063ffffffff16565b61396890919063ffffffff16565b90506000811115613ff157613ff07f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b61dead8361397e565b5b60007f000000000000000000000000d4bdd4b271f47c1b6d74e6559e2cdc19b74ea16b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405e57600080fd5b505af1158015614072573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140c491906156dc565b905092915050565b6000600267ffffffffffffffff8111156140e9576140e861581f565b5b6040519080825280602002602001820160405280156141175781602001602082028036833780820191505090505b509050308160008151811061412f5761412e61584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f89190615892565b8160018151811061420c5761420b61584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614271307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612888565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142d39594939291906159b8565b600060405180830381600087803b1580156142ed57600080fd5b505af1158015614301573d6000803e3d6000fd5b505050505050565b614334307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612888565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161439b96959493929190615a12565b60606040518083038185885af11580156143b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143de9190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561441f578082015181840152602081019050614404565b8381111561442e576000848401525b50505050565b6000601f19601f8301169050919050565b6000614450826143e5565b61445a81856143f0565b935061446a818560208601614401565b61447381614434565b840191505092915050565b600060208201905081810360008301526144988184614445565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144d0826144a5565b9050919050565b6144e0816144c5565b81146144eb57600080fd5b50565b6000813590506144fd816144d7565b92915050565b6000819050919050565b61451681614503565b811461452157600080fd5b50565b6000813590506145338161450d565b92915050565b600080604083850312156145505761454f6144a0565b5b600061455e858286016144ee565b925050602061456f85828601614524565b9150509250929050565b60008115159050919050565b61458e81614579565b82525050565b60006020820190506145a96000830184614585565b92915050565b6000602082840312156145c5576145c46144a0565b5b60006145d3848285016144ee565b91505092915050565b6000819050919050565b60006146016145fc6145f7846144a5565b6145dc565b6144a5565b9050919050565b6000614613826145e6565b9050919050565b600061462582614608565b9050919050565b6146358161461a565b82525050565b6000602082019050614650600083018461462c565b92915050565b61465f81614503565b82525050565b600060208201905061467a6000830184614656565b92915050565b600060208284031215614696576146956144a0565b5b60006146a484828501614524565b91505092915050565b6000806000606084860312156146c6576146c56144a0565b5b60006146d4868287016144ee565b93505060206146e5868287016144ee565b92505060406146f686828701614524565b9150509250925092565b614709816144c5565b82525050565b60006020820190506147246000830184614700565b92915050565b600060ff82169050919050565b6147408161472a565b82525050565b600060208201905061475b6000830184614737565b92915050565b61476a81614579565b811461477557600080fd5b50565b60008135905061478781614761565b92915050565b6000806000606084860312156147a6576147a56144a0565b5b60006147b486828701614524565b93505060206147c586828701614524565b92505060406147d686828701614778565b9150509250925092565b600080604083850312156147f7576147f66144a0565b5b6000614805858286016144ee565b925050602061481685828601614778565b9150509250929050565b600080600060608486031215614839576148386144a0565b5b600061484786828701614524565b935050602061485886828701614524565b925050604061486986828701614524565b9150509250925092565b600060208284031215614889576148886144a0565b5b600061489784828501614778565b91505092915050565b600080604083850312156148b7576148b66144a0565b5b60006148c5858286016144ee565b92505060206148d6858286016144ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492757607f821691505b6020821081141561493b5761493a6148e0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149776020836143f0565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e782614503565b91506149f283614503565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2b57614a2a6149ad565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a7082614503565b9150614a7b83614503565b925082614a8b57614a8a614a36565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614af2602f836143f0565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b846028836143f0565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b6000614bc582614503565b9150614bd083614503565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c0557614c046149ad565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c6c6033836143f0565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cfe6030836143f0565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614d906039836143f0565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e226025836143f0565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46024836143f0565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e352520746f74616c20737570706c792e00000000000000000000000000602082015250565b6000614f466033836143f0565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fd86034836143f0565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a6026836143f0565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d66020836143f0565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a836143f0565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad8161450d565b92915050565b6000602082840312156151c9576151c86144a0565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c6024836143f0565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce6022836143f0565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153606025836143f0565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f26023836143f0565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e6016836143f0565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155166049836143f0565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a86035836143f0565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156146013836143f0565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a66036836143f0565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e782614503565b91506156f283614503565b925082821015615705576157046149ad565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c6026836143f0565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614656565b61580a6020830185614656565b6158176040830184614656565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816144d7565b92915050565b6000602082840312156158a8576158a76144a0565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6145dc565b614503565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816144c5565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614656565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb6060830185614700565b615a086080830184614656565b9695505050505050565b600060c082019050615a276000830189614700565b615a346020830188614656565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b6080830185614700565b615a6860a0830184614656565b979650505050505050565b600080600060608486031215615a8c57615a8b6144a0565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220e210e6a3172ce75c4b5edae831c6e3add55bc8928456e6cbd04f3528b747476664736f6c634300080a0033

Deployed Bytecode Sourcemap

33024:19295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9852:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12019:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34651:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33100:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10972:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41647:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33665:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33480:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34435:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34395;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39015:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12670:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33203:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33575:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33536:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10814:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13571:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33158:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41812:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34250:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33843:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11143:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3087:103;;;;;;;;;;;;;:::i;:::-;;49901:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38113:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39574:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33295:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39945:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37906:155;;;;;;;;;;;;;:::i;:::-;;2436:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33332:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34285:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39837:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10071:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40900:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34217:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33719:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34475:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34361:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14289:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33627:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11483:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41408:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34872:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33803:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40710:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40323:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39304:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34061:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33365:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38500:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34109:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11721:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33407:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38295:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34180:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3345:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34323:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33447:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51260:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9852:100;9906:13;9939:5;9932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9852:100;:::o;12019:169::-;12102:4;12119:39;12128:12;:10;:12::i;:::-;12142:7;12151:6;12119:8;:39::i;:::-;12176:4;12169:11;;12019:169;;;;:::o;34651:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33100:51::-;;;:::o;10972:108::-;11033:7;11060:12;;11053:19;;10972:108;:::o;41647:157::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41754:9:::1;;;;;;;;;;;41726:38;;41743:9;41726:38;;;;;;;;;;;;41787:9;41775;;:21;;;;;;;;;;;;;;;;;;41647:157:::0;:::o;33665:47::-;;;;:::o;33480:36::-;;;;:::o;34435:33::-;;;;:::o;34395:::-;;;;:::o;39015:281::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39158:4:::1;39150;39139:7;39123:13;:11;:13::i;:::-;:23;;;;:::i;:::-;39122:32;;;;:::i;:::-;39121:41;;;;:::i;:::-;39111:6;:51;;39089:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;39281:6;39271;:17;;;;:::i;:::-;39248:20;:40;;;;39015:281:::0;:::o;12670:492::-;12810:4;12827:36;12837:6;12845:9;12856:6;12827:9;:36::i;:::-;12876:24;12903:11;:19;12915:6;12903:19;;;;;;;;;;;;;;;:33;12923:12;:10;:12::i;:::-;12903:33;;;;;;;;;;;;;;;;12876:60;;12975:6;12955:16;:26;;12947:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13062:57;13071:6;13079:12;:10;:12::i;:::-;13112:6;13093:16;:25;13062:8;:57::i;:::-;13150:4;13143:11;;;12670:492;;;;;:::o;33203:53::-;33249:6;33203:53;:::o;33575:45::-;;;;:::o;33536:32::-;;;;;;;;;;;;;:::o;10814:93::-;10872:5;10897:2;10890:9;;10814:93;:::o;13571:215::-;13659:4;13676:80;13685:12;:10;:12::i;:::-;13699:7;13745:10;13708:11;:25;13720:12;:10;:12::i;:::-;13708:25;;;;;;;;;;;;;;;:34;13734:7;13708:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13676:8;:80::i;:::-;13774:4;13767:11;;13571:215;;;;:::o;33158:38::-;;;:::o;33763:33::-;;;;;;;;;;;;;:::o;41812:126::-;41878:4;41902:19;:28;41922:7;41902:28;;;;;;;;;;;;;;;;;;;;;;;;;41895:35;;41812:126;;;:::o;34250:28::-;;;;:::o;33843:31::-;;;;;;;;;;;;;:::o;11143:127::-;11217:7;11244:9;:18;11254:7;11244:18;;;;;;;;;;;;;;;;11237:25;;11143:127;;;:::o;3087:103::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3152:30:::1;3179:1;3152:18;:30::i;:::-;3087:103::o:0;49901:555::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50103:3:::1;50080:19;:26;;50058:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50230:4;50218:8;:16;;:33;;;;;50250:1;50238:8;:13;;50218:33;50196:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50356:19;50338:15;:37;;;;50405:8;50386:16;:27;;;;50440:8;50424:13;;:24;;;;;;;;;;;;;;;;;;49901:555:::0;;;:::o;38113:121::-;38165:4;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38199:5:::1;38182:14;;:22;;;;;;;;;;;;;;;;;;38222:4;38215:11;;38113:121:::0;:::o;39574:167::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39729:4:::1;39687:31;:39;39719:6;39687:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39574:167:::0;;:::o;33295:30::-;;;;;;;;;;;;;:::o;34143:::-;;;;:::o;39945:370::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40113:13:::1;40095:15;:31;;;;40155:13;40137:15;:31;;;;40191:7;40179:9;:19;;;;40260:9;;40242:15;;40224;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40209:12;:60;;;;40304:2;40288:12;;:18;;40280:27;;;::::0;::::1;;39945:370:::0;;;:::o;37906:155::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37977:4:::1;37961:13;;:20;;;;;;;;;;;;;;;;;;38006:4;37992:11;;:18;;;;;;;;;;;;;;;;;;38038:15;38021:14;:32;;;;37906:155::o:0;2436:87::-;2482:7;2509:6;;;;;;;;;;;2502:13;;2436:87;:::o;33332:24::-;;;;;;;;;;;;;:::o;34285:31::-;;;;:::o;39837:100::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:7:::1;39908:11;;:21;;;;;;;;;;;;;;;;;;39837:100:::0;:::o;10071:104::-;10127:13;10160:7;10153:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10071:104;:::o;40900:304::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41044:13:::1;41036:21;;:4;:21;;;;41014:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41155:41;41184:4;41190:5;41155:28;:41::i;:::-;40900:304:::0;;:::o;34217:24::-;;;;:::o;33719:35::-;;;;:::o;34475:27::-;;;;:::o;34361:25::-;;;;:::o;14289:413::-;14382:4;14399:24;14426:11;:25;14438:12;:10;:12::i;:::-;14426:25;;;;;;;;;;;;;;;:34;14452:7;14426:34;;;;;;;;;;;;;;;;14399:61;;14499:15;14479:16;:35;;14471:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14592:67;14601:12;:10;:12::i;:::-;14615:7;14643:15;14624:16;:34;14592:8;:67::i;:::-;14690:4;14683:11;;;14289:413;;;;:::o;33627:29::-;;;;:::o;11483:175::-;11569:4;11586:42;11596:12;:10;:12::i;:::-;11610:9;11621:6;11586:9;:42::i;:::-;11646:4;11639:11;;11483:175;;;;:::o;41408:231::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41568:15:::1;;;;;;;;;;;41525:59;;41548:18;41525:59;;;;;;;;;;;;41613:18;41595:15;;:36;;;;;;;;;;;;;;;;;;41408:231:::0;:::o;34872:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33803:33::-;;;;;;;;;;;;;:::o;40710:182::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40826:8:::1;40795:19;:28;40815:7;40795:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40866:7;40850:34;;;40875:8;40850:34;;;;;;:::i;:::-;;;;;;;;40710:182:::0;;:::o;40323:379::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40493:13:::1;40474:16;:32;;;;40536:13;40517:16;:32;;;;40573:7;40560:10;:20;;;;40645:10;;40626:16;;40607;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40591:13;:64;;;;40691:2;40674:13;;:19;;40666:28;;;::::0;::::1;;40323:379:::0;;;:::o;39304:262::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39450:4:::1;39442;39431:7;39415:13;:11;:13::i;:::-;:23;;;;:::i;:::-;39414:32;;;;:::i;:::-;39413:41;;;;:::i;:::-;39403:6;:51;;39381:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;39551:6;39541;:17;;;;:::i;:::-;39529:9;:29;;;;39304:262:::0;:::o;34061:39::-;;;;;;;;;;;;;:::o;33365:35::-;;;;:::o;38500:507::-;38608:4;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38693:6:::1;38682:7;38666:13;:11;:13::i;:::-;:23;;;;:::i;:::-;38665:34;;;;:::i;:::-;38652:9;:47;;38630:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38852:4;38841:7;38825:13;:11;:13::i;:::-;:23;;;;:::i;:::-;38824:32;;;;:::i;:::-;38811:9;:45;;38789:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;38968:9;38947:18;:30;;;;38995:4;38988:11;;38500:507:::0;;;:::o;34109:27::-;;;;:::o;11721:151::-;11810:7;11837:11;:18;11849:5;11837:18;;;;;;;;;;;;;;;:27;11856:7;11837:27;;;;;;;;;;;;;;;;11830:34;;11721:151;;;;:::o;33407:33::-;;;;:::o;38295:135::-;38355:4;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38395:5:::1;38372:20;;:28;;;;;;;;;;;;;;;;;;38418:4;38411:11;;38295:135:::0;:::o;34180:30::-;;;;:::o;3345:201::-;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3454:1:::1;3434:22;;:8;:22;;;;3426:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3510:28;3529:8;3510:18;:28::i;:::-;3345:201:::0;:::o;34323:31::-;;;;:::o;33447:24::-;;;;:::o;51260:1056::-;51371:4;2667:12;:10;:12::i;:::-;2656:23;;:7;:5;:7::i;:::-;:23;;;2648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51456:19:::1;;51433:20;;:42;;;;:::i;:::-;51415:15;:60;51393:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51565:4;51554:7;:15;;51546:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51650:15;51627:20;:38;;;;51720:28;51751:4;:14;;;51766:13;51751:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51720:60;;51830:20;51853:44;51891:5;51853:33;51878:7;51853:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51830:67;;52017:1;52002:12;:16;51998:110;;;52035:61;52051:13;52074:6;52083:12;52035:15;:61::i;:::-;51998:110;52183:19;52220:13;52183:51;;52245:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52272:14;;;;;;;;;;52304:4;52297:11;;;;;51260:1056:::0;;;:::o;1109:98::-;1162:7;1189:10;1182:17;;1109:98;:::o;17973:380::-;18126:1;18109:19;;:5;:19;;;;18101:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18207:1;18188:21;;:7;:21;;;;18180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18291:6;18261:11;:18;18273:5;18261:18;;;;;;;;;;;;;;;:27;18280:7;18261:27;;;;;;;;;;;;;;;:36;;;;18329:7;18313:32;;18322:5;18313:32;;;18338:6;18313:32;;;;;;:::i;:::-;;;;;;;;17973:380;;;:::o;41996:5011::-;42144:1;42128:18;;:4;:18;;;;42120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42221:1;42207:16;;:2;:16;;;;42199:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42290:1;42280:6;:11;42276:93;;;42308:28;42324:4;42330:2;42334:1;42308:15;:28::i;:::-;42351:7;;42276:93;42385:14;;;;;;;;;;;42381:2487;;;42446:7;:5;:7::i;:::-;42438:15;;:4;:15;;;;:49;;;;;42480:7;:5;:7::i;:::-;42474:13;;:2;:13;;;;42438:49;:86;;;;;42522:1;42508:16;;:2;:16;;;;42438:86;:128;;;;;42559:6;42545:21;;:2;:21;;;;42438:128;:158;;;;;42588:8;;;;;;;;;;;42587:9;42438:158;42416:2441;;;42636:13;;;;;;;;;;;42631:223;;42708:19;:25;42728:4;42708:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42737:19;:23;42757:2;42737:23;;;;;;;;;;;;;;;;;;;;;;;;;42708:52;42674:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42631:223;43010:20;;;;;;;;;;;43006:641;;;43091:7;:5;:7::i;:::-;43085:13;;:2;:13;;;;:72;;;;;43141:15;43127:30;;:2;:30;;;;43085:72;:129;;;;;43200:13;43186:28;;:2;:28;;;;43085:129;43055:573;;;43378:12;43303:28;:39;43332:9;43303:39;;;;;;;;;;;;;;;;:87;43265:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43592:12;43550:28;:39;43579:9;43550:39;;;;;;;;;;;;;;;:54;;;;43055:573;43006:641;43721:25;:31;43747:4;43721:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43778:31;:35;43810:2;43778:35;;;;;;;;;;;;;;;;;;;;;;;;;43777:36;43721:92;43695:1147;;;43900:20;;43890:6;:30;;43856:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44108:9;;44091:13;44101:2;44091:9;:13::i;:::-;44082:6;:22;;;;:::i;:::-;:35;;44048:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43695:1147;;;44286:25;:29;44312:2;44286:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44341:31;:37;44373:4;44341:37;;;;;;;;;;;;;;;;;;;;;;;;;44340:38;44286:92;44260:582;;;44465:20;;44455:6;:30;;44421:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44260:582;;;44622:31;:35;44654:2;44622:35;;;;;;;;;;;;;;;;;;;;;;;;;44617:225;;44742:9;;44725:13;44735:2;44725:9;:13::i;:::-;44716:6;:22;;;;:::i;:::-;:35;;44682:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44617:225;44260:582;43695:1147;42416:2441;42381:2487;44880:28;44911:24;44929:4;44911:9;:24::i;:::-;44880:55;;44948:12;44987:18;;44963:20;:42;;44948:57;;45036:7;:35;;;;;45060:11;;;;;;;;;;;45036:35;:61;;;;;45089:8;;;;;;;;;;;45088:9;45036:61;:110;;;;;45115:25;:31;45141:4;45115:31;;;;;;;;;;;;;;;;;;;;;;;;;45114:32;45036:110;:153;;;;;45164:19;:25;45184:4;45164:25;;;;;;;;;;;;;;;;;;;;;;;;;45163:26;45036:153;:194;;;;;45207:19;:23;45227:2;45207:23;;;;;;;;;;;;;;;;;;;;;;;;;45206:24;45036:194;45018:326;;;45268:4;45257:8;;:15;;;;;;;;;;;;;;;;;;45289:10;:8;:10::i;:::-;45327:5;45316:8;;:16;;;;;;;;;;;;;;;;;;45018:326;45375:8;;;;;;;;;;;45374:9;:55;;;;;45400:25;:29;45426:2;45400:29;;;;;;;;;;;;;;;;;;;;;;;;;45374:55;:85;;;;;45446:13;;;;;;;;;;;45374:85;:153;;;;;45512:15;;45495:14;;:32;;;;:::i;:::-;45476:15;:51;;45374:153;:196;;;;;45545:19;:25;45565:4;45545:25;;;;;;;;;;;;;;;;;;;;;;;;;45544:26;45374:196;45356:282;;;45597:29;:27;:29::i;:::-;;45356:282;45650:12;45666:8;;;;;;;;;;;45665:9;45650:24;;45776:19;:25;45796:4;45776:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45805:19;:23;45825:2;45805:23;;;;;;;;;;;;;;;;;;;;;;;;;45776:52;45772:100;;;45855:5;45845:15;;45772:100;45884:12;45989:7;45985:969;;;46041:25;:29;46067:2;46041:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46090:1;46074:13;;:17;46041:50;46037:768;;;46119:34;46149:3;46119:25;46130:13;;46119:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46112:41;;46222:13;;46202:16;;46195:4;:23;;;;:::i;:::-;46194:41;;;;:::i;:::-;46172:18;;:63;;;;;;;:::i;:::-;;;;;;;;46292:13;;46278:10;;46271:4;:17;;;;:::i;:::-;46270:35;;;;:::i;:::-;46254:12;;:51;;;;;;;:::i;:::-;;;;;;;;46374:13;;46354:16;;46347:4;:23;;;;:::i;:::-;46346:41;;;;:::i;:::-;46324:18;;:63;;;;;;;:::i;:::-;;;;;;;;46037:768;;;46449:25;:31;46475:4;46449:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46499:1;46484:12;;:16;46449:51;46445:360;;;46528:33;46557:3;46528:24;46539:12;;46528:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46521:40;;46629:12;;46610:15;;46603:4;:22;;;;:::i;:::-;46602:39;;;;:::i;:::-;46580:18;;:61;;;;;;;:::i;:::-;;;;;;;;46697:12;;46684:9;;46677:4;:16;;;;:::i;:::-;46676:33;;;;:::i;:::-;46660:12;;:49;;;;;;;:::i;:::-;;;;;;;;46777:12;;46758:15;;46751:4;:22;;;;:::i;:::-;46750:39;;;;:::i;:::-;46728:18;;:61;;;;;;;:::i;:::-;;;;;;;;46445:360;46037:768;46832:1;46825:4;:8;46821:91;;;46854:42;46870:4;46884;46891;46854:15;:42::i;:::-;46821:91;46938:4;46928:14;;;;;:::i;:::-;;;45985:969;46966:33;46982:4;46988:2;46992:6;46966:15;:33::i;:::-;42109:4898;;;;41996:5011;;;;:::o;3706:191::-;3780:16;3799:6;;;;;;;;;;;3780:25;;3825:8;3816:6;;:17;;;;;;;;;;;;;;;;;;3880:8;3849:40;;3870:8;3849:40;;;;;;;;;;;;3769:128;3706:191;:::o;41212:188::-;41329:5;41295:25;:31;41321:4;41295:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41386:5;41352:40;;41380:4;41352:40;;;;;;;;;;;;41212:188;;:::o;23426:98::-;23484:7;23515:1;23511;:5;;;;:::i;:::-;23504:12;;23426:98;;;;:::o;23825:::-;23883:7;23914:1;23910;:5;;;;:::i;:::-;23903:12;;23825:98;;;;:::o;15192:733::-;15350:1;15332:20;;:6;:20;;;;15324:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15434:1;15413:23;;:9;:23;;;;15405:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:47;15510:6;15518:9;15529:6;15489:20;:47::i;:::-;15549:21;15573:9;:17;15583:6;15573:17;;;;;;;;;;;;;;;;15549:41;;15626:6;15609:13;:23;;15601:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15747:6;15731:13;:22;15711:9;:17;15721:6;15711:17;;;;;;;;;;;;;;;:42;;;;15799:6;15775:9;:20;15785:9;15775:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15840:9;15823:35;;15832:6;15823:35;;;15851:6;15823:35;;;;;;:::i;:::-;;;;;;;;15871:46;15891:6;15899:9;15910:6;15871:19;:46::i;:::-;15313:612;15192:733;;;:::o;48137:1756::-;48176:23;48202:24;48220:4;48202:9;:24::i;:::-;48176:50;;48237:25;48333:12;;48299:18;;48265;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48237:108;;48356:12;48404:1;48385:15;:20;:46;;;;48430:1;48409:17;:22;48385:46;48381:85;;;48448:7;;;;;48381:85;48521:2;48500:18;;:23;;;;:::i;:::-;48482:15;:41;48478:115;;;48579:2;48558:18;;:23;;;;:::i;:::-;48540:41;;48478:115;48654:23;48767:1;48734:17;48699:18;;48681:15;:36;;;;:::i;:::-;48680:71;;;;:::i;:::-;:88;;;;:::i;:::-;48654:114;;48779:26;48808:36;48828:15;48808;:19;;:36;;;;:::i;:::-;48779:65;;48857:25;48885:21;48857:49;;48919:36;48936:18;48919:16;:36::i;:::-;48968:18;48989:44;49015:17;48989:21;:25;;:44;;;;:::i;:::-;48968:65;;49046:23;49072:81;49125:17;49072:34;49087:18;;49072:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49046:107;;49164:17;49184:51;49217:17;49184:28;49199:12;;49184:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49164:71;;49248:23;49305:9;49287:15;49274:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49248:66;;49348:1;49327:18;:22;;;;49381:1;49360:18;:22;;;;49408:1;49393:12;:16;;;;49444:9;;;;;;;;;;;49436:23;;49467:9;49436:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49422:59;;;;;49516:1;49498:15;:19;:42;;;;;49539:1;49521:15;:19;49498:42;49494:278;;;49557:46;49570:15;49587;49557:12;:46::i;:::-;49623:137;49656:18;49693:15;49727:18;;49623:137;;;;;;;;:::i;:::-;;;;;;;;49494:278;49806:15;;;;;;;;;;;49798:29;;49849:21;49798:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49784:101;;;;;48165:1728;;;;;;;;;;48137:1756;:::o;50464:788::-;50521:4;50555:15;50538:14;:32;;;;50625:28;50656:4;:14;;;50671:13;50656:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50625:60;;50735:20;50758:77;50819:5;50758:42;50783:16;;50758:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50735:100;;50955:1;50940:12;:16;50936:110;;;50973:61;50989:13;51012:6;51021:12;50973:15;:61::i;:::-;50936:110;51121:19;51158:13;51121:51;;51183:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51210:12;;;;;;;;;;51240:4;51233:11;;;;;50464:788;:::o;18953:125::-;;;;:::o;19682:124::-;;;;:::o;23069:98::-;23127:7;23158:1;23154;:5;;;;:::i;:::-;23147:12;;23069:98;;;;:::o;47015:589::-;47141:21;47179:1;47165:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47141:40;;47210:4;47192;47197:1;47192:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47236:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47226:4;47231:1;47226:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47271:62;47288:4;47303:15;47321:11;47271:8;:62::i;:::-;47372:15;:66;;;47453:11;47479:1;47523:4;47550;47570:15;47372:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47070:534;47015:589;:::o;47612:517::-;47760:62;47777:4;47792:15;47810:11;47760:8;:62::i;:::-;47865:15;:31;;;47904:9;47937:4;47957:11;47983:1;48026;33249:6;48095:15;47865:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47612:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:244::-;16700:34;16696:1;16688:6;16684:14;16677:58;16769:27;16764:2;16756:6;16752:15;16745:52;16560:244;:::o;16810:366::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:224::-;17747:34;17743:1;17735:6;17731:14;17724:58;17816:7;17811:2;17803:6;17799:15;17792:32;17607:224;:::o;17837:366::-;17979:3;18000:67;18064:2;18059:3;18000:67;:::i;:::-;17993:74;;18076:93;18165:3;18076:93;:::i;:::-;18194:2;18189:3;18185:12;18178:19;;17837:366;;;:::o;18209:419::-;18375:4;18413:2;18402:9;18398:18;18390:26;;18462:9;18456:4;18452:20;18448:1;18437:9;18433:17;18426:47;18490:131;18616:4;18490:131;:::i;:::-;18482:139;;18209:419;;;:::o;18634:223::-;18774:34;18770:1;18762:6;18758:14;18751:58;18843:6;18838:2;18830:6;18826:15;18819:31;18634:223;:::o;18863:366::-;19005:3;19026:67;19090:2;19085:3;19026:67;:::i;:::-;19019:74;;19102:93;19191:3;19102:93;:::i;:::-;19220:2;19215:3;19211:12;19204:19;;18863:366;;;:::o;19235:419::-;19401:4;19439:2;19428:9;19424:18;19416:26;;19488:9;19482:4;19478:20;19474:1;19463:9;19459:17;19452:47;19516:131;19642:4;19516:131;:::i;:::-;19508:139;;19235:419;;;:::o;19660:238::-;19800:34;19796:1;19788:6;19784:14;19777:58;19869:21;19864:2;19856:6;19852:15;19845:46;19660:238;:::o;19904:366::-;20046:3;20067:67;20131:2;20126:3;20067:67;:::i;:::-;20060:74;;20143:93;20232:3;20143:93;:::i;:::-;20261:2;20256:3;20252:12;20245:19;;19904:366;;;:::o;20276:419::-;20442:4;20480:2;20469:9;20465:18;20457:26;;20529:9;20523:4;20519:20;20515:1;20504:9;20500:17;20493:47;20557:131;20683:4;20557:131;:::i;:::-;20549:139;;20276:419;;;:::o;20701:239::-;20841:34;20837:1;20829:6;20825:14;20818:58;20910:22;20905:2;20897:6;20893:15;20886:47;20701:239;:::o;20946:366::-;21088:3;21109:67;21173:2;21168:3;21109:67;:::i;:::-;21102:74;;21185:93;21274:3;21185:93;:::i;:::-;21303:2;21298:3;21294:12;21287:19;;20946:366;;;:::o;21318:419::-;21484:4;21522:2;21511:9;21507:18;21499:26;;21571:9;21565:4;21561:20;21557:1;21546:9;21542:17;21535:47;21599:131;21725:4;21599:131;:::i;:::-;21591:139;;21318:419;;;:::o;21743:225::-;21883:34;21879:1;21871:6;21867:14;21860:58;21952:8;21947:2;21939:6;21935:15;21928:33;21743:225;:::o;21974:366::-;22116:3;22137:67;22201:2;22196:3;22137:67;:::i;:::-;22130:74;;22213:93;22302:3;22213:93;:::i;:::-;22331:2;22326:3;22322:12;22315:19;;21974:366;;;:::o;22346:419::-;22512:4;22550:2;22539:9;22535:18;22527:26;;22599:9;22593:4;22589:20;22585:1;22574:9;22570:17;22563:47;22627:131;22753:4;22627:131;:::i;:::-;22619:139;;22346:419;;;:::o;22771:182::-;22911:34;22907:1;22899:6;22895:14;22888:58;22771:182;:::o;22959:366::-;23101:3;23122:67;23186:2;23181:3;23122:67;:::i;:::-;23115:74;;23198:93;23287:3;23198:93;:::i;:::-;23316:2;23311:3;23307:12;23300:19;;22959:366;;;:::o;23331:419::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:229::-;23896:34;23892:1;23884:6;23880:14;23873:58;23965:12;23960:2;23952:6;23948:15;23941:37;23756:229;:::o;23991:366::-;24133:3;24154:67;24218:2;24213:3;24154:67;:::i;:::-;24147:74;;24230:93;24319:3;24230:93;:::i;:::-;24348:2;24343:3;24339:12;24332:19;;23991:366;;;:::o;24363:419::-;24529:4;24567:2;24556:9;24552:18;24544:26;;24616:9;24610:4;24606:20;24602:1;24591:9;24587:17;24580:47;24644:131;24770:4;24644:131;:::i;:::-;24636:139;;24363:419;;;:::o;24788:143::-;24845:5;24876:6;24870:13;24861:22;;24892:33;24919:5;24892:33;:::i;:::-;24788:143;;;;:::o;24937:351::-;25007:6;25056:2;25044:9;25035:7;25031:23;25027:32;25024:119;;;25062:79;;:::i;:::-;25024:119;25182:1;25207:64;25263:7;25254:6;25243:9;25239:22;25207:64;:::i;:::-;25197:74;;25153:128;24937:351;;;;:::o;25294:223::-;25434:34;25430:1;25422:6;25418:14;25411:58;25503:6;25498:2;25490:6;25486:15;25479:31;25294:223;:::o;25523:366::-;25665:3;25686:67;25750:2;25745:3;25686:67;:::i;:::-;25679:74;;25762:93;25851:3;25762:93;:::i;:::-;25880:2;25875:3;25871:12;25864:19;;25523:366;;;:::o;25895:419::-;26061:4;26099:2;26088:9;26084:18;26076:26;;26148:9;26142:4;26138:20;26134:1;26123:9;26119:17;26112:47;26176:131;26302:4;26176:131;:::i;:::-;26168:139;;25895:419;;;:::o;26320:221::-;26460:34;26456:1;26448:6;26444:14;26437:58;26529:4;26524:2;26516:6;26512:15;26505:29;26320:221;:::o;26547:366::-;26689:3;26710:67;26774:2;26769:3;26710:67;:::i;:::-;26703:74;;26786:93;26875:3;26786:93;:::i;:::-;26904:2;26899:3;26895:12;26888:19;;26547:366;;;:::o;26919:419::-;27085:4;27123:2;27112:9;27108:18;27100:26;;27172:9;27166:4;27162:20;27158:1;27147:9;27143:17;27136:47;27200:131;27326:4;27200:131;:::i;:::-;27192:139;;26919:419;;;:::o;27344:224::-;27484:34;27480:1;27472:6;27468:14;27461:58;27553:7;27548:2;27540:6;27536:15;27529:32;27344:224;:::o;27574:366::-;27716:3;27737:67;27801:2;27796:3;27737:67;:::i;:::-;27730:74;;27813:93;27902:3;27813:93;:::i;:::-;27931:2;27926:3;27922:12;27915:19;;27574:366;;;:::o;27946:419::-;28112:4;28150:2;28139:9;28135:18;28127:26;;28199:9;28193:4;28189:20;28185:1;28174:9;28170:17;28163:47;28227:131;28353:4;28227:131;:::i;:::-;28219:139;;27946:419;;;:::o;28371:222::-;28511:34;28507:1;28499:6;28495:14;28488:58;28580:5;28575:2;28567:6;28563:15;28556:30;28371:222;:::o;28599:366::-;28741:3;28762:67;28826:2;28821:3;28762:67;:::i;:::-;28755:74;;28838:93;28927:3;28838:93;:::i;:::-;28956:2;28951:3;28947:12;28940:19;;28599:366;;;:::o;28971:419::-;29137:4;29175:2;29164:9;29160:18;29152:26;;29224:9;29218:4;29214:20;29210:1;29199:9;29195:17;29188:47;29252:131;29378:4;29252:131;:::i;:::-;29244:139;;28971:419;;;:::o;29396:172::-;29536:24;29532:1;29524:6;29520:14;29513:48;29396:172;:::o;29574:366::-;29716:3;29737:67;29801:2;29796:3;29737:67;:::i;:::-;29730:74;;29813:93;29902:3;29813:93;:::i;:::-;29931:2;29926:3;29922:12;29915:19;;29574:366;;;:::o;29946:419::-;30112:4;30150:2;30139:9;30135:18;30127:26;;30199:9;30193:4;30189:20;30185:1;30174:9;30170:17;30163:47;30227:131;30353:4;30227:131;:::i;:::-;30219:139;;29946:419;;;:::o;30371:297::-;30511:34;30507:1;30499:6;30495:14;30488:58;30580:34;30575:2;30567:6;30563:15;30556:59;30649:11;30644:2;30636:6;30632:15;30625:36;30371:297;:::o;30674:366::-;30816:3;30837:67;30901:2;30896:3;30837:67;:::i;:::-;30830:74;;30913:93;31002:3;30913:93;:::i;:::-;31031:2;31026:3;31022:12;31015:19;;30674:366;;;:::o;31046:419::-;31212:4;31250:2;31239:9;31235:18;31227:26;;31299:9;31293:4;31289:20;31285:1;31274:9;31270:17;31263:47;31327:131;31453:4;31327:131;:::i;:::-;31319:139;;31046:419;;;:::o;31471:240::-;31611:34;31607:1;31599:6;31595:14;31588:58;31680:23;31675:2;31667:6;31663:15;31656:48;31471:240;:::o;31717:366::-;31859:3;31880:67;31944:2;31939:3;31880:67;:::i;:::-;31873:74;;31956:93;32045:3;31956:93;:::i;:::-;32074:2;32069:3;32065:12;32058:19;;31717:366;;;:::o;32089:419::-;32255:4;32293:2;32282:9;32278:18;32270:26;;32342:9;32336:4;32332:20;32328:1;32317:9;32313:17;32306:47;32370:131;32496:4;32370:131;:::i;:::-;32362:139;;32089:419;;;:::o;32514:169::-;32654:21;32650:1;32642:6;32638:14;32631:45;32514:169;:::o;32689:366::-;32831:3;32852:67;32916:2;32911:3;32852:67;:::i;:::-;32845:74;;32928:93;33017:3;32928:93;:::i;:::-;33046:2;33041:3;33037:12;33030:19;;32689:366;;;:::o;33061:419::-;33227:4;33265:2;33254:9;33250:18;33242:26;;33314:9;33308:4;33304:20;33300:1;33289:9;33285:17;33278:47;33342:131;33468:4;33342:131;:::i;:::-;33334:139;;33061:419;;;:::o;33486:241::-;33626:34;33622:1;33614:6;33610:14;33603:58;33695:24;33690:2;33682:6;33678:15;33671:49;33486:241;:::o;33733:366::-;33875:3;33896:67;33960:2;33955:3;33896:67;:::i;:::-;33889:74;;33972:93;34061:3;33972:93;:::i;:::-;34090:2;34085:3;34081:12;34074:19;;33733:366;;;:::o;34105:419::-;34271:4;34309:2;34298:9;34294:18;34286:26;;34358:9;34352:4;34348:20;34344:1;34333:9;34329:17;34322:47;34386:131;34512:4;34386:131;:::i;:::-;34378:139;;34105:419;;;:::o;34530:191::-;34570:4;34590:20;34608:1;34590:20;:::i;:::-;34585:25;;34624:20;34642:1;34624:20;:::i;:::-;34619:25;;34663:1;34660;34657:8;34654:34;;;34668:18;;:::i;:::-;34654:34;34713:1;34710;34706:9;34698:17;;34530:191;;;;:::o;34727:225::-;34867:34;34863:1;34855:6;34851:14;34844:58;34936:8;34931:2;34923:6;34919:15;34912:33;34727:225;:::o;34958:366::-;35100:3;35121:67;35185:2;35180:3;35121:67;:::i;:::-;35114:74;;35197:93;35286:3;35197:93;:::i;:::-;35315:2;35310:3;35306:12;35299:19;;34958:366;;;:::o;35330:419::-;35496:4;35534:2;35523:9;35519:18;35511:26;;35583:9;35577:4;35573:20;35569:1;35558:9;35554:17;35547:47;35611:131;35737:4;35611:131;:::i;:::-;35603:139;;35330:419;;;:::o;35755:147::-;35856:11;35893:3;35878:18;;35755:147;;;;:::o;35908:114::-;;:::o;36028:398::-;36187:3;36208:83;36289:1;36284:3;36208:83;:::i;:::-;36201:90;;36300:93;36389:3;36300:93;:::i;:::-;36418:1;36413:3;36409:11;36402:18;;36028:398;;;:::o;36432:379::-;36616:3;36638:147;36781:3;36638:147;:::i;:::-;36631:154;;36802:3;36795:10;;36432:379;;;:::o;36817:442::-;36966:4;37004:2;36993:9;36989:18;36981:26;;37017:71;37085:1;37074:9;37070:17;37061:6;37017:71;:::i;:::-;37098:72;37166:2;37155:9;37151:18;37142:6;37098:72;:::i;:::-;37180;37248:2;37237:9;37233:18;37224:6;37180:72;:::i;:::-;36817:442;;;;;;:::o;37265:180::-;37313:77;37310:1;37303:88;37410:4;37407:1;37400:15;37434:4;37431:1;37424:15;37451:180;37499:77;37496:1;37489:88;37596:4;37593:1;37586:15;37620:4;37617:1;37610:15;37637:143;37694:5;37725:6;37719:13;37710:22;;37741:33;37768:5;37741:33;:::i;:::-;37637:143;;;;:::o;37786:351::-;37856:6;37905:2;37893:9;37884:7;37880:23;37876:32;37873:119;;;37911:79;;:::i;:::-;37873:119;38031:1;38056:64;38112:7;38103:6;38092:9;38088:22;38056:64;:::i;:::-;38046:74;;38002:128;37786:351;;;;:::o;38143:85::-;38188:7;38217:5;38206:16;;38143:85;;;:::o;38234:158::-;38292:9;38325:61;38343:42;38352:32;38378:5;38352:32;:::i;:::-;38343:42;:::i;:::-;38325:61;:::i;:::-;38312:74;;38234:158;;;:::o;38398:147::-;38493:45;38532:5;38493:45;:::i;:::-;38488:3;38481:58;38398:147;;:::o;38551:114::-;38618:6;38652:5;38646:12;38636:22;;38551:114;;;:::o;38671:184::-;38770:11;38804:6;38799:3;38792:19;38844:4;38839:3;38835:14;38820:29;;38671:184;;;;:::o;38861:132::-;38928:4;38951:3;38943:11;;38981:4;38976:3;38972:14;38964:22;;38861:132;;;:::o;38999:108::-;39076:24;39094:5;39076:24;:::i;:::-;39071:3;39064:37;38999:108;;:::o;39113:179::-;39182:10;39203:46;39245:3;39237:6;39203:46;:::i;:::-;39281:4;39276:3;39272:14;39258:28;;39113:179;;;;:::o;39298:113::-;39368:4;39400;39395:3;39391:14;39383:22;;39298:113;;;:::o;39447:732::-;39566:3;39595:54;39643:5;39595:54;:::i;:::-;39665:86;39744:6;39739:3;39665:86;:::i;:::-;39658:93;;39775:56;39825:5;39775:56;:::i;:::-;39854:7;39885:1;39870:284;39895:6;39892:1;39889:13;39870:284;;;39971:6;39965:13;39998:63;40057:3;40042:13;39998:63;:::i;:::-;39991:70;;40084:60;40137:6;40084:60;:::i;:::-;40074:70;;39930:224;39917:1;39914;39910:9;39905:14;;39870:284;;;39874:14;40170:3;40163:10;;39571:608;;;39447:732;;;;:::o;40185:831::-;40448:4;40486:3;40475:9;40471:19;40463:27;;40500:71;40568:1;40557:9;40553:17;40544:6;40500:71;:::i;:::-;40581:80;40657:2;40646:9;40642:18;40633:6;40581:80;:::i;:::-;40708:9;40702:4;40698:20;40693:2;40682:9;40678:18;40671:48;40736:108;40839:4;40830:6;40736:108;:::i;:::-;40728:116;;40854:72;40922:2;40911:9;40907:18;40898:6;40854:72;:::i;:::-;40936:73;41004:3;40993:9;40989:19;40980:6;40936:73;:::i;:::-;40185:831;;;;;;;;:::o;41022:807::-;41271:4;41309:3;41298:9;41294:19;41286:27;;41323:71;41391:1;41380:9;41376:17;41367:6;41323:71;:::i;:::-;41404:72;41472:2;41461:9;41457:18;41448:6;41404:72;:::i;:::-;41486:80;41562:2;41551:9;41547:18;41538:6;41486:80;:::i;:::-;41576;41652:2;41641:9;41637:18;41628:6;41576:80;:::i;:::-;41666:73;41734:3;41723:9;41719:19;41710:6;41666:73;:::i;:::-;41749;41817:3;41806:9;41802:19;41793:6;41749:73;:::i;:::-;41022:807;;;;;;;;;:::o;41835:663::-;41923:6;41931;41939;41988:2;41976:9;41967:7;41963:23;41959:32;41956:119;;;41994:79;;:::i;:::-;41956:119;42114:1;42139:64;42195:7;42186:6;42175:9;42171:22;42139:64;:::i;:::-;42129:74;;42085:128;42252:2;42278:64;42334:7;42325:6;42314:9;42310:22;42278:64;:::i;:::-;42268:74;;42223:129;42391:2;42417:64;42473:7;42464:6;42453:9;42449:22;42417:64;:::i;:::-;42407:74;;42362:129;41835:663;;;;;:::o

Swarm Source

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