ETH Price: $2,975.11 (+0.14%)
Gas: 8 Gwei

Token

Baby Floki (BABYFLOKI)
 

Overview

Max Total Supply

1,000,000,000 BABYFLOKI

Holders

552

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
196,365.203357912254659683 BABYFLOKI

Value
$0.00
0xbb75d960bfe9f57b15bb459130a5dd7a08ef8a03
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:
BABYFLOKI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-21
*/

/**

https://t.me/BabyFlokiEntry
https://twitter.com/Babyflokierc

 
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.20;
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 BABYFLOKI 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("Baby Floki", "BABYFLOKI") {
        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 = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 35;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18;
        maxWallet = 10_000_000 * 1e18;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

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

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

        marketingWallet = address(0x6b36c383CE5492560F89b4C057e656B761f989Dd);
        devWallet = address(0x6b36c383CE5492560F89b4C057e656B761f989Dd);

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

        // 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"}]

60c06040526019600b556001600c5f6101000a81548160ff021916908315150217905550610e10600d55610708600f55600160115f6101000a81548160ff0219169083151502179055505f601160016101000a81548160ff0219169083151502179055505f601160026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550348015620000a3575f80fd5b506040518060400160405280600a81526020017f4261627920466c6f6b69000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f42414259464c4f4b490000000000000000000000000000000000000000000000815250816003908162000121919062000d36565b50806004908162000133919062000d36565b505050620001566200014a620005aa60201b60201c565b620005b160201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001818160016200067460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000225919062000e7f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e7f565b6040518363ffffffff1660e01b8152600401620002d092919062000ec0565b6020604051808303815f875af1158015620002ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000313919062000e7f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035b60a05160016200067460201b60201c565b6200037060a05160016200075b60201b60201c565b5f601990505f805f602390505f805f6b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a084595161401484a000000600a81905550612710600582620003c4919062000f18565b620003d0919062000f8f565b60098190555086601581905550856016819055508460178190555060175460165460155462000400919062000fc6565b6200040c919062000fc6565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200043c919062000fc6565b62000448919062000fc6565b601881905550736b36c383ce5492560f89b4c057e656b761f989dd60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736b36c383ce5492560f89b4c057e656b761f989dd60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005186200050a620007f960201b60201c565b60016200082160201b60201c565b6200052b3060016200082160201b60201c565b6200054061dead60016200082160201b60201c565b6200056262000554620007f960201b60201c565b60016200067460201b60201c565b620005753060016200067460201b60201c565b6200058a61dead60016200067460201b60201c565b6200059c33826200095860201b60201c565b50505050505050506200114f565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000684620005aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006aa620007f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000703576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fa906200105e565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000831620005aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000857620007f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a7906200105e565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094c91906200109a565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c09062001103565b60405180910390fd5b620009dc5f838362000ac860201b60201c565b8060025f828254620009ef919062000fc6565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a43919062000fc6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aa9919062001134565b60405180910390a362000ac45f838362000acd60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4e57607f821691505b60208210810362000b645762000b6362000b09565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8b565b62000bd4868362000b8b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c1e62000c1862000c128462000bec565b62000bf5565b62000bec565b9050919050565b5f819050919050565b62000c398362000bfe565b62000c5162000c488262000c25565b84845462000b97565b825550505050565b5f90565b62000c6762000c59565b62000c7481848462000c2e565b505050565b5b8181101562000c9b5762000c8f5f8262000c5d565b60018101905062000c7a565b5050565b601f82111562000cea5762000cb48162000b6a565b62000cbf8462000b7c565b8101602085101562000ccf578190505b62000ce762000cde8562000b7c565b83018262000c79565b50505b505050565b5f82821c905092915050565b5f62000d0c5f198460080262000cef565b1980831691505092915050565b5f62000d26838362000cfb565b9150826002028217905092915050565b62000d418262000ad2565b67ffffffffffffffff81111562000d5d5762000d5c62000adc565b5b62000d69825462000b36565b62000d7682828562000c9f565b5f60209050601f83116001811462000dac575f841562000d97578287015190505b62000da3858262000d19565b86555062000e12565b601f19841662000dbc8662000b6a565b5f5b8281101562000de55784890151825560018201915060208501945060208101905062000dbe565b8683101562000e05578489015162000e01601f89168262000cfb565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e498262000e1e565b9050919050565b62000e5b8162000e3d565b811462000e66575f80fd5b50565b5f8151905062000e798162000e50565b92915050565b5f6020828403121562000e975762000e9662000e1a565b5b5f62000ea68482850162000e69565b91505092915050565b62000eba8162000e3d565b82525050565b5f60408201905062000ed55f83018562000eaf565b62000ee4602083018462000eaf565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f248262000bec565b915062000f318362000bec565b925082820262000f418162000bec565b9150828204841483151762000f5b5762000f5a62000eeb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f9b8262000bec565b915062000fa88362000bec565b92508262000fbb5762000fba62000f62565b5b828204905092915050565b5f62000fd28262000bec565b915062000fdf8362000bec565b925082820190508082111562000ffa5762000ff962000eeb565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200104660208362001000565b9150620010538262001010565b602082019050919050565b5f6020820190508181035f830152620010778162001038565b9050919050565b5f8115159050919050565b62001094816200107e565b82525050565b5f602082019050620010af5f83018462001089565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620010eb601f8362001000565b9150620010f882620010b5565b602082019050919050565b5f6020820190508181035f8301526200111c81620010dd565b9050919050565b6200112e8162000bec565b82525050565b5f602082019050620011495f83018462001123565b92915050565b60805160a05161596c620011d35f395f818161139701528181611b90015281816126bd015281816127700152818161279c01528181612dc201528181613e3201528181613ee70152613f1301525f8181610f4a01528181612d6a0152818161408101528181614160015281816141870152818161421d0152614244015261596c5ff3fe6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f80fd5b3480156103c6575f80fd5b506103cf610e7f565b6040516103dc919061437a565b60405180910390f35b3480156103f0575f80fd5b5061040b6004803603810190610406919061442b565b610f0f565b6040516104189190614483565b60405180910390f35b34801561042c575f80fd5b506104476004803603810190610442919061449c565b610f2c565b6040516104549190614483565b60405180910390f35b348015610468575f80fd5b50610471610f48565b60405161047e9190614522565b60405180910390f35b348015610492575f80fd5b5061049b610f6c565b6040516104a8919061454a565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061449c565b610f75565b005b3480156104e4575f80fd5b506104ed6110af565b6040516104fa919061454a565b60405180910390f35b34801561050e575f80fd5b506105176110b5565b604051610524919061454a565b60405180910390f35b348015610538575f80fd5b506105416110bb565b60405161054e919061454a565b60405180910390f35b348015610562575f80fd5b5061056b6110c1565b604051610578919061454a565b60405180910390f35b34801561058c575f80fd5b506105a760048036038101906105a29190614563565b6110c7565b005b3480156105b4575f80fd5b506105cf60048036038101906105ca919061458e565b6111d6565b6040516105dc9190614483565b60405180910390f35b3480156105f0575f80fd5b506105f96112c8565b60405161060691906145ed565b60405180910390f35b34801561061a575f80fd5b506106236112ce565b604051610630919061454a565b60405180910390f35b348015610644575f80fd5b5061064d6112d4565b60405161065a9190614483565b60405180910390f35b34801561066e575f80fd5b506106776112e6565b6040516106849190614621565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae919061442b565b6112ee565b6040516106c09190614483565b60405180910390f35b3480156106d4575f80fd5b506106dd611395565b6040516106ea91906145ed565b60405180910390f35b3480156106fe575f80fd5b506107076113b9565b6040516107149190614483565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e919061449c565b6113cb565b6040516107509190614483565b60405180910390f35b348015610764575f80fd5b5061076d61141d565b60405161077a919061454a565b60405180910390f35b34801561078e575f80fd5b50610797611423565b6040516107a49190614483565b60405180910390f35b3480156107b8575f80fd5b506107d360048036038101906107ce919061449c565b611436565b6040516107e0919061454a565b60405180910390f35b3480156107f4575f80fd5b506107fd61147b565b005b34801561080a575f80fd5b5061082560048036038101906108209190614664565b611502565b005b348015610832575f80fd5b5061083b611640565b6040516108489190614483565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906146b4565b6116dd565b005b348015610884575f80fd5b5061088d6117b1565b60405161089a91906145ed565b60405180910390f35b3480156108ae575f80fd5b506108b76117d6565b6040516108c4919061454a565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee91906146f2565b6117dc565b005b348015610900575f80fd5b506109096118db565b005b348015610916575f80fd5b5061091f611996565b60405161092c91906145ed565b60405180910390f35b348015610940575f80fd5b506109496119be565b60405161095691906145ed565b60405180910390f35b34801561096a575f80fd5b506109736119e3565b604051610980919061454a565b60405180910390f35b348015610994575f80fd5b506109af60048036038101906109aa9190614742565b6119e9565b005b3480156109bc575f80fd5b506109c5611a82565b6040516109d2919061437a565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc91906146b4565b611b12565b005b348015610a0e575f80fd5b50610a17611c2a565b604051610a24919061454a565b60405180910390f35b348015610a38575f80fd5b50610a41611c30565b604051610a4e919061454a565b60405180910390f35b348015610a62575f80fd5b50610a6b611c36565b604051610a78919061454a565b60405180910390f35b348015610a8c575f80fd5b50610a95611c3c565b604051610aa2919061454a565b60405180910390f35b348015610ab6575f80fd5b50610ad16004803603810190610acc919061442b565b611c42565b604051610ade9190614483565b60405180910390f35b348015610af2575f80fd5b50610afb611d28565b604051610b08919061454a565b60405180910390f35b348015610b1c575f80fd5b50610b376004803603810190610b32919061442b565b611d2e565b604051610b449190614483565b60405180910390f35b348015610b58575f80fd5b50610b736004803603810190610b6e919061449c565b611d4b565b005b348015610b80575f80fd5b50610b9b6004803603810190610b96919061449c565b611e85565b604051610ba89190614483565b60405180910390f35b348015610bbc575f80fd5b50610bc5611ea2565b604051610bd29190614483565b60405180910390f35b348015610be6575f80fd5b50610c016004803603810190610bfc91906146b4565b611eb5565b005b348015610c0e575f80fd5b50610c296004803603810190610c2491906146f2565b611fd7565b005b348015610c36575f80fd5b50610c516004803603810190610c4c9190614563565b6120d6565b005b348015610c5e575f80fd5b50610c676121e5565b604051610c749190614483565b60405180910390f35b348015610c88575f80fd5b50610c916121f7565b604051610c9e919061454a565b60405180910390f35b348015610cb2575f80fd5b50610ccd6004803603810190610cc89190614563565b6121fd565b604051610cda9190614483565b60405180910390f35b348015610cee575f80fd5b50610cf7612351565b604051610d04919061454a565b60405180910390f35b348015610d18575f80fd5b50610d336004803603810190610d2e919061476d565b612357565b604051610d40919061454a565b60405180910390f35b348015610d54575f80fd5b50610d5d6123d9565b604051610d6a919061454a565b60405180910390f35b348015610d7e575f80fd5b50610d876123df565b604051610d949190614483565b60405180910390f35b348015610da8575f80fd5b50610db161247c565b604051610dbe919061454a565b60405180910390f35b348015610dd2575f80fd5b50610ded6004803603810190610de8919061449c565b612482565b005b348015610dfa575f80fd5b50610e03612578565b604051610e10919061454a565b60405180910390f35b348015610e24575f80fd5b50610e2d61257e565b604051610e3a919061454a565b60405180910390f35b348015610e4e575f80fd5b50610e696004803603810190610e649190614563565b612584565b604051610e769190614483565b60405180910390f35b606060038054610e8e906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba906147d8565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614852565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614852565b60405180910390fd5b670de0b6b3a76400006103e86001611159610f6c565b611163919061489d565b61116d919061490b565b611177919061490b565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149ab565b60405180910390fd5b670de0b6b3a7640000816111cd919061489d565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a39565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a57565b612857565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614852565b60405180910390fd5b6115005f613764565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614852565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614afa565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614b88565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614852565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614852565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90614852565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a57565b61188a9190614a57565b601481905550600b60145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614bf0565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614852565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614852565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a91906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd906147d8565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614852565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614c7e565b60405180910390fd5b611c268282613827565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d0c565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614852565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614852565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb9190614483565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614852565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a57565b6120859190614a57565b601881905550600b60185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614bf0565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990614852565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b612172919061489d565b61217c919061490b565b612186919061490b565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614d9a565b60405180910390fd5b670de0b6b3a7640000816121dc919061489d565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614852565b60405180910390fd5b620186a06001612288610f6c565b612292919061489d565b61229c919061490b565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e28565b60405180910390fd5b6103e860056122eb610f6c565b6122f5919061489d565b6122ff919061490b565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614eb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614852565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614852565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f44565b60405180910390fd5b61257581613764565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614852565b60405180910390fd5b600f546010546126119190614a57565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fac565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061503a565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126f891906145ed565b602060405180830381865afa158015612713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612737919061506c565b90505f61276161271061275386856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115612799576127987f000000000000000000000000000000000000000000000000000000000000000061dead836138ef565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f80fd5b505af1158015612814573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90615107565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90615195565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d919061454a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615223565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152b1565b60405180910390fd5b5f8103612b0d57612b0883835f6138ef565b61375f565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c90615319565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153cd565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb79061545b565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a57565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154c3565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615551565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a57565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154c3565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b64565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a57565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e0b565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f811561374f5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354457505f601854115b1561360e576135716064613563601854886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601854601a5482613584919061489d565b61358e919061490b565b601d5f82825461359e9190614a57565b92505081905550601854601b54826135b6919061489d565b6135c0919061490b565b601e5f8282546135d09190614a57565b92505081905550601854601954826135e8919061489d565b6135f2919061490b565b601c5f8282546136029190614a57565b9250508190555061372c565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366557505f601454115b1561372b576136926064613684601454886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601454601654826136a5919061489d565b6136af919061490b565b601d5f8282546136bf9190614a57565b92505081905550601454601754826136d7919061489d565b6136e1919061490b565b601e5f8282546136f19190614a57565b9250508190555060145460155482613709919061489d565b613713919061490b565b601c5f8282546137239190614a57565b925050819055505b5b5f8111156137405761373f8730836138ef565b5b808561374c919061556f565b94505b61375a8787876138ef565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d2919061489d565b905092915050565b5f81836138e7919061490b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490615223565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c2906152b1565b60405180910390fd5b6139d6838383613fc5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5090615612565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ae79190614a57565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4b919061454a565b60405180910390a3613b5e848484613fca565b50505050565b5f613b6e30611436565b90505f601e54601c54601d54613b849190614a57565b613b8e9190614a57565b90505f80831480613b9e57505f82145b15613bab57505050613e09565b5f600283601d5486613bbd919061489d565b613bc7919061490b565b613bd1919061490b565b90505f613be78286613fcf90919063ffffffff16565b90505f479050613bf682613fe4565b5f613c0a8247613fcf90919063ffffffff16565b90505f613c3487613c26601c54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f613c5e88613c50601e54866138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f818385613c6e919061556f565b613c78919061556f565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cd49061565d565b5f6040518083038185875af1925050503d805f8114613d0e576040519150601f19603f3d011682016040523d82523d5f602084013e613d13565b606091505b5050809850505f87118015613d2757505f81115b15613d7457613d368782614217565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d6b93929190615671565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613db99061565d565b5f6040518083038185875af1925050503d805f8114613df3576040519150601f19603f3d011682016040523d82523d5f602084013e613df8565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e6d91906145ed565b602060405180830381865afa158015613e88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eac919061506c565b90505f613ed8612710613eca600b54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115613f1057613f0f7f000000000000000000000000000000000000000000000000000000000000000061dead836138ef565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613f79575f80fd5b505af1158015613f8b573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f8183613fdc919061556f565b905092915050565b5f600267ffffffffffffffff81111561400057613fff6156a6565b5b60405190808252806020026020018201604052801561402e5781602001602082028036833780820191505090505b50905030815f81518110614045576140446156d3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061410c9190615714565b816001815181106141205761411f6156d3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614185307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016141e695949392919061582f565b5f604051808303815f87803b1580156141fd575f80fd5b505af115801561420f573d5f803e3d5ffd5b505050505050565b614242307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016142a896959493929190615887565b60606040518083038185885af11580156142c4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906142e991906158e6565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561432757808201518184015260208101905061430c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61434c826142f0565b61435681856142fa565b935061436681856020860161430a565b61436f81614332565b840191505092915050565b5f6020820190508181035f8301526143928184614342565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143c78261439e565b9050919050565b6143d7816143bd565b81146143e1575f80fd5b50565b5f813590506143f2816143ce565b92915050565b5f819050919050565b61440a816143f8565b8114614414575f80fd5b50565b5f8135905061442581614401565b92915050565b5f80604083850312156144415761444061439a565b5b5f61444e858286016143e4565b925050602061445f85828601614417565b9150509250929050565b5f8115159050919050565b61447d81614469565b82525050565b5f6020820190506144965f830184614474565b92915050565b5f602082840312156144b1576144b061439a565b5b5f6144be848285016143e4565b91505092915050565b5f819050919050565b5f6144ea6144e56144e08461439e565b6144c7565b61439e565b9050919050565b5f6144fb826144d0565b9050919050565b5f61450c826144f1565b9050919050565b61451c81614502565b82525050565b5f6020820190506145355f830184614513565b92915050565b614544816143f8565b82525050565b5f60208201905061455d5f83018461453b565b92915050565b5f602082840312156145785761457761439a565b5b5f61458584828501614417565b91505092915050565b5f805f606084860312156145a5576145a461439a565b5b5f6145b2868287016143e4565b93505060206145c3868287016143e4565b92505060406145d486828701614417565b9150509250925092565b6145e7816143bd565b82525050565b5f6020820190506146005f8301846145de565b92915050565b5f60ff82169050919050565b61461b81614606565b82525050565b5f6020820190506146345f830184614612565b92915050565b61464381614469565b811461464d575f80fd5b50565b5f8135905061465e8161463a565b92915050565b5f805f6060848603121561467b5761467a61439a565b5b5f61468886828701614417565b935050602061469986828701614417565b92505060406146aa86828701614650565b9150509250925092565b5f80604083850312156146ca576146c961439a565b5b5f6146d7858286016143e4565b92505060206146e885828601614650565b9150509250929050565b5f805f606084860312156147095761470861439a565b5b5f61471686828701614417565b935050602061472786828701614417565b925050604061473886828701614417565b9150509250925092565b5f602082840312156147575761475661439a565b5b5f61476484828501614650565b91505092915050565b5f80604083850312156147835761478261439a565b5b5f614790858286016143e4565b92505060206147a1858286016143e4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806147ef57607f821691505b602082108103614802576148016147ab565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61483c6020836142fa565b915061484782614808565b602082019050919050565b5f6020820190508181035f83015261486981614830565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148a7826143f8565b91506148b2836143f8565b92508282026148c0816143f8565b915082820484148315176148d7576148d6614870565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614915826143f8565b9150614920836143f8565b9250826149305761492f6148de565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f614995602f836142fa565b91506149a08261493b565b604082019050919050565b5f6020820190508181035f8301526149c281614989565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a236028836142fa565b9150614a2e826149c9565b604082019050919050565b5f6020820190508181035f830152614a5081614a17565b9050919050565b5f614a61826143f8565b9150614a6c836143f8565b9250828201905080821115614a8457614a83614870565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614ae46033836142fa565b9150614aef82614a8a565b604082019050919050565b5f6020820190508181035f830152614b1181614ad8565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b726030836142fa565b9150614b7d82614b18565b604082019050919050565b5f6020820190508181035f830152614b9f81614b66565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c6573730000005f82015250565b5f614bda601d836142fa565b9150614be582614ba6565b602082019050919050565b5f6020820190508181035f830152614c0781614bce565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c686039836142fa565b9150614c7382614c0e565b604082019050919050565b5f6020820190508181035f830152614c9581614c5c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614cf66025836142fa565b9150614d0182614c9c565b604082019050919050565b5f6020820190508181035f830152614d2381614cea565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614d846024836142fa565b9150614d8f82614d2a565b604082019050919050565b5f6020820190508181035f830152614db181614d78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e126035836142fa565b9150614e1d82614db8565b604082019050919050565b5f6020820190508181035f830152614e3f81614e06565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ea06034836142fa565b9150614eab82614e46565b604082019050919050565b5f6020820190508181035f830152614ecd81614e94565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f2e6026836142fa565b9150614f3982614ed4565b604082019050919050565b5f6020820190508181035f830152614f5b81614f22565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614f966020836142fa565b9150614fa182614f62565b602082019050919050565b5f6020820190508181035f830152614fc381614f8a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615024602a836142fa565b915061502f82614fca565b604082019050919050565b5f6020820190508181035f83015261505181615018565b9050919050565b5f8151905061506681614401565b92915050565b5f602082840312156150815761508061439a565b5b5f61508e84828501615058565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6150f16024836142fa565b91506150fc82615097565b604082019050919050565b5f6020820190508181035f83015261511e816150e5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61517f6022836142fa565b915061518a82615125565b604082019050919050565b5f6020820190508181035f8301526151ac81615173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61520d6025836142fa565b9150615218826151b3565b604082019050919050565b5f6020820190508181035f83015261523a81615201565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61529b6023836142fa565b91506152a682615241565b604082019050919050565b5f6020820190508181035f8301526152c88161528f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6153036016836142fa565b915061530e826152cf565b602082019050919050565b5f6020820190508181035f830152615330816152f7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153b76049836142fa565b91506153c282615337565b606082019050919050565b5f6020820190508181035f8301526153e4816153ab565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6154456035836142fa565b9150615450826153eb565b604082019050919050565b5f6020820190508181035f83015261547281615439565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154ad6013836142fa565b91506154b882615479565b602082019050919050565b5f6020820190508181035f8301526154da816154a1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61553b6036836142fa565b9150615546826154e1565b604082019050919050565b5f6020820190508181035f8301526155688161552f565b9050919050565b5f615579826143f8565b9150615584836143f8565b925082820390508181111561559c5761559b614870565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6155fc6026836142fa565b9150615607826155a2565b604082019050919050565b5f6020820190508181035f830152615629816155f0565b9050919050565b5f81905092915050565b50565b5f6156485f83615630565b91506156538261563a565b5f82019050919050565b5f6156678261563d565b9150819050919050565b5f6060820190506156845f83018661453b565b615691602083018561453b565b61569e604083018461453b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061570e816143ce565b92915050565b5f602082840312156157295761572861439a565b5b5f61573684828501615700565b91505092915050565b5f819050919050565b5f61576261575d6157588461573f565b6144c7565b6143f8565b9050919050565b61577281615748565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157aa816143bd565b82525050565b5f6157bb83836157a1565b60208301905092915050565b5f602082019050919050565b5f6157dd82615778565b6157e78185615782565b93506157f283615792565b805f5b8381101561582257815161580988826157b0565b9750615814836157c7565b9250506001810190506157f5565b5085935050505092915050565b5f60a0820190506158425f83018861453b565b61584f6020830187615769565b818103604083015261586181866157d3565b905061587060608301856145de565b61587d608083018461453b565b9695505050505050565b5f60c08201905061589a5f8301896145de565b6158a7602083018861453b565b6158b46040830187615769565b6158c16060830186615769565b6158ce60808301856145de565b6158db60a083018461453b565b979650505050505050565b5f805f606084860312156158fd576158fc61439a565b5b5f61590a86828701615058565b935050602061591b86828701615058565b925050604061592c86828701615058565b915050925092509256fea264697066735822122029e4b7f736331b0ea6fc2b0c4d175a2c5a97440c6acb58535b283c58a6d53b0464736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f80fd5b3480156103c6575f80fd5b506103cf610e7f565b6040516103dc919061437a565b60405180910390f35b3480156103f0575f80fd5b5061040b6004803603810190610406919061442b565b610f0f565b6040516104189190614483565b60405180910390f35b34801561042c575f80fd5b506104476004803603810190610442919061449c565b610f2c565b6040516104549190614483565b60405180910390f35b348015610468575f80fd5b50610471610f48565b60405161047e9190614522565b60405180910390f35b348015610492575f80fd5b5061049b610f6c565b6040516104a8919061454a565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061449c565b610f75565b005b3480156104e4575f80fd5b506104ed6110af565b6040516104fa919061454a565b60405180910390f35b34801561050e575f80fd5b506105176110b5565b604051610524919061454a565b60405180910390f35b348015610538575f80fd5b506105416110bb565b60405161054e919061454a565b60405180910390f35b348015610562575f80fd5b5061056b6110c1565b604051610578919061454a565b60405180910390f35b34801561058c575f80fd5b506105a760048036038101906105a29190614563565b6110c7565b005b3480156105b4575f80fd5b506105cf60048036038101906105ca919061458e565b6111d6565b6040516105dc9190614483565b60405180910390f35b3480156105f0575f80fd5b506105f96112c8565b60405161060691906145ed565b60405180910390f35b34801561061a575f80fd5b506106236112ce565b604051610630919061454a565b60405180910390f35b348015610644575f80fd5b5061064d6112d4565b60405161065a9190614483565b60405180910390f35b34801561066e575f80fd5b506106776112e6565b6040516106849190614621565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae919061442b565b6112ee565b6040516106c09190614483565b60405180910390f35b3480156106d4575f80fd5b506106dd611395565b6040516106ea91906145ed565b60405180910390f35b3480156106fe575f80fd5b506107076113b9565b6040516107149190614483565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e919061449c565b6113cb565b6040516107509190614483565b60405180910390f35b348015610764575f80fd5b5061076d61141d565b60405161077a919061454a565b60405180910390f35b34801561078e575f80fd5b50610797611423565b6040516107a49190614483565b60405180910390f35b3480156107b8575f80fd5b506107d360048036038101906107ce919061449c565b611436565b6040516107e0919061454a565b60405180910390f35b3480156107f4575f80fd5b506107fd61147b565b005b34801561080a575f80fd5b5061082560048036038101906108209190614664565b611502565b005b348015610832575f80fd5b5061083b611640565b6040516108489190614483565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906146b4565b6116dd565b005b348015610884575f80fd5b5061088d6117b1565b60405161089a91906145ed565b60405180910390f35b3480156108ae575f80fd5b506108b76117d6565b6040516108c4919061454a565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee91906146f2565b6117dc565b005b348015610900575f80fd5b506109096118db565b005b348015610916575f80fd5b5061091f611996565b60405161092c91906145ed565b60405180910390f35b348015610940575f80fd5b506109496119be565b60405161095691906145ed565b60405180910390f35b34801561096a575f80fd5b506109736119e3565b604051610980919061454a565b60405180910390f35b348015610994575f80fd5b506109af60048036038101906109aa9190614742565b6119e9565b005b3480156109bc575f80fd5b506109c5611a82565b6040516109d2919061437a565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc91906146b4565b611b12565b005b348015610a0e575f80fd5b50610a17611c2a565b604051610a24919061454a565b60405180910390f35b348015610a38575f80fd5b50610a41611c30565b604051610a4e919061454a565b60405180910390f35b348015610a62575f80fd5b50610a6b611c36565b604051610a78919061454a565b60405180910390f35b348015610a8c575f80fd5b50610a95611c3c565b604051610aa2919061454a565b60405180910390f35b348015610ab6575f80fd5b50610ad16004803603810190610acc919061442b565b611c42565b604051610ade9190614483565b60405180910390f35b348015610af2575f80fd5b50610afb611d28565b604051610b08919061454a565b60405180910390f35b348015610b1c575f80fd5b50610b376004803603810190610b32919061442b565b611d2e565b604051610b449190614483565b60405180910390f35b348015610b58575f80fd5b50610b736004803603810190610b6e919061449c565b611d4b565b005b348015610b80575f80fd5b50610b9b6004803603810190610b96919061449c565b611e85565b604051610ba89190614483565b60405180910390f35b348015610bbc575f80fd5b50610bc5611ea2565b604051610bd29190614483565b60405180910390f35b348015610be6575f80fd5b50610c016004803603810190610bfc91906146b4565b611eb5565b005b348015610c0e575f80fd5b50610c296004803603810190610c2491906146f2565b611fd7565b005b348015610c36575f80fd5b50610c516004803603810190610c4c9190614563565b6120d6565b005b348015610c5e575f80fd5b50610c676121e5565b604051610c749190614483565b60405180910390f35b348015610c88575f80fd5b50610c916121f7565b604051610c9e919061454a565b60405180910390f35b348015610cb2575f80fd5b50610ccd6004803603810190610cc89190614563565b6121fd565b604051610cda9190614483565b60405180910390f35b348015610cee575f80fd5b50610cf7612351565b604051610d04919061454a565b60405180910390f35b348015610d18575f80fd5b50610d336004803603810190610d2e919061476d565b612357565b604051610d40919061454a565b60405180910390f35b348015610d54575f80fd5b50610d5d6123d9565b604051610d6a919061454a565b60405180910390f35b348015610d7e575f80fd5b50610d876123df565b604051610d949190614483565b60405180910390f35b348015610da8575f80fd5b50610db161247c565b604051610dbe919061454a565b60405180910390f35b348015610dd2575f80fd5b50610ded6004803603810190610de8919061449c565b612482565b005b348015610dfa575f80fd5b50610e03612578565b604051610e10919061454a565b60405180910390f35b348015610e24575f80fd5b50610e2d61257e565b604051610e3a919061454a565b60405180910390f35b348015610e4e575f80fd5b50610e696004803603810190610e649190614563565b612584565b604051610e769190614483565b60405180910390f35b606060038054610e8e906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba906147d8565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614852565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614852565b60405180910390fd5b670de0b6b3a76400006103e86001611159610f6c565b611163919061489d565b61116d919061490b565b611177919061490b565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149ab565b60405180910390fd5b670de0b6b3a7640000816111cd919061489d565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a39565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a57565b612857565b6001905092915050565b7f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad81565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614852565b60405180910390fd5b6115005f613764565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614852565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614afa565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614b88565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614852565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614852565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90614852565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a57565b61188a9190614a57565b601481905550600b60145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614bf0565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614852565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614852565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a91906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd906147d8565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614852565b60405180910390fd5b7f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614c7e565b60405180910390fd5b611c268282613827565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d0c565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614852565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614852565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb9190614483565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614852565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a57565b6120859190614a57565b601881905550600b60185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614bf0565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990614852565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b612172919061489d565b61217c919061490b565b612186919061490b565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614d9a565b60405180910390fd5b670de0b6b3a7640000816121dc919061489d565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614852565b60405180910390fd5b620186a06001612288610f6c565b612292919061489d565b61229c919061490b565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e28565b60405180910390fd5b6103e860056122eb610f6c565b6122f5919061489d565b6122ff919061490b565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614eb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614852565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614852565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f44565b60405180910390fd5b61257581613764565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614852565b60405180910390fd5b600f546010546126119190614a57565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fac565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061503a565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad6040518263ffffffff1660e01b81526004016126f891906145ed565b602060405180830381865afa158015612713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612737919061506c565b90505f61276161271061275386856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115612799576127987f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad61dead836138ef565b5b5f7f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f80fd5b505af1158015612814573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90615107565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90615195565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d919061454a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615223565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152b1565b60405180910390fd5b5f8103612b0d57612b0883835f6138ef565b61375f565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c90615319565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153cd565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb79061545b565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a57565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154c3565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615551565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a57565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154c3565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b64565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a57565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e0b565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f811561374f5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354457505f601854115b1561360e576135716064613563601854886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601854601a5482613584919061489d565b61358e919061490b565b601d5f82825461359e9190614a57565b92505081905550601854601b54826135b6919061489d565b6135c0919061490b565b601e5f8282546135d09190614a57565b92505081905550601854601954826135e8919061489d565b6135f2919061490b565b601c5f8282546136029190614a57565b9250508190555061372c565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366557505f601454115b1561372b576136926064613684601454886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601454601654826136a5919061489d565b6136af919061490b565b601d5f8282546136bf9190614a57565b92505081905550601454601754826136d7919061489d565b6136e1919061490b565b601e5f8282546136f19190614a57565b9250508190555060145460155482613709919061489d565b613713919061490b565b601c5f8282546137239190614a57565b925050819055505b5b5f8111156137405761373f8730836138ef565b5b808561374c919061556f565b94505b61375a8787876138ef565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d2919061489d565b905092915050565b5f81836138e7919061490b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490615223565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c2906152b1565b60405180910390fd5b6139d6838383613fc5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5090615612565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ae79190614a57565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4b919061454a565b60405180910390a3613b5e848484613fca565b50505050565b5f613b6e30611436565b90505f601e54601c54601d54613b849190614a57565b613b8e9190614a57565b90505f80831480613b9e57505f82145b15613bab57505050613e09565b5f600283601d5486613bbd919061489d565b613bc7919061490b565b613bd1919061490b565b90505f613be78286613fcf90919063ffffffff16565b90505f479050613bf682613fe4565b5f613c0a8247613fcf90919063ffffffff16565b90505f613c3487613c26601c54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f613c5e88613c50601e54866138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f818385613c6e919061556f565b613c78919061556f565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cd49061565d565b5f6040518083038185875af1925050503d805f8114613d0e576040519150601f19603f3d011682016040523d82523d5f602084013e613d13565b606091505b5050809850505f87118015613d2757505f81115b15613d7457613d368782614217565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d6b93929190615671565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613db99061565d565b5f6040518083038185875af1925050503d805f8114613df3576040519150601f19603f3d011682016040523d82523d5f602084013e613df8565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad6040518263ffffffff1660e01b8152600401613e6d91906145ed565b602060405180830381865afa158015613e88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eac919061506c565b90505f613ed8612710613eca600b54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115613f1057613f0f7f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad61dead836138ef565b5b5f7f00000000000000000000000058b78cb1106a1c2f57d4921369495c0225ec17ad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613f79575f80fd5b505af1158015613f8b573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f8183613fdc919061556f565b905092915050565b5f600267ffffffffffffffff81111561400057613fff6156a6565b5b60405190808252806020026020018201604052801561402e5781602001602082028036833780820191505090505b50905030815f81518110614045576140446156d3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061410c9190615714565b816001815181106141205761411f6156d3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614185307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016141e695949392919061582f565b5f604051808303815f87803b1580156141fd575f80fd5b505af115801561420f573d5f803e3d5ffd5b505050505050565b614242307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016142a896959493929190615887565b60606040518083038185885af11580156142c4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906142e991906158e6565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561432757808201518184015260208101905061430c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61434c826142f0565b61435681856142fa565b935061436681856020860161430a565b61436f81614332565b840191505092915050565b5f6020820190508181035f8301526143928184614342565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143c78261439e565b9050919050565b6143d7816143bd565b81146143e1575f80fd5b50565b5f813590506143f2816143ce565b92915050565b5f819050919050565b61440a816143f8565b8114614414575f80fd5b50565b5f8135905061442581614401565b92915050565b5f80604083850312156144415761444061439a565b5b5f61444e858286016143e4565b925050602061445f85828601614417565b9150509250929050565b5f8115159050919050565b61447d81614469565b82525050565b5f6020820190506144965f830184614474565b92915050565b5f602082840312156144b1576144b061439a565b5b5f6144be848285016143e4565b91505092915050565b5f819050919050565b5f6144ea6144e56144e08461439e565b6144c7565b61439e565b9050919050565b5f6144fb826144d0565b9050919050565b5f61450c826144f1565b9050919050565b61451c81614502565b82525050565b5f6020820190506145355f830184614513565b92915050565b614544816143f8565b82525050565b5f60208201905061455d5f83018461453b565b92915050565b5f602082840312156145785761457761439a565b5b5f61458584828501614417565b91505092915050565b5f805f606084860312156145a5576145a461439a565b5b5f6145b2868287016143e4565b93505060206145c3868287016143e4565b92505060406145d486828701614417565b9150509250925092565b6145e7816143bd565b82525050565b5f6020820190506146005f8301846145de565b92915050565b5f60ff82169050919050565b61461b81614606565b82525050565b5f6020820190506146345f830184614612565b92915050565b61464381614469565b811461464d575f80fd5b50565b5f8135905061465e8161463a565b92915050565b5f805f6060848603121561467b5761467a61439a565b5b5f61468886828701614417565b935050602061469986828701614417565b92505060406146aa86828701614650565b9150509250925092565b5f80604083850312156146ca576146c961439a565b5b5f6146d7858286016143e4565b92505060206146e885828601614650565b9150509250929050565b5f805f606084860312156147095761470861439a565b5b5f61471686828701614417565b935050602061472786828701614417565b925050604061473886828701614417565b9150509250925092565b5f602082840312156147575761475661439a565b5b5f61476484828501614650565b91505092915050565b5f80604083850312156147835761478261439a565b5b5f614790858286016143e4565b92505060206147a1858286016143e4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806147ef57607f821691505b602082108103614802576148016147ab565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61483c6020836142fa565b915061484782614808565b602082019050919050565b5f6020820190508181035f83015261486981614830565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148a7826143f8565b91506148b2836143f8565b92508282026148c0816143f8565b915082820484148315176148d7576148d6614870565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614915826143f8565b9150614920836143f8565b9250826149305761492f6148de565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f614995602f836142fa565b91506149a08261493b565b604082019050919050565b5f6020820190508181035f8301526149c281614989565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a236028836142fa565b9150614a2e826149c9565b604082019050919050565b5f6020820190508181035f830152614a5081614a17565b9050919050565b5f614a61826143f8565b9150614a6c836143f8565b9250828201905080821115614a8457614a83614870565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614ae46033836142fa565b9150614aef82614a8a565b604082019050919050565b5f6020820190508181035f830152614b1181614ad8565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b726030836142fa565b9150614b7d82614b18565b604082019050919050565b5f6020820190508181035f830152614b9f81614b66565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c6573730000005f82015250565b5f614bda601d836142fa565b9150614be582614ba6565b602082019050919050565b5f6020820190508181035f830152614c0781614bce565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c686039836142fa565b9150614c7382614c0e565b604082019050919050565b5f6020820190508181035f830152614c9581614c5c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614cf66025836142fa565b9150614d0182614c9c565b604082019050919050565b5f6020820190508181035f830152614d2381614cea565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614d846024836142fa565b9150614d8f82614d2a565b604082019050919050565b5f6020820190508181035f830152614db181614d78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e126035836142fa565b9150614e1d82614db8565b604082019050919050565b5f6020820190508181035f830152614e3f81614e06565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ea06034836142fa565b9150614eab82614e46565b604082019050919050565b5f6020820190508181035f830152614ecd81614e94565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f2e6026836142fa565b9150614f3982614ed4565b604082019050919050565b5f6020820190508181035f830152614f5b81614f22565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614f966020836142fa565b9150614fa182614f62565b602082019050919050565b5f6020820190508181035f830152614fc381614f8a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615024602a836142fa565b915061502f82614fca565b604082019050919050565b5f6020820190508181035f83015261505181615018565b9050919050565b5f8151905061506681614401565b92915050565b5f602082840312156150815761508061439a565b5b5f61508e84828501615058565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6150f16024836142fa565b91506150fc82615097565b604082019050919050565b5f6020820190508181035f83015261511e816150e5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61517f6022836142fa565b915061518a82615125565b604082019050919050565b5f6020820190508181035f8301526151ac81615173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61520d6025836142fa565b9150615218826151b3565b604082019050919050565b5f6020820190508181035f83015261523a81615201565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61529b6023836142fa565b91506152a682615241565b604082019050919050565b5f6020820190508181035f8301526152c88161528f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6153036016836142fa565b915061530e826152cf565b602082019050919050565b5f6020820190508181035f830152615330816152f7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153b76049836142fa565b91506153c282615337565b606082019050919050565b5f6020820190508181035f8301526153e4816153ab565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6154456035836142fa565b9150615450826153eb565b604082019050919050565b5f6020820190508181035f83015261547281615439565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154ad6013836142fa565b91506154b882615479565b602082019050919050565b5f6020820190508181035f8301526154da816154a1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61553b6036836142fa565b9150615546826154e1565b604082019050919050565b5f6020820190508181035f8301526155688161552f565b9050919050565b5f615579826143f8565b9150615584836143f8565b925082820390508181111561559c5761559b614870565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6155fc6026836142fa565b9150615607826155a2565b604082019050919050565b5f6020820190508181035f830152615629816155f0565b9050919050565b5f81905092915050565b50565b5f6156485f83615630565b91506156538261563a565b5f82019050919050565b5f6156678261563d565b9150819050919050565b5f6060820190506156845f83018661453b565b615691602083018561453b565b61569e604083018461453b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061570e816143ce565b92915050565b5f602082840312156157295761572861439a565b5b5f61573684828501615700565b91505092915050565b5f819050919050565b5f61576261575d6157588461573f565b6144c7565b6143f8565b9050919050565b61577281615748565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157aa816143bd565b82525050565b5f6157bb83836157a1565b60208301905092915050565b5f602082019050919050565b5f6157dd82615778565b6157e78185615782565b93506157f283615792565b805f5b8381101561582257815161580988826157b0565b9750615814836157c7565b9250506001810190506157f5565b5085935050505092915050565b5f60a0820190506158425f83018861453b565b61584f6020830187615769565b818103604083015261586181866157d3565b905061587060608301856145de565b61587d608083018461453b565b9695505050505050565b5f60c08201905061589a5f8301896145de565b6158a7602083018861453b565b6158b46040830187615769565b6158c16060830186615769565b6158ce60808301856145de565b6158db60a083018461453b565b979650505050505050565b5f805f606084860312156158fd576158fc61439a565b5b5f61590a86828701615058565b935050602061591b86828701615058565b925050604061592c86828701615058565b915050925092509256fea264697066735822122029e4b7f736331b0ea6fc2b0c4d175a2c5a97440c6acb58535b283c58a6d53b0464736f6c63430008140033

Deployed Bytecode Sourcemap

32782:19175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9610:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11777:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34412:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32861:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10730:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41412:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33426:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33241:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34196:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34156;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38726:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12428:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32964:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33336:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33297:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10572:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13329:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32919:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33524:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41577:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34011:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33604:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10901:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2845:103;;;;;;;;;;;;;:::i;:::-;;49539:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37834:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39273:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33056:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33904;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39644:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37627:155;;;;;;;;;;;;;:::i;:::-;;2194:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33093:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34046:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39536:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9829:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40665:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33978:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33480:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34236:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34122:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14047:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33388:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11241:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41173:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34633:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33564:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40475:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40055:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39009:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33822:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33126:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38221:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33870:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33168:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38016:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33941:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3103:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34084:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33208:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50898:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9610:100;9664:13;9697:5;9690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9610:100;:::o;11777:169::-;11860:4;11877:39;11886:12;:10;:12::i;:::-;11900:7;11909:6;11877:8;:39::i;:::-;11934:4;11927:11;;11777:169;;;;:::o;34412:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32861:51::-;;;:::o;10730:108::-;10791:7;10818:12;;10811:19;;10730:108;:::o;41412:157::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41519:9:::1;;;;;;;;;;;41491:38;;41508:9;41491:38;;;;;;;;;;;;41552:9;41540;;:21;;;;;;;;;;;;;;;;;;41412:157:::0;:::o;33426:47::-;;;;:::o;33241:36::-;;;;:::o;34196:33::-;;;;:::o;34156:::-;;;;:::o;38726:275::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38863:4:::1;38855;38850:1;38834:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38833:26;;;;:::i;:::-;38832:35;;;;:::i;:::-;38822:6;:45;;38800:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38986:6;38976;:17;;;;:::i;:::-;38953:20;:40;;;;38726:275:::0;:::o;12428:492::-;12568:4;12585:36;12595:6;12603:9;12614:6;12585:9;:36::i;:::-;12634:24;12661:11;:19;12673:6;12661:19;;;;;;;;;;;;;;;:33;12681:12;:10;:12::i;:::-;12661:33;;;;;;;;;;;;;;;;12634:60;;12733:6;12713:16;:26;;12705:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12820:57;12829:6;12837:12;:10;:12::i;:::-;12870:6;12851:16;:25;12820:8;:57::i;:::-;12908:4;12901:11;;;12428:492;;;;;:::o;32964:53::-;33010:6;32964:53;:::o;33336:45::-;;;;:::o;33297:32::-;;;;;;;;;;;;;:::o;10572:93::-;10630:5;10655:2;10648:9;;10572:93;:::o;13329:215::-;13417:4;13434:80;13443:12;:10;:12::i;:::-;13457:7;13503:10;13466:11;:25;13478:12;:10;:12::i;:::-;13466:25;;;;;;;;;;;;;;;:34;13492:7;13466:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13434:8;:80::i;:::-;13532:4;13525:11;;13329:215;;;;:::o;32919:38::-;;;:::o;33524:33::-;;;;;;;;;;;;;:::o;41577:126::-;41643:4;41667:19;:28;41687:7;41667:28;;;;;;;;;;;;;;;;;;;;;;;;;41660:35;;41577:126;;;:::o;34011:28::-;;;;:::o;33604:31::-;;;;;;;;;;;;;:::o;10901:127::-;10975:7;11002:9;:18;11012:7;11002:18;;;;;;;;;;;;;;;;10995:25;;10901:127;;;:::o;2845:103::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:30:::1;2937:1;2910:18;:30::i;:::-;2845:103::o:0;49539:555::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49741:3:::1;49718:19;:26;;49696:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49868:4;49856:8;:16;;:33;;;;;49888:1;49876:8;:13;;49856:33;49834:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;49994:19;49976:15;:37;;;;50043:8;50024:16;:27;;;;50078:8;50062:13;;:24;;;;;;;;;;;;;;;;;;49539:555:::0;;;:::o;37834:121::-;37886:4;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37920:5:::1;37903:14;;:22;;;;;;;;;;;;;;;;;;37943:4;37936:11;;37834:121:::0;:::o;39273:167::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39428:4:::1;39386:31;:39;39418:6;39386:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39273:167:::0;;:::o;33056:30::-;;;;;;;;;;;;;:::o;33904:::-;;;;:::o;39644:403::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39812:13:::1;39794:15;:31;;;;39854:13;39836:15;:31;;;;39890:7;39878:9;:19;;;;39959:9;;39941:15;;39923;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39908:12;:60;;;;40003:2;39987:12;;:18;;39979:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39644:403:::0;;;:::o;37627:155::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:4:::1;37682:13;;:20;;;;;;;;;;;;;;;;;;37727:4;37713:11;;:18;;;;;;;;;;;;;;;;;;37759:15;37742:14;:32;;;;37627:155::o:0;2194:87::-;2240:7;2267:6;;;;;;;;;;;2260:13;;2194:87;:::o;33093:24::-;;;;;;;;;;;;;:::o;34046:31::-;;;;:::o;39536:100::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39621:7:::1;39607:11;;:21;;;;;;;;;;;;;;;;;;39536:100:::0;:::o;9829:104::-;9885:13;9918:7;9911:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9829:104;:::o;40665:304::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40809:13:::1;40801:21;;:4;:21;;::::0;40779:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40920:41;40949:4;40955:5;40920:28;:41::i;:::-;40665:304:::0;;:::o;33978:24::-;;;;:::o;33480:35::-;;;;:::o;34236:27::-;;;;:::o;34122:25::-;;;;:::o;14047:413::-;14140:4;14157:24;14184:11;:25;14196:12;:10;:12::i;:::-;14184:25;;;;;;;;;;;;;;;:34;14210:7;14184:34;;;;;;;;;;;;;;;;14157:61;;14257:15;14237:16;:35;;14229:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14350:67;14359:12;:10;:12::i;:::-;14373:7;14401:15;14382:16;:34;14350:8;:67::i;:::-;14448:4;14441:11;;;14047:413;;;;:::o;33388:29::-;;;;:::o;11241:175::-;11327:4;11344:42;11354:12;:10;:12::i;:::-;11368:9;11379:6;11344:9;:42::i;:::-;11404:4;11397:11;;11241:175;;;;:::o;41173:231::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41333:15:::1;;;;;;;;;;;41290:59;;41313:18;41290:59;;;;;;;;;;;;41378:18;41360:15;;:36;;;;;;;;;;;;;;;;;;41173:231:::0;:::o;34633:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33564:33::-;;;;;;;;;;;;;:::o;40475:182::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40591:8:::1;40560:19;:28;40580:7;40560:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40631:7;40615:34;;;40640:8;40615:34;;;;;;:::i;:::-;;;;;;;;40475:182:::0;;:::o;40055:412::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40225:13:::1;40206:16;:32;;;;40268:13;40249:16;:32;;;;40305:7;40292:10;:20;;;;40377:10;;40358:16;;40339;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40323:13;:64;;;;40423:2;40406:13;;:19;;40398:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40055:412:::0;;;:::o;39009:256::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39149:4:::1;39141;39136:1;39120:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39119:26;;;;:::i;:::-;39118:35;;;;:::i;:::-;39108:6;:45;;39086:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39250:6;39240;:17;;;;:::i;:::-;39228:9;:29;;;;39009:256:::0;:::o;33822:39::-;;;;;;;;;;;;;:::o;33126:35::-;;;;:::o;38221:497::-;38329:4;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38408:6:::1;38403:1;38387:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38386:28;;;;:::i;:::-;38373:9;:41;;38351:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38563:4;38558:1;38542:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38541:26;;;;:::i;:::-;38528:9;:39;;38506:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38679:9;38658:18;:30;;;;38706:4;38699:11;;38221:497:::0;;;:::o;33870:27::-;;;;:::o;11479:151::-;11568:7;11595:11;:18;11607:5;11595:18;;;;;;;;;;;;;;;:27;11614:7;11595:27;;;;;;;;;;;;;;;;11588:34;;11479:151;;;;:::o;33168:33::-;;;;:::o;38016:135::-;38076:4;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38116:5:::1;38093:20;;:28;;;;;;;;;;;;;;;;;;38139:4;38132:11;;38016:135:::0;:::o;33941:30::-;;;;:::o;3103:201::-;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3212:1:::1;3192:22;;:8;:22;;::::0;3184:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3268:28;3287:8;3268:18;:28::i;:::-;3103:201:::0;:::o;34084:31::-;;;;:::o;33208:24::-;;;;:::o;50898:1056::-;51009:4;2425:12;:10;:12::i;:::-;2414:23;;:7;:5;:7::i;:::-;:23;;;2406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51094:19:::1;;51071:20;;:42;;;;:::i;:::-;51053:15;:60;51031:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51203:4;51192:7;:15;;51184:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51288:15;51265:20;:38;;;;51358:28;51389:4;:14;;;51404:13;51389:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51358:60;;51468:20;51491:44;51529:5;51491:33;51516:7;51491:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51468:67;;51655:1;51640:12;:16;51636:110;;;51673:61;51689:13;51712:6;51721:12;51673:15;:61::i;:::-;51636:110;51821:19;51858:13;51821:51;;51883:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51910:14;;;;;;;;;;51942:4;51935:11;;;;;50898:1056:::0;;;:::o;867:98::-;920:7;947:10;940:17;;867:98;:::o;17731:380::-;17884:1;17867:19;;:5;:19;;;17859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17965:1;17946:21;;:7;:21;;;17938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18049:6;18019:11;:18;18031:5;18019:18;;;;;;;;;;;;;;;:27;18038:7;18019:27;;;;;;;;;;;;;;;:36;;;;18087:7;18071:32;;18080:5;18071:32;;;18096:6;18071:32;;;;;;:::i;:::-;;;;;;;;17731:380;;;:::o;41761:5011::-;41909:1;41893:18;;:4;:18;;;41885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41986:1;41972:16;;:2;:16;;;41964:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42055:1;42045:6;:11;42041:93;;42073:28;42089:4;42095:2;42099:1;42073:15;:28::i;:::-;42116:7;;42041:93;42150:14;;;;;;;;;;;42146:2487;;;42211:7;:5;:7::i;:::-;42203:15;;:4;:15;;;;:49;;;;;42245:7;:5;:7::i;:::-;42239:13;;:2;:13;;;;42203:49;:86;;;;;42287:1;42273:16;;:2;:16;;;;42203:86;:128;;;;;42324:6;42310:21;;:2;:21;;;;42203:128;:158;;;;;42353:8;;;;;;;;;;;42352:9;42203:158;42181:2441;;;42401:13;;;;;;;;;;;42396:223;;42473:19;:25;42493:4;42473:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42502:19;:23;42522:2;42502:23;;;;;;;;;;;;;;;;;;;;;;;;;42473:52;42439:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42396:223;42775:20;;;;;;;;;;;42771:641;;;42856:7;:5;:7::i;:::-;42850:13;;:2;:13;;;;:72;;;;;42906:15;42892:30;;:2;:30;;;;42850:72;:129;;;;;42965:13;42951:28;;:2;:28;;;;42850:129;42820:573;;;43143:12;43068:28;:39;43097:9;43068:39;;;;;;;;;;;;;;;;:87;43030:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43357:12;43315:28;:39;43344:9;43315:39;;;;;;;;;;;;;;;:54;;;;42820:573;42771:641;43486:25;:31;43512:4;43486:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43543:31;:35;43575:2;43543:35;;;;;;;;;;;;;;;;;;;;;;;;;43542:36;43486:92;43460:1147;;;43665:20;;43655:6;:30;;43621:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43873:9;;43856:13;43866:2;43856:9;:13::i;:::-;43847:6;:22;;;;:::i;:::-;:35;;43813:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43460:1147;;;44051:25;:29;44077:2;44051:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44106:31;:37;44138:4;44106:37;;;;;;;;;;;;;;;;;;;;;;;;;44105:38;44051:92;44025:582;;;44230:20;;44220:6;:30;;44186:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44025:582;;;44387:31;:35;44419:2;44387:35;;;;;;;;;;;;;;;;;;;;;;;;;44382:225;;44507:9;;44490:13;44500:2;44490:9;:13::i;:::-;44481:6;:22;;;;:::i;:::-;:35;;44447:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44382:225;44025:582;43460:1147;42181:2441;42146:2487;44645:28;44676:24;44694:4;44676:9;:24::i;:::-;44645:55;;44713:12;44752:18;;44728:20;:42;;44713:57;;44801:7;:35;;;;;44825:11;;;;;;;;;;;44801:35;:61;;;;;44854:8;;;;;;;;;;;44853:9;44801:61;:110;;;;;44880:25;:31;44906:4;44880:31;;;;;;;;;;;;;;;;;;;;;;;;;44879:32;44801:110;:153;;;;;44929:19;:25;44949:4;44929:25;;;;;;;;;;;;;;;;;;;;;;;;;44928:26;44801:153;:194;;;;;44972:19;:23;44992:2;44972:23;;;;;;;;;;;;;;;;;;;;;;;;;44971:24;44801:194;44783:326;;;45033:4;45022:8;;:15;;;;;;;;;;;;;;;;;;45054:10;:8;:10::i;:::-;45092:5;45081:8;;:16;;;;;;;;;;;;;;;;;;44783:326;45140:8;;;;;;;;;;;45139:9;:55;;;;;45165:25;:29;45191:2;45165:29;;;;;;;;;;;;;;;;;;;;;;;;;45139:55;:85;;;;;45211:13;;;;;;;;;;;45139:85;:153;;;;;45277:15;;45260:14;;:32;;;;:::i;:::-;45241:15;:51;;45139:153;:196;;;;;45310:19;:25;45330:4;45310:25;;;;;;;;;;;;;;;;;;;;;;;;;45309:26;45139:196;45121:282;;;45362:29;:27;:29::i;:::-;;45121:282;45415:12;45431:8;;;;;;;;;;;45430:9;45415:24;;45541:19;:25;45561:4;45541:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45570:19;:23;45590:2;45570:23;;;;;;;;;;;;;;;;;;;;;;;;;45541:52;45537:100;;;45620:5;45610:15;;45537:100;45649:12;45754:7;45750:969;;;45806:25;:29;45832:2;45806:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45855:1;45839:13;;:17;45806:50;45802:768;;;45884:34;45914:3;45884:25;45895:13;;45884:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45877:41;;45987:13;;45967:16;;45960:4;:23;;;;:::i;:::-;45959:41;;;;:::i;:::-;45937:18;;:63;;;;;;;:::i;:::-;;;;;;;;46057:13;;46043:10;;46036:4;:17;;;;:::i;:::-;46035:35;;;;:::i;:::-;46019:12;;:51;;;;;;;:::i;:::-;;;;;;;;46139:13;;46119:16;;46112:4;:23;;;;:::i;:::-;46111:41;;;;:::i;:::-;46089:18;;:63;;;;;;;:::i;:::-;;;;;;;;45802:768;;;46214:25;:31;46240:4;46214:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46264:1;46249:12;;:16;46214:51;46210:360;;;46293:33;46322:3;46293:24;46304:12;;46293:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46286:40;;46394:12;;46375:15;;46368:4;:22;;;;:::i;:::-;46367:39;;;;:::i;:::-;46345:18;;:61;;;;;;;:::i;:::-;;;;;;;;46462:12;;46449:9;;46442:4;:16;;;;:::i;:::-;46441:33;;;;:::i;:::-;46425:12;;:49;;;;;;;:::i;:::-;;;;;;;;46542:12;;46523:15;;46516:4;:22;;;;:::i;:::-;46515:39;;;;:::i;:::-;46493:18;;:61;;;;;;;:::i;:::-;;;;;;;;46210:360;45802:768;46597:1;46590:4;:8;46586:91;;;46619:42;46635:4;46649;46656;46619:15;:42::i;:::-;46586:91;46703:4;46693:14;;;;;:::i;:::-;;;45750:969;46731:33;46747:4;46753:2;46757:6;46731:15;:33::i;:::-;41874:4898;;;;41761:5011;;;;:::o;3464:191::-;3538:16;3557:6;;;;;;;;;;;3538:25;;3583:8;3574:6;;:17;;;;;;;;;;;;;;;;;;3638:8;3607:40;;3628:8;3607:40;;;;;;;;;;;;3527:128;3464:191;:::o;40977:188::-;41094:5;41060:25;:31;41086:4;41060:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41151:5;41117:40;;41145:4;41117:40;;;;;;;;;;;;40977:188;;:::o;23184:98::-;23242:7;23273:1;23269;:5;;;;:::i;:::-;23262:12;;23184:98;;;;:::o;23583:::-;23641:7;23672:1;23668;:5;;;;:::i;:::-;23661:12;;23583:98;;;;:::o;14950:733::-;15108:1;15090:20;;:6;:20;;;15082:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:1;15171:23;;:9;:23;;;15163:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15247:47;15268:6;15276:9;15287:6;15247:20;:47::i;:::-;15307:21;15331:9;:17;15341:6;15331:17;;;;;;;;;;;;;;;;15307:41;;15384:6;15367:13;:23;;15359:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15505:6;15489:13;:22;15469:9;:17;15479:6;15469:17;;;;;;;;;;;;;;;:42;;;;15557:6;15533:9;:20;15543:9;15533:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15598:9;15581:35;;15590:6;15581:35;;;15609:6;15581:35;;;;;;:::i;:::-;;;;;;;;15629:46;15649:6;15657:9;15668:6;15629:19;:46::i;:::-;15071:612;14950:733;;;:::o;47902:1629::-;47941:23;47967:24;47985:4;47967:9;:24::i;:::-;47941:50;;48002:25;48098:12;;48064:18;;48030;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48002:108;;48121:12;48169:1;48150:15;:20;:46;;;;48195:1;48174:17;:22;48150:46;48146:85;;;48213:7;;;;;48146:85;48292:23;48405:1;48372:17;48337:18;;48319:15;:36;;;;:::i;:::-;48318:71;;;;:::i;:::-;:88;;;;:::i;:::-;48292:114;;48417:26;48446:36;48466:15;48446;:19;;:36;;;;:::i;:::-;48417:65;;48495:25;48523:21;48495:49;;48557:36;48574:18;48557:16;:36::i;:::-;48606:18;48627:44;48653:17;48627:21;:25;;:44;;;;:::i;:::-;48606:65;;48684:23;48710:81;48763:17;48710:34;48725:18;;48710:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48684:107;;48802:17;48822:51;48855:17;48822:28;48837:12;;48822:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48802:71;;48886:23;48943:9;48925:15;48912:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48886:66;;48986:1;48965:18;:22;;;;49019:1;48998:18;:22;;;;49046:1;49031:12;:16;;;;49082:9;;;;;;;;;;;49074:23;;49105:9;49074:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49060:59;;;;;49154:1;49136:15;:19;:42;;;;;49177:1;49159:15;:19;49136:42;49132:278;;;49195:46;49208:15;49225;49195:12;:46::i;:::-;49261:137;49294:18;49331:15;49365:18;;49261:137;;;;;;;;:::i;:::-;;;;;;;;49132:278;49444:15;;;;;;;;;;;49436:29;;49487:21;49436:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49422:101;;;;;47930:1601;;;;;;;;;;47902:1629;:::o;50102:788::-;50159:4;50193:15;50176:14;:32;;;;50263:28;50294:4;:14;;;50309:13;50294:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50263:60;;50373:20;50396:77;50457:5;50396:42;50421:16;;50396:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50373:100;;50593:1;50578:12;:16;50574:110;;;50611:61;50627:13;50650:6;50659:12;50611:15;:61::i;:::-;50574:110;50759:19;50796:13;50759:51;;50821:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50848:12;;;;;;;;;;50878:4;50871:11;;;;;50102:788;:::o;18711:125::-;;;;:::o;19440:124::-;;;;:::o;22827:98::-;22885:7;22916:1;22912;:5;;;;:::i;:::-;22905:12;;22827:98;;;;:::o;46780:589::-;46906:21;46944:1;46930:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46906:40;;46975:4;46957;46962:1;46957:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47001:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46991:4;46996:1;46991:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47036:62;47053:4;47068:15;47086:11;47036:8;:62::i;:::-;47137:15;:66;;;47218:11;47244:1;47288:4;47315;47335:15;47137:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46835:534;46780:589;:::o;47377:517::-;47525:62;47542:4;47557:15;47575:11;47525:8;:62::i;:::-;47630:15;:31;;;47669:9;47702:4;47722:11;47748:1;47791;33010:6;47860:15;47630:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47377: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:179::-;16600:31;16596:1;16588:6;16584:14;16577:55;16460:179;:::o;16645:366::-;16787:3;16808:67;16872:2;16867:3;16808:67;:::i;:::-;16801:74;;16884:93;16973:3;16884:93;:::i;:::-;17002:2;16997:3;16993:12;16986:19;;16645:366;;;:::o;17017:419::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:244::-;17582:34;17578:1;17570:6;17566:14;17559:58;17651:27;17646:2;17638:6;17634:15;17627:52;17442:244;:::o;17692:366::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:419::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18317:9;18311:4;18307:20;18303:1;18292:9;18288:17;18281:47;18345:131;18471:4;18345:131;:::i;:::-;18337:139;;18064:419;;;:::o;18489:224::-;18629:34;18625:1;18617:6;18613:14;18606:58;18698:7;18693:2;18685:6;18681:15;18674:32;18489:224;:::o;18719:366::-;18861:3;18882:67;18946:2;18941:3;18882:67;:::i;:::-;18875:74;;18958:93;19047:3;18958:93;:::i;:::-;19076:2;19071:3;19067:12;19060:19;;18719:366;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:223::-;19656:34;19652:1;19644:6;19640:14;19633:58;19725:6;19720:2;19712:6;19708:15;19701:31;19516:223;:::o;19745:366::-;19887:3;19908:67;19972:2;19967:3;19908:67;:::i;:::-;19901:74;;19984:93;20073:3;19984:93;:::i;:::-;20102:2;20097:3;20093:12;20086:19;;19745:366;;;:::o;20117:419::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20370:9;20364:4;20360:20;20356:1;20345:9;20341:17;20334:47;20398:131;20524:4;20398:131;:::i;:::-;20390:139;;20117:419;;;:::o;20542:240::-;20682:34;20678:1;20670:6;20666:14;20659:58;20751:23;20746:2;20738:6;20734:15;20727:48;20542:240;:::o;20788:366::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20788:366;;;:::o;21160:419::-;21326:4;21364:2;21353:9;21349:18;21341:26;;21413:9;21407:4;21403:20;21399:1;21388:9;21384:17;21377:47;21441:131;21567:4;21441:131;:::i;:::-;21433:139;;21160:419;;;:::o;21585:239::-;21725:34;21721:1;21713:6;21709:14;21702:58;21794:22;21789:2;21781:6;21777:15;21770:47;21585:239;:::o;21830:366::-;21972:3;21993:67;22057:2;22052:3;21993:67;:::i;:::-;21986:74;;22069:93;22158:3;22069:93;:::i;:::-;22187:2;22182:3;22178:12;22171:19;;21830:366;;;:::o;22202:419::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:225::-;22767:34;22763:1;22755:6;22751:14;22744:58;22836:8;22831:2;22823:6;22819:15;22812:33;22627:225;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:182::-;23795:34;23791:1;23783:6;23779:14;23772:58;23655:182;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:229::-;24780:34;24776:1;24768:6;24764:14;24757:58;24849:12;24844:2;24836:6;24832:15;24825:37;24640:229;:::o;24875:366::-;25017:3;25038:67;25102:2;25097:3;25038:67;:::i;:::-;25031:74;;25114:93;25203:3;25114:93;:::i;:::-;25232:2;25227:3;25223:12;25216:19;;24875:366;;;:::o;25247:419::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:143::-;25729:5;25760:6;25754:13;25745:22;;25776:33;25803:5;25776:33;:::i;:::-;25672:143;;;;:::o;25821:351::-;25891:6;25940:2;25928:9;25919:7;25915:23;25911:32;25908:119;;;25946:79;;:::i;:::-;25908:119;26066:1;26091:64;26147:7;26138:6;26127:9;26123:22;26091:64;:::i;:::-;26081:74;;26037:128;25821:351;;;;:::o;26178:223::-;26318:34;26314:1;26306:6;26302:14;26295:58;26387:6;26382:2;26374:6;26370:15;26363:31;26178:223;:::o;26407:366::-;26549:3;26570:67;26634:2;26629:3;26570:67;:::i;:::-;26563:74;;26646:93;26735:3;26646:93;:::i;:::-;26764:2;26759:3;26755:12;26748:19;;26407:366;;;:::o;26779:419::-;26945:4;26983:2;26972:9;26968:18;26960:26;;27032:9;27026:4;27022:20;27018:1;27007:9;27003:17;26996:47;27060:131;27186:4;27060:131;:::i;:::-;27052:139;;26779:419;;;:::o;27204:221::-;27344:34;27340:1;27332:6;27328:14;27321:58;27413:4;27408:2;27400:6;27396:15;27389:29;27204:221;:::o;27431:366::-;27573:3;27594:67;27658:2;27653:3;27594:67;:::i;:::-;27587:74;;27670:93;27759:3;27670:93;:::i;:::-;27788:2;27783:3;27779:12;27772:19;;27431:366;;;:::o;27803:419::-;27969:4;28007:2;27996:9;27992:18;27984:26;;28056:9;28050:4;28046:20;28042:1;28031:9;28027:17;28020:47;28084:131;28210:4;28084:131;:::i;:::-;28076:139;;27803:419;;;:::o;28228:224::-;28368:34;28364:1;28356:6;28352:14;28345:58;28437:7;28432:2;28424:6;28420:15;28413:32;28228:224;:::o;28458:366::-;28600:3;28621:67;28685:2;28680:3;28621:67;:::i;:::-;28614:74;;28697:93;28786:3;28697:93;:::i;:::-;28815:2;28810:3;28806:12;28799:19;;28458:366;;;:::o;28830:419::-;28996:4;29034:2;29023:9;29019:18;29011:26;;29083:9;29077:4;29073:20;29069:1;29058:9;29054:17;29047:47;29111:131;29237:4;29111:131;:::i;:::-;29103:139;;28830:419;;;:::o;29255:222::-;29395:34;29391:1;29383:6;29379:14;29372:58;29464:5;29459:2;29451:6;29447:15;29440:30;29255:222;:::o;29483:366::-;29625:3;29646:67;29710:2;29705:3;29646:67;:::i;:::-;29639:74;;29722:93;29811:3;29722:93;:::i;:::-;29840:2;29835:3;29831:12;29824:19;;29483:366;;;:::o;29855:419::-;30021:4;30059:2;30048:9;30044:18;30036:26;;30108:9;30102:4;30098:20;30094:1;30083:9;30079:17;30072:47;30136:131;30262:4;30136:131;:::i;:::-;30128:139;;29855:419;;;:::o;30280:172::-;30420:24;30416:1;30408:6;30404:14;30397:48;30280:172;:::o;30458:366::-;30600:3;30621:67;30685:2;30680:3;30621:67;:::i;:::-;30614:74;;30697:93;30786:3;30697:93;:::i;:::-;30815:2;30810:3;30806:12;30799:19;;30458:366;;;:::o;30830:419::-;30996:4;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;30830:419;;;:::o;31255:297::-;31395:34;31391:1;31383:6;31379:14;31372:58;31464:34;31459:2;31451:6;31447:15;31440:59;31533:11;31528:2;31520:6;31516:15;31509:36;31255:297;:::o;31558:366::-;31700:3;31721:67;31785:2;31780:3;31721:67;:::i;:::-;31714:74;;31797:93;31886:3;31797:93;:::i;:::-;31915:2;31910:3;31906:12;31899:19;;31558:366;;;:::o;31930:419::-;32096:4;32134:2;32123:9;32119:18;32111:26;;32183:9;32177:4;32173:20;32169:1;32158:9;32154:17;32147:47;32211:131;32337:4;32211:131;:::i;:::-;32203:139;;31930:419;;;:::o;32355:240::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:23;32559:2;32551:6;32547:15;32540:48;32355:240;:::o;32601:366::-;32743:3;32764:67;32828:2;32823:3;32764:67;:::i;:::-;32757:74;;32840:93;32929:3;32840:93;:::i;:::-;32958:2;32953:3;32949:12;32942:19;;32601:366;;;:::o;32973:419::-;33139:4;33177:2;33166:9;33162:18;33154:26;;33226:9;33220:4;33216:20;33212:1;33201:9;33197:17;33190:47;33254:131;33380:4;33254:131;:::i;:::-;33246:139;;32973:419;;;:::o;33398:169::-;33538:21;33534:1;33526:6;33522:14;33515:45;33398:169;:::o;33573:366::-;33715:3;33736:67;33800:2;33795:3;33736:67;:::i;:::-;33729:74;;33812:93;33901:3;33812:93;:::i;:::-;33930:2;33925:3;33921:12;33914:19;;33573:366;;;:::o;33945:419::-;34111:4;34149:2;34138:9;34134:18;34126:26;;34198:9;34192:4;34188:20;34184:1;34173:9;34169:17;34162:47;34226:131;34352:4;34226:131;:::i;:::-;34218:139;;33945:419;;;:::o;34370:241::-;34510:34;34506:1;34498:6;34494:14;34487:58;34579:24;34574:2;34566:6;34562:15;34555:49;34370:241;:::o;34617:366::-;34759:3;34780:67;34844:2;34839:3;34780:67;:::i;:::-;34773:74;;34856:93;34945:3;34856:93;:::i;:::-;34974:2;34969:3;34965:12;34958:19;;34617:366;;;:::o;34989:419::-;35155:4;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;34989:419;;;:::o;35414:194::-;35454:4;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35552:1;35549;35545:9;35537:17;;35576:1;35570:4;35567:11;35564:37;;;35581:18;;:::i;:::-;35564:37;35414:194;;;;:::o;35614:225::-;35754:34;35750:1;35742:6;35738:14;35731:58;35823:8;35818:2;35810:6;35806:15;35799:33;35614:225;:::o;35845:366::-;35987:3;36008:67;36072:2;36067:3;36008:67;:::i;:::-;36001:74;;36084:93;36173:3;36084:93;:::i;:::-;36202:2;36197:3;36193:12;36186:19;;35845:366;;;:::o;36217:419::-;36383:4;36421:2;36410:9;36406:18;36398:26;;36470:9;36464:4;36460:20;36456:1;36445:9;36441:17;36434:47;36498:131;36624:4;36498:131;:::i;:::-;36490:139;;36217:419;;;:::o;36642:147::-;36743:11;36780:3;36765:18;;36642:147;;;;:::o;36795:114::-;;:::o;36915:398::-;37074:3;37095:83;37176:1;37171:3;37095:83;:::i;:::-;37088:90;;37187:93;37276:3;37187:93;:::i;:::-;37305:1;37300:3;37296:11;37289:18;;36915:398;;;:::o;37319:379::-;37503:3;37525:147;37668:3;37525:147;:::i;:::-;37518:154;;37689:3;37682:10;;37319:379;;;:::o;37704:442::-;37853:4;37891:2;37880:9;37876:18;37868:26;;37904:71;37972:1;37961:9;37957:17;37948:6;37904:71;:::i;:::-;37985:72;38053:2;38042:9;38038:18;38029:6;37985:72;:::i;:::-;38067;38135:2;38124:9;38120:18;38111:6;38067:72;:::i;:::-;37704:442;;;;;;:::o;38152:180::-;38200:77;38197:1;38190:88;38297:4;38294:1;38287:15;38321:4;38318:1;38311:15;38338:180;38386:77;38383:1;38376:88;38483:4;38480:1;38473:15;38507:4;38504:1;38497:15;38524:143;38581:5;38612:6;38606:13;38597:22;;38628:33;38655:5;38628:33;:::i;:::-;38524:143;;;;:::o;38673:351::-;38743:6;38792:2;38780:9;38771:7;38767:23;38763:32;38760:119;;;38798:79;;:::i;:::-;38760:119;38918:1;38943:64;38999:7;38990:6;38979:9;38975:22;38943:64;:::i;:::-;38933:74;;38889:128;38673:351;;;;:::o;39030:85::-;39075:7;39104:5;39093:16;;39030:85;;;:::o;39121:158::-;39179:9;39212:61;39230:42;39239:32;39265:5;39239:32;:::i;:::-;39230:42;:::i;:::-;39212:61;:::i;:::-;39199:74;;39121:158;;;:::o;39285:147::-;39380:45;39419:5;39380:45;:::i;:::-;39375:3;39368:58;39285:147;;:::o;39438:114::-;39505:6;39539:5;39533:12;39523:22;;39438:114;;;:::o;39558:184::-;39657:11;39691:6;39686:3;39679:19;39731:4;39726:3;39722:14;39707:29;;39558:184;;;;:::o;39748:132::-;39815:4;39838:3;39830:11;;39868:4;39863:3;39859:14;39851:22;;39748:132;;;:::o;39886:108::-;39963:24;39981:5;39963:24;:::i;:::-;39958:3;39951:37;39886:108;;:::o;40000:179::-;40069:10;40090:46;40132:3;40124:6;40090:46;:::i;:::-;40168:4;40163:3;40159:14;40145:28;;40000:179;;;;:::o;40185:113::-;40255:4;40287;40282:3;40278:14;40270:22;;40185:113;;;:::o;40334:732::-;40453:3;40482:54;40530:5;40482:54;:::i;:::-;40552:86;40631:6;40626:3;40552:86;:::i;:::-;40545:93;;40662:56;40712:5;40662:56;:::i;:::-;40741:7;40772:1;40757:284;40782:6;40779:1;40776:13;40757:284;;;40858:6;40852:13;40885:63;40944:3;40929:13;40885:63;:::i;:::-;40878:70;;40971:60;41024:6;40971:60;:::i;:::-;40961:70;;40817:224;40804:1;40801;40797:9;40792:14;;40757:284;;;40761:14;41057:3;41050:10;;40458:608;;;40334:732;;;;:::o;41072:831::-;41335:4;41373:3;41362:9;41358:19;41350:27;;41387:71;41455:1;41444:9;41440:17;41431:6;41387:71;:::i;:::-;41468:80;41544:2;41533:9;41529:18;41520:6;41468:80;:::i;:::-;41595:9;41589:4;41585:20;41580:2;41569:9;41565:18;41558:48;41623:108;41726:4;41717:6;41623:108;:::i;:::-;41615:116;;41741:72;41809:2;41798:9;41794:18;41785:6;41741:72;:::i;:::-;41823:73;41891:3;41880:9;41876:19;41867:6;41823:73;:::i;:::-;41072:831;;;;;;;;:::o;41909:807::-;42158:4;42196:3;42185:9;42181:19;42173:27;;42210:71;42278:1;42267:9;42263:17;42254:6;42210:71;:::i;:::-;42291:72;42359:2;42348:9;42344:18;42335:6;42291:72;:::i;:::-;42373:80;42449:2;42438:9;42434:18;42425:6;42373:80;:::i;:::-;42463;42539:2;42528:9;42524:18;42515:6;42463:80;:::i;:::-;42553:73;42621:3;42610:9;42606:19;42597:6;42553:73;:::i;:::-;42636;42704:3;42693:9;42689:19;42680:6;42636:73;:::i;:::-;41909:807;;;;;;;;;:::o;42722:663::-;42810:6;42818;42826;42875:2;42863:9;42854:7;42850:23;42846:32;42843:119;;;42881:79;;:::i;:::-;42843:119;43001:1;43026:64;43082:7;43073:6;43062:9;43058:22;43026:64;:::i;:::-;43016:74;;42972:128;43139:2;43165:64;43221:7;43212:6;43201:9;43197:22;43165:64;:::i;:::-;43155:74;;43110:129;43278:2;43304:64;43360:7;43351:6;43340:9;43336:22;43304:64;:::i;:::-;43294:74;;43249:129;42722:663;;;;;:::o

Swarm Source

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