ETH Price: $2,535.00 (+3.89%)

Token

BPoA (Baby Proof Of Apes)
 

Overview

Max Total Supply

100,000,000 Baby Proof Of Apes

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
931,000 Baby Proof Of Apes

Value
$0.00
0x4fc5046b4eecae534c40df2d7d04d3c24d1da9f7
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:
BPoA

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/* A project to support our father Proof Of Apes */
// 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 BPoA 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 = false;

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("BPoA", "Baby Proof Of Apes") {
        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 = 5;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 100000000 * 1e18;

        maxTransactionAmount = 1000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet

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

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

		charityWallet = address(0x8f9d2035209e866F51f999a4813246EaE4314b0F); // set as charity wallet
        marketingWallet = address(0x8f9d2035209e866F51f999a4813246EaE4314b0F); // set as marketing wallet
        devWallet = address(0x8f9d2035209e866F51f999a4813246EaE4314b0F); // 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 updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 6, "Max BuyFee 6%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 6, "Max SellFee 6%");
		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":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600481526020017f42506f41000000000000000000000000000000000000000000000000000000008152506040518060400160405280601281526020017f426162792050726f6f66204f662041706573000000000000000000000000000081525081600390805190602001906200010292919062000b64565b5080600490805190602001906200011b92919062000b64565b5050506200013e620001326200062460201b60201c565b6200062c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006f260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c7e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c7e565b6040518363ffffffff1660e01b8152600401620002bd92919062000cc1565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c7e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006f260201b60201c565b6200036060a0516001620007dc60201b60201c565b600080600590506000806000806005905060008060006a52b7d2dcc80cd2e4000000905069d3c21bcecceda10000006009819055506a01a784379d99db42000000600b81905550612710602882620003b9919062000d27565b620003c5919062000db7565b600a8190555088601081905550876011819055508660128190555085601381905550601354601254601154601054620003ff919062000def565b6200040b919062000def565b62000417919062000def565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000451919062000def565b6200045d919062000def565b62000469919062000def565b601481905550738f9d2035209e866f51f999a4813246eae4314b0f600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738f9d2035209e866f51f999a4813246eae4314b0f600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738f9d2035209e866f51f999a4813246eae4314b0f600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000590620005826200087d60201b60201c565b6001620008a760201b60201c565b620005a3306001620008a760201b60201c565b620005b861dead6001620008a760201b60201c565b620005da620005cc6200087d60201b60201c565b6001620006f260201b60201c565b620005ed306001620006f260201b60201c565b6200060261dead6001620006f260201b60201c565b620006143382620009e160201b60201c565b505050505050505050506200100e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007026200062460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007286200087d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007789062000ead565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b76200062460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008dd6200087d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000936576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092d9062000ead565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d5919062000eec565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4b9062000f59565b60405180910390fd5b62000a686000838362000b5a60201b60201c565b806002600082825462000a7c919062000def565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad3919062000def565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3a919062000f8c565b60405180910390a362000b566000838362000b5f60201b60201c565b5050565b505050565b505050565b82805462000b729062000fd8565b90600052602060002090601f01602090048101928262000b96576000855562000be2565b82601f1062000bb157805160ff191683800117855562000be2565b8280016001018555821562000be2579182015b8281111562000be157825182559160200191906001019062000bc4565b5b50905062000bf1919062000bf5565b5090565b5b8082111562000c1057600081600090555060010162000bf6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c468262000c19565b9050919050565b62000c588162000c39565b811462000c6457600080fd5b50565b60008151905062000c788162000c4d565b92915050565b60006020828403121562000c975762000c9662000c14565b5b600062000ca78482850162000c67565b91505092915050565b62000cbb8162000c39565b82525050565b600060408201905062000cd8600083018562000cb0565b62000ce7602083018462000cb0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d348262000cee565b915062000d418362000cee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d7d5762000d7c62000cf8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc48262000cee565b915062000dd18362000cee565b92508262000de45762000de362000d88565b5b828204905092915050565b600062000dfc8262000cee565b915062000e098362000cee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e415762000e4062000cf8565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9560208362000e4c565b915062000ea28262000e5d565b602082019050919050565b6000602082019050818103600083015262000ec88162000e86565b9050919050565b60008115159050919050565b62000ee68162000ecf565b82525050565b600060208201905062000f03600083018462000edb565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f41601f8362000e4c565b915062000f4e8262000f09565b602082019050919050565b6000602082019050818103600083015262000f748162000f32565b9050919050565b62000f868162000cee565b82525050565b600060208201905062000fa3600083018462000f7b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff157607f821691505b6020821081141562001008576200100762000fa9565b5b50919050565b60805160a0516150cf6200106c6000396000818161127c0152818161186c01526126f8015260008181610e47015281816126a0015281816138d4015281816139b5015281816139dc01528181613a780152613a9f01526150cf6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d47565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d62565b610e25565b6040516104429190613d1d565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d47565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d47565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d47565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613e09565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e36565b610f8e565b6040516105549190613d1d565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e98565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613eb3565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f36565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cc2565b6111c8565b6040516106109190613d1d565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d47565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e98565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d1d565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d62565b6112b1565b6040516106ce9190613d1d565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d47565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d1d565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d62565b611320565b6040516107619190613d47565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d1d565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f7d565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e98565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e98565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d47565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e98565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d47565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fbd565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613c07565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f7d565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d47565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d47565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d47565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d47565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cc2565b61191f565b604051610a4b9190613d1d565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cc2565b611a0a565b604051610a889190613d1d565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d62565b611a28565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d1d565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f7d565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613e09565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d1d565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d47565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613e09565b611ca8565b604051610bd59190613d1d565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d47565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fea565b611e03565b604051610c3d9190613d47565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d47565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613eb3565b611e90565b005b348015610ca657600080fd5b50610caf611fc3565b604051610cbc9190613d1d565b60405180910390f35b348015610cd157600080fd5b50610cda612063565b604051610ce79190613d47565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d62565b612069565b005b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613d47565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613d47565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e8761216d565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614126565b610f2591906141af565b610f2f91906141af565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614252565b60405180910390fd5b670de0b6b3a764000081610f859190614126565b60098190555050565b6000610f9b848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142e4565b60405180910390fd5b61107a8561107261216d565b858403612175565b60019150509392505050565b61dead81565b61109461216d565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140d7565b60405180910390fd5b6006818385876111189190614304565b6111229190614304565b61112c9190614304565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906143a6565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f9190614304565b6111a99190614304565b6111b39190614304565b600f8190555050505050565b60006012905090565b600061126a6111d561216d565b8484600160006111e361216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112659190614304565b612175565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216d565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140d7565b60405180910390fd5b6113ee6000613040565b565b60006113fa61216d565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216d565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216d565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216d565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614059565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216d565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140d7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614438565b60405180910390fd5b6119038282613106565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144ca565b60405180910390fd5b6119ff6119f661216d565b85858403612175565b600191505092915050565b6000611a1e611a1761216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361216d565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d1d565b60405180910390a25050565b611b8861216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614126565b611c2691906141af565b611c3091906141af565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061455c565b60405180910390fd5b670de0b6b3a764000081611c869190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261216d565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140d7565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614126565b611d4891906141af565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145ee565b60405180910390fd5b6103e86005611d97610e69565b611da19190614126565b611dab91906141af565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140d7565b60405180910390fd5b600681838587611f1c9190614304565b611f269190614304565b611f309190614304565b1115611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa39190614304565b611fad9190614304565b611fb79190614304565b60148190555050505050565b6000611fcd61216d565b73ffffffffffffffffffffffffffffffffffffffff16611feb61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207161216d565b73ffffffffffffffffffffffffffffffffffffffff1661208f61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c9061477e565b60405180910390fd5b61215e81613040565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613d47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd5761245761166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c5575061249561166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff16156128135761266861166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c83611320565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac83611320565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b0830611320565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613d47565b60405180910390a361342284848461381a565b50505050565b600061343330611320565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b613d4181613c8c565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600060208284031215613d7857613d77613c29565b5b6000613d8684828501613c77565b91505092915050565b6000819050919050565b6000613db4613daf613daa84613c2e565b613d8f565b613c2e565b9050919050565b6000613dc682613d99565b9050919050565b6000613dd882613dbb565b9050919050565b613de881613dcd565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520362500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203625000000000000000000000000000000000000600082015250565b60006146d6600e83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613d38565b614dc86020830185613d38565b614dd56040830184613d38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d8f565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613d38565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613d38565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613d38565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613d38565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea26469706673582212200cc5b0eebf5d2a6f60cd57ec83b7fecab53473f205a3ef7567bfdd312f06133564736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d47565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d62565b610e25565b6040516104429190613d1d565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d47565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d47565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d47565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613e09565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e36565b610f8e565b6040516105549190613d1d565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e98565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613eb3565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f36565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cc2565b6111c8565b6040516106109190613d1d565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d47565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e98565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d1d565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d62565b6112b1565b6040516106ce9190613d1d565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d47565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d1d565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d62565b611320565b6040516107619190613d47565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d1d565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f7d565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e98565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e98565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d47565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e98565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d47565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fbd565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613c07565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f7d565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d47565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d47565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d47565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d47565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cc2565b61191f565b604051610a4b9190613d1d565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cc2565b611a0a565b604051610a889190613d1d565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d62565b611a28565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d1d565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f7d565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613e09565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d1d565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d47565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613e09565b611ca8565b604051610bd59190613d1d565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d47565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fea565b611e03565b604051610c3d9190613d47565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d47565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613eb3565b611e90565b005b348015610ca657600080fd5b50610caf611fc3565b604051610cbc9190613d1d565b60405180910390f35b348015610cd157600080fd5b50610cda612063565b604051610ce79190613d47565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d62565b612069565b005b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613d47565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613d47565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e8761216d565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614126565b610f2591906141af565b610f2f91906141af565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614252565b60405180910390fd5b670de0b6b3a764000081610f859190614126565b60098190555050565b6000610f9b848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142e4565b60405180910390fd5b61107a8561107261216d565b858403612175565b60019150509392505050565b61dead81565b61109461216d565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140d7565b60405180910390fd5b6006818385876111189190614304565b6111229190614304565b61112c9190614304565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906143a6565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f9190614304565b6111a99190614304565b6111b39190614304565b600f8190555050505050565b60006012905090565b600061126a6111d561216d565b8484600160006111e361216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112659190614304565b612175565b6001905092915050565b60195481565b7f00000000000000000000000006bd9fd6447ad07db60ce0e4d569da35ead47a5a81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216d565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140d7565b60405180910390fd5b6113ee6000613040565b565b60006113fa61216d565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216d565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216d565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216d565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614059565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216d565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140d7565b60405180910390fd5b7f00000000000000000000000006bd9fd6447ad07db60ce0e4d569da35ead47a5a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614438565b60405180910390fd5b6119038282613106565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144ca565b60405180910390fd5b6119ff6119f661216d565b85858403612175565b600191505092915050565b6000611a1e611a1761216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361216d565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d1d565b60405180910390a25050565b611b8861216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614126565b611c2691906141af565b611c3091906141af565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061455c565b60405180910390fd5b670de0b6b3a764000081611c869190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261216d565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140d7565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614126565b611d4891906141af565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145ee565b60405180910390fd5b6103e86005611d97610e69565b611da19190614126565b611dab91906141af565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140d7565b60405180910390fd5b600681838587611f1c9190614304565b611f269190614304565b611f309190614304565b1115611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa39190614304565b611fad9190614304565b611fb79190614304565b60148190555050505050565b6000611fcd61216d565b73ffffffffffffffffffffffffffffffffffffffff16611feb61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207161216d565b73ffffffffffffffffffffffffffffffffffffffff1661208f61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c9061477e565b60405180910390fd5b61215e81613040565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613d47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd5761245761166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c5575061249561166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff16156128135761266861166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f00000000000000000000000006bd9fd6447ad07db60ce0e4d569da35ead47a5a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c83611320565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac83611320565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b0830611320565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613d47565b60405180910390a361342284848461381a565b50505050565b600061343330611320565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b613d4181613c8c565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600060208284031215613d7857613d77613c29565b5b6000613d8684828501613c77565b91505092915050565b6000819050919050565b6000613db4613daf613daa84613c2e565b613d8f565b613c2e565b9050919050565b6000613dc682613d99565b9050919050565b6000613dd882613dbb565b9050919050565b613de881613dcd565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520362500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203625000000000000000000000000000000000000600082015250565b60006146d6600e83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613d38565b614dc86020830185613d38565b614dd56040830184613d38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d8f565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613d38565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613d38565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613d38565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613d38565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea26469706673582212200cc5b0eebf5d2a6f60cd57ec83b7fecab53473f205a3ef7567bfdd312f06133564736f6c634300080a0033

Deployed Bytecode Sourcemap

32680:16501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9608:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11775:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33717:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34154:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32754:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10728:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33938:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38550:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12426:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32857:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39469:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10570:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13327:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33860:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32812:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33166:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41185:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33685:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33246:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10899:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2843:103;;;;;;;;;;;;;:::i;:::-;;37658:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39098:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32981:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32946:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33578:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37494:112;;;;;;;;;;;;;:::i;:::-;;2192:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33018:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33753:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39361:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40677:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33652:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33978:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33829:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33543:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14045:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11239:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34375:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33206:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40487:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38833:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33464:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33051:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38045:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11477:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33093:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39973:506;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37840:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33615:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3101:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33791:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33133:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9608:100;9662:13;9695:5;9688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9608:100;:::o;11775:169::-;11858:4;11875:39;11884:12;:10;:12::i;:::-;11898:7;11907:6;11875:8;:39::i;:::-;11932:4;11925:11;;11775:169;;;;:::o;33717:29::-;;;;:::o;34154:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32754:51::-;;;:::o;10728:108::-;10789:7;10816:12;;10809:19;;10728:108;:::o;33938:33::-;;;;:::o;33898:::-;;;;:::o;38550:275::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38687:4:::1;38679;38674:1;38658:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38657:26;;;;:::i;:::-;38656:35;;;;:::i;:::-;38646:6;:45;;38624:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38810:6;38800;:17;;;;:::i;:::-;38777:20;:40;;;;38550:275:::0;:::o;12426:492::-;12566:4;12583:36;12593:6;12601:9;12612:6;12583:9;:36::i;:::-;12632:24;12659:11;:19;12671:6;12659:19;;;;;;;;;;;;;;;:33;12679:12;:10;:12::i;:::-;12659:33;;;;;;;;;;;;;;;;12632:60;;12731:6;12711:16;:26;;12703:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12818:57;12827:6;12835:12;:10;:12::i;:::-;12868:6;12849:16;:25;12818:8;:57::i;:::-;12906:4;12899:11;;;12426:492;;;;;:::o;32857:53::-;32903:6;32857:53;:::o;39469:496::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39704:1:::1;39692:7;39676:13;39660;39646:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39645:60;;39637:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;39744:11;39728:13;:27;;;;39784:13;39766:15;:31;;;;39826:13;39808:15;:31;;;;39862:7;39850:9;:19;;;;39947:9;;39929:15;;39911;;39895:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39880:12;:76;;;;39469:496:::0;;;;:::o;10570:93::-;10628:5;10653:2;10646:9;;10570:93;:::o;13327:215::-;13415:4;13432:80;13441:12;:10;:12::i;:::-;13455:7;13501:10;13464:11;:25;13476:12;:10;:12::i;:::-;13464:25;;;;;;;;;;;;;;;:34;13490:7;13464:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13432:8;:80::i;:::-;13530:4;13523:11;;13327:215;;;;:::o;33860:31::-;;;;:::o;32812:38::-;;;:::o;33166:33::-;;;;;;;;;;;;;:::o;41185:126::-;41251:4;41275:19;:28;41295:7;41275:28;;;;;;;;;;;;;;;;;;;;;;;;;41268:35;;41185:126;;;:::o;33685:28::-;;;;:::o;33246:31::-;;;;;;;;;;;;;:::o;10899:127::-;10973:7;11000:9;:18;11010:7;11000:18;;;;;;;;;;;;;;;;10993:25;;10899:127;;;:::o;2843:103::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2908:30:::1;2935:1;2908:18;:30::i;:::-;2843:103::o:0;37658:121::-;37710:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37744:5:::1;37727:14;;:22;;;;;;;;;;;;;;;;;;37767:4;37760:11;;37658:121:::0;:::o;39098:167::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39253:4:::1;39211:31;:39;39243:6;39211:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39098:167:::0;;:::o;32981:30::-;;;;;;;;;;;;;:::o;32946:28::-;;;;;;;;;;;;;:::o;33578:30::-;;;;:::o;37494:112::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37565:4:::1;37549:13;;:20;;;;;;;;;;;;;;;;;;37594:4;37580:11;;:18;;;;;;;;;;;;;;;;;;37494:112::o:0;2192:87::-;2238:7;2265:6;;;;;;;;;;;2258:13;;2192:87;:::o;33018:24::-;;;;;;;;;;;;;:::o;33753:31::-;;;;:::o;39361:100::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39446:7:::1;39432:11;;:21;;;;;;;;;;;;;;;;;;39361:100:::0;:::o;9827:104::-;9883:13;9916:7;9909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827:104;:::o;40677:304::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40821:13:::1;40813:21;;:4;:21;;;;40791:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40932:41;40961:4;40967:5;40932:28;:41::i;:::-;40677:304:::0;;:::o;33652:24::-;;;;:::o;33978:27::-;;;;:::o;33829:25::-;;;;:::o;33543:28::-;;;;:::o;14045:413::-;14138:4;14155:24;14182:11;:25;14194:12;:10;:12::i;:::-;14182:25;;;;;;;;;;;;;;;:34;14208:7;14182:34;;;;;;;;;;;;;;;;14155:61;;14255:15;14235:16;:35;;14227:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14348:67;14357:12;:10;:12::i;:::-;14371:7;14399:15;14380:16;:34;14348:8;:67::i;:::-;14446:4;14439:11;;;14045:413;;;;:::o;11239:175::-;11325:4;11342:42;11352:12;:10;:12::i;:::-;11366:9;11377:6;11342:9;:42::i;:::-;11402:4;11395:11;;11239:175;;;;:::o;34375:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33206:33::-;;;;;;;;;;;;;:::o;40487:182::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40603:8:::1;40572:19;:28;40592:7;40572:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40643:7;40627:34;;;40652:8;40627:34;;;;;;:::i;:::-;;;;;;;;40487:182:::0;;:::o;38833:256::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38973:4:::1;38965;38960:1;38944:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38943:26;;;;:::i;:::-;38942:35;;;;:::i;:::-;38932:6;:45;;38910:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39074:6;39064;:17;;;;:::i;:::-;39052:9;:29;;;;38833:256:::0;:::o;33464:39::-;;;;;;;;;;;;;:::o;33051:35::-;;;;:::o;38045:497::-;38153:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38232:6:::1;38227:1;38211:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38210:28;;;;:::i;:::-;38197:9;:41;;38175:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38387:4;38382:1;38366:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38365:26;;;;:::i;:::-;38352:9;:39;;38330:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38503:9;38482:18;:30;;;;38530:4;38523:11;;38045:497:::0;;;:::o;33512:27::-;;;;:::o;11477:151::-;11566:7;11593:11;:18;11605:5;11593:18;;;;;;;;;;;;;;;:27;11612:7;11593:27;;;;;;;;;;;;;;;;11586:34;;11477:151;;;;:::o;33093:33::-;;;;:::o;39973:506::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40209:1:::1;40197:7;40181:13;40165;40151:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40150:60;;40142:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40251:11;40234:14;:28;;;;40292:13;40273:16;:32;;;;40335:13;40316:16;:32;;;;40372:7;40359:10;:20;;;;40461:10;;40442:16;;40423;;40406:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40390:13;:81;;;;39973:506:::0;;;;:::o;37840:135::-;37900:4;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37940:5:::1;37917:20;;:28;;;;;;;;;;;;;;;;;;37963:4;37956:11;;37840:135:::0;:::o;33615:30::-;;;;:::o;3101:201::-;2423:12;:10;:12::i;:::-;2412:23;;:7;:5;:7::i;:::-;:23;;;2404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3210:1:::1;3190:22;;:8;:22;;;;3182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3266:28;3285:8;3266:18;:28::i;:::-;3101:201:::0;:::o;33791:31::-;;;;:::o;33133:24::-;;;;:::o;865:98::-;918:7;945:10;938:17;;865:98;:::o;17729:380::-;17882:1;17865:19;;:5;:19;;;;17857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17963:1;17944:21;;:7;:21;;;;17936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18047:6;18017:11;:18;18029:5;18017:18;;;;;;;;;;;;;;;:27;18036:7;18017:27;;;;;;;;;;;;;;;:36;;;;18085:7;18069:32;;18078:5;18069:32;;;18094:6;18069:32;;;;;;:::i;:::-;;;;;;;;17729:380;;;:::o;41319:4847::-;41467:1;41451:18;;:4;:18;;;;41443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41544:1;41530:16;;:2;:16;;;;41522:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41613:1;41603:6;:11;41599:93;;;41631:28;41647:4;41653:2;41657:1;41631:15;:28::i;:::-;41674:7;;41599:93;41708:14;;;;;;;;;;;41704:2487;;;41769:7;:5;:7::i;:::-;41761:15;;:4;:15;;;;:49;;;;;41803:7;:5;:7::i;:::-;41797:13;;:2;:13;;;;41761:49;:86;;;;;41845:1;41831:16;;:2;:16;;;;41761:86;:128;;;;;41882:6;41868:21;;:2;:21;;;;41761:128;:158;;;;;41911:8;;;;;;;;;;;41910:9;41761:158;41739:2441;;;41959:13;;;;;;;;;;;41954:223;;42031:19;:25;42051:4;42031:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42060:19;:23;42080:2;42060:23;;;;;;;;;;;;;;;;;;;;;;;;;42031:52;41997:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41954:223;42333:20;;;;;;;;;;;42329:641;;;42414:7;:5;:7::i;:::-;42408:13;;:2;:13;;;;:72;;;;;42464:15;42450:30;;:2;:30;;;;42408:72;:129;;;;;42523:13;42509:28;;:2;:28;;;;42408:129;42378:573;;;42701:12;42626:28;:39;42655:9;42626:39;;;;;;;;;;;;;;;;:87;42588:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42915:12;42873:28;:39;42902:9;42873:39;;;;;;;;;;;;;;;:54;;;;42378:573;42329:641;43044:25;:31;43070:4;43044:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43101:31;:35;43133:2;43101:35;;;;;;;;;;;;;;;;;;;;;;;;;43100:36;43044:92;43018:1147;;;43223:20;;43213:6;:30;;43179:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43431:9;;43414:13;43424:2;43414:9;:13::i;:::-;43405:6;:22;;;;:::i;:::-;:35;;43371:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43018:1147;;;43609:25;:29;43635:2;43609:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43664:31;:37;43696:4;43664:37;;;;;;;;;;;;;;;;;;;;;;;;;43663:38;43609:92;43583:582;;;43788:20;;43778:6;:30;;43744:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43583:582;;;43945:31;:35;43977:2;43945:35;;;;;;;;;;;;;;;;;;;;;;;;;43940:225;;44065:9;;44048:13;44058:2;44048:9;:13::i;:::-;44039:6;:22;;;;:::i;:::-;:35;;44005:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43940:225;43583:582;43018:1147;41739:2441;41704:2487;44203:28;44234:24;44252:4;44234:9;:24::i;:::-;44203:55;;44271:12;44310:18;;44286:20;:42;;44271:57;;44359:7;:35;;;;;44383:11;;;;;;;;;;;44359:35;:61;;;;;44412:8;;;;;;;;;;;44411:9;44359:61;:110;;;;;44438:25;:31;44464:4;44438:31;;;;;;;;;;;;;;;;;;;;;;;;;44437:32;44359:110;:153;;;;;44487:19;:25;44507:4;44487:25;;;;;;;;;;;;;;;;;;;;;;;;;44486:26;44359:153;:194;;;;;44530:19;:23;44550:2;44530:23;;;;;;;;;;;;;;;;;;;;;;;;;44529:24;44359:194;44341:326;;;44591:4;44580:8;;:15;;;;;;;;;;;;;;;;;;44612:10;:8;:10::i;:::-;44650:5;44639:8;;:16;;;;;;;;;;;;;;;;;;44341:326;44679:12;44695:8;;;;;;;;;;;44694:9;44679:24;;44805:19;:25;44825:4;44805:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44834:19;:23;44854:2;44834:23;;;;;;;;;;;;;;;;;;;;;;;;;44805:52;44801:100;;;44884:5;44874:15;;44801:100;44913:12;45018:7;45014:1099;;;45070:25;:29;45096:2;45070:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45119:1;45103:13;;:17;45070:50;45066:898;;;45148:34;45178:3;45148:25;45159:13;;45148:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45141:41;;45235:13;;45217:14;;45210:4;:21;;;;:::i;:::-;45209:39;;;;:::i;:::-;45189:16;;:59;;;;;;;:::i;:::-;;;;;;;;45317:13;;45297:16;;45290:4;:23;;;;:::i;:::-;45289:41;;;;:::i;:::-;45267:18;;:63;;;;;;;:::i;:::-;;;;;;;;45387:13;;45373:10;;45366:4;:17;;;;:::i;:::-;45365:35;;;;:::i;:::-;45349:12;;:51;;;;;;;:::i;:::-;;;;;;;;45469:13;;45449:16;;45442:4;:23;;;;:::i;:::-;45441:41;;;;:::i;:::-;45419:18;;:63;;;;;;;:::i;:::-;;;;;;;;45066:898;;;45544:25;:31;45570:4;45544:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45594:1;45579:12;;:16;45544:51;45540:424;;;45623:33;45652:3;45623:24;45634:12;;45623:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45616:40;;45708:12;;45691:13;;45684:4;:20;;;;:::i;:::-;45683:37;;;;:::i;:::-;45663:16;;:57;;;;;;;:::i;:::-;;;;;;;;45788:12;;45769:15;;45762:4;:22;;;;:::i;:::-;45761:39;;;;:::i;:::-;45739:18;;:61;;;;;;;:::i;:::-;;;;;;;;45856:12;;45843:9;;45836:4;:16;;;;:::i;:::-;45835:33;;;;:::i;:::-;45819:12;;:49;;;;;;;:::i;:::-;;;;;;;;45936:12;;45917:15;;45910:4;:22;;;;:::i;:::-;45909:39;;;;:::i;:::-;45887:18;;:61;;;;;;;:::i;:::-;;;;;;;;45540:424;45066:898;45991:1;45984:4;:8;45980:91;;;46013:42;46029:4;46043;46050;46013:15;:42::i;:::-;45980:91;46097:4;46087:14;;;;;:::i;:::-;;;45014:1099;46125:33;46141:4;46147:2;46151:6;46125:15;:33::i;:::-;41432:4734;;;;41319:4847;;;;:::o;3462:191::-;3536:16;3555:6;;;;;;;;;;;3536:25;;3581:8;3572:6;;:17;;;;;;;;;;;;;;;;;;3636:8;3605:40;;3626:8;3605:40;;;;;;;;;;;;3525:128;3462:191;:::o;40989:188::-;41106:5;41072:25;:31;41098:4;41072:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41163:5;41129:40;;41157:4;41129:40;;;;;;;;;;;;40989:188;;:::o;14948:733::-;15106:1;15088:20;;:6;:20;;;;15080:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15190:1;15169:23;;:9;:23;;;;15161:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15245:47;15266:6;15274:9;15285:6;15245:20;:47::i;:::-;15305:21;15329:9;:17;15339:6;15329:17;;;;;;;;;;;;;;;;15305:41;;15382:6;15365:13;:23;;15357:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15503:6;15487:13;:22;15467:9;:17;15477:6;15467:17;;;;;;;;;;;;;;;:42;;;;15555:6;15531:9;:20;15541:9;15531:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15596:9;15579:35;;15588:6;15579:35;;;15607:6;15579:35;;;;;;:::i;:::-;;;;;;;;15627:46;15647:6;15655:9;15666:6;15627:19;:46::i;:::-;15069:612;14948:733;;;:::o;47294:1882::-;47333:23;47359:24;47377:4;47359:9;:24::i;:::-;47333:50;;47394:25;47483:12;;47462:18;;47441;;47422:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47394:101;;47506:12;47554:1;47535:15;:20;:46;;;;47580:1;47559:17;:22;47535:46;47531:85;;;47598:7;;;;;47531:85;47671:2;47650:18;;:23;;;;:::i;:::-;47632:15;:41;47628:115;;;47729:2;47708:18;;:23;;;;:::i;:::-;47690:41;;47628:115;47804:23;47891:1;47871:17;47849:18;;47831:15;:36;;;;:::i;:::-;47830:58;;;;:::i;:::-;:62;;;;:::i;:::-;47804:88;;47903:26;47932:36;47952:15;47932;:19;;:36;;;;:::i;:::-;47903:65;;47981:25;48009:21;47981:49;;48043:36;48060:18;48043:16;:36::i;:::-;48092:18;48113:44;48139:17;48113:21;:25;;:44;;;;:::i;:::-;48092:65;;48164:21;48188:55;48225:17;48188:32;48203:16;;48188:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48164:79;;48254:23;48280:57;48319:17;48280:34;48295:18;;48280:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48254:83;;48348:17;48368:51;48401:17;48368:28;48383:12;;48368:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48348:71;;48432:23;48505:9;48487:15;48471:13;48458:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48432:82;;48548:1;48527:18;:22;;;;48573:1;48554:16;:20;;;;48606:1;48585:18;:22;;;;48633:1;48618:12;:16;;;;48669:9;;;;;;;;;;;48661:23;;48692:9;48661:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48647:59;;;;;48739:15;;;;;;;;;;;48731:29;;48768:15;48731:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48717:71;;;;;48825:1;48807:15;:19;:42;;;;;48848:1;48830:15;:19;48807:42;48803:278;;;48866:46;48879:15;48896;48866:12;:46::i;:::-;48932:137;48965:18;49002:15;49036:18;;48932:137;;;;;;;;:::i;:::-;;;;;;;;48803:278;49115:13;;;;;;;;;;;49107:27;;49142:21;49107:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49093:75;;;;;47322:1854;;;;;;;;;;;47294:1882;:::o;23182:98::-;23240:7;23271:1;23267;:5;;;;:::i;:::-;23260:12;;23182:98;;;;:::o;23581:::-;23639:7;23670:1;23666;:5;;;;:::i;:::-;23659:12;;23581:98;;;;:::o;18709:125::-;;;;:::o;19438:124::-;;;;:::o;22825:98::-;22883:7;22914:1;22910;:5;;;;:::i;:::-;22903:12;;22825:98;;;;:::o;46174:589::-;46300:21;46338:1;46324:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46300:40;;46369:4;46351;46356:1;46351:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46395:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46385:4;46390:1;46385:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46430:62;46447:4;46462:15;46480:11;46430:8;:62::i;:::-;46531:15;:66;;;46612:11;46638:1;46682:4;46709;46729:15;46531:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46229:534;46174:589;:::o;46771:515::-;46919:62;46936:4;46951:15;46969:11;46919:8;:62::i;:::-;47024:15;:31;;;47063:9;47096:4;47116:11;47142:1;47185;47228:9;;;;;;;;;;;47252:15;47024:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46771:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:163::-;14148:15;14144:1;14136:6;14132:14;14125:39;14008:163;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:419::-;14715:4;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14549:419;;;:::o;14974:244::-;15114:34;15110:1;15102:6;15098:14;15091:58;15183:27;15178:2;15170:6;15166:15;15159:52;14974:244;:::o;15224:366::-;15366:3;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15224:366;;;:::o;15596:419::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15596:419;;;:::o;16021:224::-;16161:34;16157:1;16149:6;16145:14;16138:58;16230:7;16225:2;16217:6;16213:15;16206:32;16021:224;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:419::-;16789:4;16827:2;16816:9;16812:18;16804:26;;16876:9;16870:4;16866:20;16862:1;16851:9;16847:17;16840:47;16904:131;17030:4;16904:131;:::i;:::-;16896:139;;16623:419;;;:::o;17048:223::-;17188:34;17184:1;17176:6;17172:14;17165:58;17257:6;17252:2;17244:6;17240:15;17233:31;17048:223;:::o;17277:366::-;17419:3;17440:67;17504:2;17499:3;17440:67;:::i;:::-;17433:74;;17516:93;17605:3;17516:93;:::i;:::-;17634:2;17629:3;17625:12;17618:19;;17277:366;;;:::o;17649:419::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:131;18056:4;17930:131;:::i;:::-;17922:139;;17649:419;;;:::o;18074:240::-;18214:34;18210:1;18202:6;18198:14;18191:58;18283:23;18278:2;18270:6;18266:15;18259:48;18074:240;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18320:366;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18692:419;;;:::o;19117:239::-;19257:34;19253:1;19245:6;19241:14;19234:58;19326:22;19321:2;19313:6;19309:15;19302:47;19117:239;:::o;19362:366::-;19504:3;19525:67;19589:2;19584:3;19525:67;:::i;:::-;19518:74;;19601:93;19690:3;19601:93;:::i;:::-;19719:2;19714:3;19710:12;19703:19;;19362:366;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19734:419;;;:::o;20159:164::-;20299:16;20295:1;20287:6;20283:14;20276:40;20159:164;:::o;20329:366::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:419::-;20867:4;20905:2;20894:9;20890:18;20882:26;;20954:9;20948:4;20944:20;20940:1;20929:9;20925:17;20918:47;20982:131;21108:4;20982:131;:::i;:::-;20974:139;;20701:419;;;:::o;21126:225::-;21266:34;21262:1;21254:6;21250:14;21243:58;21335:8;21330:2;21322:6;21318:15;21311:33;21126:225;:::o;21357:366::-;21499:3;21520:67;21584:2;21579:3;21520:67;:::i;:::-;21513:74;;21596:93;21685:3;21596:93;:::i;:::-;21714:2;21709:3;21705:12;21698:19;;21357:366;;;:::o;21729:419::-;21895:4;21933:2;21922:9;21918:18;21910:26;;21982:9;21976:4;21972:20;21968:1;21957:9;21953:17;21946:47;22010:131;22136:4;22010:131;:::i;:::-;22002:139;;21729:419;;;:::o;22154:223::-;22294:34;22290:1;22282:6;22278:14;22271:58;22363:6;22358:2;22350:6;22346:15;22339:31;22154:223;:::o;22383:366::-;22525:3;22546:67;22610:2;22605:3;22546:67;:::i;:::-;22539:74;;22622:93;22711:3;22622:93;:::i;:::-;22740:2;22735:3;22731:12;22724:19;;22383:366;;;:::o;22755:419::-;22921:4;22959:2;22948:9;22944:18;22936:26;;23008:9;23002:4;22998:20;22994:1;22983:9;22979:17;22972:47;23036:131;23162:4;23036:131;:::i;:::-;23028:139;;22755:419;;;:::o;23180:221::-;23320:34;23316:1;23308:6;23304:14;23297:58;23389:4;23384:2;23376:6;23372:15;23365:29;23180:221;:::o;23407:366::-;23549:3;23570:67;23634:2;23629:3;23570:67;:::i;:::-;23563:74;;23646:93;23735:3;23646:93;:::i;:::-;23764:2;23759:3;23755:12;23748:19;;23407:366;;;:::o;23779:419::-;23945:4;23983:2;23972:9;23968:18;23960:26;;24032:9;24026:4;24022:20;24018:1;24007:9;24003:17;23996:47;24060:131;24186:4;24060:131;:::i;:::-;24052:139;;23779:419;;;:::o;24204:224::-;24344:34;24340:1;24332:6;24328:14;24321:58;24413:7;24408:2;24400:6;24396:15;24389:32;24204:224;:::o;24434:366::-;24576:3;24597:67;24661:2;24656:3;24597:67;:::i;:::-;24590:74;;24673:93;24762:3;24673:93;:::i;:::-;24791:2;24786:3;24782:12;24775:19;;24434:366;;;:::o;24806:419::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25059:9;25053:4;25049:20;25045:1;25034:9;25030:17;25023:47;25087:131;25213:4;25087:131;:::i;:::-;25079:139;;24806:419;;;:::o;25231:222::-;25371:34;25367:1;25359:6;25355:14;25348:58;25440:5;25435:2;25427:6;25423:15;25416:30;25231:222;:::o;25459:366::-;25601:3;25622:67;25686:2;25681:3;25622:67;:::i;:::-;25615:74;;25698:93;25787:3;25698:93;:::i;:::-;25816:2;25811:3;25807:12;25800:19;;25459:366;;;:::o;25831:419::-;25997:4;26035:2;26024:9;26020:18;26012:26;;26084:9;26078:4;26074:20;26070:1;26059:9;26055:17;26048:47;26112:131;26238:4;26112:131;:::i;:::-;26104:139;;25831:419;;;:::o;26256:172::-;26396:24;26392:1;26384:6;26380:14;26373:48;26256:172;:::o;26434:366::-;26576:3;26597:67;26661:2;26656:3;26597:67;:::i;:::-;26590:74;;26673:93;26762:3;26673:93;:::i;:::-;26791:2;26786:3;26782:12;26775:19;;26434:366;;;:::o;26806:419::-;26972:4;27010:2;26999:9;26995:18;26987:26;;27059:9;27053:4;27049:20;27045:1;27034:9;27030:17;27023:47;27087:131;27213:4;27087:131;:::i;:::-;27079:139;;26806:419;;;:::o;27231:297::-;27371:34;27367:1;27359:6;27355:14;27348:58;27440:34;27435:2;27427:6;27423:15;27416:59;27509:11;27504:2;27496:6;27492:15;27485:36;27231:297;:::o;27534:366::-;27676:3;27697:67;27761:2;27756:3;27697:67;:::i;:::-;27690:74;;27773:93;27862:3;27773:93;:::i;:::-;27891:2;27886:3;27882:12;27875:19;;27534:366;;;:::o;27906:419::-;28072:4;28110:2;28099:9;28095:18;28087:26;;28159:9;28153:4;28149:20;28145:1;28134:9;28130:17;28123:47;28187:131;28313:4;28187:131;:::i;:::-;28179:139;;27906:419;;;:::o;28331:240::-;28471:34;28467:1;28459:6;28455:14;28448:58;28540:23;28535:2;28527:6;28523:15;28516:48;28331:240;:::o;28577:366::-;28719:3;28740:67;28804:2;28799:3;28740:67;:::i;:::-;28733:74;;28816:93;28905:3;28816:93;:::i;:::-;28934:2;28929:3;28925:12;28918:19;;28577:366;;;:::o;28949:419::-;29115:4;29153:2;29142:9;29138:18;29130:26;;29202:9;29196:4;29192:20;29188:1;29177:9;29173:17;29166:47;29230:131;29356:4;29230:131;:::i;:::-;29222:139;;28949:419;;;:::o;29374:169::-;29514:21;29510:1;29502:6;29498:14;29491:45;29374:169;:::o;29549:366::-;29691:3;29712:67;29776:2;29771:3;29712:67;:::i;:::-;29705:74;;29788:93;29877:3;29788:93;:::i;:::-;29906:2;29901:3;29897:12;29890:19;;29549:366;;;:::o;29921:419::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:241::-;30486:34;30482:1;30474:6;30470:14;30463:58;30555:24;30550:2;30542:6;30538:15;30531:49;30346:241;:::o;30593:366::-;30735:3;30756:67;30820:2;30815:3;30756:67;:::i;:::-;30749:74;;30832:93;30921:3;30832:93;:::i;:::-;30950:2;30945:3;30941:12;30934:19;;30593:366;;;:::o;30965:419::-;31131:4;31169:2;31158:9;31154:18;31146:26;;31218:9;31212:4;31208:20;31204:1;31193:9;31189:17;31182:47;31246:131;31372:4;31246:131;:::i;:::-;31238:139;;30965:419;;;:::o;31390:191::-;31430:4;31450:20;31468:1;31450:20;:::i;:::-;31445:25;;31484:20;31502:1;31484:20;:::i;:::-;31479:25;;31523:1;31520;31517:8;31514:34;;;31528:18;;:::i;:::-;31514:34;31573:1;31570;31566:9;31558:17;;31390:191;;;;:::o;31587:225::-;31727:34;31723:1;31715:6;31711:14;31704:58;31796:8;31791:2;31783:6;31779:15;31772:33;31587:225;:::o;31818:366::-;31960:3;31981:67;32045:2;32040:3;31981:67;:::i;:::-;31974:74;;32057:93;32146:3;32057:93;:::i;:::-;32175:2;32170:3;32166:12;32159:19;;31818:366;;;:::o;32190:419::-;32356:4;32394:2;32383:9;32379:18;32371:26;;32443:9;32437:4;32433:20;32429:1;32418:9;32414:17;32407:47;32471:131;32597:4;32471:131;:::i;:::-;32463:139;;32190:419;;;:::o;32615:147::-;32716:11;32753:3;32738:18;;32615:147;;;;:::o;32768:114::-;;:::o;32888:398::-;33047:3;33068:83;33149:1;33144:3;33068:83;:::i;:::-;33061:90;;33160:93;33249:3;33160:93;:::i;:::-;33278:1;33273:3;33269:11;33262:18;;32888:398;;;:::o;33292:379::-;33476:3;33498:147;33641:3;33498:147;:::i;:::-;33491:154;;33662:3;33655:10;;33292:379;;;:::o;33677:442::-;33826:4;33864:2;33853:9;33849:18;33841:26;;33877:71;33945:1;33934:9;33930:17;33921:6;33877:71;:::i;:::-;33958:72;34026:2;34015:9;34011:18;34002:6;33958:72;:::i;:::-;34040;34108:2;34097:9;34093:18;34084:6;34040:72;:::i;:::-;33677:442;;;;;;:::o;34125:180::-;34173:77;34170:1;34163:88;34270:4;34267:1;34260:15;34294:4;34291:1;34284:15;34311:180;34359:77;34356:1;34349:88;34456:4;34453:1;34446:15;34480:4;34477:1;34470:15;34497:143;34554:5;34585:6;34579:13;34570:22;;34601:33;34628:5;34601:33;:::i;:::-;34497:143;;;;:::o;34646:351::-;34716:6;34765:2;34753:9;34744:7;34740:23;34736:32;34733:119;;;34771:79;;:::i;:::-;34733:119;34891:1;34916:64;34972:7;34963:6;34952:9;34948:22;34916:64;:::i;:::-;34906:74;;34862:128;34646:351;;;;:::o;35003:85::-;35048:7;35077:5;35066:16;;35003:85;;;:::o;35094:158::-;35152:9;35185:61;35203:42;35212:32;35238:5;35212:32;:::i;:::-;35203:42;:::i;:::-;35185:61;:::i;:::-;35172:74;;35094:158;;;:::o;35258:147::-;35353:45;35392:5;35353:45;:::i;:::-;35348:3;35341:58;35258:147;;:::o;35411:114::-;35478:6;35512:5;35506:12;35496:22;;35411:114;;;:::o;35531:184::-;35630:11;35664:6;35659:3;35652:19;35704:4;35699:3;35695:14;35680:29;;35531:184;;;;:::o;35721:132::-;35788:4;35811:3;35803:11;;35841:4;35836:3;35832:14;35824:22;;35721:132;;;:::o;35859:108::-;35936:24;35954:5;35936:24;:::i;:::-;35931:3;35924:37;35859:108;;:::o;35973:179::-;36042:10;36063:46;36105:3;36097:6;36063:46;:::i;:::-;36141:4;36136:3;36132:14;36118:28;;35973:179;;;;:::o;36158:113::-;36228:4;36260;36255:3;36251:14;36243:22;;36158:113;;;:::o;36307:732::-;36426:3;36455:54;36503:5;36455:54;:::i;:::-;36525:86;36604:6;36599:3;36525:86;:::i;:::-;36518:93;;36635:56;36685:5;36635:56;:::i;:::-;36714:7;36745:1;36730:284;36755:6;36752:1;36749:13;36730:284;;;36831:6;36825:13;36858:63;36917:3;36902:13;36858:63;:::i;:::-;36851:70;;36944:60;36997:6;36944:60;:::i;:::-;36934:70;;36790:224;36777:1;36774;36770:9;36765:14;;36730:284;;;36734:14;37030:3;37023:10;;36431:608;;;36307:732;;;;:::o;37045:831::-;37308:4;37346:3;37335:9;37331:19;37323:27;;37360:71;37428:1;37417:9;37413:17;37404:6;37360:71;:::i;:::-;37441:80;37517:2;37506:9;37502:18;37493:6;37441:80;:::i;:::-;37568:9;37562:4;37558:20;37553:2;37542:9;37538:18;37531:48;37596:108;37699:4;37690:6;37596:108;:::i;:::-;37588:116;;37714:72;37782:2;37771:9;37767:18;37758:6;37714:72;:::i;:::-;37796:73;37864:3;37853:9;37849:19;37840:6;37796:73;:::i;:::-;37045:831;;;;;;;;:::o;37882:807::-;38131:4;38169:3;38158:9;38154:19;38146:27;;38183:71;38251:1;38240:9;38236:17;38227:6;38183:71;:::i;:::-;38264:72;38332:2;38321:9;38317:18;38308:6;38264:72;:::i;:::-;38346:80;38422:2;38411:9;38407:18;38398:6;38346:80;:::i;:::-;38436;38512:2;38501:9;38497:18;38488:6;38436:80;:::i;:::-;38526:73;38594:3;38583:9;38579:19;38570:6;38526:73;:::i;:::-;38609;38677:3;38666:9;38662:19;38653:6;38609:73;:::i;:::-;37882:807;;;;;;;;;:::o;38695:143::-;38752:5;38783:6;38777:13;38768:22;;38799:33;38826:5;38799:33;:::i;:::-;38695:143;;;;:::o;38844:663::-;38932:6;38940;38948;38997:2;38985:9;38976:7;38972:23;38968:32;38965:119;;;39003:79;;:::i;:::-;38965:119;39123:1;39148:64;39204:7;39195:6;39184:9;39180:22;39148:64;:::i;:::-;39138:74;;39094:128;39261:2;39287:64;39343:7;39334:6;39323:9;39319:22;39287:64;:::i;:::-;39277:74;;39232:129;39400:2;39426:64;39482:7;39473:6;39462:9;39458:22;39426:64;:::i;:::-;39416:74;;39371:129;38844:663;;;;;:::o

Swarm Source

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