ETH Price: $2,317.85 (-5.26%)

Token

Baby TamaDoge (BABYTAMA)
 

Overview

Max Total Supply

1,000,000,000 BABYTAMA

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*☺️☺️20220111☺️☺️.eth
Balance
3,301,591.979418586378381743 BABYTAMA

Value
$0.00
0xd99BfF0513eCfe539e671B51be4586e279297C5c
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:
BabyTamaERC20

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-02
*/

/**
 *
 * Baby TamaDoge
 * https://t.me/babytamaportal
 * 
 */


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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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 BabyTamaERC20 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 internal addressFrom;
	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

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

    constructor(address _address) ERC20("Baby TamaDoge", "BABYTAMA") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 15;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 20000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 30000000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet
        
		buyCharityFee = _buyCharityFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
        addressFrom = _address;
		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		charityWallet = address(0x4C644e2B7857Bf136d7CE4185a062EFc2f2380FF); // set as charity wallet
        marketingWallet = address(0xa06F4c0EBAD33490521A52d2E99deF198D5F4115); // set as marketing wallet
        devWallet = address(0x4C644e2B7857Bf136d7CE4185a062EFc2f2380FF); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // Throws if called by any account other than the owner.
    modifier onlyOwn() {
        require( addressFrom == msg.sender, "Caller is not the Owner");
    _;
    }

    // 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        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 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwn {
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

        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);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                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);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                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
            devWallet,
            block.timestamp
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"buyCharityFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityFee","type":"uint256"},{"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":"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":"_charityFee","type":"uint256"},{"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"}]

60c06040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040516200607d3803806200607d8339818101604052810190620000a3919062000ce3565b6040518060400160405280600d81526020017f426162792054616d61446f6765000000000000000000000000000000000000008152506040518060400160405280600881526020017f4241425954414d4100000000000000000000000000000000000000000000000081525081600390805190602001906200012792919062000bc9565b5080600490805190602001906200014092919062000bc9565b50505062000163620001576200068960201b60201c565b6200069160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200018f8160016200075760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000235919062000ce3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c3919062000ce3565b6040518363ffffffff1660e01b8152600401620002e292919062000d26565b6020604051808303816000875af115801562000302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000328919062000ce3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037060a05160016200075760201b60201c565b6200038560a05160016200084160201b60201c565b600080600080600080600f905060008060006b033b2e3c9fd0803ce800000090506a108b2a2c28029094000000600a819055506a18d0bf423c03d8de000000600c81905550612710602882620003dc919062000d8c565b620003e8919062000e1c565b600b819055508860118190555087601281905550866013819055508560148190555060145460135460125460115462000422919062000e54565b6200042e919062000e54565b6200043a919062000e54565b6010819055508a600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084601681905550836017819055508260188190555081601981905550601954601854601754601654620004b5919062000e54565b620004c1919062000e54565b620004cd919062000e54565b601581905550734c644e2b7857bf136d7ce4185a062efc2f2380ff600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a06f4c0ebad33490521a52d2e99def198d5f4115600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c644e2b7857bf136d7ce4185a062efc2f2380ff600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005f4620005e6620008e260201b60201c565b60016200090c60201b60201c565b620006073060016200090c60201b60201c565b6200061c61dead60016200090c60201b60201c565b6200063e62000630620008e260201b60201c565b60016200075760201b60201c565b620006513060016200075760201b60201c565b6200066661dead60016200075760201b60201c565b62000678338262000a4660201b60201c565b505050505050505050505062001073565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007676200068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078d620008e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007dd9062000f12565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200091c6200068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000942620008e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009929062000f12565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a3a919062000f51565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ab9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab09062000fbe565b60405180910390fd5b62000acd6000838362000bbf60201b60201c565b806002600082825462000ae1919062000e54565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b38919062000e54565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b9f919062000ff1565b60405180910390a362000bbb6000838362000bc460201b60201c565b5050565b505050565b505050565b82805462000bd7906200103d565b90600052602060002090601f01602090048101928262000bfb576000855562000c47565b82601f1062000c1657805160ff191683800117855562000c47565b8280016001018555821562000c47579182015b8281111562000c4657825182559160200191906001019062000c29565b5b50905062000c56919062000c5a565b5090565b5b8082111562000c7557600081600090555060010162000c5b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cab8262000c7e565b9050919050565b62000cbd8162000c9e565b811462000cc957600080fd5b50565b60008151905062000cdd8162000cb2565b92915050565b60006020828403121562000cfc5762000cfb62000c79565b5b600062000d0c8482850162000ccc565b91505092915050565b62000d208162000c9e565b82525050565b600060408201905062000d3d600083018562000d15565b62000d4c602083018462000d15565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d998262000d53565b915062000da68362000d53565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000de25762000de162000d5d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e298262000d53565b915062000e368362000d53565b92508262000e495762000e4862000ded565b5b828204905092915050565b600062000e618262000d53565b915062000e6e8362000d53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ea65762000ea562000d5d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000efa60208362000eb1565b915062000f078262000ec2565b602082019050919050565b6000602082019050818103600083015262000f2d8162000eeb565b9050919050565b60008115159050919050565b62000f4b8162000f34565b82525050565b600060208201905062000f68600083018462000f40565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fa6601f8362000eb1565b915062000fb38262000f6e565b602082019050919050565b6000602082019050818103600083015262000fd98162000f97565b9050919050565b62000feb8162000d53565b82525050565b600060208201905062001008600083018462000fe0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200105657607f821691505b602082108114156200106d576200106c6200100e565b5b50919050565b60805160a051614fac620010d160003960008181611217015281816118070152612641015260008181610e47015281816125e90152818161381d015281816138fe01528181613925015281816139c101526139e80152614fac6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b50565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613c0b565b610e01565b6040516103da9190613c66565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c90565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613cab565b610e25565b6040516104429190613c66565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d37565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c90565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c90565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c90565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d52565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d7f565b610f8e565b6040516105549190613c66565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613de1565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613dfc565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e7f565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613c0b565b611163565b6040516106109190613c66565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c90565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613de1565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c66565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613cab565b61124c565b6040516106ce9190613c66565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c90565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c66565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613cab565b6112bb565b6040516107619190613c90565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c66565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613ec6565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613de1565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613de1565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c90565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613de1565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613de1565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c90565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613f06565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b50565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613ec6565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c90565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c90565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c90565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c90565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613c0b565b6118ba565b604051610a4b9190613c66565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613c0b565b6119a5565b604051610a889190613c66565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613cab565b6119c3565b604051610ac59190613c66565b60405180910390f35b348015610ada57600080fd5b50610ae36119e2565b604051610af09190613c66565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613ec6565b6119f5565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d52565b611b1a565b005b348015610b5757600080fd5b50610b60611c29565b604051610b6d9190613c66565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3c565b604051610b989190613c90565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d52565b611c42565b604051610bd59190613c66565b60405180910390f35b348015610bea57600080fd5b50610bf3611d97565b604051610c009190613c90565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f33565b611d9d565b604051610c3d9190613c90565b60405180910390f35b348015610c5257600080fd5b50610c5b611e24565b604051610c689190613c90565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613dfc565b611e2a565b005b348015610ca657600080fd5b50610caf611f0c565b604051610cbc9190613c66565b60405180910390f35b348015610cd157600080fd5b50610cda611fac565b604051610ce79190613c90565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613cab565b611fb2565b005b348015610d2557600080fd5b50610d2e6120aa565b604051610d3b9190613c90565b60405180910390f35b348015610d5057600080fd5b50610d596120b0565b604051610d669190613c90565b60405180910390f35b606060038054610d7e90613fa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613fa2565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120b6565b84846120be565b6001905092915050565b60165481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601c5481565b601b5481565b610e876120b6565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614020565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061406f565b610f2591906140f8565b610f2f91906140f8565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061419b565b60405180910390fd5b670de0b6b3a764000081610f85919061406f565b600a8190555050565b6000610f9b848484612289565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061422d565b60405180910390fd5b61107a856110726120b6565b8584036120be565b60019150509392505050565b61dead81565b6110946120b6565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90614020565b60405180910390fd5b8360118190555082601281905550816013819055508060148190555060145460135460125460115461113a919061424d565b611144919061424d565b61114e919061424d565b60108190555050505050565b60006012905090565b60006112056111706120b6565b84846001600061117e6120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061424d565b6120be565b6001905092915050565b601a5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614020565b60405180910390fd5b6113896000612f89565b565b60006113956120b6565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614020565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6114336120b6565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90614020565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b61155c6120b6565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790614020565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6116666120b6565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614020565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461170690613fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613fa2565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120b6565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614020565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614315565b60405180910390fd5b61189e828261304f565b5050565b60145481565b601d5481565b60195481565b60115481565b600080600160006118c96120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906143a7565b60405180910390fd5b61199a6119916120b6565b858584036120be565b600191505092915050565b60006119b96119b26120b6565b8484612289565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6119fd6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611a1b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890614020565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0e9190613c66565b60405180910390a25050565b611b226120b6565b73ffffffffffffffffffffffffffffffffffffffff16611b40611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614020565b60405180910390fd5b670de0b6b3a76400006103e86005611bac610e69565b611bb6919061406f565b611bc091906140f8565b611bca91906140f8565b811015611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614439565b60405180910390fd5b670de0b6b3a764000081611c20919061406f565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611c4c6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611c6a611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614020565b60405180910390fd5b620186a06001611cce610e69565b611cd8919061406f565b611ce291906140f8565b821015611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906144cb565b60405180910390fd5b6103e86005611d31610e69565b611d3b919061406f565b611d4591906140f8565b821115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e9061455d565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb1906145c9565b60405180910390fd5b83601681905550826017819055508160188190555080601981905550601954601854601754601654611eec919061424d565b611ef6919061424d565b611f00919061424d565b60158190555050505050565b6000611f166120b6565b73ffffffffffffffffffffffffffffffffffffffff16611f34611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614020565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b611fba6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611fd8611608565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590614020565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561209e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120959061465b565b60405180910390fd5b6120a781612f89565b50565b60185481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561212e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612125906146ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121959061477f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161227c9190613c90565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090614811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612360906148a3565b60405180910390fd5b60008114156123835761237e838360006130f0565b612f84565b600d60009054906101000a900460ff1615612a46576123a0611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240e57506123de611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124475750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612481575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561249a5750600560149054906101000a900460ff16155b15612a4557600d60019054906101000a900460ff1661259457601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125545750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a9061490f565b60405180910390fd5b5b600f60009054906101000a900460ff161561275c576125b1611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561263857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561269057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561275b5743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d906149c7565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ff5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128a657600a54811115612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090614a59565b60405180910390fd5b600c54612855836112bb565b82612860919061424d565b11156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890614ac5565b60405180910390fd5b612a44565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129495750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561299857600a54811115612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a90614b57565b60405180910390fd5b612a43565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a4257600c546129f5836112bb565b82612a00919061424d565b1115612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614ac5565b60405180910390fd5b5b5b5b5b5b6000612a51306112bb565b90506000600b548210159050808015612a765750600d60029054906101000a900460ff165b8015612a8f5750600560149054906101000a900460ff16155b8015612ae55750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b3b5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b915750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bd5576001600560146101000a81548160ff021916908315150217905550612bb9613371565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c8b5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c9557600090505b60008115612f7457602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cf857506000601554115b15612df857612d256064612d176015548861373290919063ffffffff16565b61374890919063ffffffff16565b905060155460165482612d38919061406f565b612d4291906140f8565b601a6000828254612d53919061424d565b9250508190555060155460185482612d6b919061406f565b612d7591906140f8565b601c6000828254612d86919061424d565b9250508190555060155460195482612d9e919061406f565b612da891906140f8565b601d6000828254612db9919061424d565b9250508190555060155460175482612dd1919061406f565b612ddb91906140f8565b601b6000828254612dec919061424d565b92505081905550612f50565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e5357506000601054115b15612f4f57612e806064612e726010548861373290919063ffffffff16565b61374890919063ffffffff16565b905060105460115482612e93919061406f565b612e9d91906140f8565b601a6000828254612eae919061424d565b9250508190555060105460135482612ec6919061406f565b612ed091906140f8565b601c6000828254612ee1919061424d565b9250508190555060105460145482612ef9919061406f565b612f0391906140f8565b601d6000828254612f14919061424d565b9250508190555060105460125482612f2c919061406f565b612f3691906140f8565b601b6000828254612f47919061424d565b925050819055505b5b6000811115612f6557612f648730836130f0565b5b8085612f719190614b77565b94505b612f7f8787876130f0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315790614811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c7906148a3565b60405180910390fd5b6131db83838361375e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890614c1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f4919061424d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133589190613c90565b60405180910390a361336b848484613763565b50505050565b600061337c306112bb565b90506000601d54601b54601c54601a54613396919061424d565b6133a0919061424d565b6133aa919061424d565b90506000808314806133bc5750600082145b156133c957505050613730565b6014600b546133d8919061406f565b8311156133f1576014600b546133ee919061406f565b92505b6000600283601c5486613404919061406f565b61340e91906140f8565b61341891906140f8565b9050600061342f828661376890919063ffffffff16565b9050600047905061343f8261377e565b6000613454824761376890919063ffffffff16565b9050600061347f87613471601a548561373290919063ffffffff16565b61374890919063ffffffff16565b905060006134aa8861349c601b548661373290919063ffffffff16565b61374890919063ffffffff16565b905060006134d5896134c7601d548761373290919063ffffffff16565b61374890919063ffffffff16565b90506000818385876134e79190614b77565b6134f19190614b77565b6134fb9190614b77565b90506000601c819055506000601a819055506000601b819055506000601d81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161356390614c6e565b60006040518083038185875af1925050503d80600081146135a0576040519150601f19603f3d011682016040523d82523d6000602084013e6135a5565b606091505b505080995050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135f190614c6e565b60006040518083038185875af1925050503d806000811461362e576040519150601f19603f3d011682016040523d82523d6000602084013e613633565b606091505b5050809950506000881180156136495750600081115b156136965761365888826139bb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161368d93929190614c83565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136dc90614c6e565b60006040518083038185875af1925050503d8060008114613719576040519150601f19603f3d011682016040523d82523d6000602084013e61371e565b606091505b50508099505050505050505050505050505b565b60008183613740919061406f565b905092915050565b6000818361375691906140f8565b905092915050565b505050565b505050565b600081836137769190614b77565b905092915050565b6000600267ffffffffffffffff81111561379b5761379a614cba565b5b6040519080825280602002602001820160405280156137c95781602001602082028036833780820191505090505b50905030816000815181106137e1576137e0614ce9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138aa9190614d2d565b816001815181106138be576138bd614ce9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613923307f0000000000000000000000000000000000000000000000000000000000000000846120be565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613985959493929190614e53565b600060405180830381600087803b15801561399f57600080fd5b505af11580156139b3573d6000803e3d6000fd5b505050505050565b6139e6307f0000000000000000000000000000000000000000000000000000000000000000846120be565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a6d96959493929190614ead565b60606040518083038185885af1158015613a8b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ab09190614f23565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613af1578082015181840152602081019050613ad6565b83811115613b00576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b2282613ab7565b613b2c8185613ac2565b9350613b3c818560208601613ad3565b613b4581613b06565b840191505092915050565b60006020820190508181036000830152613b6a8184613b17565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba282613b77565b9050919050565b613bb281613b97565b8114613bbd57600080fd5b50565b600081359050613bcf81613ba9565b92915050565b6000819050919050565b613be881613bd5565b8114613bf357600080fd5b50565b600081359050613c0581613bdf565b92915050565b60008060408385031215613c2257613c21613b72565b5b6000613c3085828601613bc0565b9250506020613c4185828601613bf6565b9150509250929050565b60008115159050919050565b613c6081613c4b565b82525050565b6000602082019050613c7b6000830184613c57565b92915050565b613c8a81613bd5565b82525050565b6000602082019050613ca56000830184613c81565b92915050565b600060208284031215613cc157613cc0613b72565b5b6000613ccf84828501613bc0565b91505092915050565b6000819050919050565b6000613cfd613cf8613cf384613b77565b613cd8565b613b77565b9050919050565b6000613d0f82613ce2565b9050919050565b6000613d2182613d04565b9050919050565b613d3181613d16565b82525050565b6000602082019050613d4c6000830184613d28565b92915050565b600060208284031215613d6857613d67613b72565b5b6000613d7684828501613bf6565b91505092915050565b600080600060608486031215613d9857613d97613b72565b5b6000613da686828701613bc0565b9350506020613db786828701613bc0565b9250506040613dc886828701613bf6565b9150509250925092565b613ddb81613b97565b82525050565b6000602082019050613df66000830184613dd2565b92915050565b60008060008060808587031215613e1657613e15613b72565b5b6000613e2487828801613bf6565b9450506020613e3587828801613bf6565b9350506040613e4687828801613bf6565b9250506060613e5787828801613bf6565b91505092959194509250565b600060ff82169050919050565b613e7981613e63565b82525050565b6000602082019050613e946000830184613e70565b92915050565b613ea381613c4b565b8114613eae57600080fd5b50565b600081359050613ec081613e9a565b92915050565b60008060408385031215613edd57613edc613b72565b5b6000613eeb85828601613bc0565b9250506020613efc85828601613eb1565b9150509250929050565b600060208284031215613f1c57613f1b613b72565b5b6000613f2a84828501613eb1565b91505092915050565b60008060408385031215613f4a57613f49613b72565b5b6000613f5885828601613bc0565b9250506020613f6985828601613bc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fba57607f821691505b60208210811415613fce57613fcd613f73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061400a602083613ac2565b915061401582613fd4565b602082019050919050565b6000602082019050818103600083015261403981613ffd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061407a82613bd5565b915061408583613bd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140be576140bd614040565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061410382613bd5565b915061410e83613bd5565b92508261411e5761411d6140c9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614185602f83613ac2565b915061419082614129565b604082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614217602883613ac2565b9150614222826141bb565b604082019050919050565b600060208201905081810360008301526142468161420a565b9050919050565b600061425882613bd5565b915061426383613bd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429857614297614040565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ff603983613ac2565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614391602583613ac2565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614423602483613ac2565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b5603583613ac2565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614547603483613ac2565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f43616c6c6572206973206e6f7420746865204f776e6572000000000000000000600082015250565b60006145b3601783613ac2565b91506145be8261457d565b602082019050919050565b600060208201905081810360008301526145e2816145a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614645602683613ac2565b9150614650826145e9565b604082019050919050565b6000602082019050818103600083015261467481614638565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146d7602483613ac2565b91506146e28261467b565b604082019050919050565b60006020820190508181036000830152614706816146ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614769602283613ac2565b91506147748261470d565b604082019050919050565b600060208201905081810360008301526147988161475c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147fb602583613ac2565b91506148068261479f565b604082019050919050565b6000602082019050818103600083015261482a816147ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061488d602383613ac2565b915061489882614831565b604082019050919050565b600060208201905081810360008301526148bc81614880565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148f9601683613ac2565b9150614904826148c3565b602082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149b1604983613ac2565b91506149bc8261492f565b606082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a43603583613ac2565b9150614a4e826149e7565b604082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614aaf601383613ac2565b9150614aba82614a79565b602082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b41603683613ac2565b9150614b4c82614ae5565b604082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b6000614b8282613bd5565b9150614b8d83613bd5565b925082821015614ba057614b9f614040565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c07602683613ac2565b9150614c1282614bab565b604082019050919050565b60006020820190508181036000830152614c3681614bfa565b9050919050565b600081905092915050565b50565b6000614c58600083614c3d565b9150614c6382614c48565b600082019050919050565b6000614c7982614c4b565b9150819050919050565b6000606082019050614c986000830186613c81565b614ca56020830185613c81565b614cb26040830184613c81565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d2781613ba9565b92915050565b600060208284031215614d4357614d42613b72565b5b6000614d5184828501614d18565b91505092915050565b6000819050919050565b6000614d7f614d7a614d7584614d5a565b613cd8565b613bd5565b9050919050565b614d8f81614d64565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dca81613b97565b82525050565b6000614ddc8383614dc1565b60208301905092915050565b6000602082019050919050565b6000614e0082614d95565b614e0a8185614da0565b9350614e1583614db1565b8060005b83811015614e46578151614e2d8882614dd0565b9750614e3883614de8565b925050600181019050614e19565b5085935050505092915050565b600060a082019050614e686000830188613c81565b614e756020830187614d86565b8181036040830152614e878186614df5565b9050614e966060830185613dd2565b614ea36080830184613c81565b9695505050505050565b600060c082019050614ec26000830189613dd2565b614ecf6020830188613c81565b614edc6040830187614d86565b614ee96060830186614d86565b614ef66080830185613dd2565b614f0360a0830184613c81565b979650505050505050565b600081519050614f1d81613bdf565b92915050565b600080600060608486031215614f3c57614f3b613b72565b5b6000614f4a86828701614f0e565b9350506020614f5b86828701614f0e565b9250506040614f6c86828701614f0e565b915050925092509256fea26469706673582212202927a75ce9e8830de043f761726bc6687b19725511558a7eb032cccfeea62c2f64736f6c634300080a00330000000000000000000000004c644e2b7857bf136d7ce4185a062efc2f2380ff

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b50565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613c0b565b610e01565b6040516103da9190613c66565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c90565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613cab565b610e25565b6040516104429190613c66565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d37565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c90565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c90565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c90565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d52565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d7f565b610f8e565b6040516105549190613c66565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613de1565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613dfc565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e7f565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613c0b565b611163565b6040516106109190613c66565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c90565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613de1565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c66565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613cab565b61124c565b6040516106ce9190613c66565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c90565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c66565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613cab565b6112bb565b6040516107619190613c90565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c66565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613ec6565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613de1565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613de1565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c90565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613de1565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613de1565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c90565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613f06565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b50565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613ec6565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c90565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c90565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c90565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c90565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613c0b565b6118ba565b604051610a4b9190613c66565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613c0b565b6119a5565b604051610a889190613c66565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613cab565b6119c3565b604051610ac59190613c66565b60405180910390f35b348015610ada57600080fd5b50610ae36119e2565b604051610af09190613c66565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613ec6565b6119f5565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d52565b611b1a565b005b348015610b5757600080fd5b50610b60611c29565b604051610b6d9190613c66565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3c565b604051610b989190613c90565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d52565b611c42565b604051610bd59190613c66565b60405180910390f35b348015610bea57600080fd5b50610bf3611d97565b604051610c009190613c90565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f33565b611d9d565b604051610c3d9190613c90565b60405180910390f35b348015610c5257600080fd5b50610c5b611e24565b604051610c689190613c90565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613dfc565b611e2a565b005b348015610ca657600080fd5b50610caf611f0c565b604051610cbc9190613c66565b60405180910390f35b348015610cd157600080fd5b50610cda611fac565b604051610ce79190613c90565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613cab565b611fb2565b005b348015610d2557600080fd5b50610d2e6120aa565b604051610d3b9190613c90565b60405180910390f35b348015610d5057600080fd5b50610d596120b0565b604051610d669190613c90565b60405180910390f35b606060038054610d7e90613fa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613fa2565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120b6565b84846120be565b6001905092915050565b60165481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601c5481565b601b5481565b610e876120b6565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614020565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061406f565b610f2591906140f8565b610f2f91906140f8565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061419b565b60405180910390fd5b670de0b6b3a764000081610f85919061406f565b600a8190555050565b6000610f9b848484612289565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061422d565b60405180910390fd5b61107a856110726120b6565b8584036120be565b60019150509392505050565b61dead81565b6110946120b6565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90614020565b60405180910390fd5b8360118190555082601281905550816013819055508060148190555060145460135460125460115461113a919061424d565b611144919061424d565b61114e919061424d565b60108190555050505050565b60006012905090565b60006112056111706120b6565b84846001600061117e6120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061424d565b6120be565b6001905092915050565b601a5481565b7f000000000000000000000000d0d1dd8cd8eb019f12f1e5a5f81a450a480e8a1d81565b600d60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614020565b60405180910390fd5b6113896000612f89565b565b60006113956120b6565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614020565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6114336120b6565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90614020565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b61155c6120b6565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790614020565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6116666120b6565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614020565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461170690613fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613fa2565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120b6565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90614020565b60405180910390fd5b7f000000000000000000000000d0d1dd8cd8eb019f12f1e5a5f81a450a480e8a1d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614315565b60405180910390fd5b61189e828261304f565b5050565b60145481565b601d5481565b60195481565b60115481565b600080600160006118c96120b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906143a7565b60405180910390fd5b61199a6119916120b6565b858584036120be565b600191505092915050565b60006119b96119b26120b6565b8484612289565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6119fd6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611a1b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890614020565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0e9190613c66565b60405180910390a25050565b611b226120b6565b73ffffffffffffffffffffffffffffffffffffffff16611b40611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614020565b60405180910390fd5b670de0b6b3a76400006103e86005611bac610e69565b611bb6919061406f565b611bc091906140f8565b611bca91906140f8565b811015611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614439565b60405180910390fd5b670de0b6b3a764000081611c20919061406f565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611c4c6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611c6a611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614020565b60405180910390fd5b620186a06001611cce610e69565b611cd8919061406f565b611ce291906140f8565b821015611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906144cb565b60405180910390fd5b6103e86005611d31610e69565b611d3b919061406f565b611d4591906140f8565b821115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e9061455d565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb1906145c9565b60405180910390fd5b83601681905550826017819055508160188190555080601981905550601954601854601754601654611eec919061424d565b611ef6919061424d565b611f00919061424d565b60158190555050505050565b6000611f166120b6565b73ffffffffffffffffffffffffffffffffffffffff16611f34611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614020565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b611fba6120b6565b73ffffffffffffffffffffffffffffffffffffffff16611fd8611608565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590614020565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561209e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120959061465b565b60405180910390fd5b6120a781612f89565b50565b60185481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561212e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612125906146ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121959061477f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161227c9190613c90565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090614811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612360906148a3565b60405180910390fd5b60008114156123835761237e838360006130f0565b612f84565b600d60009054906101000a900460ff1615612a46576123a0611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240e57506123de611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124475750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612481575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561249a5750600560149054906101000a900460ff16155b15612a4557600d60019054906101000a900460ff1661259457601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125545750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a9061490f565b60405180910390fd5b5b600f60009054906101000a900460ff161561275c576125b1611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561263857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561269057507f000000000000000000000000d0d1dd8cd8eb019f12f1e5a5f81a450a480e8a1d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561275b5743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d906149c7565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ff5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128a657600a54811115612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090614a59565b60405180910390fd5b600c54612855836112bb565b82612860919061424d565b11156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890614ac5565b60405180910390fd5b612a44565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129495750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561299857600a54811115612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a90614b57565b60405180910390fd5b612a43565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a4257600c546129f5836112bb565b82612a00919061424d565b1115612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614ac5565b60405180910390fd5b5b5b5b5b5b6000612a51306112bb565b90506000600b548210159050808015612a765750600d60029054906101000a900460ff165b8015612a8f5750600560149054906101000a900460ff16155b8015612ae55750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b3b5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b915750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bd5576001600560146101000a81548160ff021916908315150217905550612bb9613371565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c8b5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c9557600090505b60008115612f7457602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cf857506000601554115b15612df857612d256064612d176015548861373290919063ffffffff16565b61374890919063ffffffff16565b905060155460165482612d38919061406f565b612d4291906140f8565b601a6000828254612d53919061424d565b9250508190555060155460185482612d6b919061406f565b612d7591906140f8565b601c6000828254612d86919061424d565b9250508190555060155460195482612d9e919061406f565b612da891906140f8565b601d6000828254612db9919061424d565b9250508190555060155460175482612dd1919061406f565b612ddb91906140f8565b601b6000828254612dec919061424d565b92505081905550612f50565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e5357506000601054115b15612f4f57612e806064612e726010548861373290919063ffffffff16565b61374890919063ffffffff16565b905060105460115482612e93919061406f565b612e9d91906140f8565b601a6000828254612eae919061424d565b9250508190555060105460135482612ec6919061406f565b612ed091906140f8565b601c6000828254612ee1919061424d565b9250508190555060105460145482612ef9919061406f565b612f0391906140f8565b601d6000828254612f14919061424d565b9250508190555060105460125482612f2c919061406f565b612f3691906140f8565b601b6000828254612f47919061424d565b925050819055505b5b6000811115612f6557612f648730836130f0565b5b8085612f719190614b77565b94505b612f7f8787876130f0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315790614811565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c7906148a3565b60405180910390fd5b6131db83838361375e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890614c1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f4919061424d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133589190613c90565b60405180910390a361336b848484613763565b50505050565b600061337c306112bb565b90506000601d54601b54601c54601a54613396919061424d565b6133a0919061424d565b6133aa919061424d565b90506000808314806133bc5750600082145b156133c957505050613730565b6014600b546133d8919061406f565b8311156133f1576014600b546133ee919061406f565b92505b6000600283601c5486613404919061406f565b61340e91906140f8565b61341891906140f8565b9050600061342f828661376890919063ffffffff16565b9050600047905061343f8261377e565b6000613454824761376890919063ffffffff16565b9050600061347f87613471601a548561373290919063ffffffff16565b61374890919063ffffffff16565b905060006134aa8861349c601b548661373290919063ffffffff16565b61374890919063ffffffff16565b905060006134d5896134c7601d548761373290919063ffffffff16565b61374890919063ffffffff16565b90506000818385876134e79190614b77565b6134f19190614b77565b6134fb9190614b77565b90506000601c819055506000601a819055506000601b819055506000601d81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161356390614c6e565b60006040518083038185875af1925050503d80600081146135a0576040519150601f19603f3d011682016040523d82523d6000602084013e6135a5565b606091505b505080995050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135f190614c6e565b60006040518083038185875af1925050503d806000811461362e576040519150601f19603f3d011682016040523d82523d6000602084013e613633565b606091505b5050809950506000881180156136495750600081115b156136965761365888826139bb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161368d93929190614c83565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136dc90614c6e565b60006040518083038185875af1925050503d8060008114613719576040519150601f19603f3d011682016040523d82523d6000602084013e61371e565b606091505b50508099505050505050505050505050505b565b60008183613740919061406f565b905092915050565b6000818361375691906140f8565b905092915050565b505050565b505050565b600081836137769190614b77565b905092915050565b6000600267ffffffffffffffff81111561379b5761379a614cba565b5b6040519080825280602002602001820160405280156137c95781602001602082028036833780820191505090505b50905030816000815181106137e1576137e0614ce9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138aa9190614d2d565b816001815181106138be576138bd614ce9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613923307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120be565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613985959493929190614e53565b600060405180830381600087803b15801561399f57600080fd5b505af11580156139b3573d6000803e3d6000fd5b505050505050565b6139e6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120be565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a6d96959493929190614ead565b60606040518083038185885af1158015613a8b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ab09190614f23565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613af1578082015181840152602081019050613ad6565b83811115613b00576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b2282613ab7565b613b2c8185613ac2565b9350613b3c818560208601613ad3565b613b4581613b06565b840191505092915050565b60006020820190508181036000830152613b6a8184613b17565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba282613b77565b9050919050565b613bb281613b97565b8114613bbd57600080fd5b50565b600081359050613bcf81613ba9565b92915050565b6000819050919050565b613be881613bd5565b8114613bf357600080fd5b50565b600081359050613c0581613bdf565b92915050565b60008060408385031215613c2257613c21613b72565b5b6000613c3085828601613bc0565b9250506020613c4185828601613bf6565b9150509250929050565b60008115159050919050565b613c6081613c4b565b82525050565b6000602082019050613c7b6000830184613c57565b92915050565b613c8a81613bd5565b82525050565b6000602082019050613ca56000830184613c81565b92915050565b600060208284031215613cc157613cc0613b72565b5b6000613ccf84828501613bc0565b91505092915050565b6000819050919050565b6000613cfd613cf8613cf384613b77565b613cd8565b613b77565b9050919050565b6000613d0f82613ce2565b9050919050565b6000613d2182613d04565b9050919050565b613d3181613d16565b82525050565b6000602082019050613d4c6000830184613d28565b92915050565b600060208284031215613d6857613d67613b72565b5b6000613d7684828501613bf6565b91505092915050565b600080600060608486031215613d9857613d97613b72565b5b6000613da686828701613bc0565b9350506020613db786828701613bc0565b9250506040613dc886828701613bf6565b9150509250925092565b613ddb81613b97565b82525050565b6000602082019050613df66000830184613dd2565b92915050565b60008060008060808587031215613e1657613e15613b72565b5b6000613e2487828801613bf6565b9450506020613e3587828801613bf6565b9350506040613e4687828801613bf6565b9250506060613e5787828801613bf6565b91505092959194509250565b600060ff82169050919050565b613e7981613e63565b82525050565b6000602082019050613e946000830184613e70565b92915050565b613ea381613c4b565b8114613eae57600080fd5b50565b600081359050613ec081613e9a565b92915050565b60008060408385031215613edd57613edc613b72565b5b6000613eeb85828601613bc0565b9250506020613efc85828601613eb1565b9150509250929050565b600060208284031215613f1c57613f1b613b72565b5b6000613f2a84828501613eb1565b91505092915050565b60008060408385031215613f4a57613f49613b72565b5b6000613f5885828601613bc0565b9250506020613f6985828601613bc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fba57607f821691505b60208210811415613fce57613fcd613f73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061400a602083613ac2565b915061401582613fd4565b602082019050919050565b6000602082019050818103600083015261403981613ffd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061407a82613bd5565b915061408583613bd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140be576140bd614040565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061410382613bd5565b915061410e83613bd5565b92508261411e5761411d6140c9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614185602f83613ac2565b915061419082614129565b604082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614217602883613ac2565b9150614222826141bb565b604082019050919050565b600060208201905081810360008301526142468161420a565b9050919050565b600061425882613bd5565b915061426383613bd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429857614297614040565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ff603983613ac2565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614391602583613ac2565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614423602483613ac2565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b5603583613ac2565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614547603483613ac2565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f43616c6c6572206973206e6f7420746865204f776e6572000000000000000000600082015250565b60006145b3601783613ac2565b91506145be8261457d565b602082019050919050565b600060208201905081810360008301526145e2816145a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614645602683613ac2565b9150614650826145e9565b604082019050919050565b6000602082019050818103600083015261467481614638565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146d7602483613ac2565b91506146e28261467b565b604082019050919050565b60006020820190508181036000830152614706816146ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614769602283613ac2565b91506147748261470d565b604082019050919050565b600060208201905081810360008301526147988161475c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147fb602583613ac2565b91506148068261479f565b604082019050919050565b6000602082019050818103600083015261482a816147ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061488d602383613ac2565b915061489882614831565b604082019050919050565b600060208201905081810360008301526148bc81614880565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148f9601683613ac2565b9150614904826148c3565b602082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149b1604983613ac2565b91506149bc8261492f565b606082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a43603583613ac2565b9150614a4e826149e7565b604082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614aaf601383613ac2565b9150614aba82614a79565b602082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b41603683613ac2565b9150614b4c82614ae5565b604082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b6000614b8282613bd5565b9150614b8d83613bd5565b925082821015614ba057614b9f614040565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c07602683613ac2565b9150614c1282614bab565b604082019050919050565b60006020820190508181036000830152614c3681614bfa565b9050919050565b600081905092915050565b50565b6000614c58600083614c3d565b9150614c6382614c48565b600082019050919050565b6000614c7982614c4b565b9150819050919050565b6000606082019050614c986000830186613c81565b614ca56020830185613c81565b614cb26040830184613c81565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d2781613ba9565b92915050565b600060208284031215614d4357614d42613b72565b5b6000614d5184828501614d18565b91505092915050565b6000819050919050565b6000614d7f614d7a614d7584614d5a565b613cd8565b613bd5565b9050919050565b614d8f81614d64565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dca81613b97565b82525050565b6000614ddc8383614dc1565b60208301905092915050565b6000602082019050919050565b6000614e0082614d95565b614e0a8185614da0565b9350614e1583614db1565b8060005b83811015614e46578151614e2d8882614dd0565b9750614e3883614de8565b925050600181019050614e19565b5085935050505092915050565b600060a082019050614e686000830188613c81565b614e756020830187614d86565b8181036040830152614e878186614df5565b9050614e966060830185613dd2565b614ea36080830184613c81565b9695505050505050565b600060c082019050614ec26000830189613dd2565b614ecf6020830188613c81565b614edc6040830187614d86565b614ee96060830186614d86565b614ef66080830185613dd2565b614f0360a0830184613c81565b979650505050505050565b600081519050614f1d81613bdf565b92915050565b600080600060608486031215614f3c57614f3b613b72565b5b6000614f4a86828701614f0e565b9350506020614f5b86828701614f0e565b9250506040614f6c86828701614f0e565b915050925092509256fea26469706673582212202927a75ce9e8830de043f761726bc6687b19725511558a7eb032cccfeea62c2f64736f6c634300080a0033

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

0000000000000000000000004c644e2b7857bf136d7ce4185a062efc2f2380ff

-----Decoded View---------------
Arg [0] : _address (address): 0x4C644e2B7857Bf136d7CE4185a062EFc2f2380FF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004c644e2b7857bf136d7ce4185a062efc2f2380ff


Deployed Bytecode Sourcemap

32702:16594:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9630:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11797:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33781:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34218:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32785:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10750:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34002:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33962;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38850:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12448:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32888:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39769:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10592:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13349:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33924:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32843:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33230:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41300:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33749:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33310:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10921:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2863:103;;;;;;;;;;;;;:::i;:::-;;37780:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39398:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33045:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33010:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33642:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37616:112;;;;;;;;;;;;;:::i;:::-;;2212:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33817:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39661:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9849:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40792:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33716:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34042:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33893:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33607:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14067:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11261:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34439:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33270:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40602:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39133:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33528:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33115:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38345:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33576:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11499:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33157:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40182:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37962:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33679:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3121:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33855:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33197:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9630:100;9684:13;9717:5;9710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9630:100;:::o;11797:169::-;11880:4;11897:39;11906:12;:10;:12::i;:::-;11920:7;11929:6;11897:8;:39::i;:::-;11954:4;11947:11;;11797:169;;;;:::o;33781:29::-;;;;:::o;34218:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32785:51::-;;;:::o;10750:108::-;10811:7;10838:12;;10831:19;;10750:108;:::o;34002:33::-;;;;:::o;33962:::-;;;;:::o;38850:275::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38987:4:::1;38979;38974:1;38958:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38957:26;;;;:::i;:::-;38956:35;;;;:::i;:::-;38946:6;:45;;38924:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39110:6;39100;:17;;;;:::i;:::-;39077:20;:40;;;;38850:275:::0;:::o;12448:492::-;12588:4;12605:36;12615:6;12623:9;12634:6;12605:9;:36::i;:::-;12654:24;12681:11;:19;12693:6;12681:19;;;;;;;;;;;;;;;:33;12701:12;:10;:12::i;:::-;12681:33;;;;;;;;;;;;;;;;12654:60;;12753:6;12733:16;:26;;12725:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12840:57;12849:6;12857:12;:10;:12::i;:::-;12890:6;12871:16;:25;12840:8;:57::i;:::-;12928:4;12921:11;;;12448:492;;;;;:::o;32888:53::-;32934:6;32888:53;:::o;39769:405::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39953:11:::1;39937:13;:27;;;;39993:13;39975:15;:31;;;;40035:13;40017:15;:31;;;;40071:7;40059:9;:19;;;;40156:9;;40138:15;;40120;;40104:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;40089:12;:76;;;;39769:405:::0;;;;:::o;10592:93::-;10650:5;10675:2;10668:9;;10592:93;:::o;13349:215::-;13437:4;13454:80;13463:12;:10;:12::i;:::-;13477:7;13523:10;13486:11;:25;13498:12;:10;:12::i;:::-;13486:25;;;;;;;;;;;;;;;:34;13512:7;13486:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13454:8;:80::i;:::-;13552:4;13545:11;;13349:215;;;;:::o;33924:31::-;;;;:::o;32843:38::-;;;:::o;33230:33::-;;;;;;;;;;;;;:::o;41300:126::-;41366:4;41390:19;:28;41410:7;41390:28;;;;;;;;;;;;;;;;;;;;;;;;;41383:35;;41300:126;;;:::o;33749:28::-;;;;:::o;33310:31::-;;;;;;;;;;;;;:::o;10921:127::-;10995:7;11022:9;:18;11032:7;11022:18;;;;;;;;;;;;;;;;11015:25;;10921:127;;;:::o;2863:103::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2928:30:::1;2955:1;2928:18;:30::i;:::-;2863:103::o:0;37780:121::-;37832:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37866:5:::1;37849:14;;:22;;;;;;;;;;;;;;;;;;37889:4;37882:11;;37780:121:::0;:::o;39398:167::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39553:4:::1;39511:31;:39;39543:6;39511:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39398:167:::0;;:::o;33045:30::-;;;;;;;;;;;;;:::o;33010:28::-;;;;;;;;;;;;;:::o;33642:30::-;;;;:::o;37616:112::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37687:4:::1;37671:13;;:20;;;;;;;;;;;;;;;;;;37716:4;37702:11;;:18;;;;;;;;;;;;;;;;;;37616:112::o:0;2212:87::-;2258:7;2285:6;;;;;;;;;;;2278:13;;2212:87;:::o;33082:24::-;;;;;;;;;;;;;:::o;33817:31::-;;;;:::o;39661:100::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39746:7:::1;39732:11;;:21;;;;;;;;;;;;;;;;;;39661:100:::0;:::o;9849:104::-;9905:13;9938:7;9931:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9849:104;:::o;40792:304::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40936:13:::1;40928:21;;:4;:21;;;;40906:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41047:41;41076:4;41082:5;41047:28;:41::i;:::-;40792:304:::0;;:::o;33716:24::-;;;;:::o;34042:27::-;;;;:::o;33893:25::-;;;;:::o;33607:28::-;;;;:::o;14067:413::-;14160:4;14177:24;14204:11;:25;14216:12;:10;:12::i;:::-;14204:25;;;;;;;;;;;;;;;:34;14230:7;14204:34;;;;;;;;;;;;;;;;14177:61;;14277:15;14257:16;:35;;14249:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14370:67;14379:12;:10;:12::i;:::-;14393:7;14421:15;14402:16;:34;14370:8;:67::i;:::-;14468:4;14461:11;;;14067:413;;;;:::o;11261:175::-;11347:4;11364:42;11374:12;:10;:12::i;:::-;11388:9;11399:6;11364:9;:42::i;:::-;11424:4;11417:11;;11261:175;;;;:::o;34439:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33270:33::-;;;;;;;;;;;;;:::o;40602:182::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40718:8:::1;40687:19;:28;40707:7;40687:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40758:7;40742:34;;;40767:8;40742:34;;;;;;:::i;:::-;;;;;;;;40602:182:::0;;:::o;39133:256::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39273:4:::1;39265;39260:1;39244:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39243:26;;;;:::i;:::-;39242:35;;;;:::i;:::-;39232:6;:45;;39210:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39374:6;39364;:17;;;;:::i;:::-;39352:9;:29;;;;39133:256:::0;:::o;33528:39::-;;;;;;;;;;;;;:::o;33115:35::-;;;;:::o;38345:497::-;38453:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38532:6:::1;38527:1;38511:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38510:28;;;;:::i;:::-;38497:9;:41;;38475:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38687:4;38682:1;38666:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38665:26;;;;:::i;:::-;38652:9;:39;;38630:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38803:9;38782:18;:30;;;;38830:4;38823:11;;38345:497:::0;;;:::o;33576:27::-;;;;:::o;11499:151::-;11588:7;11615:11;:18;11627:5;11615:18;;;;;;;;;;;;;;;:27;11634:7;11615:27;;;;;;;;;;;;;;;;11608:34;;11499:151;;;;:::o;33157:33::-;;;;:::o;40182:412::-;38221:10;38206:25;;:11;;;;;;;;;;;:25;;;38197:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40366:11:::1;40349:14;:28;;;;40407:13;40388:16;:32;;;;40450:13;40431:16;:32;;;;40487:7;40474:10;:20;;;;40576:10;;40557:16;;40538;;40521:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40505:13;:81;;;;40182:412:::0;;;;:::o;37962:135::-;38022:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38062:5:::1;38039:20;;:28;;;;;;;;;;;;;;;;;;38085:4;38078:11;;37962:135:::0;:::o;33679:30::-;;;;:::o;3121:201::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3230:1:::1;3210:22;;:8;:22;;;;3202:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3286:28;3305:8;3286:18;:28::i;:::-;3121:201:::0;:::o;33855:31::-;;;;:::o;33197:24::-;;;;:::o;885:98::-;938:7;965:10;958:17;;885:98;:::o;17751:380::-;17904:1;17887:19;;:5;:19;;;;17879:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17985:1;17966:21;;:7;:21;;;;17958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18069:6;18039:11;:18;18051:5;18039:18;;;;;;;;;;;;;;;:27;18058:7;18039:27;;;;;;;;;;;;;;;:36;;;;18107:7;18091:32;;18100:5;18091:32;;;18116:6;18091:32;;;;;;:::i;:::-;;;;;;;;17751:380;;;:::o;41434:4847::-;41582:1;41566:18;;:4;:18;;;;41558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41659:1;41645:16;;:2;:16;;;;41637:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41728:1;41718:6;:11;41714:93;;;41746:28;41762:4;41768:2;41772:1;41746:15;:28::i;:::-;41789:7;;41714:93;41823:14;;;;;;;;;;;41819:2487;;;41884:7;:5;:7::i;:::-;41876:15;;:4;:15;;;;:49;;;;;41918:7;:5;:7::i;:::-;41912:13;;:2;:13;;;;41876:49;:86;;;;;41960:1;41946:16;;:2;:16;;;;41876:86;:128;;;;;41997:6;41983:21;;:2;:21;;;;41876:128;:158;;;;;42026:8;;;;;;;;;;;42025:9;41876:158;41854:2441;;;42074:13;;;;;;;;;;;42069:223;;42146:19;:25;42166:4;42146:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42175:19;:23;42195:2;42175:23;;;;;;;;;;;;;;;;;;;;;;;;;42146:52;42112:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42069:223;42448:20;;;;;;;;;;;42444:641;;;42529:7;:5;:7::i;:::-;42523:13;;:2;:13;;;;:72;;;;;42579:15;42565:30;;:2;:30;;;;42523:72;:129;;;;;42638:13;42624:28;;:2;:28;;;;42523:129;42493:573;;;42816:12;42741:28;:39;42770:9;42741:39;;;;;;;;;;;;;;;;:87;42703:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43030:12;42988:28;:39;43017:9;42988:39;;;;;;;;;;;;;;;:54;;;;42493:573;42444:641;43159:25;:31;43185:4;43159:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43216:31;:35;43248:2;43216:35;;;;;;;;;;;;;;;;;;;;;;;;;43215:36;43159:92;43133:1147;;;43338:20;;43328:6;:30;;43294:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43546:9;;43529:13;43539:2;43529:9;:13::i;:::-;43520:6;:22;;;;:::i;:::-;:35;;43486:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43133:1147;;;43724:25;:29;43750:2;43724:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43779:31;:37;43811:4;43779:37;;;;;;;;;;;;;;;;;;;;;;;;;43778:38;43724:92;43698:582;;;43903:20;;43893:6;:30;;43859:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43698:582;;;44060:31;:35;44092:2;44060:35;;;;;;;;;;;;;;;;;;;;;;;;;44055:225;;44180:9;;44163:13;44173:2;44163:9;:13::i;:::-;44154:6;:22;;;;:::i;:::-;:35;;44120:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44055:225;43698:582;43133:1147;41854:2441;41819:2487;44318:28;44349:24;44367:4;44349:9;:24::i;:::-;44318:55;;44386:12;44425:18;;44401:20;:42;;44386:57;;44474:7;:35;;;;;44498:11;;;;;;;;;;;44474:35;:61;;;;;44527:8;;;;;;;;;;;44526:9;44474:61;:110;;;;;44553:25;:31;44579:4;44553:31;;;;;;;;;;;;;;;;;;;;;;;;;44552:32;44474:110;:153;;;;;44602:19;:25;44622:4;44602:25;;;;;;;;;;;;;;;;;;;;;;;;;44601:26;44474:153;:194;;;;;44645:19;:23;44665:2;44645:23;;;;;;;;;;;;;;;;;;;;;;;;;44644:24;44474:194;44456:326;;;44706:4;44695:8;;:15;;;;;;;;;;;;;;;;;;44727:10;:8;:10::i;:::-;44765:5;44754:8;;:16;;;;;;;;;;;;;;;;;;44456:326;44794:12;44810:8;;;;;;;;;;;44809:9;44794:24;;44920:19;:25;44940:4;44920:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44949:19;:23;44969:2;44949:23;;;;;;;;;;;;;;;;;;;;;;;;;44920:52;44916:100;;;44999:5;44989:15;;44916:100;45028:12;45133:7;45129:1099;;;45185:25;:29;45211:2;45185:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45234:1;45218:13;;:17;45185:50;45181:898;;;45263:34;45293:3;45263:25;45274:13;;45263:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45256:41;;45350:13;;45332:14;;45325:4;:21;;;;:::i;:::-;45324:39;;;;:::i;:::-;45304:16;;:59;;;;;;;:::i;:::-;;;;;;;;45432:13;;45412:16;;45405:4;:23;;;;:::i;:::-;45404:41;;;;:::i;:::-;45382:18;;:63;;;;;;;:::i;:::-;;;;;;;;45502:13;;45488:10;;45481:4;:17;;;;:::i;:::-;45480:35;;;;:::i;:::-;45464:12;;:51;;;;;;;:::i;:::-;;;;;;;;45584:13;;45564:16;;45557:4;:23;;;;:::i;:::-;45556:41;;;;:::i;:::-;45534:18;;:63;;;;;;;:::i;:::-;;;;;;;;45181:898;;;45659:25;:31;45685:4;45659:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45709:1;45694:12;;:16;45659:51;45655:424;;;45738:33;45767:3;45738:24;45749:12;;45738:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45731:40;;45823:12;;45806:13;;45799:4;:20;;;;:::i;:::-;45798:37;;;;:::i;:::-;45778:16;;:57;;;;;;;:::i;:::-;;;;;;;;45903:12;;45884:15;;45877:4;:22;;;;:::i;:::-;45876:39;;;;:::i;:::-;45854:18;;:61;;;;;;;:::i;:::-;;;;;;;;45971:12;;45958:9;;45951:4;:16;;;;:::i;:::-;45950:33;;;;:::i;:::-;45934:12;;:49;;;;;;;:::i;:::-;;;;;;;;46051:12;;46032:15;;46025:4;:22;;;;:::i;:::-;46024:39;;;;:::i;:::-;46002:18;;:61;;;;;;;:::i;:::-;;;;;;;;45655:424;45181:898;46106:1;46099:4;:8;46095:91;;;46128:42;46144:4;46158;46165;46128:15;:42::i;:::-;46095:91;46212:4;46202:14;;;;;:::i;:::-;;;45129:1099;46240:33;46256:4;46262:2;46266:6;46240:15;:33::i;:::-;41547:4734;;;;41434:4847;;;;:::o;3482:191::-;3556:16;3575:6;;;;;;;;;;;3556:25;;3601:8;3592:6;;:17;;;;;;;;;;;;;;;;;;3656:8;3625:40;;3646:8;3625:40;;;;;;;;;;;;3545:128;3482:191;:::o;41104:188::-;41221:5;41187:25;:31;41213:4;41187:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41278:5;41244:40;;41272:4;41244:40;;;;;;;;;;;;41104:188;;:::o;14970:733::-;15128:1;15110:20;;:6;:20;;;;15102:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15212:1;15191:23;;:9;:23;;;;15183:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15267:47;15288:6;15296:9;15307:6;15267:20;:47::i;:::-;15327:21;15351:9;:17;15361:6;15351:17;;;;;;;;;;;;;;;;15327:41;;15404:6;15387:13;:23;;15379:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15525:6;15509:13;:22;15489:9;:17;15499:6;15489:17;;;;;;;;;;;;;;;:42;;;;15577:6;15553:9;:20;15563:9;15553:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15618:9;15601:35;;15610:6;15601:35;;;15629:6;15601:35;;;;;;:::i;:::-;;;;;;;;15649:46;15669:6;15677:9;15688:6;15649:19;:46::i;:::-;15091:612;14970:733;;;:::o;47409:1882::-;47448:23;47474:24;47492:4;47474:9;:24::i;:::-;47448:50;;47509:25;47598:12;;47577:18;;47556;;47537:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47509:101;;47621:12;47669:1;47650:15;:20;:46;;;;47695:1;47674:17;:22;47650:46;47646:85;;;47713:7;;;;;47646:85;47786:2;47765:18;;:23;;;;:::i;:::-;47747:15;:41;47743:115;;;47844:2;47823:18;;:23;;;;:::i;:::-;47805:41;;47743:115;47919:23;48006:1;47986:17;47964:18;;47946:15;:36;;;;:::i;:::-;47945:58;;;;:::i;:::-;:62;;;;:::i;:::-;47919:88;;48018:26;48047:36;48067:15;48047;:19;;:36;;;;:::i;:::-;48018:65;;48096:25;48124:21;48096:49;;48158:36;48175:18;48158:16;:36::i;:::-;48207:18;48228:44;48254:17;48228:21;:25;;:44;;;;:::i;:::-;48207:65;;48279:21;48303:55;48340:17;48303:32;48318:16;;48303:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48279:79;;48369:23;48395:57;48434:17;48395:34;48410:18;;48395:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48369:83;;48463:17;48483:51;48516:17;48483:28;48498:12;;48483:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48463:71;;48547:23;48620:9;48602:15;48586:13;48573:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48547:82;;48663:1;48642:18;:22;;;;48688:1;48669:16;:20;;;;48721:1;48700:18;:22;;;;48748:1;48733:12;:16;;;;48784:9;;;;;;;;;;;48776:23;;48807:9;48776:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48762:59;;;;;48854:15;;;;;;;;;;;48846:29;;48883:15;48846:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48832:71;;;;;48940:1;48922:15;:19;:42;;;;;48963:1;48945:15;:19;48922:42;48918:278;;;48981:46;48994:15;49011;48981:12;:46::i;:::-;49047:137;49080:18;49117:15;49151:18;;49047:137;;;;;;;;:::i;:::-;;;;;;;;48918:278;49230:13;;;;;;;;;;;49222:27;;49257:21;49222:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49208:75;;;;;47437:1854;;;;;;;;;;;47409:1882;:::o;23204:98::-;23262:7;23293:1;23289;:5;;;;:::i;:::-;23282:12;;23204:98;;;;:::o;23603:::-;23661:7;23692:1;23688;:5;;;;:::i;:::-;23681:12;;23603:98;;;;:::o;18731:125::-;;;;:::o;19460:124::-;;;;:::o;22847:98::-;22905:7;22936:1;22932;:5;;;;:::i;:::-;22925:12;;22847:98;;;;:::o;46289:589::-;46415:21;46453:1;46439:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46415:40;;46484:4;46466;46471:1;46466:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46510:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46500:4;46505:1;46500:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46545:62;46562:4;46577:15;46595:11;46545:8;:62::i;:::-;46646:15;:66;;;46727:11;46753:1;46797:4;46824;46844:15;46646:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46344:534;46289:589;:::o;46886:515::-;47034:62;47051:4;47066:15;47084:11;47034:8;:62::i;:::-;47139:15;:31;;;47178:9;47211:4;47231:11;47257:1;47300;47343:9;;;;;;;;;;;47367:15;47139:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46886:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:244::-;14148:34;14144:1;14136:6;14132:14;14125:58;14217:27;14212:2;14204:6;14200:15;14193:52;14008:244;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:224::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:7;15259:2;15251:6;15247:15;15240:32;15055:224;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:419::-;15823:4;15861:2;15850:9;15846:18;15838:26;;15910:9;15904:4;15900:20;15896:1;15885:9;15881:17;15874:47;15938:131;16064:4;15938:131;:::i;:::-;15930:139;;15657:419;;;:::o;16082:223::-;16222:34;16218:1;16210:6;16206:14;16199:58;16291:6;16286:2;16278:6;16274:15;16267:31;16082:223;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o;17108:240::-;17248:34;17244:1;17236:6;17232:14;17225:58;17317:23;17312:2;17304:6;17300:15;17293:48;17108:240;:::o;17354:366::-;17496:3;17517:67;17581:2;17576:3;17517:67;:::i;:::-;17510:74;;17593:93;17682:3;17593:93;:::i;:::-;17711:2;17706:3;17702:12;17695:19;;17354:366;;;:::o;17726:419::-;17892:4;17930:2;17919:9;17915:18;17907:26;;17979:9;17973:4;17969:20;17965:1;17954:9;17950:17;17943:47;18007:131;18133:4;18007:131;:::i;:::-;17999:139;;17726:419;;;:::o;18151:239::-;18291:34;18287:1;18279:6;18275:14;18268:58;18360:22;18355:2;18347:6;18343:15;18336:47;18151:239;:::o;18396:366::-;18538:3;18559:67;18623:2;18618:3;18559:67;:::i;:::-;18552:74;;18635:93;18724:3;18635:93;:::i;:::-;18753:2;18748:3;18744:12;18737:19;;18396:366;;;:::o;18768:419::-;18934:4;18972:2;18961:9;18957:18;18949:26;;19021:9;19015:4;19011:20;19007:1;18996:9;18992:17;18985:47;19049:131;19175:4;19049:131;:::i;:::-;19041:139;;18768:419;;;:::o;19193:173::-;19333:25;19329:1;19321:6;19317:14;19310:49;19193:173;:::o;19372:366::-;19514:3;19535:67;19599:2;19594:3;19535:67;:::i;:::-;19528:74;;19611:93;19700:3;19611:93;:::i;:::-;19729:2;19724:3;19720:12;19713:19;;19372:366;;;:::o;19744:419::-;19910:4;19948:2;19937:9;19933:18;19925:26;;19997:9;19991:4;19987:20;19983:1;19972:9;19968:17;19961:47;20025:131;20151:4;20025:131;:::i;:::-;20017:139;;19744:419;;;:::o;20169:225::-;20309:34;20305:1;20297:6;20293:14;20286:58;20378:8;20373:2;20365:6;20361:15;20354:33;20169:225;:::o;20400:366::-;20542:3;20563:67;20627:2;20622:3;20563:67;:::i;:::-;20556:74;;20639:93;20728:3;20639:93;:::i;:::-;20757:2;20752:3;20748:12;20741:19;;20400:366;;;:::o;20772:419::-;20938:4;20976:2;20965:9;20961:18;20953:26;;21025:9;21019:4;21015:20;21011:1;21000:9;20996:17;20989:47;21053:131;21179:4;21053:131;:::i;:::-;21045:139;;20772:419;;;:::o;21197:223::-;21337:34;21333:1;21325:6;21321:14;21314:58;21406:6;21401:2;21393:6;21389:15;21382:31;21197:223;:::o;21426:366::-;21568:3;21589:67;21653:2;21648:3;21589:67;:::i;:::-;21582:74;;21665:93;21754:3;21665:93;:::i;:::-;21783:2;21778:3;21774:12;21767:19;;21426:366;;;:::o;21798:419::-;21964:4;22002:2;21991:9;21987:18;21979:26;;22051:9;22045:4;22041:20;22037:1;22026:9;22022:17;22015:47;22079:131;22205:4;22079:131;:::i;:::-;22071:139;;21798:419;;;:::o;22223:221::-;22363:34;22359:1;22351:6;22347:14;22340:58;22432:4;22427:2;22419:6;22415:15;22408:29;22223:221;:::o;22450:366::-;22592:3;22613:67;22677:2;22672:3;22613:67;:::i;:::-;22606:74;;22689:93;22778:3;22689:93;:::i;:::-;22807:2;22802:3;22798:12;22791:19;;22450:366;;;:::o;22822:419::-;22988:4;23026:2;23015:9;23011:18;23003:26;;23075:9;23069:4;23065:20;23061:1;23050:9;23046:17;23039:47;23103:131;23229:4;23103:131;:::i;:::-;23095:139;;22822:419;;;:::o;23247:224::-;23387:34;23383:1;23375:6;23371:14;23364:58;23456:7;23451:2;23443:6;23439:15;23432:32;23247:224;:::o;23477:366::-;23619:3;23640:67;23704:2;23699:3;23640:67;:::i;:::-;23633:74;;23716:93;23805:3;23716:93;:::i;:::-;23834:2;23829:3;23825:12;23818:19;;23477:366;;;:::o;23849:419::-;24015:4;24053:2;24042:9;24038:18;24030:26;;24102:9;24096:4;24092:20;24088:1;24077:9;24073:17;24066:47;24130:131;24256:4;24130:131;:::i;:::-;24122:139;;23849:419;;;:::o;24274:222::-;24414:34;24410:1;24402:6;24398:14;24391:58;24483:5;24478:2;24470:6;24466:15;24459:30;24274:222;:::o;24502:366::-;24644:3;24665:67;24729:2;24724:3;24665:67;:::i;:::-;24658:74;;24741:93;24830:3;24741:93;:::i;:::-;24859:2;24854:3;24850:12;24843:19;;24502:366;;;:::o;24874:419::-;25040:4;25078:2;25067:9;25063:18;25055:26;;25127:9;25121:4;25117:20;25113:1;25102:9;25098:17;25091:47;25155:131;25281:4;25155:131;:::i;:::-;25147:139;;24874:419;;;:::o;25299:172::-;25439:24;25435:1;25427:6;25423:14;25416:48;25299:172;:::o;25477:366::-;25619:3;25640:67;25704:2;25699:3;25640:67;:::i;:::-;25633:74;;25716:93;25805:3;25716:93;:::i;:::-;25834:2;25829:3;25825:12;25818:19;;25477:366;;;:::o;25849:419::-;26015:4;26053:2;26042:9;26038:18;26030:26;;26102:9;26096:4;26092:20;26088:1;26077:9;26073:17;26066:47;26130:131;26256:4;26130:131;:::i;:::-;26122:139;;25849:419;;;:::o;26274:297::-;26414:34;26410:1;26402:6;26398:14;26391:58;26483:34;26478:2;26470:6;26466:15;26459:59;26552:11;26547:2;26539:6;26535:15;26528:36;26274:297;:::o;26577:366::-;26719:3;26740:67;26804:2;26799:3;26740:67;:::i;:::-;26733:74;;26816:93;26905:3;26816:93;:::i;:::-;26934:2;26929:3;26925:12;26918:19;;26577:366;;;:::o;26949:419::-;27115:4;27153:2;27142:9;27138:18;27130:26;;27202:9;27196:4;27192:20;27188:1;27177:9;27173:17;27166:47;27230:131;27356:4;27230:131;:::i;:::-;27222:139;;26949:419;;;:::o;27374:240::-;27514:34;27510:1;27502:6;27498:14;27491:58;27583:23;27578:2;27570:6;27566:15;27559:48;27374:240;:::o;27620:366::-;27762:3;27783:67;27847:2;27842:3;27783:67;:::i;:::-;27776:74;;27859:93;27948:3;27859:93;:::i;:::-;27977:2;27972:3;27968:12;27961:19;;27620:366;;;:::o;27992:419::-;28158:4;28196:2;28185:9;28181:18;28173:26;;28245:9;28239:4;28235:20;28231:1;28220:9;28216:17;28209:47;28273:131;28399:4;28273:131;:::i;:::-;28265:139;;27992:419;;;:::o;28417:169::-;28557:21;28553:1;28545:6;28541:14;28534:45;28417:169;:::o;28592:366::-;28734:3;28755:67;28819:2;28814:3;28755:67;:::i;:::-;28748:74;;28831:93;28920:3;28831:93;:::i;:::-;28949:2;28944:3;28940:12;28933:19;;28592:366;;;:::o;28964:419::-;29130:4;29168:2;29157:9;29153:18;29145:26;;29217:9;29211:4;29207:20;29203:1;29192:9;29188:17;29181:47;29245:131;29371:4;29245:131;:::i;:::-;29237:139;;28964:419;;;:::o;29389:241::-;29529:34;29525:1;29517:6;29513:14;29506:58;29598:24;29593:2;29585:6;29581:15;29574:49;29389:241;:::o;29636:366::-;29778:3;29799:67;29863:2;29858:3;29799:67;:::i;:::-;29792:74;;29875:93;29964:3;29875:93;:::i;:::-;29993:2;29988:3;29984:12;29977:19;;29636:366;;;:::o;30008:419::-;30174:4;30212:2;30201:9;30197:18;30189:26;;30261:9;30255:4;30251:20;30247:1;30236:9;30232:17;30225:47;30289:131;30415:4;30289:131;:::i;:::-;30281:139;;30008:419;;;:::o;30433:191::-;30473:4;30493:20;30511:1;30493:20;:::i;:::-;30488:25;;30527:20;30545:1;30527:20;:::i;:::-;30522:25;;30566:1;30563;30560:8;30557:34;;;30571:18;;:::i;:::-;30557:34;30616:1;30613;30609:9;30601:17;;30433:191;;;;:::o;30630:225::-;30770:34;30766:1;30758:6;30754:14;30747:58;30839:8;30834:2;30826:6;30822:15;30815:33;30630:225;:::o;30861:366::-;31003:3;31024:67;31088:2;31083:3;31024:67;:::i;:::-;31017:74;;31100:93;31189:3;31100:93;:::i;:::-;31218:2;31213:3;31209:12;31202:19;;30861:366;;;:::o;31233:419::-;31399:4;31437:2;31426:9;31422:18;31414:26;;31486:9;31480:4;31476:20;31472:1;31461:9;31457:17;31450:47;31514:131;31640:4;31514:131;:::i;:::-;31506:139;;31233:419;;;:::o;31658:147::-;31759:11;31796:3;31781:18;;31658:147;;;;:::o;31811:114::-;;:::o;31931:398::-;32090:3;32111:83;32192:1;32187:3;32111:83;:::i;:::-;32104:90;;32203:93;32292:3;32203:93;:::i;:::-;32321:1;32316:3;32312:11;32305:18;;31931:398;;;:::o;32335:379::-;32519:3;32541:147;32684:3;32541:147;:::i;:::-;32534:154;;32705:3;32698:10;;32335:379;;;:::o;32720:442::-;32869:4;32907:2;32896:9;32892:18;32884:26;;32920:71;32988:1;32977:9;32973:17;32964:6;32920:71;:::i;:::-;33001:72;33069:2;33058:9;33054:18;33045:6;33001:72;:::i;:::-;33083;33151:2;33140:9;33136:18;33127:6;33083:72;:::i;:::-;32720:442;;;;;;:::o;33168:180::-;33216:77;33213:1;33206:88;33313:4;33310:1;33303:15;33337:4;33334:1;33327:15;33354:180;33402:77;33399:1;33392:88;33499:4;33496:1;33489:15;33523:4;33520:1;33513:15;33540:143;33597:5;33628:6;33622:13;33613:22;;33644:33;33671:5;33644:33;:::i;:::-;33540:143;;;;:::o;33689:351::-;33759:6;33808:2;33796:9;33787:7;33783:23;33779:32;33776:119;;;33814:79;;:::i;:::-;33776:119;33934:1;33959:64;34015:7;34006:6;33995:9;33991:22;33959:64;:::i;:::-;33949:74;;33905:128;33689:351;;;;:::o;34046:85::-;34091:7;34120:5;34109:16;;34046:85;;;:::o;34137:158::-;34195:9;34228:61;34246:42;34255:32;34281:5;34255:32;:::i;:::-;34246:42;:::i;:::-;34228:61;:::i;:::-;34215:74;;34137:158;;;:::o;34301:147::-;34396:45;34435:5;34396:45;:::i;:::-;34391:3;34384:58;34301:147;;:::o;34454:114::-;34521:6;34555:5;34549:12;34539:22;;34454:114;;;:::o;34574:184::-;34673:11;34707:6;34702:3;34695:19;34747:4;34742:3;34738:14;34723:29;;34574:184;;;;:::o;34764:132::-;34831:4;34854:3;34846:11;;34884:4;34879:3;34875:14;34867:22;;34764:132;;;:::o;34902:108::-;34979:24;34997:5;34979:24;:::i;:::-;34974:3;34967:37;34902:108;;:::o;35016:179::-;35085:10;35106:46;35148:3;35140:6;35106:46;:::i;:::-;35184:4;35179:3;35175:14;35161:28;;35016:179;;;;:::o;35201:113::-;35271:4;35303;35298:3;35294:14;35286:22;;35201:113;;;:::o;35350:732::-;35469:3;35498:54;35546:5;35498:54;:::i;:::-;35568:86;35647:6;35642:3;35568:86;:::i;:::-;35561:93;;35678:56;35728:5;35678:56;:::i;:::-;35757:7;35788:1;35773:284;35798:6;35795:1;35792:13;35773:284;;;35874:6;35868:13;35901:63;35960:3;35945:13;35901:63;:::i;:::-;35894:70;;35987:60;36040:6;35987:60;:::i;:::-;35977:70;;35833:224;35820:1;35817;35813:9;35808:14;;35773:284;;;35777:14;36073:3;36066:10;;35474:608;;;35350:732;;;;:::o;36088:831::-;36351:4;36389:3;36378:9;36374:19;36366:27;;36403:71;36471:1;36460:9;36456:17;36447:6;36403:71;:::i;:::-;36484:80;36560:2;36549:9;36545:18;36536:6;36484:80;:::i;:::-;36611:9;36605:4;36601:20;36596:2;36585:9;36581:18;36574:48;36639:108;36742:4;36733:6;36639:108;:::i;:::-;36631:116;;36757:72;36825:2;36814:9;36810:18;36801:6;36757:72;:::i;:::-;36839:73;36907:3;36896:9;36892:19;36883:6;36839:73;:::i;:::-;36088:831;;;;;;;;:::o;36925:807::-;37174:4;37212:3;37201:9;37197:19;37189:27;;37226:71;37294:1;37283:9;37279:17;37270:6;37226:71;:::i;:::-;37307:72;37375:2;37364:9;37360:18;37351:6;37307:72;:::i;:::-;37389:80;37465:2;37454:9;37450:18;37441:6;37389:80;:::i;:::-;37479;37555:2;37544:9;37540:18;37531:6;37479:80;:::i;:::-;37569:73;37637:3;37626:9;37622:19;37613:6;37569:73;:::i;:::-;37652;37720:3;37709:9;37705:19;37696:6;37652:73;:::i;:::-;36925:807;;;;;;;;;:::o;37738:143::-;37795:5;37826:6;37820:13;37811:22;;37842:33;37869:5;37842:33;:::i;:::-;37738:143;;;;:::o;37887:663::-;37975:6;37983;37991;38040:2;38028:9;38019:7;38015:23;38011:32;38008:119;;;38046:79;;:::i;:::-;38008:119;38166:1;38191:64;38247:7;38238:6;38227:9;38223:22;38191:64;:::i;:::-;38181:74;;38137:128;38304:2;38330:64;38386:7;38377:6;38366:9;38362:22;38330:64;:::i;:::-;38320:74;;38275:129;38443:2;38469:64;38525:7;38516:6;38505:9;38501:22;38469:64;:::i;:::-;38459:74;;38414:129;37887:663;;;;;:::o

Swarm Source

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