ETH Price: $3,831.14 (+5.52%)

Contract

0xd59d6E0DA0FC657d2bF00c77cF7e7A68BcaCf088
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Amount:Between 1-1k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Update your filters to view other transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Cardino

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-16
*/

// SPDX-License-Identifier: None

pragma solidity >=0.6.0 <0.8.0;


/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@#%@@@@@@             @@@@@@%/@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@.&@@@@@@@@@@@             @@@@@@@@@@@&.@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@.@@@@@@@@@@@@@@@@%@@@@@@@@@@@%@@@@@@@@@@@@@@@@.@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@      &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      @@@@@@@@@@@@@
@@@@@@@@@@@           &@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@           @@@@@@@@@@
@@@@@@@@@          @@@@@@@@@@@@@@@@@@@@&&&@@@@@@@@@@@@@@@@@@@@          @@@@@@@@
@@@@@@@ &       @@@@@@@@@@@@@@                     @@@@@@@@@@@@@@       & @@@@@@
@@@@@@@@@@@   @@@@@@@@@@@&                             &@@@@@@@@@@@   &@@@@@@@@@
@@@@&@@@@@@@@@@@@@@@@@&                                   @@@@@@@@@@@@@@@@@@@@@@
@@@ @@@@@@@@@&@@@@@@&          &&      ,&       &&          &@@@@@@&@@@@@@@@@ @@
@@ @@@@@@@@@@@@@@@@                                           @@@@@@@@@@@@@@@@ @
@@@@@@@@@@@@@@@@@@               &&    &&&    &(               @@@@@@@@@@@@@@@@@
@#@@@@@@@@@@@@@@&         &&                         &&         &@@@@@@@@@@@@@@%
@       @@@@@@@@               &&# &&&&& &&&&& &&&               @@@@@@@@      @
@      (@@@@@@@@                     *     .                     @@@@@@@@%     @
@      &@@@@@@@&       &   &&   (&&&&       &&&&,   &&   &       %@@@@@@@@     @
@      (@@@@@@@@                     %.   .%                     @@@@@@@@%     @
@       @@@@@@@@               &&% &&&&& &&&&& %&&               @@@@@@@@      @
@#@@@@@@@@@@@@@@&         &&                         &&         &@@@@@@@@@@@@@@%
@@@@@@@@@@@@@@@@@@               &&    &&&    &&               @@@@@@@@@@@@@@@@@
@@ @@@@@@@@@@@@@@@@                                           @@@@@@@@@@@@@@@@ @
@@@ @@@@@@@@@&@@@@@@&          &&      #&       &&          %@@@@@@&@@@@@@@@@ @@
@@@@@@@@@@@@@@@@@@@@@@&                                   @@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@   @@@@@@@@@@@&                             %@@@@@@@@@@@   @@@@@@@@@@
@@@@@@@ &       @@@@@@@@@@@@@@                     @@@@@@@@@@@@@@       & @@@@@@
@@@@@@@@@         .&@@@@@@@@@@@@@@@@@@@&&&@@@@@@@@@@@@@@@@@@@&          @@@@@@@@
@@@@@@@@@@@*          @@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@@@           @@@@@@@@@@
@@@@@@@@@@@@@@      @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@.@@@@@@@@@@@@@@@&             @@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@.&@@@@@@@@@@@             @@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@
*/


/*
💰 BE THE HOUSE 💰

CINO Token - Cardino is an ERC20 Token that Rewards Holders with profits from our online casino!
     
   
💝 Stake your Cardino and get your share of the gross operating profits! 

🤖 Telegram        https://t.me/CardinoCasino

💥 Huge Marketing Lined Up!

📈 Decentralized Finance meets the casino industry!


🔥  Tokenomics - 10% Tax | 4% To marketing | 6% To the Team
💰  80% of Casino profits back to the stakers!
💫  Virtually no fees after September 12th Cardano Block Chain Smart Contract release!
⭐️  Token will be bridged to Cardano and casino will be built there!
🔒   51% of Token Supply locked on Unicrypt!
🗣   Community Driven Project and Economy 



💰 Lottery Smart Contract coming soon for stakers to begin to profit from! 💰 
 */


/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


pragma solidity >=0.6.0 < 0.8.0;

/**
 * @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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/external/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File contracts/external/IUniswapV2Router02.sol

pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File contracts/external/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File contracts/external/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


// File contracts/Cardino.sol



// Contract implementation
    contract Cardino is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

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

        mapping (address => bool) private _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;

        event ExcludeFromFee(address indexed account, bool isExcluded);

        event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 100000000000 * 10**18;  //10,000,000,000
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'Cardino | t.me/CardinoCasino';
        string private _symbol = 'CINO';
        uint8 private _decimals = 18;
        uint256 private launchTime;

        // Tax fees will start at 0 so we don't have a big impact when deploying to Uniswap


        uint256 public _taxFee = 10;
        uint256 private _previousTaxFee = _taxFee;

        address payable public _taxWalletAddress;

        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 public _maxTxAmount = 200000000 * 10**18; //no max tx limit rn

        uint256 private _numOfTokensToExchange = 10000 * 10**18; 
        bool public  enforceMaxTx = true;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor (address payable paymentContractAddress) public {

            
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;
            _isExcludedFromFee[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;
            launchTime = block.timestamp;
            _taxWalletAddress = paymentContractAddress;




            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        function name() public view returns (string memory) {
            return _name;
        }

        function symbol() public view returns (string memory) {
            return _symbol;
        }

        function decimals() public view returns (uint8) {
            return _decimals;
        }

        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }

        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
            return true;
        }

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

        function isBlackListed(address account) public view returns (bool) {
            return _isBlackListedBot[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {

            for(uint256 i = 0; i < accounts.length; i++) {

                _isExcludedFromFee[accounts[i]] = excluded;

            }

            emit ExcludeMultipleAccountsFromFees(accounts, excluded);

        }

        function setMaxTxEnforced(bool isMaxTxEnforced) public onlyOwner returns (bool maxTxEnforced){
            enforceMaxTx = isMaxTxEnforced;
            return enforceMaxTx;
        }

        function totalFees() public view returns (uint256) {
            return _tFeeTotal;
        }

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

        function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
            require(tAmount <= _tTotal, "Amount must be less than supply");
            if (!deductTransferFee) {
                (uint256 rAmount,,,,) = _getValues(tAmount);
                return rAmount;
            } else {
                (,uint256 rTransferAmount,,,) = _getValues(tAmount);
                return rTransferAmount;
            }
        }

        function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
            require(rAmount <= _rTotal, "Amount must be less than total reflections");
            uint256 currentRate =  _getRate();
            return rAmount.div(currentRate);
        }

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is already excluded");
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_excluded[i] == account) {
                    _excluded[i] = _excluded[_excluded.length - 1];
                    _tOwned[account] = 0;
                    _isExcluded[account] = false;
                    _excluded.pop();
                    break;
                }
            }
        }

        function addBotToBlackList(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
            require(!_isBlackListedBot[account], "Account is already blacklisted");
            _isBlackListedBot[account] = true;
            _blackListedBots.push(account);
        }

        function removeBotFromBlackList(address account) external onlyOwner() {
            require(_isBlackListedBot[account], "Account is not blacklisted");
            for (uint256 i = 0; i < _blackListedBots.length; i++) {
                if (_blackListedBots[i] == account) {
                    _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                    _isBlackListedBot[account] = false;
                    _blackListedBots.pop();
                    break;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0) return;

            _previousTaxFee = _taxFee;

            _taxFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
        }

        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        function setMaxTxLimit(uint256 maxTxLimit) external onlyOwner() {
            _maxTxAmount = maxTxLimit * 10 ** 18;
            
        }

        function setNumofTokensForExchange(uint256 numOfTokensToExchange) external onlyOwner() {
        _numOfTokensToExchange = numOfTokensToExchange;
        }

        function _approve(address owner, address spender, uint256 amount) private {
            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);
        }

        function _transfer(address sender, address recipient, uint256 amount) private {
        if (
            block.timestamp == launchTime &&
            sender != owner() &&
            sender != address(this)
              ) {
                _isBlackListedBot[recipient] = true;
                _blackListedBots.push(recipient);
            }
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[sender], "You have no power here!");
            require(!_isBlackListedBot[recipient], "You have no power here!");

            

            if(sender != owner() && recipient != owner() && enforceMaxTx)
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");


            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchange;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the marketing wallet
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTaxes(address(this).balance);
                }
            }

            //indicates if fee should be deducted from transfer
            bool takeFee = true;

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

            //transfer amount, it will take tax fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

        function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
            // generate the uniswap pair path of CINO -> 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,
                _taxWalletAddress,
                block.timestamp
            );
        }

        function sendETHToTaxes(uint256 amount) private {
            _taxWalletAddress.transfer(amount);
        }

        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTaxes(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }

        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTaxes(tFee);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTaxes(tFee);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTaxes(tFee);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTaxes(tFee);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTaxes(uint256 tTotal) private {
            uint256 currentRate =  _getRate();
            uint256 rTotal = tTotal.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTotal);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTotal);
            }

        function calculateTaxFee(uint256 _amount) private view returns (uint256) {
            return _amount.mul(_taxFee).div(
            10**2
            );
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swapping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
        }

        function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
            uint256 tFee = calculateTaxFee(tAmount);
            uint256 tTransferAmount = tAmount.sub(tFee);
            return (tTransferAmount, tFee);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            return (rAmount, rTransferAmount, rFee);
        }

        function _getRate() private view returns(uint256) {
            (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
            return rSupply.div(tSupply);
        }

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }

        function _getTaxFee() private view returns(uint256) {
            return _taxFee;
        }

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 0 && taxFee <= 500, 'taxFee should be in 1 - 50');
            _taxFee = taxFee.div(10);
        }


    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"paymentContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enforceMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isMaxTxEnforced","type":"bool"}],"name":"setMaxTxEnforced","outputs":[{"internalType":"bool","name":"maxTxEnforced","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokensToExchange","type":"uint256"}],"name":"setNumofTokensForExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526c01431e0fae6d7217caa0000000600955600954600019816200002357fe5b0660001903600a556040518060400160405280601c81526020017f43617264696e6f207c20742e6d652f43617264696e6f436173696e6f00000000815250600c90805190602001906200007892919062000719565b506040518060400160405280600481526020017f43494e4f00000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c692919062000719565b506012600e60006101000a81548160ff021916908360ff160217905550600a6010556010546011556000601260146101000a81548160ff0219169083151502179055506001601260156101000a81548160ff0219169083151502179055506aa56fa5b99019a5c800000060135569021e19e0c9bab24000006014556001601560006101000a81548160ff0219169083151502179055503480156200016957600080fd5b5060405162005e1c38038062005e1c833981810160405260208110156200018f57600080fd5b81019080805190602001909291905050506000620001b2620006e860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a546001600062000267620006e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d60208110156200033157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a557600080fd5b505afa158015620003ba573d6000803e3d6000fd5b505050506040513d6020811015620003d157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044c57600080fd5b505af115801562000461573d6000803e3d6000fd5b505050506040513d60208110156200047857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600460006200050c620006f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555042600f8190555081601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000679620006e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35050620007bf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200075c57805160ff19168380011785556200078d565b828001600101855582156200078d579182015b828111156200078c5782518255916020019190600101906200076f565b5b5090506200079c9190620007a0565b5090565b5b80821115620007bb576000816000905550600101620007a1565b5090565b60805160601c60a05160601c61561f620007fd6000398061185b52806139f25250806110135280613eb05280613f9c5280613fc3525061561f6000f3fe6080604052600436106102555760003560e01c806370a0823111610139578063c492f046116100b6578063f2cc0c181161007a578063f2cc0c1814610dd7578063f2fde38b14610e28578063f429389014610e79578063f815a84214610e90578063f84354f114610ebb578063fee8f1a514610f0c5761025c565b8063c492f04614610bb5578063cba0e99614610c47578063dd62ed3e14610cae578063e01af92c14610d33578063e47d606014610d705761025c565b806395d89b41116100fd57806395d89b41146109b9578063a20f3af514610a49578063a457c2d714610a76578063a9059cbb14610ae7578063af9549e014610b585761025c565b806370a0823114610880578063715018a6146108e55780637d1db4a5146108fc5780637ded4d6a146109275780638da5cb5b146109785761025c565b80633b124fe7116101d257806351bc3c851161019657806351bc3c851461071e5780635342acb4146107355780635880b8731461079c578063615f962a146107d757806364f5a5bb146108185780636ddd1713146108535761025c565b80633b124fe7146105cb5780633bd5d173146105f65780634303443d146106315780634549b0391461068257806349bd5a5e146106dd5761025c565b806323b872dd1161021957806323b872dd146103f95780632d8381191461048a578063313ce567146104d957806334dd919614610507578063395093511461055a5761025c565b806306fdde0314610261578063095ea7b3146102f157806313114a9d146103625780631694505e1461038d57806318160ddd146103ce5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610f47565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b657808201518184015260208101905061029b565b50505050905090810190601f1680156102e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fd57600080fd5b5061034a6004803603604081101561031457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe9565b60405180821515815260200191505060405180910390f35b34801561036e57600080fd5b50610377611007565b6040518082815260200191505060405180910390f35b34801561039957600080fd5b506103a2611011565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103da57600080fd5b506103e3611035565b6040518082815260200191505060405180910390f35b34801561040557600080fd5b506104726004803603606081101561041c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103f565b60405180821515815260200191505060405180910390f35b34801561049657600080fd5b506104c3600480360360208110156104ad57600080fd5b8101908080359060200190929190505050611118565b6040518082815260200191505060405180910390f35b3480156104e557600080fd5b506104ee61119c565b604051808260ff16815260200191505060405180910390f35b34801561051357600080fd5b506105426004803603602081101561052a57600080fd5b810190808035151590602001909291905050506111b3565b60405180821515815260200191505060405180910390f35b34801561056657600080fd5b506105b36004803603604081101561057d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611295565b60405180821515815260200191505060405180910390f35b3480156105d757600080fd5b506105e0611348565b6040518082815260200191505060405180910390f35b34801561060257600080fd5b5061062f6004803603602081101561061957600080fd5b810190808035906020019092919050505061134e565b005b34801561063d57600080fd5b506106806004803603602081101561065457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114de565b005b34801561068e57600080fd5b506106c7600480360360408110156106a557600080fd5b81019080803590602001909291908035151590602001909291905050506117a4565b6040518082815260200191505060405180910390f35b3480156106e957600080fd5b506106f2611859565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561072a57600080fd5b5061073361187d565b005b34801561074157600080fd5b506107846004803603602081101561075857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611945565b60405180821515815260200191505060405180910390f35b3480156107a857600080fd5b506107d5600480360360208110156107bf57600080fd5b810190808035906020019092919050505061199b565b005b3480156107e357600080fd5b506107ec611aec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082457600080fd5b506108516004803603602081101561083b57600080fd5b8101908080359060200190929190505050611b12565b005b34801561085f57600080fd5b50610868611bd5565b60405180821515815260200191505060405180910390f35b34801561088c57600080fd5b506108cf600480360360208110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611be8565b6040518082815260200191505060405180910390f35b3480156108f157600080fd5b506108fa611cd3565b005b34801561090857600080fd5b50610911611e40565b6040518082815260200191505060405180910390f35b34801561093357600080fd5b506109766004803603602081101561094a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e46565b005b34801561098457600080fd5b5061098d612172565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109c557600080fd5b506109ce61219b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a0e5780820151818401526020810190506109f3565b50505050905090810190601f168015610a3b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a5557600080fd5b50610a5e61223d565b60405180821515815260200191505060405180910390f35b348015610a8257600080fd5b50610acf60048036036040811015610a9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612250565b60405180821515815260200191505060405180910390f35b348015610af357600080fd5b50610b4060048036036040811015610b0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061231d565b60405180821515815260200191505060405180910390f35b348015610b6457600080fd5b50610bb360048036036040811015610b7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061233b565b005b348015610bc157600080fd5b50610c4560048036036040811015610bd857600080fd5b8101908080359060200190640100000000811115610bf557600080fd5b820183602082011115610c0757600080fd5b80359060200191846020830284011164010000000083111715610c2957600080fd5b9091929391929390803515159060200190929190505050612445565b005b348015610c5357600080fd5b50610c9660048036036020811015610c6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612604565b60405180821515815260200191505060405180910390f35b348015610cba57600080fd5b50610d1d60048036036040811015610cd157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061265a565b6040518082815260200191505060405180910390f35b348015610d3f57600080fd5b50610d6e60048036036020811015610d5657600080fd5b810190808035151590602001909291905050506126e1565b005b348015610d7c57600080fd5b50610dbf60048036036020811015610d9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ad565b60405180821515815260200191505060405180910390f35b348015610de357600080fd5b50610e2660048036036020811015610dfa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612803565b005b348015610e3457600080fd5b50610e7760048036036020811015610e4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b9d565b005b348015610e8557600080fd5b50610e8e612d8f565b005b348015610e9c57600080fd5b50610ea5612e4f565b6040518082815260200191505060405180910390f35b348015610ec757600080fd5b50610f0a60048036036020811015610ede57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e57565b005b348015610f1857600080fd5b50610f4560048036036020811015610f2f57600080fd5b81019080803590602001909291905050506131c8565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050505050905090565b6000610ffd610ff6613281565b8484613289565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b600061104c848484613480565b61110d84611058613281565b611108856040518060600160405280602881526020016154b960289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110be613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2e9092919063ffffffff16565b613289565b600190509392505050565b6000600a54821115611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153fe602a913960400191505060405180910390fd5b600061117f613be8565b90506111948184613c1390919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b60006111bd613281565b73ffffffffffffffffffffffffffffffffffffffff166111db612172565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601560006101000a81548160ff021916908315150217905550601560009054906101000a900460ff169050919050565b600061133e6112a2613281565b8461133985600360006112b3613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b613289565b6001905092915050565b60105481565b6000611358613281565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615599602c913960400191505060405180910390fd5b600061140883613d24565b50505050905061146081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114b881600a54613d7c90919063ffffffff16565b600a819055506114d383600b54613c9c90919063ffffffff16565b600b81905550505050565b6114e6613281565b73ffffffffffffffffffffffffffffffffffffffff16611504612172565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061550a6024913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060095483111561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161183d57600061182e84613d24565b50505050905080915050611853565b600061184884613d24565b505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611885613281565b73ffffffffffffffffffffffffffffffffffffffff166118a3612172565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061193730611be8565b905061194281613dff565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119a3613281565b73ffffffffffffffffffffffffffffffffffffffff166119c1612172565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008110158015611a5d57506101f48111155b611acf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20353000000000000081525060200191505060405180910390fd5b611ae3600a82613c1390919063ffffffff16565b60108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b1a613281565b73ffffffffffffffffffffffffffffffffffffffff16611b38612172565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000810260138190555050565b601260159054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c8357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cce565b611ccb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611118565b90505b919050565b611cdb613281565b73ffffffffffffffffffffffffffffffffffffffff16611cf9612172565b73ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b611e4e613281565b73ffffffffffffffffffffffffffffffffffffffff16611e6c612172565b73ffffffffffffffffffffffffffffffffffffffff1614611ef5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b60088054905081101561216e578173ffffffffffffffffffffffffffffffffffffffff1660088281548110611fe857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121615760086001600880549050038154811061204457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061207c57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061212757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561216e565b8080600101915050611fb7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122335780601f1061220857610100808354040283529160200191612233565b820191906000526020600020905b81548152906001019060200180831161221657829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b600061231361225d613281565b8461230e856040518060600160405280602581526020016155c56025913960036000612287613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2e9092919063ffffffff16565b613289565b6001905092915050565b600061233161232a613281565b8484613480565b6001905092915050565b612343613281565b73ffffffffffffffffffffffffffffffffffffffff16612361612172565b73ffffffffffffffffffffffffffffffffffffffff16146123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244d613281565b73ffffffffffffffffffffffffffffffffffffffff1661246b612172565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8383905081101561258e57816004600086868581811061251357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506124f7565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600081840152601f19601f82011690508083019250505094505050505060405180910390a1505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6126e9613281565b73ffffffffffffffffffffffffffffffffffffffff16612707612172565b73ffffffffffffffffffffffffffffffffffffffff1614612790576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61280b613281565b73ffffffffffffffffffffffffffffffffffffffff16612829612172565b73ffffffffffffffffffffffffffffffffffffffff16146128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561294b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155776022913960400191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612adf57612a9b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611118565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ba5613281565b73ffffffffffffffffffffffffffffffffffffffff16612bc3612172565b73ffffffffffffffffffffffffffffffffffffffff1614612c4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806154286026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d97613281565b73ffffffffffffffffffffffffffffffffffffffff16612db5612172565b73ffffffffffffffffffffffffffffffffffffffff1614612e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612e4c81614105565b50565b600047905090565b612e5f613281565b73ffffffffffffffffffffffffffffffffffffffff16612e7d612172565b73ffffffffffffffffffffffffffffffffffffffff1614612f06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6006805490508110156131c4578173ffffffffffffffffffffffffffffffffffffffff1660068281548110612ff957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131b75760066001600680549050038154811061305557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061308d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061317d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131c4565b8080600101915050612fc8565b5050565b6131d0613281565b73ffffffffffffffffffffffffffffffffffffffff166131ee612172565b73ffffffffffffffffffffffffffffffffffffffff1614613277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155536024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061544e6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600f54421480156134c45750613494612172565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156134fc57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156135bd576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061552e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153db6023913960400191505060405180910390fd5b60008111613722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154e16029913960400191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138aa612172565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391857506138e8612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156139305750601560009054906101000a900460ff165b1561399157601354811115613990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154706028913960400191505060405180910390fd5b5b600061399c30611be8565b905060135481106139ad5760135490505b60006014548210159050601260149054906101000a900460ff161580156139e05750601260159054906101000a900460ff165b80156139e95750805b8015613a4157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a6957613a4f82613dff565b60004790506000811115613a6757613a6647614105565b5b505b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b105750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b1a57600090505b613b2686868684614171565b505050505050565b6000838311158290613bdb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ba0578082015181840152602081019050613b85565b50505050905090810190601f168015613bcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000806000613bf5614482565b91509150613c0c8183613c1390919063ffffffff16565b9250505090565b6000808211613c8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613c9357fe5b04905092915050565b600080828401905083811015613d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613d3888614713565b915091506000613d46613be8565b90506000806000613d588c8686614747565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600082821115613df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613e3457600080fd5b50604051908082528060200260200182016040528015613e635781602001602082028036833780820191505090505b5090503081600081518110613e7457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f1457600080fd5b505afa158015613f28573d6000803e3d6000fd5b505050506040513d6020811015613f3e57600080fd5b810190808051906020019092919050505081600181518110613f5c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613fc1307f000000000000000000000000000000000000000000000000000000000000000084613289565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156140a557808201518184015260208101905061408a565b505050509050019650505050505050600060405180830381600087803b1580156140ce57600080fd5b505af11580156140e2573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561416d573d6000803e3d6000fd5b5050565b8061417f5761417e6147a5565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142225750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15614237576142328484846147c9565b61446e565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156142da5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142ef576142ea848484614a25565b61446d565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156143935750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156143a8576143a3848484614c81565b61446c565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561444a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561445f5761445a848484614e48565b61446b565b61446a848484614c81565b5b5b5b5b8061447c5761447b615139565b5b50505050565b6000806000600a5490506000600954905060005b6006805490508110156146d6578260016000600684815481106144b557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061459c575081600260006006848154811061453457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156145b357600a546009549450945050505061470f565b61463c60016000600684815481106145c757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d7c90919063ffffffff16565b92506146c7600260006006848154811061465257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d7c90919063ffffffff16565b91508080600101915050614496565b506146ee600954600a54613c1390919063ffffffff16565b82101561470657600a5460095493509350505061470f565b81819350935050505b9091565b600080600061472184615144565b905060006147388286613d7c90919063ffffffff16565b90508082935093505050915091565b600080600080614760858861517590919063ffffffff16565b90506000614777868861517590919063ffffffff16565b9050600061478e8284613d7c90919063ffffffff16565b905082818395509550955050505093509350939050565b600060105414156147b5576147c7565b60105460118190555060006010819055505b565b60008060008060006147da86613d24565b9450945094509450945061483686600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148cb85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061496084600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ac816151fb565b6149b683826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614a3686613d24565b94509450945094509450614a9285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2782600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bbc84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c08816151fb565b614c1283826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614c9286613d24565b94509450945094509450614cee85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dcf816151fb565b614dd983826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614e5986613d24565b94509450945094509450614eb586600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f4a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fdf82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061507484600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150c0816151fb565b6150ca83826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b601154601081905550565b600061516e60646151606010548561517590919063ffffffff16565b613c1390919063ffffffff16565b9050919050565b60008083141561518857600090506151f5565b600082840290508284828161519957fe5b04146151f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154986021913960400191505060405180910390fd5b809150505b92915050565b6000615205613be8565b9050600061521c828461517590919063ffffffff16565b905061527081600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561539b5761535783600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6153b582600a54613d7c90919063ffffffff16565b600a819055506153d081600b54613c9c90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209be75eb0fa61a4dd9b4b92ece90abd8654ab535ccac81aa62ec70063339c274564736f6c634300060c0033000000000000000000000000f2fbb896da2e53ce7c1391ca003fd8a3277c55ab

Deployed Bytecode

0x6080604052600436106102555760003560e01c806370a0823111610139578063c492f046116100b6578063f2cc0c181161007a578063f2cc0c1814610dd7578063f2fde38b14610e28578063f429389014610e79578063f815a84214610e90578063f84354f114610ebb578063fee8f1a514610f0c5761025c565b8063c492f04614610bb5578063cba0e99614610c47578063dd62ed3e14610cae578063e01af92c14610d33578063e47d606014610d705761025c565b806395d89b41116100fd57806395d89b41146109b9578063a20f3af514610a49578063a457c2d714610a76578063a9059cbb14610ae7578063af9549e014610b585761025c565b806370a0823114610880578063715018a6146108e55780637d1db4a5146108fc5780637ded4d6a146109275780638da5cb5b146109785761025c565b80633b124fe7116101d257806351bc3c851161019657806351bc3c851461071e5780635342acb4146107355780635880b8731461079c578063615f962a146107d757806364f5a5bb146108185780636ddd1713146108535761025c565b80633b124fe7146105cb5780633bd5d173146105f65780634303443d146106315780634549b0391461068257806349bd5a5e146106dd5761025c565b806323b872dd1161021957806323b872dd146103f95780632d8381191461048a578063313ce567146104d957806334dd919614610507578063395093511461055a5761025c565b806306fdde0314610261578063095ea7b3146102f157806313114a9d146103625780631694505e1461038d57806318160ddd146103ce5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610f47565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b657808201518184015260208101905061029b565b50505050905090810190601f1680156102e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fd57600080fd5b5061034a6004803603604081101561031457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe9565b60405180821515815260200191505060405180910390f35b34801561036e57600080fd5b50610377611007565b6040518082815260200191505060405180910390f35b34801561039957600080fd5b506103a2611011565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103da57600080fd5b506103e3611035565b6040518082815260200191505060405180910390f35b34801561040557600080fd5b506104726004803603606081101561041c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103f565b60405180821515815260200191505060405180910390f35b34801561049657600080fd5b506104c3600480360360208110156104ad57600080fd5b8101908080359060200190929190505050611118565b6040518082815260200191505060405180910390f35b3480156104e557600080fd5b506104ee61119c565b604051808260ff16815260200191505060405180910390f35b34801561051357600080fd5b506105426004803603602081101561052a57600080fd5b810190808035151590602001909291905050506111b3565b60405180821515815260200191505060405180910390f35b34801561056657600080fd5b506105b36004803603604081101561057d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611295565b60405180821515815260200191505060405180910390f35b3480156105d757600080fd5b506105e0611348565b6040518082815260200191505060405180910390f35b34801561060257600080fd5b5061062f6004803603602081101561061957600080fd5b810190808035906020019092919050505061134e565b005b34801561063d57600080fd5b506106806004803603602081101561065457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114de565b005b34801561068e57600080fd5b506106c7600480360360408110156106a557600080fd5b81019080803590602001909291908035151590602001909291905050506117a4565b6040518082815260200191505060405180910390f35b3480156106e957600080fd5b506106f2611859565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561072a57600080fd5b5061073361187d565b005b34801561074157600080fd5b506107846004803603602081101561075857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611945565b60405180821515815260200191505060405180910390f35b3480156107a857600080fd5b506107d5600480360360208110156107bf57600080fd5b810190808035906020019092919050505061199b565b005b3480156107e357600080fd5b506107ec611aec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082457600080fd5b506108516004803603602081101561083b57600080fd5b8101908080359060200190929190505050611b12565b005b34801561085f57600080fd5b50610868611bd5565b60405180821515815260200191505060405180910390f35b34801561088c57600080fd5b506108cf600480360360208110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611be8565b6040518082815260200191505060405180910390f35b3480156108f157600080fd5b506108fa611cd3565b005b34801561090857600080fd5b50610911611e40565b6040518082815260200191505060405180910390f35b34801561093357600080fd5b506109766004803603602081101561094a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e46565b005b34801561098457600080fd5b5061098d612172565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109c557600080fd5b506109ce61219b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a0e5780820151818401526020810190506109f3565b50505050905090810190601f168015610a3b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a5557600080fd5b50610a5e61223d565b60405180821515815260200191505060405180910390f35b348015610a8257600080fd5b50610acf60048036036040811015610a9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612250565b60405180821515815260200191505060405180910390f35b348015610af357600080fd5b50610b4060048036036040811015610b0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061231d565b60405180821515815260200191505060405180910390f35b348015610b6457600080fd5b50610bb360048036036040811015610b7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061233b565b005b348015610bc157600080fd5b50610c4560048036036040811015610bd857600080fd5b8101908080359060200190640100000000811115610bf557600080fd5b820183602082011115610c0757600080fd5b80359060200191846020830284011164010000000083111715610c2957600080fd5b9091929391929390803515159060200190929190505050612445565b005b348015610c5357600080fd5b50610c9660048036036020811015610c6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612604565b60405180821515815260200191505060405180910390f35b348015610cba57600080fd5b50610d1d60048036036040811015610cd157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061265a565b6040518082815260200191505060405180910390f35b348015610d3f57600080fd5b50610d6e60048036036020811015610d5657600080fd5b810190808035151590602001909291905050506126e1565b005b348015610d7c57600080fd5b50610dbf60048036036020811015610d9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ad565b60405180821515815260200191505060405180910390f35b348015610de357600080fd5b50610e2660048036036020811015610dfa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612803565b005b348015610e3457600080fd5b50610e7760048036036020811015610e4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b9d565b005b348015610e8557600080fd5b50610e8e612d8f565b005b348015610e9c57600080fd5b50610ea5612e4f565b6040518082815260200191505060405180910390f35b348015610ec757600080fd5b50610f0a60048036036020811015610ede57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e57565b005b348015610f1857600080fd5b50610f4560048036036020811015610f2f57600080fd5b81019080803590602001909291905050506131c8565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050505050905090565b6000610ffd610ff6613281565b8484613289565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b600061104c848484613480565b61110d84611058613281565b611108856040518060600160405280602881526020016154b960289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110be613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2e9092919063ffffffff16565b613289565b600190509392505050565b6000600a54821115611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153fe602a913960400191505060405180910390fd5b600061117f613be8565b90506111948184613c1390919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b60006111bd613281565b73ffffffffffffffffffffffffffffffffffffffff166111db612172565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601560006101000a81548160ff021916908315150217905550601560009054906101000a900460ff169050919050565b600061133e6112a2613281565b8461133985600360006112b3613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b613289565b6001905092915050565b60105481565b6000611358613281565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615599602c913960400191505060405180910390fd5b600061140883613d24565b50505050905061146081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114b881600a54613d7c90919063ffffffff16565b600a819055506114d383600b54613c9c90919063ffffffff16565b600b81905550505050565b6114e6613281565b73ffffffffffffffffffffffffffffffffffffffff16611504612172565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061550a6024913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060095483111561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161183d57600061182e84613d24565b50505050905080915050611853565b600061184884613d24565b505050915050809150505b92915050565b7f0000000000000000000000007b71f257e2ed2af491fe87aa42e9cdaaeba2d62281565b611885613281565b73ffffffffffffffffffffffffffffffffffffffff166118a3612172565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061193730611be8565b905061194281613dff565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119a3613281565b73ffffffffffffffffffffffffffffffffffffffff166119c1612172565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008110158015611a5d57506101f48111155b611acf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20353000000000000081525060200191505060405180910390fd5b611ae3600a82613c1390919063ffffffff16565b60108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b1a613281565b73ffffffffffffffffffffffffffffffffffffffff16611b38612172565b73ffffffffffffffffffffffffffffffffffffffff1614611bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000810260138190555050565b601260159054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c8357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cce565b611ccb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611118565b90505b919050565b611cdb613281565b73ffffffffffffffffffffffffffffffffffffffff16611cf9612172565b73ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b611e4e613281565b73ffffffffffffffffffffffffffffffffffffffff16611e6c612172565b73ffffffffffffffffffffffffffffffffffffffff1614611ef5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b60088054905081101561216e578173ffffffffffffffffffffffffffffffffffffffff1660088281548110611fe857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121615760086001600880549050038154811061204457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061207c57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061212757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561216e565b8080600101915050611fb7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122335780601f1061220857610100808354040283529160200191612233565b820191906000526020600020905b81548152906001019060200180831161221657829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b600061231361225d613281565b8461230e856040518060600160405280602581526020016155c56025913960036000612287613281565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2e9092919063ffffffff16565b613289565b6001905092915050565b600061233161232a613281565b8484613480565b6001905092915050565b612343613281565b73ffffffffffffffffffffffffffffffffffffffff16612361612172565b73ffffffffffffffffffffffffffffffffffffffff16146123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244d613281565b73ffffffffffffffffffffffffffffffffffffffff1661246b612172565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8383905081101561258e57816004600086868581811061251357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506124f7565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600081840152601f19601f82011690508083019250505094505050505060405180910390a1505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6126e9613281565b73ffffffffffffffffffffffffffffffffffffffff16612707612172565b73ffffffffffffffffffffffffffffffffffffffff1614612790576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61280b613281565b73ffffffffffffffffffffffffffffffffffffffff16612829612172565b73ffffffffffffffffffffffffffffffffffffffff16146128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561294b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155776022913960400191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612adf57612a9b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611118565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ba5613281565b73ffffffffffffffffffffffffffffffffffffffff16612bc3612172565b73ffffffffffffffffffffffffffffffffffffffff1614612c4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806154286026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d97613281565b73ffffffffffffffffffffffffffffffffffffffff16612db5612172565b73ffffffffffffffffffffffffffffffffffffffff1614612e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612e4c81614105565b50565b600047905090565b612e5f613281565b73ffffffffffffffffffffffffffffffffffffffff16612e7d612172565b73ffffffffffffffffffffffffffffffffffffffff1614612f06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6006805490508110156131c4578173ffffffffffffffffffffffffffffffffffffffff1660068281548110612ff957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131b75760066001600680549050038154811061305557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061308d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061317d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131c4565b8080600101915050612fc8565b5050565b6131d0613281565b73ffffffffffffffffffffffffffffffffffffffff166131ee612172565b73ffffffffffffffffffffffffffffffffffffffff1614613277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155536024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061544e6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600f54421480156134c45750613494612172565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156134fc57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156135bd576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061552e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153db6023913960400191505060405180910390fd5b60008111613722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154e16029913960400191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138aa612172565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391857506138e8612172565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156139305750601560009054906101000a900460ff165b1561399157601354811115613990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154706028913960400191505060405180910390fd5b5b600061399c30611be8565b905060135481106139ad5760135490505b60006014548210159050601260149054906101000a900460ff161580156139e05750601260159054906101000a900460ff165b80156139e95750805b8015613a4157507f0000000000000000000000007b71f257e2ed2af491fe87aa42e9cdaaeba2d62273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a6957613a4f82613dff565b60004790506000811115613a6757613a6647614105565b5b505b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b105750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b1a57600090505b613b2686868684614171565b505050505050565b6000838311158290613bdb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ba0578082015181840152602081019050613b85565b50505050905090810190601f168015613bcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000806000613bf5614482565b91509150613c0c8183613c1390919063ffffffff16565b9250505090565b6000808211613c8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613c9357fe5b04905092915050565b600080828401905083811015613d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613d3888614713565b915091506000613d46613be8565b90506000806000613d588c8686614747565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600082821115613df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613e3457600080fd5b50604051908082528060200260200182016040528015613e635781602001602082028036833780820191505090505b5090503081600081518110613e7457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f1457600080fd5b505afa158015613f28573d6000803e3d6000fd5b505050506040513d6020811015613f3e57600080fd5b810190808051906020019092919050505081600181518110613f5c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613fc1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613289565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156140a557808201518184015260208101905061408a565b505050509050019650505050505050600060405180830381600087803b1580156140ce57600080fd5b505af11580156140e2573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561416d573d6000803e3d6000fd5b5050565b8061417f5761417e6147a5565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142225750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15614237576142328484846147c9565b61446e565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156142da5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142ef576142ea848484614a25565b61446d565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156143935750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156143a8576143a3848484614c81565b61446c565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561444a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561445f5761445a848484614e48565b61446b565b61446a848484614c81565b5b5b5b5b8061447c5761447b615139565b5b50505050565b6000806000600a5490506000600954905060005b6006805490508110156146d6578260016000600684815481106144b557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061459c575081600260006006848154811061453457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156145b357600a546009549450945050505061470f565b61463c60016000600684815481106145c757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d7c90919063ffffffff16565b92506146c7600260006006848154811061465257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d7c90919063ffffffff16565b91508080600101915050614496565b506146ee600954600a54613c1390919063ffffffff16565b82101561470657600a5460095493509350505061470f565b81819350935050505b9091565b600080600061472184615144565b905060006147388286613d7c90919063ffffffff16565b90508082935093505050915091565b600080600080614760858861517590919063ffffffff16565b90506000614777868861517590919063ffffffff16565b9050600061478e8284613d7c90919063ffffffff16565b905082818395509550955050505093509350939050565b600060105414156147b5576147c7565b60105460118190555060006010819055505b565b60008060008060006147da86613d24565b9450945094509450945061483686600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148cb85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061496084600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ac816151fb565b6149b683826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614a3686613d24565b94509450945094509450614a9285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2782600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bbc84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c08816151fb565b614c1283826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614c9286613d24565b94509450945094509450614cee85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dcf816151fb565b614dd983826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000614e5986613d24565b94509450945094509450614eb586600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f4a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d7c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fdf82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061507484600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150c0816151fb565b6150ca83826153a0565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b601154601081905550565b600061516e60646151606010548561517590919063ffffffff16565b613c1390919063ffffffff16565b9050919050565b60008083141561518857600090506151f5565b600082840290508284828161519957fe5b04146151f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154986021913960400191505060405180910390fd5b809150505b92915050565b6000615205613be8565b9050600061521c828461517590919063ffffffff16565b905061527081600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561539b5761535783600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c9c90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6153b582600a54613d7c90919063ffffffff16565b600a819055506153d081600b54613c9c90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209be75eb0fa61a4dd9b4b92ece90abd8654ab535ccac81aa62ec70063339c274564736f6c634300060c0033

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

000000000000000000000000f2fbb896da2e53ce7c1391ca003fd8a3277c55ab

-----Decoded View---------------
Arg [0] : paymentContractAddress (address): 0xF2FBB896DA2e53Ce7C1391cA003FD8A3277c55aB

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f2fbb896da2e53ce7c1391ca003fd8a3277c55ab


Deployed Bytecode Sourcemap

33124:20470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36184:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37188:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39214:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34531:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36497:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37373:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40219:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36394:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39018:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37714:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34386:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39321:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41521:372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39737:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34593:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46654:168;;;;;;;;;;;;;:::i;:::-;;42718:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53393:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34478:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42861:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34674:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36612:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24211:148;;;;;;;;;;;;;:::i;:::-;;34717:48;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41905:540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23560:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36287:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34866:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37956:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36834:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38518:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38675:331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38249:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37025:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47015:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38379:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40500:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24514:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46834:169;;;;;;;;;;;;;:::i;:::-;;53263:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40987:522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43014:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36184:91;36221:13;36258:5;36251:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36184:91;:::o;37188:173::-;37263:4;37284:39;37293:12;:10;:12::i;:::-;37307:7;37316:6;37284:8;:39::i;:::-;37345:4;37338:11;;37188:173;;;;:::o;39214:95::-;39256:7;39287:10;;39280:17;;39214:95;:::o;34531:51::-;;;:::o;36497:103::-;36550:7;36581;;36574:14;;36497:103;:::o;37373:329::-;37471:4;37492:36;37502:6;37510:9;37521:6;37492:9;:36::i;:::-;37543:121;37552:6;37560:12;:10;:12::i;:::-;37574:89;37612:6;37574:89;;;;;;;;;;;;;;;;;:11;:19;37586:6;37574:19;;;;;;;;;;;;;;;:33;37594:12;:10;:12::i;:::-;37574:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;37543:8;:121::i;:::-;37686:4;37679:11;;37373:329;;;;;:::o;40219:269::-;40285:7;40328;;40317;:18;;40309:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40397:19;40420:10;:8;:10::i;:::-;40397:33;;40452:24;40464:11;40452:7;:11;;:24;;;;:::i;:::-;40445:31;;;40219:269;;;:::o;36394:91::-;36435:5;36464:9;;;;;;;;;;;36457:16;;36394:91;:::o;39018:184::-;39092:18;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39141:15:::1;39126:12;;:30;;;;;;;;;;;;;;;;;;39178:12;;;;;;;;;;;39171:19;;39018:184:::0;;;:::o;37714:230::-;37802:4;37823:83;37832:12;:10;:12::i;:::-;37846:7;37855:50;37894:10;37855:11;:25;37867:12;:10;:12::i;:::-;37855:25;;;;;;;;;;;;;;;:34;37881:7;37855:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;37823:8;:83::i;:::-;37928:4;37921:11;;37714:230;;;;:::o;34386:27::-;;;;:::o;39321:404::-;39377:14;39394:12;:10;:12::i;:::-;39377:29;;39430:11;:19;39442:6;39430:19;;;;;;;;;;;;;;;;;;;;;;;;;39429:20;39421:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39514:15;39537:19;39548:7;39537:10;:19::i;:::-;39513:43;;;;;;39589:28;39609:7;39589;:15;39597:6;39589:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39571:7;:15;39579:6;39571:15;;;;;;;;;;;;;;;:46;;;;39642:20;39654:7;39642;;:11;;:20;;;;:::i;:::-;39632:7;:30;;;;39690:23;39705:7;39690:10;;:14;;:23;;;;:::i;:::-;39677:10;:36;;;;39321:404;;;:::o;41521:372::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:42:::1;41609:53;;:7;:53;;;;41601:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41727:17;:26;41745:7;41727:26;;;;;;;;;;;;;;;;;;;;;;;;;41726:27;41718:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41832:4;41803:17;:26;41821:7;41803:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;41851:16;41873:7;41851:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41521:372:::0;:::o;39737:470::-;39827:7;39870;;39859;:18;;39851:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39933:17;39928:268;;39972:15;39995:19;40006:7;39995:10;:19::i;:::-;39971:43;;;;;;40040:7;40033:14;;;;;39928:268;40090:23;40120:19;40131:7;40120:10;:19::i;:::-;40088:51;;;;;;40165:15;40158:22;;;39737:470;;;;;:::o;34593:38::-;;;:::o;46654:168::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46712:23:::1;46738:24;46756:4;46738:9;:24::i;:::-;46712:50;;46777:33;46794:15;46777:16;:33::i;:::-;23851:1;46654:168::o:0;42718:131::-;42782:4;42810:18;:27;42829:7;42810:27;;;;;;;;;;;;;;;;;;;;;;;;;42803:34;;42718:131;;;:::o;53393:190::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53483:1:::1;53473:6;:11;;:28;;;;;53498:3;53488:6;:13;;53473:28;53465:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;53557:14;53568:2;53557:6;:10;;:14;;;;:::i;:::-;53547:7;:24;;;;53393:190:::0;:::o;34478:40::-;;;;;;;;;;;;;:::o;42861:141::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42968:8:::1;42955:10;:21;42940:12;:36;;;;42861:141:::0;:::o;34674:30::-;;;;;;;;;;;;;:::o;36612:210::-;36678:7;36706:11;:20;36718:7;36706:20;;;;;;;;;;;;;;;;;;;;;;;;;36702:49;;;36735:7;:16;36743:7;36735:16;;;;;;;;;;;;;;;;36728:23;;;;36702:49;36773:37;36793:7;:16;36801:7;36793:16;;;;;;;;;;;;;;;;36773:19;:37::i;:::-;36766:44;;36612:210;;;;:::o;24211:148::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24318:1:::1;24281:40;;24302:6;::::0;::::1;;;;;;;;24281:40;;;;;;;;;;;;24349:1;24332:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;24211:148::o:0;34717:48::-;;;;:::o;41905:540::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41998:17:::1;:26;42016:7;41998:26;;;;;;;;;;;;;;;;;;;;;;;;;41990:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42075:9;42070:364;42094:16;:23;;;;42090:1;:27;42070:364;;;42170:7;42147:30;;:16;42164:1;42147:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;42143:276;;;42224:16;42267:1;42241:16;:23;;;;:27;42224:45;;;;;;;;;;;;;;;;;;;;;;;;;42202:16;42219:1;42202:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;42321:5;42292:17;:26;42310:7;42292:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;42349:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42394:5;;42143:276;42119:3;;;;;;;42070:364;;;;41905:540:::0;:::o;23560:87::-;23606:7;23633:6;;;;;;;;;;;23626:13;;23560:87;:::o;36287:95::-;36326:13;36363:7;36356:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36287:95;:::o;34866:32::-;;;;;;;;;;;;;:::o;37956:281::-;38049:4;38070:129;38079:12;:10;:12::i;:::-;38093:7;38102:96;38141:15;38102:96;;;;;;;;;;;;;;;;;:11;:25;38114:12;:10;:12::i;:::-;38102:25;;;;;;;;;;;;;;;:34;38128:7;38102:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;38070:8;:129::i;:::-;38221:4;38214:11;;37956:281;;;;:::o;36834:179::-;36912:4;36933:42;36943:12;:10;:12::i;:::-;36957:9;36968:6;36933:9;:42::i;:::-;36997:4;36990:11;;36834:179;;;;:::o;38518:145::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38643:8:::1;38613:18;:27;38632:7;38613:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;38518:145:::0;;:::o;38675:331::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38798:9:::1;38794:126;38817:8;;:15;;38813:1;:19;38794:126;;;38894:8;38860:18;:31;38879:8;;38888:1;38879:11;;;;;;;;;;;;;;;38860:31;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;38834:3;;;;;;;38794:126;;;;38941:51;38973:8;;38983;38941:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38675:331:::0;;;:::o;38249:118::-;38307:4;38335:11;:20;38347:7;38335:20;;;;;;;;;;;;;;;;;;;;;;;;;38328:27;;38249:118;;;:::o;37025:151::-;37106:7;37137:11;:18;37149:5;37137:18;;;;;;;;;;;;;;;:27;37156:7;37137:27;;;;;;;;;;;;;;;;37130:34;;37025:151;;;;:::o;47015:106::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47102:7:::1;47088:11;;:21;;;;;;;;;;;;;;;;;;47015:106:::0;:::o;38379:127::-;38440:4;38468:17;:26;38486:7;38468:26;;;;;;;;;;;;;;;;;;;;;;;;;38461:33;;38379:127;;;:::o;40500:475::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40596:42:::1;40585:53;;:7;:53;;;;40577:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40701:11;:20;40713:7;40701:20;;;;;;;;;;;;;;;;;;;;;;;;;40700:21;40692:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40790:1;40771:7;:16;40779:7;40771:16;;;;;;;;;;;;;;;;:20;40768:116;;;40831:37;40851:7;:16;40859:7;40851:16;;;;;;;;;;;;;;;;40831:19;:37::i;:::-;40812:7;:16;40820:7;40812:16;;;;;;;;;;;;;;;:56;;;;40768:116;40921:4;40898:11;:20;40910:7;40898:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;40940:9;40955:7;40940:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40500:475:::0;:::o;24514:244::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24623:1:::1;24603:22;;:8;:22;;;;24595:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24713:8;24684:38;;24705:6;::::0;::::1;;;;;;;;24684:38;;;;;;;;;;;;24742:8;24733:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;24514:244:::0;:::o;46834:169::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46892:26:::1;46921:21;46892:50;;46957:34;46972:18;46957:14;:34::i;:::-;23851:1;46834:169::o:0;53263:118::-;53309:15;53348:21;53341:28;;53263:118;:::o;40987:522::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41072:11:::1;:20;41084:7;41072:20;;;;;;;;;;;;;;;;;;;;;;;;;41064:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41144:9;41139:359;41163:9;:16;;;;41159:1;:20;41139:359;;;41225:7;41209:23;;:9;41219:1;41209:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;41205:278;;;41272:9;41301:1;41282:9;:16;;;;:20;41272:31;;;;;;;;;;;;;;;;;;;;;;;;;41257:9;41267:1;41257:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41345:1;41326:7;:16;41334:7;41326:16;;;;;;;;;;;;;;;:20;;;;41392:5;41369:11;:20;41381:7;41369:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;41420:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41458:5;;41205:278;41181:3;;;;;;;41139:359;;;;40987:522:::0;:::o;43014:156::-;23791:12;:10;:12::i;:::-;23780:23;;:7;:5;:7::i;:::-;:23;;;23772:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43137:21:::1;43112:22;:46;;;;43014:156:::0;:::o;4084:106::-;4137:15;4172:10;4165:17;;4084:106;:::o;43182:357::-;43296:1;43279:19;;:5;:19;;;;43271:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43381:1;43362:21;;:7;:21;;;;43354:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43469:6;43439:11;:18;43451:5;43439:18;;;;;;;;;;;;;;;:27;43458:7;43439:27;;;;;;;;;;;;;;;:36;;;;43511:7;43495:32;;43504:5;43495:32;;;43520:6;43495:32;;;;;;;;;;;;;;;;;;43182:357;;;:::o;43551:2149::-;43677:10;;43658:15;:29;:63;;;;;43714:7;:5;:7::i;:::-;43704:17;;:6;:17;;;;43658:63;:103;;;;;43756:4;43738:23;;:6;:23;;;;43658:103;43640:260;;;43829:4;43798:17;:28;43816:9;43798:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43852:16;43874:9;43852:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43640:260;43940:1;43922:20;;:6;:20;;;;43914:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44028:1;44007:23;;:9;:23;;;;43999:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44102:1;44093:6;:10;44085:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44173:17;:25;44191:6;44173:25;;;;;;;;;;;;;;;;;;;;;;;;;44172:26;44164:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44250:17;:28;44268:9;44250:28;;;;;;;;;;;;;;;;;;;;;;;;;44249:29;44241:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44352:7;:5;:7::i;:::-;44342:17;;:6;:17;;;;:41;;;;;44376:7;:5;:7::i;:::-;44363:20;;:9;:20;;;;44342:41;:57;;;;;44387:12;;;;;;;;;;;44342:57;44339:154;;;44436:12;;44426:6;:22;;44418:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44339:154;44512:28;44543:24;44561:4;44543:9;:24::i;:::-;44512:55;;44611:12;;44587:20;:36;44584:124;;44680:12;;44657:35;;44584:124;44724:24;44775:22;;44751:20;:46;;44724:73;;44817:6;;;;;;;;;;;44816:7;:22;;;;;44827:11;;;;;;;;;;;44816:22;:45;;;;;44842:19;44816:45;:72;;;;;44875:13;44865:23;;:6;:23;;;;44816:72;44812:442;;;45004:38;45021:20;45004:16;:38::i;:::-;45063:26;45092:21;45063:50;;45156:1;45135:18;:22;45132:107;;;45182:37;45197:21;45182:14;:37::i;:::-;45132:107;44812:442;;45335:12;45350:4;45335:19;;45462:18;:26;45481:6;45462:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;45492:18;:29;45511:9;45492:29;;;;;;;;;;;;;;;;;;;;;;;;;45462:59;45459:113;;;45551:5;45541:15;;45459:113;45641:47;45656:6;45663:9;45673:6;45680:7;45641:14;:47::i;:::-;43551:2149;;;;;;:::o;12688:166::-;12774:7;12807:1;12802;:6;;12810:12;12794:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12845:1;12841;:5;12834:12;;12688:166;;;;;:::o;52249:175::-;52290:7;52315:15;52332;52351:19;:17;:19::i;:::-;52314:56;;;;52392:20;52404:7;52392;:11;;:20;;;;:::i;:::-;52385:27;;;;52249:175;:::o;11438:153::-;11496:7;11528:1;11524;:5;11516:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11582:1;11578;:5;;;;;;11571:12;;11438:153;;;;:::o;9861:179::-;9919:7;9939:9;9955:1;9951;:5;9939:17;;9980:1;9975;:6;;9967:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10031:1;10024:8;;;9861:179;;;;:::o;51181:431::-;51240:7;51249;51258;51267;51276;51301:23;51326:12;51342:20;51354:7;51342:11;:20::i;:::-;51300:62;;;;51377:19;51400:10;:8;:10::i;:::-;51377:33;;51426:15;51443:23;51468:12;51484:39;51496:7;51505:4;51511:11;51484;:39::i;:::-;51425:98;;;;;;51546:7;51555:15;51572:4;51578:15;51595:4;51538:62;;;;;;;;;;;;;;;;51181:431;;;;;;;:::o;10323:158::-;10381:7;10414:1;10409;:6;;10401:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10472:1;10468;:5;10461:12;;10323:158;;;;:::o;45712:659::-;35079:4;35070:6;;:13;;;;;;;;;;;;;;;;;;45856:21:::1;45894:1;45880:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45856:40;;45929:4;45911;45916:1;45911:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;45959:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;45949:4;45954:1;45949:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;45998:62;46015:4;46030:15;46048:11;45998:8;:62::i;:::-;46107:15;:66;;;46192:11;46222:1;46270:4;46293:17;;;;;;;;;;;46329:15;46107:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35098:1;35123:5:::0;35114:6;;:14;;;;;;;;;;;;;;;;;;45712:659;:::o;46383:109::-;46446:17;;;;;;;;;;;:26;;:34;46473:6;46446:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46383:109;:::o;47133:883::-;47249:7;47245:44;;47275:14;:12;:14::i;:::-;47245:44;47310:11;:19;47322:6;47310:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;47334:11;:22;47346:9;47334:22;;;;;;;;;;;;;;;;;;;;;;;;;47333:23;47310:46;47306:637;;;47377:48;47399:6;47407:9;47418:6;47377:21;:48::i;:::-;47306:637;;;47452:11;:19;47464:6;47452:19;;;;;;;;;;;;;;;;;;;;;;;;;47451:20;:46;;;;;47475:11;:22;47487:9;47475:22;;;;;;;;;;;;;;;;;;;;;;;;;47451:46;47447:496;;;47518:46;47538:6;47546:9;47557:6;47518:19;:46::i;:::-;47447:496;;;47591:11;:19;47603:6;47591:19;;;;;;;;;;;;;;;;;;;;;;;;;47590:20;:47;;;;;47615:11;:22;47627:9;47615:22;;;;;;;;;;;;;;;;;;;;;;;;;47614:23;47590:47;47586:357;;;47658:44;47676:6;47684:9;47695:6;47658:17;:44::i;:::-;47586:357;;;47728:11;:19;47740:6;47728:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;47751:11;:22;47763:9;47751:22;;;;;;;;;;;;;;;;;;;;;;;;;47728:45;47724:219;;;47794:48;47816:6;47824:9;47835:6;47794:21;:48::i;:::-;47724:219;;;47883:44;47901:6;47909:9;47920:6;47883:17;:44::i;:::-;47724:219;47586:357;47447:496;47306:637;47963:7;47959:45;;47989:15;:13;:15::i;:::-;47959:45;47133:883;;;;:::o;52436:595::-;52486:7;52495;52519:15;52537:7;;52519:25;;52559:15;52577:7;;52559:25;;52604:9;52599:305;52623:9;:16;;;;52619:1;:20;52599:305;;;52693:7;52669;:21;52677:9;52687:1;52677:12;;;;;;;;;;;;;;;;;;;;;;;;;52669:21;;;;;;;;;;;;;;;;:31;:66;;;;52728:7;52704;:21;52712:9;52722:1;52712:12;;;;;;;;;;;;;;;;;;;;;;;;;52704:21;;;;;;;;;;;;;;;;:31;52669:66;52665:97;;;52745:7;;52754;;52737:25;;;;;;;;;52665:97;52791:34;52803:7;:21;52811:9;52821:1;52811:12;;;;;;;;;;;;;;;;;;;;;;;;;52803:21;;;;;;;;;;;;;;;;52791:7;:11;;:34;;;;:::i;:::-;52781:44;;52854:34;52866:7;:21;52874:9;52884:1;52874:12;;;;;;;;;;;;;;;;;;;;;;;;;52866:21;;;;;;;;;;;;;;;;52854:7;:11;;:34;;;;:::i;:::-;52844:44;;52641:3;;;;;;;52599:305;;;;52932:20;52944:7;;52932;;:11;;:20;;;;:::i;:::-;52922:7;:30;52918:61;;;52962:7;;52971;;52954:25;;;;;;;;52918:61;53002:7;53011;52994:25;;;;;;52436:595;;;:::o;51624:247::-;51684:7;51693;51717:12;51732:24;51748:7;51732:15;:24::i;:::-;51717:39;;51771:23;51797:17;51809:4;51797:7;:11;;:17;;;;:::i;:::-;51771:43;;51837:15;51854:4;51829:30;;;;;;51624:247;;;:::o;51883:354::-;51978:7;51987;51996;52020:15;52038:24;52050:11;52038:7;:11;;:24;;;;:::i;:::-;52020:42;;52077:12;52092:21;52101:11;52092:4;:8;;:21;;;;:::i;:::-;52077:36;;52128:23;52154:17;52166:4;52154:7;:11;;:17;;;;:::i;:::-;52128:43;;52194:7;52203:15;52220:4;52186:39;;;;;;;;;51883:354;;;;;;;:::o;42457:152::-;42518:1;42507:7;;:12;42504:24;;;42521:7;;42504:24;42562:7;;42544:15;:25;;;;42596:1;42586:7;:11;;;;42457:152;:::o;49129:565::-;49236:15;49253:23;49278:12;49292:23;49317:12;49333:19;49344:7;49333:10;:19::i;:::-;49235:117;;;;;;;;;;49385:28;49405:7;49385;:15;49393:6;49385:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;49367:7;:15;49375:6;49367:15;;;;;;;;;;;;;;;:46;;;;49446:28;49466:7;49446;:15;49454:6;49446:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;49428:7;:15;49436:6;49428:15;;;;;;;;;;;;;;;:46;;;;49510:39;49533:15;49510:7;:18;49518:9;49510:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;49489:7;:18;49497:9;49489:18;;;;;;;;;;;;;;;:60;;;;49564:16;49575:4;49564:10;:16::i;:::-;49595:23;49607:4;49613;49595:11;:23::i;:::-;49655:9;49638:44;;49647:6;49638:44;;;49666:15;49638:44;;;;;;;;;;;;;;;;;;49129:565;;;;;;;;:::o;48540:577::-;48645:15;48662:23;48687:12;48701:23;48726:12;48742:19;48753:7;48742:10;:19::i;:::-;48644:117;;;;;;;;;;48794:28;48814:7;48794;:15;48802:6;48794:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48776:7;:15;48784:6;48776:15;;;;;;;;;;;;;;;:46;;;;48858:39;48881:15;48858:7;:18;48866:9;48858:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;48837:7;:18;48845:9;48837:18;;;;;;;;;;;;;;;:60;;;;48933:39;48956:15;48933:7;:18;48941:9;48933:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;48912:7;:18;48920:9;48912:18;;;;;;;;;;;;;;;:60;;;;48987:16;48998:4;48987:10;:16::i;:::-;49018:23;49030:4;49036;49018:11;:23::i;:::-;49078:9;49061:44;;49070:6;49061:44;;;49089:15;49061:44;;;;;;;;;;;;;;;;;;48540:577;;;;;;;;:::o;48028:500::-;48131:15;48148:23;48173:12;48187:23;48212:12;48228:19;48239:7;48228:10;:19::i;:::-;48130:117;;;;;;;;;;48280:28;48300:7;48280;:15;48288:6;48280:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48262:7;:15;48270:6;48262:15;;;;;;;;;;;;;;;:46;;;;48344:39;48367:15;48344:7;:18;48352:9;48344:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;48323:7;:18;48331:9;48323:18;;;;;;;;;;;;;;;:60;;;;48398:16;48409:4;48398:10;:16::i;:::-;48429:23;48441:4;48447;48429:11;:23::i;:::-;48489:9;48472:44;;48481:6;48472:44;;;48500:15;48472:44;;;;;;;;;;;;;;;;;;48028:500;;;;;;;;:::o;49706:640::-;49813:15;49830:23;49855:12;49869:23;49894:12;49910:19;49921:7;49910:10;:19::i;:::-;49812:117;;;;;;;;;;49962:28;49982:7;49962;:15;49970:6;49962:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;49944:7;:15;49952:6;49944:15;;;;;;;;;;;;;;;:46;;;;50023:28;50043:7;50023;:15;50031:6;50023:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;50005:7;:15;50013:6;50005:15;;;;;;;;;;;;;;;:46;;;;50087:39;50110:15;50087:7;:18;50095:9;50087:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;50066:7;:18;50074:9;50066:18;;;;;;;;;;;;;;;:60;;;;50162:39;50185:15;50162:7;:18;50170:9;50162:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;50141:7;:18;50149:9;50141:18;;;;;;;;;;;;;;;:60;;;;50216:16;50227:4;50216:10;:16::i;:::-;50247:23;50259:4;50265;50247:11;:23::i;:::-;50307:9;50290:44;;50299:6;50290:44;;;50318:15;50290:44;;;;;;;;;;;;;;;;;;49706:640;;;;;;;;:::o;42621:85::-;42679:15;;42669:7;:25;;;;42621:85::o;50729:166::-;50793:7;50824:59;50863:5;50824:20;50836:7;;50824;:11;;:20;;;;:::i;:::-;:24;;:59;;;;:::i;:::-;50817:66;;50729:166;;;:::o;10740:220::-;10798:7;10827:1;10822;:6;10818:20;;;10837:1;10830:8;;;;10818:20;10849:9;10865:1;10861;:5;10849:17;;10894:1;10889;10885;:5;;;;;;:10;10877:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10951:1;10944:8;;;10740:220;;;;;:::o;50358:359::-;50417:19;50440:10;:8;:10::i;:::-;50417:33;;50465:14;50482:23;50493:11;50482:6;:10;;:23;;;;:::i;:::-;50465:40;;50545:34;50572:6;50545:7;:22;50561:4;50545:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;50520:7;:22;50536:4;50520:22;;;;;;;;;;;;;;;:59;;;;50597:11;:26;50617:4;50597:26;;;;;;;;;;;;;;;;;;;;;;;;;50594:107;;;50667:34;50694:6;50667:7;:22;50683:4;50667:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;50642:7;:22;50658:4;50642:22;;;;;;;;;;;;;;;:59;;;;50594:107;50358:359;;;:::o;50907:159::-;50989:17;51001:4;50989:7;;:11;;:17;;;;:::i;:::-;50979:7;:27;;;;51034:20;51049:4;51034:10;;:14;;:20;;;;:::i;:::-;51021:10;:33;;;;50907:159;;:::o

Swarm Source

ipfs://9be75eb0fa61a4dd9b4b92ece90abd8654ab535ccac81aa62ec70063339c2745

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.