ETH Price: $3,721.33 (+3.61%)

Token

ERC-20: Bitcoin Max (bMAX)
 

Overview

Max Total Supply

21,000,000 bMAX

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
372,348.9 bMAX

Value
$0.00
0xdc66ddecd799b88eeee8dd6737f0ed1b1a45669e
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:
bMAX

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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 bMAX is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

	address public 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 = true;

    // 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() ERC20("Bitcoin Max", "bMAX") {
        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 = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 21000000 * 1e18;

        maxTransactionAmount = 420000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 420000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

		charityWallet = address(0xdf05AA81612B26026D35eAeeAb4Ba9df32e9e12c); // set as charity wallet
        marketingWallet = address(0xdf05AA81612B26026D35eAeeAb4Ba9df32e9e12c); // set as marketing wallet
        devWallet = address(0xdf05AA81612B26026D35eAeeAb4Ba9df32e9e12c); // 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;
    }

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

//Max Buy Fee 10%
    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) public {
        require(devWallet == _msgSender());
		require((_charityFee + _marketingFee + _liquidityFee ) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

//Max Sell Fee 10%
    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) public {
        require(devWallet == _msgSender());
		require((_charityFee + _marketingFee + _liquidityFee ) <= 10, "Max SellFee 10%");
		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":[],"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":"_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"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f426974636f696e204d61780000000000000000000000000000000000000000008152506040518060400160405280600481526020017f624d41580000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b63565b5080600490805190602001906200011b92919062000b63565b5050506200013e620001326200062360201b60201c565b6200062b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006f160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c7d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c7d565b6040518363ffffffff1660e01b8152600401620002bd92919062000cc0565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c7d565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006f160201b60201c565b6200036060a0516001620007db60201b60201c565b600080600a9050600080600080600a905060008060006a115eec47f6cf7e3500000090506958f03ee118a13e8000006009819055506958f03ee118a13e800000600b81905550612710600a82620003b8919062000d26565b620003c4919062000db6565b600a8190555088601081905550876011819055508660128190555085601381905550601354601254601154601054620003fe919062000dee565b6200040a919062000dee565b62000416919062000dee565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000450919062000dee565b6200045c919062000dee565b62000468919062000dee565b60148190555073df05aa81612b26026d35eaeeab4ba9df32e9e12c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df05aa81612b26026d35eaeeab4ba9df32e9e12c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df05aa81612b26026d35eaeeab4ba9df32e9e12c600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200058f620005816200087c60201b60201c565b6001620008a660201b60201c565b620005a2306001620008a660201b60201c565b620005b761dead6001620008a660201b60201c565b620005d9620005cb6200087c60201b60201c565b6001620006f160201b60201c565b620005ec306001620006f160201b60201c565b6200060161dead6001620006f160201b60201c565b620006133382620009e060201b60201c565b505050505050505050506200100d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007016200062360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007276200087c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007779062000eac565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b66200062360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008dc6200087c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092c9062000eac565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d4919062000eeb565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4a9062000f58565b60405180910390fd5b62000a676000838362000b5960201b60201c565b806002600082825462000a7b919062000dee565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad2919062000dee565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b39919062000f8b565b60405180910390a362000b556000838362000b5e60201b60201c565b5050565b505050565b505050565b82805462000b719062000fd7565b90600052602060002090601f01602090048101928262000b95576000855562000be1565b82601f1062000bb057805160ff191683800117855562000be1565b8280016001018555821562000be1579182015b8281111562000be057825182559160200191906001019062000bc3565b5b50905062000bf0919062000bf4565b5090565b5b8082111562000c0f57600081600090555060010162000bf5565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c458262000c18565b9050919050565b62000c578162000c38565b811462000c6357600080fd5b50565b60008151905062000c778162000c4c565b92915050565b60006020828403121562000c965762000c9562000c13565b5b600062000ca68482850162000c66565b91505092915050565b62000cba8162000c38565b82525050565b600060408201905062000cd7600083018562000caf565b62000ce6602083018462000caf565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d338262000ced565b915062000d408362000ced565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d7c5762000d7b62000cf7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc38262000ced565b915062000dd08362000ced565b92508262000de35762000de262000d87565b5b828204905092915050565b600062000dfb8262000ced565b915062000e088362000ced565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e405762000e3f62000cf7565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9460208362000e4b565b915062000ea18262000e5c565b602082019050919050565b6000602082019050818103600083015262000ec78162000e85565b9050919050565b60008115159050919050565b62000ee58162000ece565b82525050565b600060208201905062000f02600083018462000eda565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f40601f8362000e4b565b915062000f4d8262000f08565b602082019050919050565b6000602082019050818103600083015262000f738162000f31565b9050919050565b62000f858162000ced565b82525050565b600060208201905062000fa2600083018462000f7a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff057607f821691505b6020821081141562001007576200100662000fa8565b5b50919050565b60805160a051614cb96200106b600039600081816110bf015281816116af0152612406015260008181610dbf015281816123ae015281816135e2015281816136c3015281816136ea0152818161378601526137ad0152614cb96000f3fe6080604052600436106103395760003560e01c80638da5cb5b116101ab578063bbc0c742116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c3d578063f2fde38b14610c68578063f637434214610c91578063f8b45b0514610cbc57610340565b8063e2f4560514610bbe578063e7ad9fcd14610be9578063e884f26014610c1257610340565b8063c8c8ebe4116100d1578063c8c8ebe414610aee578063d257b34f14610b19578063d85ba06314610b56578063dd62ed3e14610b8157610340565b8063bbc0c74214610a6f578063c024666814610a9a578063c876d0b914610ac357610340565b80639c3b4fdc11610164578063a1dc92bc1161013e578063a1dc92bc1461098d578063a457c2d7146109b8578063a9059cbb146109f5578063b62496f514610a3257610340565b80639c3b4fdc1461090c5780639fccce3214610937578063a0d82dc51461096257610340565b80638da5cb5b1461080e5780638ea5220f146108395780639213691314610864578063924de9b71461088f57806395d89b41146108b85780639a7a23d6146108e357610340565b806344249f0411610285578063715018a61161022357806375f0a874116101fd57806375f0a874146107765780637b208769146107a15780637bce5a04146107cc5780638a8c523c146107f757610340565b8063715018a61461070b578063751039fc146107225780637571336a1461074d57610340565b80634fbee1931161025f5780634fbee1931461063b5780636a486a8e146106785780636ddd1713146106a357806370a08231146106ce57610340565b806344249f04146105ba57806349bd5a5e146105e55780634a62bb651461061057610340565b80631a8145bb116102f257806327c8f835116102cc57806327c8f835146104fe5780632e6ed7ef14610529578063313ce56714610552578063395093511461057d57610340565b80631a8145bb1461046b5780631f3fed8f1461049657806323b872dd146104c157610340565b806306fdde0314610345578063095ea7b3146103705780630d7f1441146103ad57806310d5de53146103d85780631694505e1461041557806318160ddd1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610ce7565b6040516103679190613915565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906139d0565b610d79565b6040516103a49190613a2b565b60405180910390f35b3480156103b957600080fd5b506103c2610d97565b6040516103cf9190613a55565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613a70565b610d9d565b60405161040c9190613a2b565b60405180910390f35b34801561042157600080fd5b5061042a610dbd565b6040516104379190613afc565b60405180910390f35b34801561044c57600080fd5b50610455610de1565b6040516104629190613a55565b60405180910390f35b34801561047757600080fd5b50610480610deb565b60405161048d9190613a55565b60405180910390f35b3480156104a257600080fd5b506104ab610df1565b6040516104b89190613a55565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190613b17565b610df7565b6040516104f59190613a2b565b60405180910390f35b34801561050a57600080fd5b50610513610eef565b6040516105209190613b79565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613b94565b610ef5565b005b34801561055e57600080fd5b50610567611002565b6040516105749190613c17565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906139d0565b61100b565b6040516105b19190613a2b565b60405180910390f35b3480156105c657600080fd5b506105cf6110b7565b6040516105dc9190613a55565b60405180910390f35b3480156105f157600080fd5b506105fa6110bd565b6040516106079190613b79565b60405180910390f35b34801561061c57600080fd5b506106256110e1565b6040516106329190613a2b565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613a70565b6110f4565b60405161066f9190613a2b565b60405180910390f35b34801561068457600080fd5b5061068d61114a565b60405161069a9190613a55565b60405180910390f35b3480156106af57600080fd5b506106b8611150565b6040516106c59190613a2b565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613a70565b611163565b6040516107029190613a55565b60405180910390f35b34801561071757600080fd5b506107206111ab565b005b34801561072e57600080fd5b50610737611233565b6040516107449190613a2b565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c5e565b6112d3565b005b34801561078257600080fd5b5061078b6113aa565b6040516107989190613b79565b60405180910390f35b3480156107ad57600080fd5b506107b66113d0565b6040516107c39190613b79565b60405180910390f35b3480156107d857600080fd5b506107e16113f6565b6040516107ee9190613a55565b60405180910390f35b34801561080357600080fd5b5061080c6113fc565b005b34801561081a57600080fd5b506108236114b0565b6040516108309190613b79565b60405180910390f35b34801561084557600080fd5b5061084e6114da565b60405161085b9190613b79565b60405180910390f35b34801561087057600080fd5b50610879611500565b6040516108869190613a55565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190613c9e565b611506565b005b3480156108c457600080fd5b506108cd61159f565b6040516108da9190613915565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613c5e565b611631565b005b34801561091857600080fd5b5061092161174a565b60405161092e9190613a55565b60405180910390f35b34801561094357600080fd5b5061094c611750565b6040516109599190613a55565b60405180910390f35b34801561096e57600080fd5b50610977611756565b6040516109849190613a55565b60405180910390f35b34801561099957600080fd5b506109a261175c565b6040516109af9190613a55565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906139d0565b611762565b6040516109ec9190613a2b565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a1791906139d0565b61184d565b604051610a299190613a2b565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a549190613a70565b61186b565b604051610a669190613a2b565b60405180910390f35b348015610a7b57600080fd5b50610a8461188b565b604051610a919190613a2b565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc9190613c5e565b61189e565b005b348015610acf57600080fd5b50610ad86119c3565b604051610ae59190613a2b565b60405180910390f35b348015610afa57600080fd5b50610b036119d6565b604051610b109190613a55565b60405180910390f35b348015610b2557600080fd5b50610b406004803603810190610b3b9190613ccb565b6119dc565b604051610b4d9190613a2b565b60405180910390f35b348015610b6257600080fd5b50610b6b611b31565b604051610b789190613a55565b60405180910390f35b348015610b8d57600080fd5b50610ba86004803603810190610ba39190613cf8565b611b37565b604051610bb59190613a55565b60405180910390f35b348015610bca57600080fd5b50610bd3611bbe565b604051610be09190613a55565b60405180910390f35b348015610bf557600080fd5b50610c106004803603810190610c0b9190613b94565b611bc4565b005b348015610c1e57600080fd5b50610c27611cd1565b604051610c349190613a2b565b60405180910390f35b348015610c4957600080fd5b50610c52611d71565b604051610c5f9190613a55565b60405180910390f35b348015610c7457600080fd5b50610c8f6004803603810190610c8a9190613a70565b611d77565b005b348015610c9d57600080fd5b50610ca6611e6f565b604051610cb39190613a55565b60405180910390f35b348015610cc857600080fd5b50610cd1611e75565b604051610cde9190613a55565b60405180910390f35b606060038054610cf690613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290613d67565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6000610d8d610d86611e7b565b8484611e83565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b6000610e0484848461204e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e4f611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613e0b565b60405180910390fd5b610ee385610edb611e7b565b858403611e83565b60019150509392505050565b61dead81565b610efd611e7b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5657600080fd5b600a828486610f659190613e5a565b610f6f9190613e5a565b1115610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613efc565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610fe29190613e5a565b610fec9190613e5a565b610ff69190613e5a565b600f8190555050505050565b60006012905090565b60006110ad611018611e7b565b848460016000611026611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a89190613e5a565b611e83565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b3611e7b565b73ffffffffffffffffffffffffffffffffffffffff166111d16114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613f68565b60405180910390fd5b6112316000612d4e565b565b600061123d611e7b565b73ffffffffffffffffffffffffffffffffffffffff1661125b6114b0565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613f68565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6112db611e7b565b73ffffffffffffffffffffffffffffffffffffffff166112f96114b0565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613f68565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611404611e7b565b73ffffffffffffffffffffffffffffffffffffffff166114226114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613f68565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b61150e611e7b565b73ffffffffffffffffffffffffffffffffffffffff1661152c6114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613f68565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546115ae90613d67565b80601f01602080910402602001604051908101604052809291908181526020018280546115da90613d67565b80156116275780601f106115fc57610100808354040283529160200191611627565b820191906000526020600020905b81548152906001019060200180831161160a57829003601f168201915b5050505050905090565b611639611e7b565b73ffffffffffffffffffffffffffffffffffffffff166116576114b0565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490613f68565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613ffa565b60405180910390fd5b6117468282612e14565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611771611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061408c565b60405180910390fd5b611842611839611e7b565b85858403611e83565b600191505092915050565b600061186161185a611e7b565b848461204e565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6118a6611e7b565b73ffffffffffffffffffffffffffffffffffffffff166118c46114b0565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613f68565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119b79190613a2b565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b60006119e6611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611a046114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190613f68565b60405180910390fd5b620186a06001611a68610de1565b611a7291906140ac565b611a7c9190614135565b821015611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906141d8565b60405180910390fd5b6103e86005611acb610de1565b611ad591906140ac565b611adf9190614135565b821115611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b189061426a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611bcc611e7b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2557600080fd5b600a828486611c349190613e5a565b611c3e9190613e5a565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906142d6565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611cb19190613e5a565b611cbb9190613e5a565b611cc59190613e5a565b60148190555050505050565b6000611cdb611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611cf96114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613f68565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611d7f611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611d9d6114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613f68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614368565b60405180910390fd5b611e6c81612d4e565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a9061448c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120419190613a55565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b59061451e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612125906145b0565b60405180910390fd5b60008114156121485761214383836000612eb5565b612d49565b600c60009054906101000a900460ff161561280b576121656114b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121d357506121a36114b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561220c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612246575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561225f5750600560149054906101000a900460ff16155b1561280a57600c60019054906101000a900460ff1661235957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123195750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061461c565b60405180910390fd5b5b600e60009054906101000a900460ff1615612521576123766114b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156123fd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561245557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156125205743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906146d4565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125c45750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561266b5760095481111561260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260590614766565b60405180910390fd5b600b5461261a83611163565b826126259190613e5a565b1115612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906147d2565b60405180910390fd5b612809565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561270e5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561275d57600954811115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614864565b60405180910390fd5b612808565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661280757600b546127ba83611163565b826127c59190613e5a565b1115612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd906147d2565b60405180910390fd5b5b5b5b5b5b600061281630611163565b90506000600a54821015905080801561283b5750600c60029054906101000a900460ff165b80156128545750600560149054906101000a900460ff16155b80156128aa5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129005750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129565750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561299a576001600560146101000a81548160ff02191690831515021790555061297e613136565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a505750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a5a57600090505b60008115612d3957601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612abd57506000601454115b15612bbd57612aea6064612adc601454886134f790919063ffffffff16565b61350d90919063ffffffff16565b905060145460155482612afd91906140ac565b612b079190614135565b60196000828254612b189190613e5a565b9250508190555060145460175482612b3091906140ac565b612b3a9190614135565b601b6000828254612b4b9190613e5a565b9250508190555060145460185482612b6391906140ac565b612b6d9190614135565b601c6000828254612b7e9190613e5a565b9250508190555060145460165482612b9691906140ac565b612ba09190614135565b601a6000828254612bb19190613e5a565b92505081905550612d15565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1857506000600f54115b15612d1457612c456064612c37600f54886134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600f5460105482612c5891906140ac565b612c629190614135565b60196000828254612c739190613e5a565b92505081905550600f5460125482612c8b91906140ac565b612c959190614135565b601b6000828254612ca69190613e5a565b92505081905550600f5460135482612cbe91906140ac565b612cc89190614135565b601c6000828254612cd99190613e5a565b92505081905550600f5460115482612cf191906140ac565b612cfb9190614135565b601a6000828254612d0c9190613e5a565b925050819055505b5b6000811115612d2a57612d29873083612eb5565b5b8085612d369190614884565b94505b612d44878787612eb5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1c9061451e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c906145b0565b60405180910390fd5b612fa0838383613523565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d9061492a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b99190613e5a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161311d9190613a55565b60405180910390a3613130848484613528565b50505050565b600061314130611163565b90506000601c54601a54601b5460195461315b9190613e5a565b6131659190613e5a565b61316f9190613e5a565b90506000808314806131815750600082145b1561318e575050506134f5565b6014600a5461319d91906140ac565b8311156131b6576014600a546131b391906140ac565b92505b6000600283601b54866131c991906140ac565b6131d39190614135565b6131dd9190614135565b905060006131f4828661352d90919063ffffffff16565b9050600047905061320482613543565b6000613219824761352d90919063ffffffff16565b9050600061324487613236601954856134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600061326f88613261601a54866134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600061329a8961328c601c54876134f790919063ffffffff16565b61350d90919063ffffffff16565b90506000818385876132ac9190614884565b6132b69190614884565b6132c09190614884565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133289061497b565b60006040518083038185875af1925050503d8060008114613365576040519150601f19603f3d011682016040523d82523d6000602084013e61336a565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516133b69061497b565b60006040518083038185875af1925050503d80600081146133f3576040519150601f19603f3d011682016040523d82523d6000602084013e6133f8565b606091505b50508099505060008811801561340e5750600081115b1561345b5761341d8882613780565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161345293929190614990565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134a19061497b565b60006040518083038185875af1925050503d80600081146134de576040519150601f19603f3d011682016040523d82523d6000602084013e6134e3565b606091505b50508099505050505050505050505050505b565b6000818361350591906140ac565b905092915050565b6000818361351b9190614135565b905092915050565b505050565b505050565b6000818361353b9190614884565b905092915050565b6000600267ffffffffffffffff8111156135605761355f6149c7565b5b60405190808252806020026020018201604052801561358e5781602001602082028036833780820191505090505b50905030816000815181106135a6576135a56149f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561364b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061366f9190614a3a565b81600181518110613683576136826149f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136e8307f000000000000000000000000000000000000000000000000000000000000000084611e83565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161374a959493929190614b60565b600060405180830381600087803b15801561376457600080fd5b505af1158015613778573d6000803e3d6000fd5b505050505050565b6137ab307f000000000000000000000000000000000000000000000000000000000000000084611e83565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161383296959493929190614bba565b60606040518083038185885af1158015613850573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138759190614c30565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138b657808201518184015260208101905061389b565b838111156138c5576000848401525b50505050565b6000601f19601f8301169050919050565b60006138e78261387c565b6138f18185613887565b9350613901818560208601613898565b61390a816138cb565b840191505092915050565b6000602082019050818103600083015261392f81846138dc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139678261393c565b9050919050565b6139778161395c565b811461398257600080fd5b50565b6000813590506139948161396e565b92915050565b6000819050919050565b6139ad8161399a565b81146139b857600080fd5b50565b6000813590506139ca816139a4565b92915050565b600080604083850312156139e7576139e6613937565b5b60006139f585828601613985565b9250506020613a06858286016139bb565b9150509250929050565b60008115159050919050565b613a2581613a10565b82525050565b6000602082019050613a406000830184613a1c565b92915050565b613a4f8161399a565b82525050565b6000602082019050613a6a6000830184613a46565b92915050565b600060208284031215613a8657613a85613937565b5b6000613a9484828501613985565b91505092915050565b6000819050919050565b6000613ac2613abd613ab88461393c565b613a9d565b61393c565b9050919050565b6000613ad482613aa7565b9050919050565b6000613ae682613ac9565b9050919050565b613af681613adb565b82525050565b6000602082019050613b116000830184613aed565b92915050565b600080600060608486031215613b3057613b2f613937565b5b6000613b3e86828701613985565b9350506020613b4f86828701613985565b9250506040613b60868287016139bb565b9150509250925092565b613b738161395c565b82525050565b6000602082019050613b8e6000830184613b6a565b92915050565b60008060008060808587031215613bae57613bad613937565b5b6000613bbc878288016139bb565b9450506020613bcd878288016139bb565b9350506040613bde878288016139bb565b9250506060613bef878288016139bb565b91505092959194509250565b600060ff82169050919050565b613c1181613bfb565b82525050565b6000602082019050613c2c6000830184613c08565b92915050565b613c3b81613a10565b8114613c4657600080fd5b50565b600081359050613c5881613c32565b92915050565b60008060408385031215613c7557613c74613937565b5b6000613c8385828601613985565b9250506020613c9485828601613c49565b9150509250929050565b600060208284031215613cb457613cb3613937565b5b6000613cc284828501613c49565b91505092915050565b600060208284031215613ce157613ce0613937565b5b6000613cef848285016139bb565b91505092915050565b60008060408385031215613d0f57613d0e613937565b5b6000613d1d85828601613985565b9250506020613d2e85828601613985565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7f57607f821691505b60208210811415613d9357613d92613d38565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613df5602883613887565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e658261399a565b9150613e708361399a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea557613ea4613e2b565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000613ee6600e83613887565b9150613ef182613eb0565b602082019050919050565b60006020820190508181036000830152613f1581613ed9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f52602083613887565b9150613f5d82613f1c565b602082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613fe4603983613887565b9150613fef82613f88565b604082019050919050565b6000602082019050818103600083015261401381613fd7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614076602583613887565b91506140818261401a565b604082019050919050565b600060208201905081810360008301526140a581614069565b9050919050565b60006140b78261399a565b91506140c28361399a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140fb576140fa613e2b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141408261399a565b915061414b8361399a565b92508261415b5761415a614106565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141c2603583613887565b91506141cd82614166565b604082019050919050565b600060208201905081810360008301526141f1816141b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614254603483613887565b915061425f826141f8565b604082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006142c0600f83613887565b91506142cb8261428a565b602082019050919050565b600060208201905081810360008301526142ef816142b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614352602683613887565b915061435d826142f6565b604082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143e4602483613887565b91506143ef82614388565b604082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614476602283613887565b91506144818261441a565b604082019050919050565b600060208201905081810360008301526144a581614469565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614508602583613887565b9150614513826144ac565b604082019050919050565b60006020820190508181036000830152614537816144fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061459a602383613887565b91506145a58261453e565b604082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614606601683613887565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146be604983613887565b91506146c98261463c565b606082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614750603583613887565b915061475b826146f4565b604082019050919050565b6000602082019050818103600083015261477f81614743565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147bc601383613887565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061484e603683613887565b9150614859826147f2565b604082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b600061488f8261399a565b915061489a8361399a565b9250828210156148ad576148ac613e2b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614914602683613887565b915061491f826148b8565b604082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b600081905092915050565b50565b600061496560008361494a565b915061497082614955565b600082019050919050565b600061498682614958565b9150819050919050565b60006060820190506149a56000830186613a46565b6149b26020830185613a46565b6149bf6040830184613a46565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a348161396e565b92915050565b600060208284031215614a5057614a4f613937565b5b6000614a5e84828501614a25565b91505092915050565b6000819050919050565b6000614a8c614a87614a8284614a67565b613a9d565b61399a565b9050919050565b614a9c81614a71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ad78161395c565b82525050565b6000614ae98383614ace565b60208301905092915050565b6000602082019050919050565b6000614b0d82614aa2565b614b178185614aad565b9350614b2283614abe565b8060005b83811015614b53578151614b3a8882614add565b9750614b4583614af5565b925050600181019050614b26565b5085935050505092915050565b600060a082019050614b756000830188613a46565b614b826020830187614a93565b8181036040830152614b948186614b02565b9050614ba36060830185613b6a565b614bb06080830184613a46565b9695505050505050565b600060c082019050614bcf6000830189613b6a565b614bdc6020830188613a46565b614be96040830187614a93565b614bf66060830186614a93565b614c036080830185613b6a565b614c1060a0830184613a46565b979650505050505050565b600081519050614c2a816139a4565b92915050565b600080600060608486031215614c4957614c48613937565b5b6000614c5786828701614c1b565b9350506020614c6886828701614c1b565b9250506040614c7986828701614c1b565b915050925092509256fea2646970667358221220298e4bc5b0479f04e11433b653baa5b1375a0765270da3758f8f1ba4053d822964736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103395760003560e01c80638da5cb5b116101ab578063bbc0c742116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c3d578063f2fde38b14610c68578063f637434214610c91578063f8b45b0514610cbc57610340565b8063e2f4560514610bbe578063e7ad9fcd14610be9578063e884f26014610c1257610340565b8063c8c8ebe4116100d1578063c8c8ebe414610aee578063d257b34f14610b19578063d85ba06314610b56578063dd62ed3e14610b8157610340565b8063bbc0c74214610a6f578063c024666814610a9a578063c876d0b914610ac357610340565b80639c3b4fdc11610164578063a1dc92bc1161013e578063a1dc92bc1461098d578063a457c2d7146109b8578063a9059cbb146109f5578063b62496f514610a3257610340565b80639c3b4fdc1461090c5780639fccce3214610937578063a0d82dc51461096257610340565b80638da5cb5b1461080e5780638ea5220f146108395780639213691314610864578063924de9b71461088f57806395d89b41146108b85780639a7a23d6146108e357610340565b806344249f0411610285578063715018a61161022357806375f0a874116101fd57806375f0a874146107765780637b208769146107a15780637bce5a04146107cc5780638a8c523c146107f757610340565b8063715018a61461070b578063751039fc146107225780637571336a1461074d57610340565b80634fbee1931161025f5780634fbee1931461063b5780636a486a8e146106785780636ddd1713146106a357806370a08231146106ce57610340565b806344249f04146105ba57806349bd5a5e146105e55780634a62bb651461061057610340565b80631a8145bb116102f257806327c8f835116102cc57806327c8f835146104fe5780632e6ed7ef14610529578063313ce56714610552578063395093511461057d57610340565b80631a8145bb1461046b5780631f3fed8f1461049657806323b872dd146104c157610340565b806306fdde0314610345578063095ea7b3146103705780630d7f1441146103ad57806310d5de53146103d85780631694505e1461041557806318160ddd1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610ce7565b6040516103679190613915565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906139d0565b610d79565b6040516103a49190613a2b565b60405180910390f35b3480156103b957600080fd5b506103c2610d97565b6040516103cf9190613a55565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613a70565b610d9d565b60405161040c9190613a2b565b60405180910390f35b34801561042157600080fd5b5061042a610dbd565b6040516104379190613afc565b60405180910390f35b34801561044c57600080fd5b50610455610de1565b6040516104629190613a55565b60405180910390f35b34801561047757600080fd5b50610480610deb565b60405161048d9190613a55565b60405180910390f35b3480156104a257600080fd5b506104ab610df1565b6040516104b89190613a55565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190613b17565b610df7565b6040516104f59190613a2b565b60405180910390f35b34801561050a57600080fd5b50610513610eef565b6040516105209190613b79565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613b94565b610ef5565b005b34801561055e57600080fd5b50610567611002565b6040516105749190613c17565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906139d0565b61100b565b6040516105b19190613a2b565b60405180910390f35b3480156105c657600080fd5b506105cf6110b7565b6040516105dc9190613a55565b60405180910390f35b3480156105f157600080fd5b506105fa6110bd565b6040516106079190613b79565b60405180910390f35b34801561061c57600080fd5b506106256110e1565b6040516106329190613a2b565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613a70565b6110f4565b60405161066f9190613a2b565b60405180910390f35b34801561068457600080fd5b5061068d61114a565b60405161069a9190613a55565b60405180910390f35b3480156106af57600080fd5b506106b8611150565b6040516106c59190613a2b565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613a70565b611163565b6040516107029190613a55565b60405180910390f35b34801561071757600080fd5b506107206111ab565b005b34801561072e57600080fd5b50610737611233565b6040516107449190613a2b565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c5e565b6112d3565b005b34801561078257600080fd5b5061078b6113aa565b6040516107989190613b79565b60405180910390f35b3480156107ad57600080fd5b506107b66113d0565b6040516107c39190613b79565b60405180910390f35b3480156107d857600080fd5b506107e16113f6565b6040516107ee9190613a55565b60405180910390f35b34801561080357600080fd5b5061080c6113fc565b005b34801561081a57600080fd5b506108236114b0565b6040516108309190613b79565b60405180910390f35b34801561084557600080fd5b5061084e6114da565b60405161085b9190613b79565b60405180910390f35b34801561087057600080fd5b50610879611500565b6040516108869190613a55565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190613c9e565b611506565b005b3480156108c457600080fd5b506108cd61159f565b6040516108da9190613915565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613c5e565b611631565b005b34801561091857600080fd5b5061092161174a565b60405161092e9190613a55565b60405180910390f35b34801561094357600080fd5b5061094c611750565b6040516109599190613a55565b60405180910390f35b34801561096e57600080fd5b50610977611756565b6040516109849190613a55565b60405180910390f35b34801561099957600080fd5b506109a261175c565b6040516109af9190613a55565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906139d0565b611762565b6040516109ec9190613a2b565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a1791906139d0565b61184d565b604051610a299190613a2b565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a549190613a70565b61186b565b604051610a669190613a2b565b60405180910390f35b348015610a7b57600080fd5b50610a8461188b565b604051610a919190613a2b565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc9190613c5e565b61189e565b005b348015610acf57600080fd5b50610ad86119c3565b604051610ae59190613a2b565b60405180910390f35b348015610afa57600080fd5b50610b036119d6565b604051610b109190613a55565b60405180910390f35b348015610b2557600080fd5b50610b406004803603810190610b3b9190613ccb565b6119dc565b604051610b4d9190613a2b565b60405180910390f35b348015610b6257600080fd5b50610b6b611b31565b604051610b789190613a55565b60405180910390f35b348015610b8d57600080fd5b50610ba86004803603810190610ba39190613cf8565b611b37565b604051610bb59190613a55565b60405180910390f35b348015610bca57600080fd5b50610bd3611bbe565b604051610be09190613a55565b60405180910390f35b348015610bf557600080fd5b50610c106004803603810190610c0b9190613b94565b611bc4565b005b348015610c1e57600080fd5b50610c27611cd1565b604051610c349190613a2b565b60405180910390f35b348015610c4957600080fd5b50610c52611d71565b604051610c5f9190613a55565b60405180910390f35b348015610c7457600080fd5b50610c8f6004803603810190610c8a9190613a70565b611d77565b005b348015610c9d57600080fd5b50610ca6611e6f565b604051610cb39190613a55565b60405180910390f35b348015610cc857600080fd5b50610cd1611e75565b604051610cde9190613a55565b60405180910390f35b606060038054610cf690613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290613d67565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6000610d8d610d86611e7b565b8484611e83565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b6000610e0484848461204e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e4f611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613e0b565b60405180910390fd5b610ee385610edb611e7b565b858403611e83565b60019150509392505050565b61dead81565b610efd611e7b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5657600080fd5b600a828486610f659190613e5a565b610f6f9190613e5a565b1115610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613efc565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610fe29190613e5a565b610fec9190613e5a565b610ff69190613e5a565b600f8190555050505050565b60006012905090565b60006110ad611018611e7b565b848460016000611026611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a89190613e5a565b611e83565b6001905092915050565b60195481565b7f0000000000000000000000009adc3ef7173103832bbd1fd9093cdda86c333c7781565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b3611e7b565b73ffffffffffffffffffffffffffffffffffffffff166111d16114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613f68565b60405180910390fd5b6112316000612d4e565b565b600061123d611e7b565b73ffffffffffffffffffffffffffffffffffffffff1661125b6114b0565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613f68565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6112db611e7b565b73ffffffffffffffffffffffffffffffffffffffff166112f96114b0565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613f68565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611404611e7b565b73ffffffffffffffffffffffffffffffffffffffff166114226114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613f68565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b61150e611e7b565b73ffffffffffffffffffffffffffffffffffffffff1661152c6114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613f68565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546115ae90613d67565b80601f01602080910402602001604051908101604052809291908181526020018280546115da90613d67565b80156116275780601f106115fc57610100808354040283529160200191611627565b820191906000526020600020905b81548152906001019060200180831161160a57829003601f168201915b5050505050905090565b611639611e7b565b73ffffffffffffffffffffffffffffffffffffffff166116576114b0565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490613f68565b60405180910390fd5b7f0000000000000000000000009adc3ef7173103832bbd1fd9093cdda86c333c7773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613ffa565b60405180910390fd5b6117468282612e14565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611771611e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061408c565b60405180910390fd5b611842611839611e7b565b85858403611e83565b600191505092915050565b600061186161185a611e7b565b848461204e565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6118a6611e7b565b73ffffffffffffffffffffffffffffffffffffffff166118c46114b0565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613f68565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119b79190613a2b565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b60006119e6611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611a046114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190613f68565b60405180910390fd5b620186a06001611a68610de1565b611a7291906140ac565b611a7c9190614135565b821015611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906141d8565b60405180910390fd5b6103e86005611acb610de1565b611ad591906140ac565b611adf9190614135565b821115611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b189061426a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611bcc611e7b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2557600080fd5b600a828486611c349190613e5a565b611c3e9190613e5a565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906142d6565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611cb19190613e5a565b611cbb9190613e5a565b611cc59190613e5a565b60148190555050505050565b6000611cdb611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611cf96114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613f68565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611d7f611e7b565b73ffffffffffffffffffffffffffffffffffffffff16611d9d6114b0565b73ffffffffffffffffffffffffffffffffffffffff1614611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613f68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614368565b60405180910390fd5b611e6c81612d4e565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a9061448c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120419190613a55565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b59061451e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612125906145b0565b60405180910390fd5b60008114156121485761214383836000612eb5565b612d49565b600c60009054906101000a900460ff161561280b576121656114b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121d357506121a36114b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561220c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612246575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561225f5750600560149054906101000a900460ff16155b1561280a57600c60019054906101000a900460ff1661235957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123195750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f9061461c565b60405180910390fd5b5b600e60009054906101000a900460ff1615612521576123766114b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156123fd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561245557507f0000000000000000000000009adc3ef7173103832bbd1fd9093cdda86c333c7773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156125205743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906146d4565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125c45750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561266b5760095481111561260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260590614766565b60405180910390fd5b600b5461261a83611163565b826126259190613e5a565b1115612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d906147d2565b60405180910390fd5b612809565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561270e5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561275d57600954811115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614864565b60405180910390fd5b612808565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661280757600b546127ba83611163565b826127c59190613e5a565b1115612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd906147d2565b60405180910390fd5b5b5b5b5b5b600061281630611163565b90506000600a54821015905080801561283b5750600c60029054906101000a900460ff165b80156128545750600560149054906101000a900460ff16155b80156128aa5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129005750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129565750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561299a576001600560146101000a81548160ff02191690831515021790555061297e613136565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a505750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a5a57600090505b60008115612d3957601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612abd57506000601454115b15612bbd57612aea6064612adc601454886134f790919063ffffffff16565b61350d90919063ffffffff16565b905060145460155482612afd91906140ac565b612b079190614135565b60196000828254612b189190613e5a565b9250508190555060145460175482612b3091906140ac565b612b3a9190614135565b601b6000828254612b4b9190613e5a565b9250508190555060145460185482612b6391906140ac565b612b6d9190614135565b601c6000828254612b7e9190613e5a565b9250508190555060145460165482612b9691906140ac565b612ba09190614135565b601a6000828254612bb19190613e5a565b92505081905550612d15565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1857506000600f54115b15612d1457612c456064612c37600f54886134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600f5460105482612c5891906140ac565b612c629190614135565b60196000828254612c739190613e5a565b92505081905550600f5460125482612c8b91906140ac565b612c959190614135565b601b6000828254612ca69190613e5a565b92505081905550600f5460135482612cbe91906140ac565b612cc89190614135565b601c6000828254612cd99190613e5a565b92505081905550600f5460115482612cf191906140ac565b612cfb9190614135565b601a6000828254612d0c9190613e5a565b925050819055505b5b6000811115612d2a57612d29873083612eb5565b5b8085612d369190614884565b94505b612d44878787612eb5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1c9061451e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c906145b0565b60405180910390fd5b612fa0838383613523565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d9061492a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b99190613e5a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161311d9190613a55565b60405180910390a3613130848484613528565b50505050565b600061314130611163565b90506000601c54601a54601b5460195461315b9190613e5a565b6131659190613e5a565b61316f9190613e5a565b90506000808314806131815750600082145b1561318e575050506134f5565b6014600a5461319d91906140ac565b8311156131b6576014600a546131b391906140ac565b92505b6000600283601b54866131c991906140ac565b6131d39190614135565b6131dd9190614135565b905060006131f4828661352d90919063ffffffff16565b9050600047905061320482613543565b6000613219824761352d90919063ffffffff16565b9050600061324487613236601954856134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600061326f88613261601a54866134f790919063ffffffff16565b61350d90919063ffffffff16565b9050600061329a8961328c601c54876134f790919063ffffffff16565b61350d90919063ffffffff16565b90506000818385876132ac9190614884565b6132b69190614884565b6132c09190614884565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133289061497b565b60006040518083038185875af1925050503d8060008114613365576040519150601f19603f3d011682016040523d82523d6000602084013e61336a565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516133b69061497b565b60006040518083038185875af1925050503d80600081146133f3576040519150601f19603f3d011682016040523d82523d6000602084013e6133f8565b606091505b50508099505060008811801561340e5750600081115b1561345b5761341d8882613780565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161345293929190614990565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134a19061497b565b60006040518083038185875af1925050503d80600081146134de576040519150601f19603f3d011682016040523d82523d6000602084013e6134e3565b606091505b50508099505050505050505050505050505b565b6000818361350591906140ac565b905092915050565b6000818361351b9190614135565b905092915050565b505050565b505050565b6000818361353b9190614884565b905092915050565b6000600267ffffffffffffffff8111156135605761355f6149c7565b5b60405190808252806020026020018201604052801561358e5781602001602082028036833780820191505090505b50905030816000815181106135a6576135a56149f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561364b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061366f9190614a3a565b81600181518110613683576136826149f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136e8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e83565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161374a959493929190614b60565b600060405180830381600087803b15801561376457600080fd5b505af1158015613778573d6000803e3d6000fd5b505050505050565b6137ab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e83565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161383296959493929190614bba565b60606040518083038185885af1158015613850573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138759190614c30565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138b657808201518184015260208101905061389b565b838111156138c5576000848401525b50505050565b6000601f19601f8301169050919050565b60006138e78261387c565b6138f18185613887565b9350613901818560208601613898565b61390a816138cb565b840191505092915050565b6000602082019050818103600083015261392f81846138dc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139678261393c565b9050919050565b6139778161395c565b811461398257600080fd5b50565b6000813590506139948161396e565b92915050565b6000819050919050565b6139ad8161399a565b81146139b857600080fd5b50565b6000813590506139ca816139a4565b92915050565b600080604083850312156139e7576139e6613937565b5b60006139f585828601613985565b9250506020613a06858286016139bb565b9150509250929050565b60008115159050919050565b613a2581613a10565b82525050565b6000602082019050613a406000830184613a1c565b92915050565b613a4f8161399a565b82525050565b6000602082019050613a6a6000830184613a46565b92915050565b600060208284031215613a8657613a85613937565b5b6000613a9484828501613985565b91505092915050565b6000819050919050565b6000613ac2613abd613ab88461393c565b613a9d565b61393c565b9050919050565b6000613ad482613aa7565b9050919050565b6000613ae682613ac9565b9050919050565b613af681613adb565b82525050565b6000602082019050613b116000830184613aed565b92915050565b600080600060608486031215613b3057613b2f613937565b5b6000613b3e86828701613985565b9350506020613b4f86828701613985565b9250506040613b60868287016139bb565b9150509250925092565b613b738161395c565b82525050565b6000602082019050613b8e6000830184613b6a565b92915050565b60008060008060808587031215613bae57613bad613937565b5b6000613bbc878288016139bb565b9450506020613bcd878288016139bb565b9350506040613bde878288016139bb565b9250506060613bef878288016139bb565b91505092959194509250565b600060ff82169050919050565b613c1181613bfb565b82525050565b6000602082019050613c2c6000830184613c08565b92915050565b613c3b81613a10565b8114613c4657600080fd5b50565b600081359050613c5881613c32565b92915050565b60008060408385031215613c7557613c74613937565b5b6000613c8385828601613985565b9250506020613c9485828601613c49565b9150509250929050565b600060208284031215613cb457613cb3613937565b5b6000613cc284828501613c49565b91505092915050565b600060208284031215613ce157613ce0613937565b5b6000613cef848285016139bb565b91505092915050565b60008060408385031215613d0f57613d0e613937565b5b6000613d1d85828601613985565b9250506020613d2e85828601613985565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7f57607f821691505b60208210811415613d9357613d92613d38565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613df5602883613887565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e658261399a565b9150613e708361399a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea557613ea4613e2b565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000613ee6600e83613887565b9150613ef182613eb0565b602082019050919050565b60006020820190508181036000830152613f1581613ed9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f52602083613887565b9150613f5d82613f1c565b602082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613fe4603983613887565b9150613fef82613f88565b604082019050919050565b6000602082019050818103600083015261401381613fd7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614076602583613887565b91506140818261401a565b604082019050919050565b600060208201905081810360008301526140a581614069565b9050919050565b60006140b78261399a565b91506140c28361399a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140fb576140fa613e2b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141408261399a565b915061414b8361399a565b92508261415b5761415a614106565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141c2603583613887565b91506141cd82614166565b604082019050919050565b600060208201905081810360008301526141f1816141b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614254603483613887565b915061425f826141f8565b604082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006142c0600f83613887565b91506142cb8261428a565b602082019050919050565b600060208201905081810360008301526142ef816142b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614352602683613887565b915061435d826142f6565b604082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143e4602483613887565b91506143ef82614388565b604082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614476602283613887565b91506144818261441a565b604082019050919050565b600060208201905081810360008301526144a581614469565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614508602583613887565b9150614513826144ac565b604082019050919050565b60006020820190508181036000830152614537816144fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061459a602383613887565b91506145a58261453e565b604082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614606601683613887565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146be604983613887565b91506146c98261463c565b606082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614750603583613887565b915061475b826146f4565b604082019050919050565b6000602082019050818103600083015261477f81614743565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147bc601383613887565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061484e603683613887565b9150614859826147f2565b604082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b600061488f8261399a565b915061489a8361399a565b9250828210156148ad576148ac613e2b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614914602683613887565b915061491f826148b8565b604082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b600081905092915050565b50565b600061496560008361494a565b915061497082614955565b600082019050919050565b600061498682614958565b9150819050919050565b60006060820190506149a56000830186613a46565b6149b26020830185613a46565b6149bf6040830184613a46565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a348161396e565b92915050565b600060208284031215614a5057614a4f613937565b5b6000614a5e84828501614a25565b91505092915050565b6000819050919050565b6000614a8c614a87614a8284614a67565b613a9d565b61399a565b9050919050565b614a9c81614a71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ad78161395c565b82525050565b6000614ae98383614ace565b60208301905092915050565b6000602082019050919050565b6000614b0d82614aa2565b614b178185614aad565b9350614b2283614abe565b8060005b83811015614b53578151614b3a8882614add565b9750614b4583614af5565b925050600181019050614b26565b5085935050505092915050565b600060a082019050614b756000830188613a46565b614b826020830187614a93565b8181036040830152614b948186614b02565b9050614ba36060830185613b6a565b614bb06080830184613a46565b9695505050505050565b600060c082019050614bcf6000830189613b6a565b614bdc6020830188613a46565b614be96040830187614a93565b614bf66060830186614a93565b614c036080830185613b6a565b614c1060a0830184613a46565b979650505050505050565b600081519050614c2a816139a4565b92915050565b600080600060608486031215614c4957614c48613937565b5b6000614c5786828701614c1b565b9350506020614c6886828701614c1b565b9250506040614c7986828701614c1b565b915050925092509256fea2646970667358221220298e4bc5b0479f04e11433b653baa5b1375a0765270da3758f8f1ba4053d822964736f6c634300080a0033

Deployed Bytecode Sourcemap

32630:16041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11724:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33666:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34103:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32704:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10677:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33887:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12375:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32807:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38887:522;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10519:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13276:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33809:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32762:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33116:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40675:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33634:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33196:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10848:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2792:103;;;;;;;;;;;;;:::i;:::-;;37599:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38497:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32931:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32896:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33527:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37435:112;;;;;;;;;;;;;:::i;:::-;;2141:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32968:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33702:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38760:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40167:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33601:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33927:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33778:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33492:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13994:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11188:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34324:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33156:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39977:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33413:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33001:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37986:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33461:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11426:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33043:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39437:532;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37781:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33564:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3050:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33740:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33083:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9557:100;9611:13;9644:5;9637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9557:100;:::o;11724:169::-;11807:4;11824:39;11833:12;:10;:12::i;:::-;11847:7;11856:6;11824:8;:39::i;:::-;11881:4;11874:11;;11724:169;;;;:::o;33666:29::-;;;;:::o;34103:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32704:51::-;;;:::o;10677:108::-;10738:7;10765:12;;10758:19;;10677:108;:::o;33887:33::-;;;;:::o;33847:::-;;;;:::o;12375:492::-;12515:4;12532:36;12542:6;12550:9;12561:6;12532:9;:36::i;:::-;12581:24;12608:11;:19;12620:6;12608:19;;;;;;;;;;;;;;;:33;12628:12;:10;:12::i;:::-;12608:33;;;;;;;;;;;;;;;;12581:60;;12680:6;12660:16;:26;;12652:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12767:57;12776:6;12784:12;:10;:12::i;:::-;12817:6;12798:16;:25;12767:8;:57::i;:::-;12855:4;12848:11;;;12375:492;;;;;:::o;32807:53::-;32853:6;32807:53;:::o;38887:522::-;39070:12;:10;:12::i;:::-;39057:25;;:9;;;;;;;;;;;:25;;;39049:34;;;;;;39146:2;39127:13;39111;39097:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;39096:52;;39088:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;39188:11;39172:13;:27;;;;39228:13;39210:15;:31;;;;39270:13;39252:15;:31;;;;39306:7;39294:9;:19;;;;39391:9;;39373:15;;39355;;39339:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39324:12;:76;;;;38887:522;;;;:::o;10519:93::-;10577:5;10602:2;10595:9;;10519:93;:::o;13276:215::-;13364:4;13381:80;13390:12;:10;:12::i;:::-;13404:7;13450:10;13413:11;:25;13425:12;:10;:12::i;:::-;13413:25;;;;;;;;;;;;;;;:34;13439:7;13413:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13381:8;:80::i;:::-;13479:4;13472:11;;13276:215;;;;:::o;33809:31::-;;;;:::o;32762:38::-;;;:::o;33116:33::-;;;;;;;;;;;;;:::o;40675:126::-;40741:4;40765:19;:28;40785:7;40765:28;;;;;;;;;;;;;;;;;;;;;;;;;40758:35;;40675:126;;;:::o;33634:28::-;;;;:::o;33196:30::-;;;;;;;;;;;;;:::o;10848:127::-;10922:7;10949:9;:18;10959:7;10949:18;;;;;;;;;;;;;;;;10942:25;;10848:127;;;:::o;2792:103::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2857:30:::1;2884:1;2857:18;:30::i;:::-;2792:103::o:0;37599:121::-;37651:4;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37685:5:::1;37668:14;;:22;;;;;;;;;;;;;;;;;;37708:4;37701:11;;37599:121:::0;:::o;38497:167::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38652:4:::1;38610:31;:39;38642:6;38610:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38497:167:::0;;:::o;32931:30::-;;;;;;;;;;;;;:::o;32896:28::-;;;;;;;;;;;;;:::o;33527:30::-;;;;:::o;37435:112::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37506:4:::1;37490:13;;:20;;;;;;;;;;;;;;;;;;37535:4;37521:11;;:18;;;;;;;;;;;;;;;;;;37435:112::o:0;2141:87::-;2187:7;2214:6;;;;;;;;;;;2207:13;;2141:87;:::o;32968:24::-;;;;;;;;;;;;;:::o;33702:31::-;;;;:::o;38760:100::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38845:7:::1;38831:11;;:21;;;;;;;;;;;;;;;;;;38760:100:::0;:::o;9776:104::-;9832:13;9865:7;9858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9776:104;:::o;40167:304::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40311:13:::1;40303:21;;:4;:21;;;;40281:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40422:41;40451:4;40457:5;40422:28;:41::i;:::-;40167:304:::0;;:::o;33601:24::-;;;;:::o;33927:27::-;;;;:::o;33778:25::-;;;;:::o;33492:28::-;;;;:::o;13994:413::-;14087:4;14104:24;14131:11;:25;14143:12;:10;:12::i;:::-;14131:25;;;;;;;;;;;;;;;:34;14157:7;14131:34;;;;;;;;;;;;;;;;14104:61;;14204:15;14184:16;:35;;14176:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14297:67;14306:12;:10;:12::i;:::-;14320:7;14348:15;14329:16;:34;14297:8;:67::i;:::-;14395:4;14388:11;;;13994:413;;;;:::o;11188:175::-;11274:4;11291:42;11301:12;:10;:12::i;:::-;11315:9;11326:6;11291:9;:42::i;:::-;11351:4;11344:11;;11188:175;;;;:::o;34324:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33156:33::-;;;;;;;;;;;;;:::o;39977:182::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40093:8:::1;40062:19;:28;40082:7;40062:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40133:7;40117:34;;;40142:8;40117:34;;;;;;:::i;:::-;;;;;;;;39977:182:::0;;:::o;33413:39::-;;;;;;;;;;;;;:::o;33001:35::-;;;;:::o;37986:497::-;38094:4;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38173:6:::1;38168:1;38152:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38151:28;;;;:::i;:::-;38138:9;:41;;38116:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38328:4;38323:1;38307:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38306:26;;;;:::i;:::-;38293:9;:39;;38271:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38444:9;38423:18;:30;;;;38471:4;38464:11;;37986:497:::0;;;:::o;33461:27::-;;;;:::o;11426:151::-;11515:7;11542:11;:18;11554:5;11542:18;;;;;;;;;;;;;;;:27;11561:7;11542:27;;;;;;;;;;;;;;;;11535:34;;11426:151;;;;:::o;33043:33::-;;;;:::o;39437:532::-;39621:12;:10;:12::i;:::-;39608:25;;:9;;;;;;;;;;;:25;;;39600:34;;;;;;39697:2;39678:13;39662;39648:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;39647:52;;39639:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39741:11;39724:14;:28;;;;39782:13;39763:16;:32;;;;39825:13;39806:16;:32;;;;39862:7;39849:10;:20;;;;39951:10;;39932:16;;39913;;39896:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39880:13;:81;;;;39437:532;;;;:::o;37781:135::-;37841:4;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37881:5:::1;37858:20;;:28;;;;;;;;;;;;;;;;;;37904:4;37897:11;;37781:135:::0;:::o;33564:30::-;;;;:::o;3050:201::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3159:1:::1;3139:22;;:8;:22;;;;3131:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3215:28;3234:8;3215:18;:28::i;:::-;3050:201:::0;:::o;33740:31::-;;;;:::o;33083:24::-;;;;:::o;814:98::-;867:7;894:10;887:17;;814:98;:::o;17678:380::-;17831:1;17814:19;;:5;:19;;;;17806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17912:1;17893:21;;:7;:21;;;;17885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17996:6;17966:11;:18;17978:5;17966:18;;;;;;;;;;;;;;;:27;17985:7;17966:27;;;;;;;;;;;;;;;:36;;;;18034:7;18018:32;;18027:5;18018:32;;;18043:6;18018:32;;;;;;:::i;:::-;;;;;;;;17678:380;;;:::o;40809:4847::-;40957:1;40941:18;;:4;:18;;;;40933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41034:1;41020:16;;:2;:16;;;;41012:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41103:1;41093:6;:11;41089:93;;;41121:28;41137:4;41143:2;41147:1;41121:15;:28::i;:::-;41164:7;;41089:93;41198:14;;;;;;;;;;;41194:2487;;;41259:7;:5;:7::i;:::-;41251:15;;:4;:15;;;;:49;;;;;41293:7;:5;:7::i;:::-;41287:13;;:2;:13;;;;41251:49;:86;;;;;41335:1;41321:16;;:2;:16;;;;41251:86;:128;;;;;41372:6;41358:21;;:2;:21;;;;41251:128;:158;;;;;41401:8;;;;;;;;;;;41400:9;41251:158;41229:2441;;;41449:13;;;;;;;;;;;41444:223;;41521:19;:25;41541:4;41521:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41550:19;:23;41570:2;41550:23;;;;;;;;;;;;;;;;;;;;;;;;;41521:52;41487:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41444:223;41823:20;;;;;;;;;;;41819:641;;;41904:7;:5;:7::i;:::-;41898:13;;:2;:13;;;;:72;;;;;41954:15;41940:30;;:2;:30;;;;41898:72;:129;;;;;42013:13;41999:28;;:2;:28;;;;41898:129;41868:573;;;42191:12;42116:28;:39;42145:9;42116:39;;;;;;;;;;;;;;;;:87;42078:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42405:12;42363:28;:39;42392:9;42363:39;;;;;;;;;;;;;;;:54;;;;41868:573;41819:641;42534:25;:31;42560:4;42534:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42591:31;:35;42623:2;42591:35;;;;;;;;;;;;;;;;;;;;;;;;;42590:36;42534:92;42508:1147;;;42713:20;;42703:6;:30;;42669:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42921:9;;42904:13;42914:2;42904:9;:13::i;:::-;42895:6;:22;;;;:::i;:::-;:35;;42861:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42508:1147;;;43099:25;:29;43125:2;43099:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43154:31;:37;43186:4;43154:37;;;;;;;;;;;;;;;;;;;;;;;;;43153:38;43099:92;43073:582;;;43278:20;;43268:6;:30;;43234:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43073:582;;;43435:31;:35;43467:2;43435:35;;;;;;;;;;;;;;;;;;;;;;;;;43430:225;;43555:9;;43538:13;43548:2;43538:9;:13::i;:::-;43529:6;:22;;;;:::i;:::-;:35;;43495:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43430:225;43073:582;42508:1147;41229:2441;41194:2487;43693:28;43724:24;43742:4;43724:9;:24::i;:::-;43693:55;;43761:12;43800:18;;43776:20;:42;;43761:57;;43849:7;:35;;;;;43873:11;;;;;;;;;;;43849:35;:61;;;;;43902:8;;;;;;;;;;;43901:9;43849:61;:110;;;;;43928:25;:31;43954:4;43928:31;;;;;;;;;;;;;;;;;;;;;;;;;43927:32;43849:110;:153;;;;;43977:19;:25;43997:4;43977:25;;;;;;;;;;;;;;;;;;;;;;;;;43976:26;43849:153;:194;;;;;44020:19;:23;44040:2;44020:23;;;;;;;;;;;;;;;;;;;;;;;;;44019:24;43849:194;43831:326;;;44081:4;44070:8;;:15;;;;;;;;;;;;;;;;;;44102:10;:8;:10::i;:::-;44140:5;44129:8;;:16;;;;;;;;;;;;;;;;;;43831:326;44169:12;44185:8;;;;;;;;;;;44184:9;44169:24;;44295:19;:25;44315:4;44295:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44324:19;:23;44344:2;44324:23;;;;;;;;;;;;;;;;;;;;;;;;;44295:52;44291:100;;;44374:5;44364:15;;44291:100;44403:12;44508:7;44504:1099;;;44560:25;:29;44586:2;44560:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44609:1;44593:13;;:17;44560:50;44556:898;;;44638:34;44668:3;44638:25;44649:13;;44638:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44631:41;;44725:13;;44707:14;;44700:4;:21;;;;:::i;:::-;44699:39;;;;:::i;:::-;44679:16;;:59;;;;;;;:::i;:::-;;;;;;;;44807:13;;44787:16;;44780:4;:23;;;;:::i;:::-;44779:41;;;;:::i;:::-;44757:18;;:63;;;;;;;:::i;:::-;;;;;;;;44877:13;;44863:10;;44856:4;:17;;;;:::i;:::-;44855:35;;;;:::i;:::-;44839:12;;:51;;;;;;;:::i;:::-;;;;;;;;44959:13;;44939:16;;44932:4;:23;;;;:::i;:::-;44931:41;;;;:::i;:::-;44909:18;;:63;;;;;;;:::i;:::-;;;;;;;;44556:898;;;45034:25;:31;45060:4;45034:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45084:1;45069:12;;:16;45034:51;45030:424;;;45113:33;45142:3;45113:24;45124:12;;45113:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45106:40;;45198:12;;45181:13;;45174:4;:20;;;;:::i;:::-;45173:37;;;;:::i;:::-;45153:16;;:57;;;;;;;:::i;:::-;;;;;;;;45278:12;;45259:15;;45252:4;:22;;;;:::i;:::-;45251:39;;;;:::i;:::-;45229:18;;:61;;;;;;;:::i;:::-;;;;;;;;45346:12;;45333:9;;45326:4;:16;;;;:::i;:::-;45325:33;;;;:::i;:::-;45309:12;;:49;;;;;;;:::i;:::-;;;;;;;;45426:12;;45407:15;;45400:4;:22;;;;:::i;:::-;45399:39;;;;:::i;:::-;45377:18;;:61;;;;;;;:::i;:::-;;;;;;;;45030:424;44556:898;45481:1;45474:4;:8;45470:91;;;45503:42;45519:4;45533;45540;45503:15;:42::i;:::-;45470:91;45587:4;45577:14;;;;;:::i;:::-;;;44504:1099;45615:33;45631:4;45637:2;45641:6;45615:15;:33::i;:::-;40922:4734;;;;40809:4847;;;;:::o;3411:191::-;3485:16;3504:6;;;;;;;;;;;3485:25;;3530:8;3521:6;;:17;;;;;;;;;;;;;;;;;;3585:8;3554:40;;3575:8;3554:40;;;;;;;;;;;;3474:128;3411:191;:::o;40479:188::-;40596:5;40562:25;:31;40588:4;40562:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40653:5;40619:40;;40647:4;40619:40;;;;;;;;;;;;40479:188;;:::o;14897:733::-;15055:1;15037:20;;:6;:20;;;;15029:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15139:1;15118:23;;:9;:23;;;;15110:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15194:47;15215:6;15223:9;15234:6;15194:20;:47::i;:::-;15254:21;15278:9;:17;15288:6;15278:17;;;;;;;;;;;;;;;;15254:41;;15331:6;15314:13;:23;;15306:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:6;15436:13;:22;15416:9;:17;15426:6;15416:17;;;;;;;;;;;;;;;:42;;;;15504:6;15480:9;:20;15490:9;15480:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15545:9;15528:35;;15537:6;15528:35;;;15556:6;15528:35;;;;;;:::i;:::-;;;;;;;;15576:46;15596:6;15604:9;15615:6;15576:19;:46::i;:::-;15018:612;14897:733;;;:::o;46784:1882::-;46823:23;46849:24;46867:4;46849:9;:24::i;:::-;46823:50;;46884:25;46973:12;;46952:18;;46931;;46912:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;46884:101;;46996:12;47044:1;47025:15;:20;:46;;;;47070:1;47049:17;:22;47025:46;47021:85;;;47088:7;;;;;47021:85;47161:2;47140:18;;:23;;;;:::i;:::-;47122:15;:41;47118:115;;;47219:2;47198:18;;:23;;;;:::i;:::-;47180:41;;47118:115;47294:23;47381:1;47361:17;47339:18;;47321:15;:36;;;;:::i;:::-;47320:58;;;;:::i;:::-;:62;;;;:::i;:::-;47294:88;;47393:26;47422:36;47442:15;47422;:19;;:36;;;;:::i;:::-;47393:65;;47471:25;47499:21;47471:49;;47533:36;47550:18;47533:16;:36::i;:::-;47582:18;47603:44;47629:17;47603:21;:25;;:44;;;;:::i;:::-;47582:65;;47654:21;47678:55;47715:17;47678:32;47693:16;;47678:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;47654:79;;47744:23;47770:57;47809:17;47770:34;47785:18;;47770:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;47744:83;;47838:17;47858:51;47891:17;47858:28;47873:12;;47858:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47838:71;;47922:23;47995:9;47977:15;47961:13;47948:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;47922:82;;48038:1;48017:18;:22;;;;48063:1;48044:16;:20;;;;48096:1;48075:18;:22;;;;48123:1;48108:12;:16;;;;48159:9;;;;;;;;;;;48151:23;;48182:9;48151:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48137:59;;;;;48229:15;;;;;;;;;;;48221:29;;48258:15;48221:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48207:71;;;;;48315:1;48297:15;:19;:42;;;;;48338:1;48320:15;:19;48297:42;48293:278;;;48356:46;48369:15;48386;48356:12;:46::i;:::-;48422:137;48455:18;48492:15;48526:18;;48422:137;;;;;;;;:::i;:::-;;;;;;;;48293:278;48605:13;;;;;;;;;;;48597:27;;48632:21;48597:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48583:75;;;;;46812:1854;;;;;;;;;;;46784:1882;:::o;23131:98::-;23189:7;23220:1;23216;:5;;;;:::i;:::-;23209:12;;23131:98;;;;:::o;23530:::-;23588:7;23619:1;23615;:5;;;;:::i;:::-;23608:12;;23530:98;;;;:::o;18658:125::-;;;;:::o;19387:124::-;;;;:::o;22774:98::-;22832:7;22863:1;22859;:5;;;;:::i;:::-;22852:12;;22774:98;;;;:::o;45664:589::-;45790:21;45828:1;45814:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45790:40;;45859:4;45841;45846:1;45841:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45885:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45875:4;45880:1;45875:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45920:62;45937:4;45952:15;45970:11;45920:8;:62::i;:::-;46021:15;:66;;;46102:11;46128:1;46172:4;46199;46219:15;46021:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45719:534;45664:589;:::o;46261:515::-;46409:62;46426:4;46441:15;46459:11;46409:8;:62::i;:::-;46514:15;:31;;;46553:9;46586:4;46606:11;46632:1;46675;46718:9;;;;;;;;;;;46742:15;46514:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46261: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:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:765::-;6222:6;6230;6238;6246;6295:3;6283:9;6274:7;6270:23;6266:33;6263:120;;;6302:79;;:::i;:::-;6263:120;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6549:2;6575:53;6620:7;6611:6;6600:9;6596:22;6575:53;:::i;:::-;6565:63;;6520:118;6677:2;6703:53;6748:7;6739:6;6728:9;6724:22;6703:53;:::i;:::-;6693:63;;6648:118;6805:2;6831:53;6876:7;6867:6;6856:9;6852:22;6831:53;:::i;:::-;6821:63;;6776:118;6136:765;;;;;;;:::o;6907:86::-;6942:7;6982:4;6975:5;6971:16;6960:27;;6907:86;;;:::o;6999:112::-;7082:22;7098:5;7082:22;:::i;:::-;7077:3;7070:35;6999:112;;:::o;7117:214::-;7206:4;7244:2;7233:9;7229:18;7221:26;;7257:67;7321:1;7310:9;7306:17;7297:6;7257:67;:::i;:::-;7117:214;;;;:::o;7337:116::-;7407:21;7422:5;7407:21;:::i;:::-;7400:5;7397:32;7387:60;;7443:1;7440;7433:12;7387:60;7337:116;:::o;7459:133::-;7502:5;7540:6;7527:20;7518:29;;7556:30;7580:5;7556:30;:::i;:::-;7459:133;;;;:::o;7598:468::-;7663:6;7671;7720:2;7708:9;7699:7;7695:23;7691:32;7688:119;;;7726:79;;:::i;:::-;7688:119;7846:1;7871:53;7916:7;7907:6;7896:9;7892:22;7871:53;:::i;:::-;7861:63;;7817:117;7973:2;7999:50;8041:7;8032:6;8021:9;8017:22;7999:50;:::i;:::-;7989:60;;7944:115;7598:468;;;;;:::o;8072:323::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8303:1;8328:50;8370:7;8361:6;8350:9;8346:22;8328:50;:::i;:::-;8318:60;;8274:114;8072:323;;;;:::o;8401:329::-;8460:6;8509:2;8497:9;8488:7;8484:23;8480:32;8477:119;;;8515:79;;:::i;:::-;8477:119;8635:1;8660:53;8705:7;8696:6;8685:9;8681:22;8660:53;:::i;:::-;8650:63;;8606:117;8401:329;;;;:::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:227::-;9868:34;9864:1;9856:6;9852:14;9845:58;9937:10;9932:2;9924:6;9920:15;9913:35;9728:227;:::o;9961:366::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:419::-;10499:4;10537:2;10526:9;10522:18;10514:26;;10586:9;10580:4;10576:20;10572:1;10561:9;10557:17;10550:47;10614:131;10740:4;10614:131;:::i;:::-;10606:139;;10333:419;;;:::o;10758:180::-;10806:77;10803:1;10796:88;10903:4;10900:1;10893:15;10927:4;10924:1;10917:15;10944:305;10984:3;11003:20;11021:1;11003:20;:::i;:::-;10998:25;;11037:20;11055:1;11037:20;:::i;:::-;11032:25;;11191:1;11123:66;11119:74;11116:1;11113:81;11110:107;;;11197:18;;:::i;:::-;11110:107;11241:1;11238;11234:9;11227:16;;10944:305;;;;:::o;11255:164::-;11395:16;11391:1;11383:6;11379:14;11372:40;11255:164;:::o;11425:366::-;11567:3;11588:67;11652:2;11647:3;11588:67;:::i;:::-;11581:74;;11664:93;11753:3;11664:93;:::i;:::-;11782:2;11777:3;11773:12;11766:19;;11425:366;;;:::o;11797:419::-;11963:4;12001:2;11990:9;11986:18;11978:26;;12050:9;12044:4;12040:20;12036:1;12025:9;12021:17;12014:47;12078:131;12204:4;12078:131;:::i;:::-;12070:139;;11797:419;;;:::o;12222:182::-;12362:34;12358:1;12350:6;12346:14;12339:58;12222:182;:::o;12410:366::-;12552:3;12573:67;12637:2;12632:3;12573:67;:::i;:::-;12566:74;;12649:93;12738:3;12649:93;:::i;:::-;12767:2;12762:3;12758:12;12751:19;;12410:366;;;:::o;12782:419::-;12948:4;12986:2;12975:9;12971:18;12963:26;;13035:9;13029:4;13025:20;13021:1;13010:9;13006:17;12999:47;13063:131;13189:4;13063:131;:::i;:::-;13055:139;;12782:419;;;:::o;13207:244::-;13347:34;13343:1;13335:6;13331:14;13324:58;13416:27;13411:2;13403:6;13399:15;13392:52;13207:244;:::o;13457:366::-;13599:3;13620:67;13684:2;13679:3;13620:67;:::i;:::-;13613:74;;13696:93;13785:3;13696:93;:::i;:::-;13814:2;13809:3;13805:12;13798:19;;13457:366;;;:::o;13829:419::-;13995:4;14033:2;14022:9;14018:18;14010:26;;14082:9;14076:4;14072:20;14068:1;14057:9;14053:17;14046:47;14110:131;14236:4;14110:131;:::i;:::-;14102:139;;13829:419;;;:::o;14254:224::-;14394:34;14390:1;14382:6;14378:14;14371:58;14463:7;14458:2;14450:6;14446:15;14439:32;14254:224;:::o;14484:366::-;14626:3;14647:67;14711:2;14706:3;14647:67;:::i;:::-;14640:74;;14723:93;14812:3;14723:93;:::i;:::-;14841:2;14836:3;14832:12;14825:19;;14484:366;;;:::o;14856:419::-;15022:4;15060:2;15049:9;15045:18;15037:26;;15109:9;15103:4;15099:20;15095:1;15084:9;15080:17;15073:47;15137:131;15263:4;15137:131;:::i;:::-;15129:139;;14856:419;;;:::o;15281:348::-;15321:7;15344:20;15362:1;15344:20;:::i;:::-;15339:25;;15378:20;15396:1;15378:20;:::i;:::-;15373:25;;15566:1;15498:66;15494:74;15491:1;15488:81;15483:1;15476:9;15469:17;15465:105;15462:131;;;15573:18;;:::i;:::-;15462:131;15621:1;15618;15614:9;15603:20;;15281:348;;;;:::o;15635:180::-;15683:77;15680:1;15673:88;15780:4;15777:1;15770:15;15804:4;15801:1;15794:15;15821:185;15861:1;15878:20;15896:1;15878:20;:::i;:::-;15873:25;;15912:20;15930:1;15912:20;:::i;:::-;15907:25;;15951:1;15941:35;;15956:18;;:::i;:::-;15941:35;15998:1;15995;15991:9;15986:14;;15821:185;;;;:::o;16012:240::-;16152:34;16148:1;16140:6;16136:14;16129:58;16221:23;16216:2;16208:6;16204:15;16197:48;16012:240;:::o;16258:366::-;16400:3;16421:67;16485:2;16480:3;16421:67;:::i;:::-;16414:74;;16497:93;16586:3;16497:93;:::i;:::-;16615:2;16610:3;16606:12;16599:19;;16258:366;;;:::o;16630:419::-;16796:4;16834:2;16823:9;16819:18;16811:26;;16883:9;16877:4;16873:20;16869:1;16858:9;16854:17;16847:47;16911:131;17037:4;16911:131;:::i;:::-;16903:139;;16630:419;;;:::o;17055:239::-;17195:34;17191:1;17183:6;17179:14;17172:58;17264:22;17259:2;17251:6;17247:15;17240:47;17055:239;:::o;17300:366::-;17442:3;17463:67;17527:2;17522:3;17463:67;:::i;:::-;17456:74;;17539:93;17628:3;17539:93;:::i;:::-;17657:2;17652:3;17648:12;17641:19;;17300:366;;;:::o;17672:419::-;17838:4;17876:2;17865:9;17861:18;17853:26;;17925:9;17919:4;17915:20;17911:1;17900:9;17896:17;17889:47;17953:131;18079:4;17953:131;:::i;:::-;17945:139;;17672:419;;;:::o;18097:165::-;18237:17;18233:1;18225:6;18221:14;18214:41;18097:165;:::o;18268:366::-;18410:3;18431:67;18495:2;18490:3;18431:67;:::i;:::-;18424:74;;18507:93;18596:3;18507:93;:::i;:::-;18625:2;18620:3;18616:12;18609:19;;18268:366;;;:::o;18640:419::-;18806:4;18844:2;18833:9;18829:18;18821:26;;18893:9;18887:4;18883:20;18879:1;18868:9;18864:17;18857:47;18921:131;19047:4;18921:131;:::i;:::-;18913:139;;18640:419;;;:::o;19065:225::-;19205:34;19201:1;19193:6;19189:14;19182:58;19274:8;19269:2;19261:6;19257:15;19250:33;19065:225;:::o;19296:366::-;19438:3;19459:67;19523:2;19518:3;19459:67;:::i;:::-;19452:74;;19535:93;19624:3;19535:93;:::i;:::-;19653:2;19648:3;19644:12;19637:19;;19296:366;;;:::o;19668:419::-;19834:4;19872:2;19861:9;19857:18;19849:26;;19921:9;19915:4;19911:20;19907:1;19896:9;19892:17;19885:47;19949:131;20075:4;19949:131;:::i;:::-;19941:139;;19668:419;;;:::o;20093:223::-;20233:34;20229:1;20221:6;20217:14;20210:58;20302:6;20297:2;20289:6;20285:15;20278:31;20093:223;:::o;20322:366::-;20464:3;20485:67;20549:2;20544:3;20485:67;:::i;:::-;20478:74;;20561:93;20650:3;20561:93;:::i;:::-;20679:2;20674:3;20670:12;20663:19;;20322:366;;;:::o;20694:419::-;20860:4;20898:2;20887:9;20883:18;20875:26;;20947:9;20941:4;20937:20;20933:1;20922:9;20918:17;20911:47;20975:131;21101:4;20975:131;:::i;:::-;20967:139;;20694:419;;;:::o;21119:221::-;21259:34;21255:1;21247:6;21243:14;21236:58;21328:4;21323:2;21315:6;21311:15;21304:29;21119:221;:::o;21346:366::-;21488:3;21509:67;21573:2;21568:3;21509:67;:::i;:::-;21502:74;;21585:93;21674:3;21585:93;:::i;:::-;21703:2;21698:3;21694:12;21687:19;;21346:366;;;:::o;21718:419::-;21884:4;21922:2;21911:9;21907:18;21899:26;;21971:9;21965:4;21961:20;21957:1;21946:9;21942:17;21935:47;21999:131;22125:4;21999:131;:::i;:::-;21991:139;;21718:419;;;:::o;22143:224::-;22283:34;22279:1;22271:6;22267:14;22260:58;22352:7;22347:2;22339:6;22335:15;22328:32;22143:224;:::o;22373:366::-;22515:3;22536:67;22600:2;22595:3;22536:67;:::i;:::-;22529:74;;22612:93;22701:3;22612:93;:::i;:::-;22730:2;22725:3;22721:12;22714:19;;22373:366;;;:::o;22745:419::-;22911:4;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22745:419;;;:::o;23170:222::-;23310:34;23306:1;23298:6;23294:14;23287:58;23379:5;23374:2;23366:6;23362:15;23355:30;23170:222;:::o;23398:366::-;23540:3;23561:67;23625:2;23620:3;23561:67;:::i;:::-;23554:74;;23637:93;23726:3;23637:93;:::i;:::-;23755:2;23750:3;23746:12;23739:19;;23398:366;;;:::o;23770:419::-;23936:4;23974:2;23963:9;23959:18;23951:26;;24023:9;24017:4;24013:20;24009:1;23998:9;23994:17;23987:47;24051:131;24177:4;24051:131;:::i;:::-;24043:139;;23770:419;;;:::o;24195:172::-;24335:24;24331:1;24323:6;24319:14;24312:48;24195:172;:::o;24373:366::-;24515:3;24536:67;24600:2;24595:3;24536:67;:::i;:::-;24529:74;;24612:93;24701:3;24612:93;:::i;:::-;24730:2;24725:3;24721:12;24714:19;;24373:366;;;:::o;24745:419::-;24911:4;24949:2;24938:9;24934:18;24926:26;;24998:9;24992:4;24988:20;24984:1;24973:9;24969:17;24962:47;25026:131;25152:4;25026:131;:::i;:::-;25018:139;;24745:419;;;:::o;25170:297::-;25310:34;25306:1;25298:6;25294:14;25287:58;25379:34;25374:2;25366:6;25362:15;25355:59;25448:11;25443:2;25435:6;25431:15;25424:36;25170:297;:::o;25473:366::-;25615:3;25636:67;25700:2;25695:3;25636:67;:::i;:::-;25629:74;;25712:93;25801:3;25712:93;:::i;:::-;25830:2;25825:3;25821:12;25814:19;;25473:366;;;:::o;25845:419::-;26011:4;26049:2;26038:9;26034:18;26026:26;;26098:9;26092:4;26088:20;26084:1;26073:9;26069:17;26062:47;26126:131;26252:4;26126:131;:::i;:::-;26118:139;;25845:419;;;:::o;26270:240::-;26410:34;26406:1;26398:6;26394:14;26387:58;26479:23;26474:2;26466:6;26462:15;26455:48;26270:240;:::o;26516:366::-;26658:3;26679:67;26743:2;26738:3;26679:67;:::i;:::-;26672:74;;26755:93;26844:3;26755:93;:::i;:::-;26873:2;26868:3;26864:12;26857:19;;26516:366;;;:::o;26888:419::-;27054:4;27092:2;27081:9;27077:18;27069:26;;27141:9;27135:4;27131:20;27127:1;27116:9;27112:17;27105:47;27169:131;27295:4;27169:131;:::i;:::-;27161:139;;26888:419;;;:::o;27313:169::-;27453:21;27449:1;27441:6;27437:14;27430:45;27313:169;:::o;27488:366::-;27630:3;27651:67;27715:2;27710:3;27651:67;:::i;:::-;27644:74;;27727:93;27816:3;27727:93;:::i;:::-;27845:2;27840:3;27836:12;27829:19;;27488:366;;;:::o;27860:419::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:241::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:24;28489:2;28481:6;28477:15;28470:49;28285:241;:::o;28532:366::-;28674:3;28695:67;28759:2;28754:3;28695:67;:::i;:::-;28688:74;;28771:93;28860:3;28771:93;:::i;:::-;28889:2;28884:3;28880:12;28873:19;;28532:366;;;:::o;28904:419::-;29070:4;29108:2;29097:9;29093:18;29085:26;;29157:9;29151:4;29147:20;29143:1;29132:9;29128:17;29121:47;29185:131;29311:4;29185:131;:::i;:::-;29177:139;;28904:419;;;:::o;29329:191::-;29369:4;29389:20;29407:1;29389:20;:::i;:::-;29384:25;;29423:20;29441:1;29423:20;:::i;:::-;29418:25;;29462:1;29459;29456:8;29453:34;;;29467:18;;:::i;:::-;29453:34;29512:1;29509;29505:9;29497:17;;29329:191;;;;:::o;29526:225::-;29666:34;29662:1;29654:6;29650:14;29643:58;29735:8;29730:2;29722:6;29718:15;29711:33;29526:225;:::o;29757:366::-;29899:3;29920:67;29984:2;29979:3;29920:67;:::i;:::-;29913:74;;29996:93;30085:3;29996:93;:::i;:::-;30114:2;30109:3;30105:12;30098:19;;29757:366;;;:::o;30129:419::-;30295:4;30333:2;30322:9;30318:18;30310:26;;30382:9;30376:4;30372:20;30368:1;30357:9;30353:17;30346:47;30410:131;30536:4;30410:131;:::i;:::-;30402:139;;30129:419;;;:::o;30554:147::-;30655:11;30692:3;30677:18;;30554:147;;;;:::o;30707:114::-;;:::o;30827:398::-;30986:3;31007:83;31088:1;31083:3;31007:83;:::i;:::-;31000:90;;31099:93;31188:3;31099:93;:::i;:::-;31217:1;31212:3;31208:11;31201:18;;30827:398;;;:::o;31231:379::-;31415:3;31437:147;31580:3;31437:147;:::i;:::-;31430:154;;31601:3;31594:10;;31231:379;;;:::o;31616:442::-;31765:4;31803:2;31792:9;31788:18;31780:26;;31816:71;31884:1;31873:9;31869:17;31860:6;31816:71;:::i;:::-;31897:72;31965:2;31954:9;31950:18;31941:6;31897:72;:::i;:::-;31979;32047:2;32036:9;32032:18;32023:6;31979:72;:::i;:::-;31616:442;;;;;;:::o;32064:180::-;32112:77;32109:1;32102:88;32209:4;32206:1;32199:15;32233:4;32230:1;32223:15;32250:180;32298:77;32295:1;32288:88;32395:4;32392:1;32385:15;32419:4;32416:1;32409:15;32436:143;32493:5;32524:6;32518:13;32509:22;;32540:33;32567:5;32540:33;:::i;:::-;32436:143;;;;:::o;32585:351::-;32655:6;32704:2;32692:9;32683:7;32679:23;32675:32;32672:119;;;32710:79;;:::i;:::-;32672:119;32830:1;32855:64;32911:7;32902:6;32891:9;32887:22;32855:64;:::i;:::-;32845:74;;32801:128;32585:351;;;;:::o;32942:85::-;32987:7;33016:5;33005:16;;32942:85;;;:::o;33033:158::-;33091:9;33124:61;33142:42;33151:32;33177:5;33151:32;:::i;:::-;33142:42;:::i;:::-;33124:61;:::i;:::-;33111:74;;33033:158;;;:::o;33197:147::-;33292:45;33331:5;33292:45;:::i;:::-;33287:3;33280:58;33197:147;;:::o;33350:114::-;33417:6;33451:5;33445:12;33435:22;;33350:114;;;:::o;33470:184::-;33569:11;33603:6;33598:3;33591:19;33643:4;33638:3;33634:14;33619:29;;33470:184;;;;:::o;33660:132::-;33727:4;33750:3;33742:11;;33780:4;33775:3;33771:14;33763:22;;33660:132;;;:::o;33798:108::-;33875:24;33893:5;33875:24;:::i;:::-;33870:3;33863:37;33798:108;;:::o;33912:179::-;33981:10;34002:46;34044:3;34036:6;34002:46;:::i;:::-;34080:4;34075:3;34071:14;34057:28;;33912:179;;;;:::o;34097:113::-;34167:4;34199;34194:3;34190:14;34182:22;;34097:113;;;:::o;34246:732::-;34365:3;34394:54;34442:5;34394:54;:::i;:::-;34464:86;34543:6;34538:3;34464:86;:::i;:::-;34457:93;;34574:56;34624:5;34574:56;:::i;:::-;34653:7;34684:1;34669:284;34694:6;34691:1;34688:13;34669:284;;;34770:6;34764:13;34797:63;34856:3;34841:13;34797:63;:::i;:::-;34790:70;;34883:60;34936:6;34883:60;:::i;:::-;34873:70;;34729:224;34716:1;34713;34709:9;34704:14;;34669:284;;;34673:14;34969:3;34962:10;;34370:608;;;34246:732;;;;:::o;34984:831::-;35247:4;35285:3;35274:9;35270:19;35262:27;;35299:71;35367:1;35356:9;35352:17;35343:6;35299:71;:::i;:::-;35380:80;35456:2;35445:9;35441:18;35432:6;35380:80;:::i;:::-;35507:9;35501:4;35497:20;35492:2;35481:9;35477:18;35470:48;35535:108;35638:4;35629:6;35535:108;:::i;:::-;35527:116;;35653:72;35721:2;35710:9;35706:18;35697:6;35653:72;:::i;:::-;35735:73;35803:3;35792:9;35788:19;35779:6;35735:73;:::i;:::-;34984:831;;;;;;;;:::o;35821:807::-;36070:4;36108:3;36097:9;36093:19;36085:27;;36122:71;36190:1;36179:9;36175:17;36166:6;36122:71;:::i;:::-;36203:72;36271:2;36260:9;36256:18;36247:6;36203:72;:::i;:::-;36285:80;36361:2;36350:9;36346:18;36337:6;36285:80;:::i;:::-;36375;36451:2;36440:9;36436:18;36427:6;36375:80;:::i;:::-;36465:73;36533:3;36522:9;36518:19;36509:6;36465:73;:::i;:::-;36548;36616:3;36605:9;36601:19;36592:6;36548:73;:::i;:::-;35821:807;;;;;;;;;:::o;36634:143::-;36691:5;36722:6;36716:13;36707:22;;36738:33;36765:5;36738:33;:::i;:::-;36634:143;;;;:::o;36783:663::-;36871:6;36879;36887;36936:2;36924:9;36915:7;36911:23;36907:32;36904:119;;;36942:79;;:::i;:::-;36904:119;37062:1;37087:64;37143:7;37134:6;37123:9;37119:22;37087:64;:::i;:::-;37077:74;;37033:128;37200:2;37226:64;37282:7;37273:6;37262:9;37258:22;37226:64;:::i;:::-;37216:74;;37171:129;37339:2;37365:64;37421:7;37412:6;37401:9;37397:22;37365:64;:::i;:::-;37355:74;;37310:129;36783:663;;;;;:::o

Swarm Source

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