Contract Address Details

0xE9092D43232D0aDdfFEA2D3d5eaA64018601201C

Token
DogeDegens (DGN)
Creator
0xccbacb–59e53b at 0x03f7f8–55709c
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
23 Transactions
Transfers
0 Transfers
Gas Used
1,036,224
Last Balance Update
26534739
Contract name:
ReflectionToken




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
default




Verified at
2022-09-28T15:34:59.906382Z

Contract source code

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: c.sol



pragma solidity ^0.8.7;







interface IDogeSwapV2Factory {

    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;

}



interface IDogeSwapV2Router01 {

    function factory() external view returns (address);



    function WWDOGE() external view 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 addLiquidityWDOGE(

        address token,

        uint amountTokenDesired,

        uint amountTokenMin,

        uint amountWDOGEMin,

        address to,

        uint deadline

    )

        external

        payable

        returns (

            uint amountToken,

            uint amountWDOGE,

            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 removeLiquidityWDOGE(

        address token,

        uint liquidity,

        uint amountTokenMin,

        uint amountWDOGEMin,

        address to,

        uint deadline

    ) external returns (uint amountToken, uint amountWDOGE);



    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 removeLiquidityWDOGEWithPermit(

        address token,

        uint liquidity,

        uint amountTokenMin,

        uint amountWDOGEMin,

        address to,

        uint deadline,

        bool approveMax,

        uint8 v,

        bytes32 r,

        bytes32 s

    ) external returns (uint amountToken, uint amountWDOGE);



    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 swapExactWDOGEForTokens(

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external payable returns (uint[] memory amounts);



    function swapTokensForExactWDOGE(

        uint amountOut,

        uint amountInMax,

        address[] calldata path,

        address to,

        uint deadline

    ) external returns (uint[] memory amounts);



    function swapExactTokensForWDOGE(

        uint amountIn,

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external returns (uint[] memory amounts);



    function swapWDOGEForExactTokens(

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

}



interface IDogeSwapV2Router02 is IDogeSwapV2Router01 {

    function removeLiquidityWDOGESupportingFeeOnTransferTokens(

        address token,

        uint liquidity,

        uint amountTokenMin,

        uint amountWDOGEMin,

        address to,

        uint deadline

    ) external returns (uint amountWDOGE);



    function removeLiquidityWDOGEWithPermitSupportingFeeOnTransferTokens(

        address token,

        uint liquidity,

        uint amountTokenMin,

        uint amountWDOGEMin,

        address to,

        uint deadline,

        bool approveMax,

        uint8 v,

        bytes32 r,

        bytes32 s

    ) external returns (uint amountWDOGE);



    function swapExactTokensForTokensSupportingFeeOnTransferTokens(

        uint amountIn,

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external;



    function swapExactWDOGEForTokensSupportingFeeOnTransferTokens(

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external payable;



    function swapExactTokensForWDOGESupportingFeeOnTransferTokens(

        uint amountIn,

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external;

}



contract ReflectionToken is IERC20, Ownable {

    using SafeMath for uint256;

    using Address for address;



    string private constant _name = "DogeDegens";

    string private constant _symbol = "DGN";

    uint8 private constant _decimals = 18;



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

    bool constant botscantrade = false;

    

    bool public canTrade = false;

   

    uint256 private constant MAX = type(uint256).max;

    uint256 private constant _tTotal = 69420000000* 10**_decimals;

    uint256 private _rTotal = (MAX - (MAX % _tTotal));

    uint256 private _tFeeTotal;

    address public marketingWallet;

	address public devWallet;

	address private migrationWallet;	

 

    uint256 public _taxFee = 5;

    uint256 private _previousTaxFee = _taxFee;

    

    uint256 public _liquidityFee = 5;

    uint256 private _previousLiquidityFee = _liquidityFee;



    uint256 public _halfBuySellFee = 15;

    uint256 private _previousHalfBuySellFee = _halfBuySellFee;



    address V2Router = 0xa4EE06Ce40cb7e8c04E127c1F7D3dFB7F7039C81;

    IDogeSwapV2Router02 public immutable uniswapV2Router;

    address public immutable uniswapV2Pair;

    

    bool inSwapAndLiquify;

    bool public swapAndLiquifyEnabled = true;

    

    uint256 public constant _maxTxAmount = _tTotal;

    uint256 public numTokensSellToAddToLiquidity = _tTotal / 10**3;

    

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);

    event SwapAndLiquifyEnabledUpdated(bool enabled);

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

    

    modifier lockTheSwap {

        inSwapAndLiquify = true;

        _;

        inSwapAndLiquify = false;

    }

    

    constructor () {

        _rOwned[_msgSender()] = _rTotal;

        

        IDogeSwapV2Router02 _uniswapV2Router = IDogeSwapV2Router02(V2Router); 

         // Create a uniswap pair for this new token

        uniswapV2Pair = IDogeSwapV2Factory(_uniswapV2Router.factory())

            .createPair(address(this), _uniswapV2Router.WWDOGE());



        // set the rest of the contract variables

        uniswapV2Router = _uniswapV2Router;

        

        //exclude owner and this contract from fee

        _isExcludedFromFee[owner()] = true;

        _isExcludedFromFee[address(this)] = true;

        

        devWallet = _msgSender();

        marketingWallet = _msgSender();

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

    }



    function name() external pure returns (string memory) {

        return _name;

    }



    function symbol() external pure returns (string memory) {

        return _symbol;

    }



    function decimals() external pure returns (uint8) {

        return _decimals;

    }



    function totalSupply() external pure override returns (uint256) {

        return _tTotal;

    }



    function balanceOf(address account) public view override returns (uint256) {       

        return tokenFromReflection(_rOwned[account]);

    }



    function transfer(address recipient, uint256 amount) external override returns (bool) {

        _transfer(_msgSender(), recipient, amount);

        return true;

    }



    function allowance(address owner, address spender) external view override returns (uint256) {

        return _allowances[owner][spender];

    }



    function approve(address spender, uint256 amount) external override returns (bool) {

        _approve(_msgSender(), spender, amount);

        return true;

    }



    function transferFrom(address sender, address recipient, uint256 amount) external 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) external virtual returns (bool) {

        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));

        return true;

    }



    function decreaseAllowance(address spender, uint256 subtractedValue) external virtual returns (bool) {

        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));

        return true;

    }



    function totalFees() external view returns (uint256) {

        return _tFeeTotal;

    }



    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) external 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 excludeFromFee(address account) external onlyOwner {

        _isExcludedFromFee[account] = true;

    }

    

    function includeInFee(address account) external onlyOwner {

        _isExcludedFromFee[account] = false;

    }



    function setMarketingWallet(address walletAddress) external onlyOwner {

        marketingWallet = walletAddress;

    }



    function setDevWallet(address walletAddress) external onlyOwner {

        devWallet = walletAddress;

    }

     

    function addBotWallet(address botwallet) external onlyOwner() {

        botWallets[botwallet] = true;

    }

    

    function removeBotWallet(address botwallet) external onlyOwner() {

        botWallets[botwallet] = false;

    }

    

    function getBotWalletStatus(address botwallet) external view returns (bool) {

        return botWallets[botwallet];

    }

    

    function allowtrading()external onlyOwner() {

        canTrade = true;

    }



    function setMigrationWallet(address walletAddress) external onlyOwner {

        migrationWallet = walletAddress;

    }



    function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner {

        swapAndLiquifyEnabled = _enabled;

        emit SwapAndLiquifyEnabledUpdated(_enabled);

    }

    

     //to recieve ETH from uniswapV2Router when swaping

    receive() external payable {}



    function _reflectFee(uint256 rFee, uint256 tFee) private {

        _rTotal = _rTotal.sub(rFee);

        _tFeeTotal = _tFeeTotal.add(tFee);

    }



    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {

        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount, false);

        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());

        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);

    }



    function _getValues(uint256 tAmount, bool buySellFee) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {

        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount, buySellFee);

        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());

        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);

    }



    function _getTValues(uint256 tAmount, bool buySellFee) private view returns (uint256, uint256, uint256) {

        uint256 tFee = calculateTaxFee(tAmount, buySellFee);

        uint256 tLiquidity = calculateLiquidityFee(tAmount, buySellFee);

        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);

        return (tTransferAmount, tFee, tLiquidity);

    }



    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {

        uint256 rAmount = tAmount.mul(currentRate);

        uint256 rFee = tFee.mul(currentRate);

        uint256 rLiquidity = tLiquidity.mul(currentRate);

        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);

        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;      

        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);

        return (rSupply, tSupply);

    }

    

    function _takeLiquidity(uint256 tLiquidity) private {

        uint256 currentRate =  _getRate();

        uint256 rLiquidity = tLiquidity.mul(currentRate);

        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);

    }

    

    function calculateTaxFee(uint256 _amount, bool buySellFee) private view returns (uint256) {

        return _amount.mul(_taxFee + (buySellFee ? _halfBuySellFee : 0)).div(10**3);     

    }



    function calculateLiquidityFee(uint256 _amount, bool buySellFee) private view returns (uint256) {

        return _amount.mul(_liquidityFee + (buySellFee ? _halfBuySellFee : 0)).div(10**3); 

    }

    

    function removeAllFee() private {

        if(_taxFee == 0 && _liquidityFee == 0 && _halfBuySellFee == 0) return;

        

        _previousTaxFee = _taxFee;

        _previousLiquidityFee = _liquidityFee;

        _previousHalfBuySellFee = _halfBuySellFee;

        

        _taxFee = 0;

        _liquidityFee = 0;

        _halfBuySellFee = 0;

    }

    

    function restoreAllFee() private {

        _taxFee = _previousTaxFee;

        _liquidityFee = _previousLiquidityFee;

        _halfBuySellFee = _previousHalfBuySellFee;

    }

    

    function isExcludedFromFee(address account) external view returns(bool) {

        return _isExcludedFromFee[account];

    }



    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 from, address to, uint256 amount) private 

    {

        require(from != address(0), "ERC20: transfer from the zero address");

        require(to != address(0), "ERC20: transfer to the zero address");

        require(amount > 0, "Transfer amount must be greater than zero");

        if(from != owner() && to != owner())

            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        

        //indicates if fee should be deducted from transfer

        bool takeFee = true;      

        //if any account belongs to _isExcludedFromFee account then remove the fee

        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){

            takeFee = false;

        }

        

        //transfer amount, it will take tax, burn, liquidity fee

        _tokenTransfer(from,to,amount,takeFee);

    }



    //this method is responsible for taking all fee, if takeFee is true

    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {

        if(!canTrade){

            require(sender == owner() || sender == migrationWallet); // only owner allowed to trade or add liquidity

        }

        

        if(botWallets[sender] || botWallets[recipient]){

            require(botscantrade, "bots arent allowed to trade");

        }

        

        if(!takeFee)

            removeAllFee();

        

        _transferStandard(sender, recipient, amount);

               

        if(!takeFee)

            restoreAllFee();

    }



    function _transferStandard(address sender, address recipient, uint256 tAmount) private {

        bool buySell = sender == uniswapV2Pair || recipient == uniswapV2Pair;

        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount, buySell);

        _rOwned[sender] = _rOwned[sender].sub(rAmount);

        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _takeLiquidity(tLiquidity);

        _reflectFee(rFee, tFee);

        emit Transfer(sender, recipient, tTransferAmount);

    }



    function swapAndLiquify(uint256 contractTokenBalance) public lockTheSwap 

    {

        require(swapAndLiquifyEnabled, "swapAndLiquify disabled");

        // split the contract balance into liquidity, marketing, burn and treasury quotas        

        uint256 convertQuota = 3*(contractTokenBalance/4);

        uint256 liquHalf = contractTokenBalance - convertQuota;

    

        // swap tokens for ETH      

        swapTokensForEth(convertQuota); 



        // how much ETH did we just swap into?

        uint256 newBalance = address(this).balance;

              

        uint256 marketing_dev = newBalance/4;



        payable(marketingWallet).transfer(marketing_dev);

        payable(devWallet).transfer(marketing_dev);

        uint256 afterMarketingDevBalance = newBalance - marketing_dev - marketing_dev;                    

        // add liquidity to uniswap

        addLiquidity(liquHalf, afterMarketingDevBalance);

        

        emit SwapAndLiquify(liquHalf, afterMarketingDevBalance, liquHalf);

    }



    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth

        address[] memory path = new address[](2);

        path[0] = address(this);

        path[1] = uniswapV2Router.WWDOGE();



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



        // make the swap

        uniswapV2Router.swapExactTokensForWDOGESupportingFeeOnTransferTokens(

            tokenAmount,

            0, // accept any amount of ETH

            path,

            address(this),

            block.timestamp

        );

    }



    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        // approve token transfer to cover all possible scenarios

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



        // add the liquidity

        uniswapV2Router.addLiquidityWDOGE{value: ethAmount}(

            address(this),

            tokenAmount,

            0, // slippage is unavoidable

            0, // slippage is unavoidable

            owner(),

            block.timestamp

        );

    }

}

        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinTokensBeforeSwapUpdated","inputs":[{"type":"uint256","name":"minTokensBeforeSwap","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SwapAndLiquify","inputs":[{"type":"uint256","name":"tokensSwapped","internalType":"uint256","indexed":false},{"type":"uint256","name":"ethReceived","internalType":"uint256","indexed":false},{"type":"uint256","name":"tokensIntoLiqudity","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapAndLiquifyEnabledUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_halfBuySellFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_liquidityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_maxTxAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_taxFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addBotWallet","inputs":[{"type":"address","name":"botwallet","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"allowtrading","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"canTrade","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"devWallet","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"getBotWalletStatus","inputs":[{"type":"address","name":"botwallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"marketingWallet","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"numTokensSellToAddToLiquidity","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFromToken","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"},{"type":"bool","name":"deductTransferFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeBotWallet","inputs":[{"type":"address","name":"botwallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDevWallet","inputs":[{"type":"address","name":"walletAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMarketingWallet","inputs":[{"type":"address","name":"walletAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMigrationWallet","inputs":[{"type":"address","name":"walletAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapAndLiquifyEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapAndLiquify","inputs":[{"type":"uint256","name":"contractTokenBalance","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapAndLiquifyEnabled","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFees","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"uniswapV2Pair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IDogeSwapV2Router02"}],"name":"uniswapV2Router","inputs":[]},{"type":"receive","stateMutability":"payable"}]
            

Contract Creation Code

0x60c06040526000600660006101000a81548160ff0219169083151502179055506012600a6200002f91906200084a565b641029c1230062000041919062000987565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200006e919062000a6e565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200009b9190620009e8565b6007556005600c55600c54600d556005600e55600e54600f55600f60105560105460115573a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260156101000a81548160ff0219169083151502179055506103e86012600a6200014291906200084a565b641029c1230062000154919062000987565b620001609190620007b7565b6013553480156200017057600080fd5b5062000191620001856200060d60201b60201c565b6200061560201b60201c565b60075460016000620001a86200060d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025457600080fd5b505afa15801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f919062000719565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff16634ed154606040518163ffffffff1660e01b815260040160206040518083038186803b158015620002f257600080fd5b505afa15801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d919062000719565b6040518363ffffffff1660e01b81526004016200034c9291906200076d565b602060405180830381600087803b1580156200036757600080fd5b505af11580156200037c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a2919062000719565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016004600062000425620006d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004de6200060d60201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052e6200060d60201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200057e6200060d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a620005dd91906200084a565b641029c12300620005ef919062000987565b604051620005fe91906200079a565b60405180910390a35062000b30565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050620007138162000b16565b92915050565b60006020828403121562000732576200073162000b04565b5b6000620007428482850162000702565b91505092915050565b620007568162000a23565b82525050565b620007678162000a57565b82525050565b60006040820190506200078460008301856200074b565b6200079360208301846200074b565b9392505050565b6000602082019050620007b160008301846200075c565b92915050565b6000620007c48262000a57565b9150620007d18362000a57565b925082620007e457620007e362000ad5565b5b828204905092915050565b6000808291508390505b6001851115620008415780860481111562000819576200081862000aa6565b5b6001851615620008295780820291505b8081029050620008398562000b09565b9450620007f9565b94509492505050565b6000620008578262000a57565b9150620008648362000a61565b9250620008937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200089b565b905092915050565b600082620008ad576001905062000980565b81620008bd576000905062000980565b8160018114620008d65760028114620008e15762000917565b600191505062000980565b60ff841115620008f657620008f562000aa6565b5b8360020a91508482111562000910576200090f62000aa6565b5b5062000980565b5060208310610133831016604e8410600b8410161715620009515782820a9050838111156200094b576200094a62000aa6565b5b62000980565b620009608484846001620007ef565b925090508184048111156200097a576200097962000aa6565b5b81810290505b9392505050565b6000620009948262000a57565b9150620009a18362000a57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009dd57620009dc62000aa6565b5b828202905092915050565b6000620009f58262000a57565b915062000a028362000a57565b92508282101562000a185762000a1762000aa6565b5b828203905092915050565b600062000a308262000a37565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062000a7b8262000a57565b915062000a888362000a57565b92508262000a9b5762000a9a62000ad5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b60008160011c9050919050565b62000b218162000a23565b811462000b2d57600080fd5b50565b60805160601c60a05160601c61394e62000b8d600039600081816110ca015281816123dc0152612431015260008181610a5701528181611905015281816119f501528181611a1c01528181611ab80152611adf015261394e6000f3fe60806040526004361061023f5760003560e01c80634a74bb021161012e5780638ea5220f116100ab578063c49b9a801161006f578063c49b9a80146108aa578063d12a7688146108d3578063dd62ed3e146108fe578063ea2f0b371461093b578063f2fde38b1461096457610246565b80638ea5220f146107c357806395d89b41146107ee578063a457c2d714610819578063a633423114610856578063a9059cbb1461086d57610246565b806370a08231116100f257806370a08231146106ee578063715018a61461072b57806375f0a874146107425780637d1db4a51461076d5780638da5cb5b1461079857610246565b80634a74bb02146105f55780635342acb4146106205780635d098b381461065d57806360d48489146106865780636bc87c3a146106c357610246565b80632a455592116101bc578063395093511161018057806339509351146104fc5780633b124fe714610539578063437823ec146105645780634549b0391461058d57806349bd5a5e146105ca57610246565b80632a455592146104155780632d8381191461043e5780632f05205c1461047b578063313ce567146104a657806338c088de146104d157610246565b8063173865ad11610203578063173865ad1461033257806318160ddd1461035b5780631f53ac021461038657806323b872dd146103af5780632a360631146103ec57610246565b80630305caff1461024b57806306fdde0314610274578063095ea7b31461029f57806313114a9d146102dc5780631694505e1461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906128ef565b61098d565b005b34801561028057600080fd5b506102896109f0565b6040516102969190612e77565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c191906129dc565b610a2d565b6040516102d39190612e41565b60405180910390f35b3480156102e857600080fd5b506102f1610a4b565b6040516102fe9190613019565b60405180910390f35b34801561031357600080fd5b5061031c610a55565b6040516103299190612e5c565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612a49565b610a79565b005b34801561036757600080fd5b50610370610c84565b60405161037d9190613019565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906128ef565b610ca9565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612989565b610cf5565b6040516103e39190612e41565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906128ef565b610dce565b005b34801561042157600080fd5b5061043c600480360381019061043791906128ef565b610e31565b005b34801561044a57600080fd5b5061046560048036038101906104609190612a49565b610e7d565b6040516104729190613019565b60405180910390f35b34801561048757600080fd5b50610490610eeb565b60405161049d9190612e41565b60405180910390f35b3480156104b257600080fd5b506104bb610efe565b6040516104c891906130c5565b60405180910390f35b3480156104dd57600080fd5b506104e6610f07565b6040516104f39190613019565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906129dc565b610f0d565b6040516105309190612e41565b60405180910390f35b34801561054557600080fd5b5061054e610fc0565b60405161055b9190613019565b60405180910390f35b34801561057057600080fd5b5061058b600480360381019061058691906128ef565b610fc6565b005b34801561059957600080fd5b506105b460048036038101906105af9190612a76565b611029565b6040516105c19190613019565b60405180910390f35b3480156105d657600080fd5b506105df6110c8565b6040516105ec9190612dc5565b60405180910390f35b34801561060157600080fd5b5061060a6110ec565b6040516106179190612e41565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906128ef565b6110ff565b6040516106549190612e41565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906128ef565b611155565b005b34801561069257600080fd5b506106ad60048036038101906106a891906128ef565b6111a1565b6040516106ba9190612e41565b60405180910390f35b3480156106cf57600080fd5b506106d86111f7565b6040516106e59190613019565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906128ef565b6111fd565b6040516107229190613019565b60405180910390f35b34801561073757600080fd5b5061074061124e565b005b34801561074e57600080fd5b50610757611262565b6040516107649190612dc5565b60405180910390f35b34801561077957600080fd5b50610782611288565b60405161078f9190613019565b60405180910390f35b3480156107a457600080fd5b506107ad6112a9565b6040516107ba9190612dc5565b60405180910390f35b3480156107cf57600080fd5b506107d86112d2565b6040516107e59190612dc5565b60405180910390f35b3480156107fa57600080fd5b506108036112f8565b6040516108109190612e77565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906129dc565b611335565b60405161084d9190612e41565b60405180910390f35b34801561086257600080fd5b5061086b611402565b005b34801561087957600080fd5b50610894600480360381019061088f91906129dc565b611427565b6040516108a19190612e41565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190612a1c565b611445565b005b3480156108df57600080fd5b506108e86114a1565b6040516108f59190613019565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190612949565b6114a7565b6040516109329190613019565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d91906128ef565b61152e565b005b34801561097057600080fd5b5061098b600480360381019061098691906128ef565b611591565b005b610995611615565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600a81526020017f446f6765446567656e7300000000000000000000000000000000000000000000815250905090565b6000610a41610a3a611693565b848461169b565b6001905092915050565b6000600854905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001601260146101000a81548160ff021916908315150217905550601260159054906101000a900460ff16610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90612ff9565b60405180910390fd5b6000600482610af2919061318b565b6003610afe919061332d565b905060008183610b0e9190613387565b9050610b1982611866565b60004790506000600482610b2d919061318b565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b97573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c00573d6000803e3d6000fd5b506000818284610c109190613387565b610c1a9190613387565b9050610c268482611ab2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848286604051610c599392919061308e565b60405180910390a150505050506000601260146101000a81548160ff02191690831515021790555050565b60006012600a610c94919061320f565b641029c12300610ca4919061332d565b905090565b610cb1611615565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d02848484611ba2565b610dc384610d0e611693565b610dbe856040518060600160405280602881526020016138cc60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d74611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e649092919063ffffffff16565b61169b565b600190509392505050565b610dd6611615565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e39611615565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600754821115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612eb9565b60405180910390fd5b6000610ece611eb9565b9050610ee38184611ee490919063ffffffff16565b915050919050565b600660009054906101000a900460ff1681565b60006012905090565b60105481565b6000610fb6610f1a611693565b84610fb18560036000610f2b611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b61169b565b6001905092915050565b600c5481565b610fce611615565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012600a611039919061320f565b641029c12300611049919061332d565b83111561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f39565b60405180910390fd5b816110ab57600061109b84611f10565b50505050509050809150506110c2565b60006110b684611f10565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260159054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61115d611615565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b6000611247600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7d565b9050919050565b611256611615565b6112606000611f6e565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6012600a611296919061320f565b641029c123006112a6919061332d565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600381526020017f44474e0000000000000000000000000000000000000000000000000000000000815250905090565b60006113f8611342611693565b846113f3856040518060600160405280602581526020016138f4602591396003600061136c611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e649092919063ffffffff16565b61169b565b6001905092915050565b61140a611615565b6001600660006101000a81548160ff021916908315150217905550565b600061143b611434611693565b8484611ba2565b6001905092915050565b61144d611615565b80601260156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516114969190612e41565b60405180910390a150565b60135481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611536611615565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611599611615565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612ed9565b60405180910390fd5b61161281611f6e565b50565b61161d611693565b73ffffffffffffffffffffffffffffffffffffffff1661163b6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890612f79565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290612fd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290612ef9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118599190613019565b60405180910390a3505050565b6000600267ffffffffffffffff81111561188357611882613518565b5b6040519080825280602002602001820160405280156118b15781602001602082028036833780820191505090505b50905030816000815181106118c9576118c86134e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634ed154606040518163ffffffff1660e01b815260040160206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a1919061291c565b816001815181106119b5576119b46134e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a1a307f00000000000000000000000000000000000000000000000000000000000000008461169b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b43d9bbb8360008430426040518663ffffffff1660e01b8152600401611a7c959493929190613034565b600060405180830381600087803b158015611a9657600080fd5b505af1158015611aaa573d6000803e3d6000fd5b505050505050565b611add307f00000000000000000000000000000000000000000000000000000000000000008461169b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e6529ab4823085600080611b276112a9565b426040518863ffffffff1660e01b8152600401611b4996959493929190612de0565b6060604051808303818588803b158015611b6257600080fd5b505af1158015611b76573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b9b9190612ab6565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990612fb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990612e99565b60405180910390fd5b60008111611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90612f99565b60405180910390fd5b611ccd6112a9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3b5750611d0b6112a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611da1576012600a611d4e919061320f565b641029c12300611d5e919061332d565b811115611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790612f59565b60405180910390fd5b5b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e485750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e5257600090505b611e5e84848484612032565b50505050565b6000838311158290611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea39190612e77565b60405180910390fd5b5082840390509392505050565b6000806000611ec66121f3565b91509150611edd8183611ee490919063ffffffff16565b9250505090565b60008183611ef2919061318b565b905092915050565b60008183611f089190613135565b905092915050565b6000806000806000806000806000611f298a6000612291565b9250925092506000806000611f478d8686611f42611eb9565b6122ed565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff166120de5761204e6112a9565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d45750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b6120dd57600080fd5b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061217f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121c65760006121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90612f19565b60405180910390fd5b5b806121d4576121d3612376565b5b6121df8484846123d8565b806121ed576121ec61264e565b5b50505050565b6000806000600754905060006012600a61220d919061320f565b641029c1230061221d919061332d565b90506122516012600a612230919061320f565b641029c12300612240919061332d565b600754611ee490919063ffffffff16565b821015612284576007546012600a612269919061320f565b641029c12300612279919061332d565b93509350505061228d565b81819350935050505b9091565b6000806000806122a1868661266b565b905060006122af87876126b8565b905060006122d8826122ca858b61270590919063ffffffff16565b61270590919063ffffffff16565b90508083839550955095505050509250925092565b600080600080612306858961271b90919063ffffffff16565b9050600061231d868961271b90919063ffffffff16565b90506000612334878961271b90919063ffffffff16565b9050600061235d8261234f858761270590919063ffffffff16565b61270590919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600c5414801561238a57506000600e54145b801561239857506000601054145b156123a2576123d6565b600c54600d81905550600e54600f819055506010546011819055506000600c819055506000600e8190555060006010819055505b565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b90506000806000806000806124948888612731565b9550955095509550955095506124f286600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461270590919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258785600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125d38161278f565b6125dd848361284c565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263a9190613019565b60405180910390a350505050505050505050565b600d54600c81905550600f54600e81905550601154601081905550565b60006126b06103e86126a284612682576000612686565b6010545b600c546126939190613135565b8661271b90919063ffffffff16565b611ee490919063ffffffff16565b905092915050565b60006126fd6103e86126ef846126cf5760006126d3565b6010545b600e546126e09190613135565b8661271b90919063ffffffff16565b611ee490919063ffffffff16565b905092915050565b600081836127139190613387565b905092915050565b60008183612729919061332d565b905092915050565b60008060008060008060008060006127498b8b612291565b92509250925060008060006127678e8686612762611eb9565b6122ed565b9250925092508282828888889b509b509b509b509b509b505050505050509295509295509295565b6000612799611eb9565b905060006127b0828461271b90919063ffffffff16565b905061280481600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6128618260075461270590919063ffffffff16565b60078190555061287c81600854611efa90919063ffffffff16565b6008819055505050565b60008135905061289581613886565b92915050565b6000815190506128aa81613886565b92915050565b6000813590506128bf8161389d565b92915050565b6000813590506128d4816138b4565b92915050565b6000815190506128e9816138b4565b92915050565b60006020828403121561290557612904613547565b5b600061291384828501612886565b91505092915050565b60006020828403121561293257612931613547565b5b60006129408482850161289b565b91505092915050565b600080604083850312156129605761295f613547565b5b600061296e85828601612886565b925050602061297f85828601612886565b9150509250929050565b6000806000606084860312156129a2576129a1613547565b5b60006129b086828701612886565b93505060206129c186828701612886565b92505060406129d2868287016128c5565b9150509250925092565b600080604083850312156129f3576129f2613547565b5b6000612a0185828601612886565b9250506020612a12858286016128c5565b9150509250929050565b600060208284031215612a3257612a31613547565b5b6000612a40848285016128b0565b91505092915050565b600060208284031215612a5f57612a5e613547565b5b6000612a6d848285016128c5565b91505092915050565b60008060408385031215612a8d57612a8c613547565b5b6000612a9b858286016128c5565b9250506020612aac858286016128b0565b9150509250929050565b600080600060608486031215612acf57612ace613547565b5b6000612add868287016128da565b9350506020612aee868287016128da565b9250506040612aff868287016128da565b9150509250925092565b6000612b158383612b21565b60208301905092915050565b612b2a816133bb565b82525050565b612b39816133bb565b82525050565b6000612b4a826130f0565b612b548185613113565b9350612b5f836130e0565b8060005b83811015612b90578151612b778882612b09565b9750612b8283613106565b925050600181019050612b63565b5085935050505092915050565b612ba6816133cd565b82525050565b612bb581613410565b82525050565b612bc481613422565b82525050565b6000612bd5826130fb565b612bdf8185613124565b9350612bef818560208601613458565b612bf88161354c565b840191505092915050565b6000612c10602383613124565b9150612c1b8261356a565b604082019050919050565b6000612c33602a83613124565b9150612c3e826135b9565b604082019050919050565b6000612c56602683613124565b9150612c6182613608565b604082019050919050565b6000612c79602283613124565b9150612c8482613657565b604082019050919050565b6000612c9c601b83613124565b9150612ca7826136a6565b602082019050919050565b6000612cbf601f83613124565b9150612cca826136cf565b602082019050919050565b6000612ce2602883613124565b9150612ced826136f8565b604082019050919050565b6000612d05602083613124565b9150612d1082613747565b602082019050919050565b6000612d28602983613124565b9150612d3382613770565b604082019050919050565b6000612d4b602583613124565b9150612d56826137bf565b604082019050919050565b6000612d6e602483613124565b9150612d798261380e565b604082019050919050565b6000612d91601783613124565b9150612d9c8261385d565b602082019050919050565b612db0816133f9565b82525050565b612dbf81613403565b82525050565b6000602082019050612dda6000830184612b30565b92915050565b600060c082019050612df56000830189612b30565b612e026020830188612da7565b612e0f6040830187612bbb565b612e1c6060830186612bbb565b612e296080830185612b30565b612e3660a0830184612da7565b979650505050505050565b6000602082019050612e566000830184612b9d565b92915050565b6000602082019050612e716000830184612bac565b92915050565b60006020820190508181036000830152612e918184612bca565b905092915050565b60006020820190508181036000830152612eb281612c03565b9050919050565b60006020820190508181036000830152612ed281612c26565b9050919050565b60006020820190508181036000830152612ef281612c49565b9050919050565b60006020820190508181036000830152612f1281612c6c565b9050919050565b60006020820190508181036000830152612f3281612c8f565b9050919050565b60006020820190508181036000830152612f5281612cb2565b9050919050565b60006020820190508181036000830152612f7281612cd5565b9050919050565b60006020820190508181036000830152612f9281612cf8565b9050919050565b60006020820190508181036000830152612fb281612d1b565b9050919050565b60006020820190508181036000830152612fd281612d3e565b9050919050565b60006020820190508181036000830152612ff281612d61565b9050919050565b6000602082019050818103600083015261301281612d84565b9050919050565b600060208201905061302e6000830184612da7565b92915050565b600060a0820190506130496000830188612da7565b6130566020830187612bbb565b81810360408301526130688186612b3f565b90506130776060830185612b30565b6130846080830184612da7565b9695505050505050565b60006060820190506130a36000830186612da7565b6130b06020830185612da7565b6130bd6040830184612da7565b949350505050565b60006020820190506130da6000830184612db6565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613140826133f9565b915061314b836133f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131805761317f61348b565b5b828201905092915050565b6000613196826133f9565b91506131a1836133f9565b9250826131b1576131b06134ba565b5b828204905092915050565b6000808291508390505b6001851115613206578086048111156131e2576131e161348b565b5b60018516156131f15780820291505b80810290506131ff8561355d565b94506131c6565b94509492505050565b600061321a826133f9565b915061322583613403565b92506132527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461325a565b905092915050565b60008261326a5760019050613326565b816132785760009050613326565b816001811461328e5760028114613298576132c7565b6001915050613326565b60ff8411156132aa576132a961348b565b5b8360020a9150848211156132c1576132c061348b565b5b50613326565b5060208310610133831016604e8410600b84101617156132fc5782820a9050838111156132f7576132f661348b565b5b613326565b61330984848460016131bc565b925090508184048111156133205761331f61348b565b5b81810290505b9392505050565b6000613338826133f9565b9150613343836133f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337c5761337b61348b565b5b828202905092915050565b6000613392826133f9565b915061339d836133f9565b9250828210156133b0576133af61348b565b5b828203905092915050565b60006133c6826133d9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061341b82613434565b9050919050565b600061342d826133f9565b9050919050565b600061343f82613446565b9050919050565b6000613451826133d9565b9050919050565b60005b8381101561347657808201518184015260208101905061345b565b83811115613485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f626f7473206172656e7420616c6c6f77656420746f2074726164650000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f73776170416e644c6971756966792064697361626c6564000000000000000000600082015250565b61388f816133bb565b811461389a57600080fd5b50565b6138a6816133cd565b81146138b157600080fd5b50565b6138bd816133f9565b81146138c857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122068f512ff8bf10eefa1cd902faeba3218a29c06c90997d84a845dad7b8a4a78a564736f6c63430008070033

Deployed ByteCode

0x60806040526004361061023f5760003560e01c80634a74bb021161012e5780638ea5220f116100ab578063c49b9a801161006f578063c49b9a80146108aa578063d12a7688146108d3578063dd62ed3e146108fe578063ea2f0b371461093b578063f2fde38b1461096457610246565b80638ea5220f146107c357806395d89b41146107ee578063a457c2d714610819578063a633423114610856578063a9059cbb1461086d57610246565b806370a08231116100f257806370a08231146106ee578063715018a61461072b57806375f0a874146107425780637d1db4a51461076d5780638da5cb5b1461079857610246565b80634a74bb02146105f55780635342acb4146106205780635d098b381461065d57806360d48489146106865780636bc87c3a146106c357610246565b80632a455592116101bc578063395093511161018057806339509351146104fc5780633b124fe714610539578063437823ec146105645780634549b0391461058d57806349bd5a5e146105ca57610246565b80632a455592146104155780632d8381191461043e5780632f05205c1461047b578063313ce567146104a657806338c088de146104d157610246565b8063173865ad11610203578063173865ad1461033257806318160ddd1461035b5780631f53ac021461038657806323b872dd146103af5780632a360631146103ec57610246565b80630305caff1461024b57806306fdde0314610274578063095ea7b31461029f57806313114a9d146102dc5780631694505e1461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906128ef565b61098d565b005b34801561028057600080fd5b506102896109f0565b6040516102969190612e77565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c191906129dc565b610a2d565b6040516102d39190612e41565b60405180910390f35b3480156102e857600080fd5b506102f1610a4b565b6040516102fe9190613019565b60405180910390f35b34801561031357600080fd5b5061031c610a55565b6040516103299190612e5c565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612a49565b610a79565b005b34801561036757600080fd5b50610370610c84565b60405161037d9190613019565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906128ef565b610ca9565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612989565b610cf5565b6040516103e39190612e41565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906128ef565b610dce565b005b34801561042157600080fd5b5061043c600480360381019061043791906128ef565b610e31565b005b34801561044a57600080fd5b5061046560048036038101906104609190612a49565b610e7d565b6040516104729190613019565b60405180910390f35b34801561048757600080fd5b50610490610eeb565b60405161049d9190612e41565b60405180910390f35b3480156104b257600080fd5b506104bb610efe565b6040516104c891906130c5565b60405180910390f35b3480156104dd57600080fd5b506104e6610f07565b6040516104f39190613019565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906129dc565b610f0d565b6040516105309190612e41565b60405180910390f35b34801561054557600080fd5b5061054e610fc0565b60405161055b9190613019565b60405180910390f35b34801561057057600080fd5b5061058b600480360381019061058691906128ef565b610fc6565b005b34801561059957600080fd5b506105b460048036038101906105af9190612a76565b611029565b6040516105c19190613019565b60405180910390f35b3480156105d657600080fd5b506105df6110c8565b6040516105ec9190612dc5565b60405180910390f35b34801561060157600080fd5b5061060a6110ec565b6040516106179190612e41565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906128ef565b6110ff565b6040516106549190612e41565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906128ef565b611155565b005b34801561069257600080fd5b506106ad60048036038101906106a891906128ef565b6111a1565b6040516106ba9190612e41565b60405180910390f35b3480156106cf57600080fd5b506106d86111f7565b6040516106e59190613019565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906128ef565b6111fd565b6040516107229190613019565b60405180910390f35b34801561073757600080fd5b5061074061124e565b005b34801561074e57600080fd5b50610757611262565b6040516107649190612dc5565b60405180910390f35b34801561077957600080fd5b50610782611288565b60405161078f9190613019565b60405180910390f35b3480156107a457600080fd5b506107ad6112a9565b6040516107ba9190612dc5565b60405180910390f35b3480156107cf57600080fd5b506107d86112d2565b6040516107e59190612dc5565b60405180910390f35b3480156107fa57600080fd5b506108036112f8565b6040516108109190612e77565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906129dc565b611335565b60405161084d9190612e41565b60405180910390f35b34801561086257600080fd5b5061086b611402565b005b34801561087957600080fd5b50610894600480360381019061088f91906129dc565b611427565b6040516108a19190612e41565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190612a1c565b611445565b005b3480156108df57600080fd5b506108e86114a1565b6040516108f59190613019565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190612949565b6114a7565b6040516109329190613019565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d91906128ef565b61152e565b005b34801561097057600080fd5b5061098b600480360381019061098691906128ef565b611591565b005b610995611615565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600a81526020017f446f6765446567656e7300000000000000000000000000000000000000000000815250905090565b6000610a41610a3a611693565b848461169b565b6001905092915050565b6000600854905090565b7f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c8181565b6001601260146101000a81548160ff021916908315150217905550601260159054906101000a900460ff16610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90612ff9565b60405180910390fd5b6000600482610af2919061318b565b6003610afe919061332d565b905060008183610b0e9190613387565b9050610b1982611866565b60004790506000600482610b2d919061318b565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b97573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c00573d6000803e3d6000fd5b506000818284610c109190613387565b610c1a9190613387565b9050610c268482611ab2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848286604051610c599392919061308e565b60405180910390a150505050506000601260146101000a81548160ff02191690831515021790555050565b60006012600a610c94919061320f565b641029c12300610ca4919061332d565b905090565b610cb1611615565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d02848484611ba2565b610dc384610d0e611693565b610dbe856040518060600160405280602881526020016138cc60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d74611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e649092919063ffffffff16565b61169b565b600190509392505050565b610dd6611615565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e39611615565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600754821115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612eb9565b60405180910390fd5b6000610ece611eb9565b9050610ee38184611ee490919063ffffffff16565b915050919050565b600660009054906101000a900460ff1681565b60006012905090565b60105481565b6000610fb6610f1a611693565b84610fb18560036000610f2b611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b61169b565b6001905092915050565b600c5481565b610fce611615565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012600a611039919061320f565b641029c12300611049919061332d565b83111561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f39565b60405180910390fd5b816110ab57600061109b84611f10565b50505050509050809150506110c2565b60006110b684611f10565b50505050915050809150505b92915050565b7f000000000000000000000000ba0479b40a8c3bcf0606db3a2b5cebed691ba67781565b601260159054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61115d611615565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b6000611247600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7d565b9050919050565b611256611615565b6112606000611f6e565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6012600a611296919061320f565b641029c123006112a6919061332d565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600381526020017f44474e0000000000000000000000000000000000000000000000000000000000815250905090565b60006113f8611342611693565b846113f3856040518060600160405280602581526020016138f4602591396003600061136c611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e649092919063ffffffff16565b61169b565b6001905092915050565b61140a611615565b6001600660006101000a81548160ff021916908315150217905550565b600061143b611434611693565b8484611ba2565b6001905092915050565b61144d611615565b80601260156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516114969190612e41565b60405180910390a150565b60135481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611536611615565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611599611615565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612ed9565b60405180910390fd5b61161281611f6e565b50565b61161d611693565b73ffffffffffffffffffffffffffffffffffffffff1661163b6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890612f79565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290612fd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290612ef9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118599190613019565b60405180910390a3505050565b6000600267ffffffffffffffff81111561188357611882613518565b5b6040519080825280602002602001820160405280156118b15781602001602082028036833780820191505090505b50905030816000815181106118c9576118c86134e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c8173ffffffffffffffffffffffffffffffffffffffff16634ed154606040518163ffffffff1660e01b815260040160206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a1919061291c565b816001815181106119b5576119b46134e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a1a307f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c818461169b565b7f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c8173ffffffffffffffffffffffffffffffffffffffff1663b43d9bbb8360008430426040518663ffffffff1660e01b8152600401611a7c959493929190613034565b600060405180830381600087803b158015611a9657600080fd5b505af1158015611aaa573d6000803e3d6000fd5b505050505050565b611add307f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c818461169b565b7f000000000000000000000000a4ee06ce40cb7e8c04e127c1f7d3dfb7f7039c8173ffffffffffffffffffffffffffffffffffffffff1663e6529ab4823085600080611b276112a9565b426040518863ffffffff1660e01b8152600401611b4996959493929190612de0565b6060604051808303818588803b158015611b6257600080fd5b505af1158015611b76573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b9b9190612ab6565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990612fb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990612e99565b60405180910390fd5b60008111611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90612f99565b60405180910390fd5b611ccd6112a9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3b5750611d0b6112a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611da1576012600a611d4e919061320f565b641029c12300611d5e919061332d565b811115611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790612f59565b60405180910390fd5b5b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e485750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e5257600090505b611e5e84848484612032565b50505050565b6000838311158290611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea39190612e77565b60405180910390fd5b5082840390509392505050565b6000806000611ec66121f3565b91509150611edd8183611ee490919063ffffffff16565b9250505090565b60008183611ef2919061318b565b905092915050565b60008183611f089190613135565b905092915050565b6000806000806000806000806000611f298a6000612291565b9250925092506000806000611f478d8686611f42611eb9565b6122ed565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff166120de5761204e6112a9565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d45750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b6120dd57600080fd5b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061217f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121c65760006121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc90612f19565b60405180910390fd5b5b806121d4576121d3612376565b5b6121df8484846123d8565b806121ed576121ec61264e565b5b50505050565b6000806000600754905060006012600a61220d919061320f565b641029c1230061221d919061332d565b90506122516012600a612230919061320f565b641029c12300612240919061332d565b600754611ee490919063ffffffff16565b821015612284576007546012600a612269919061320f565b641029c12300612279919061332d565b93509350505061228d565b81819350935050505b9091565b6000806000806122a1868661266b565b905060006122af87876126b8565b905060006122d8826122ca858b61270590919063ffffffff16565b61270590919063ffffffff16565b90508083839550955095505050509250925092565b600080600080612306858961271b90919063ffffffff16565b9050600061231d868961271b90919063ffffffff16565b90506000612334878961271b90919063ffffffff16565b9050600061235d8261234f858761270590919063ffffffff16565b61270590919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600c5414801561238a57506000600e54145b801561239857506000601054145b156123a2576123d6565b600c54600d81905550600e54600f819055506010546011819055506000600c819055506000600e8190555060006010819055505b565b60007f000000000000000000000000ba0479b40a8c3bcf0606db3a2b5cebed691ba67773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247f57507f000000000000000000000000ba0479b40a8c3bcf0606db3a2b5cebed691ba67773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b90506000806000806000806124948888612731565b9550955095509550955095506124f286600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461270590919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258785600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125d38161278f565b6125dd848361284c565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263a9190613019565b60405180910390a350505050505050505050565b600d54600c81905550600f54600e81905550601154601081905550565b60006126b06103e86126a284612682576000612686565b6010545b600c546126939190613135565b8661271b90919063ffffffff16565b611ee490919063ffffffff16565b905092915050565b60006126fd6103e86126ef846126cf5760006126d3565b6010545b600e546126e09190613135565b8661271b90919063ffffffff16565b611ee490919063ffffffff16565b905092915050565b600081836127139190613387565b905092915050565b60008183612729919061332d565b905092915050565b60008060008060008060008060006127498b8b612291565b92509250925060008060006127678e8686612762611eb9565b6122ed565b9250925092508282828888889b509b509b509b509b509b505050505050509295509295509295565b6000612799611eb9565b905060006127b0828461271b90919063ffffffff16565b905061280481600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efa90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6128618260075461270590919063ffffffff16565b60078190555061287c81600854611efa90919063ffffffff16565b6008819055505050565b60008135905061289581613886565b92915050565b6000815190506128aa81613886565b92915050565b6000813590506128bf8161389d565b92915050565b6000813590506128d4816138b4565b92915050565b6000815190506128e9816138b4565b92915050565b60006020828403121561290557612904613547565b5b600061291384828501612886565b91505092915050565b60006020828403121561293257612931613547565b5b60006129408482850161289b565b91505092915050565b600080604083850312156129605761295f613547565b5b600061296e85828601612886565b925050602061297f85828601612886565b9150509250929050565b6000806000606084860312156129a2576129a1613547565b5b60006129b086828701612886565b93505060206129c186828701612886565b92505060406129d2868287016128c5565b9150509250925092565b600080604083850312156129f3576129f2613547565b5b6000612a0185828601612886565b9250506020612a12858286016128c5565b9150509250929050565b600060208284031215612a3257612a31613547565b5b6000612a40848285016128b0565b91505092915050565b600060208284031215612a5f57612a5e613547565b5b6000612a6d848285016128c5565b91505092915050565b60008060408385031215612a8d57612a8c613547565b5b6000612a9b858286016128c5565b9250506020612aac858286016128b0565b9150509250929050565b600080600060608486031215612acf57612ace613547565b5b6000612add868287016128da565b9350506020612aee868287016128da565b9250506040612aff868287016128da565b9150509250925092565b6000612b158383612b21565b60208301905092915050565b612b2a816133bb565b82525050565b612b39816133bb565b82525050565b6000612b4a826130f0565b612b548185613113565b9350612b5f836130e0565b8060005b83811015612b90578151612b778882612b09565b9750612b8283613106565b925050600181019050612b63565b5085935050505092915050565b612ba6816133cd565b82525050565b612bb581613410565b82525050565b612bc481613422565b82525050565b6000612bd5826130fb565b612bdf8185613124565b9350612bef818560208601613458565b612bf88161354c565b840191505092915050565b6000612c10602383613124565b9150612c1b8261356a565b604082019050919050565b6000612c33602a83613124565b9150612c3e826135b9565b604082019050919050565b6000612c56602683613124565b9150612c6182613608565b604082019050919050565b6000612c79602283613124565b9150612c8482613657565b604082019050919050565b6000612c9c601b83613124565b9150612ca7826136a6565b602082019050919050565b6000612cbf601f83613124565b9150612cca826136cf565b602082019050919050565b6000612ce2602883613124565b9150612ced826136f8565b604082019050919050565b6000612d05602083613124565b9150612d1082613747565b602082019050919050565b6000612d28602983613124565b9150612d3382613770565b604082019050919050565b6000612d4b602583613124565b9150612d56826137bf565b604082019050919050565b6000612d6e602483613124565b9150612d798261380e565b604082019050919050565b6000612d91601783613124565b9150612d9c8261385d565b602082019050919050565b612db0816133f9565b82525050565b612dbf81613403565b82525050565b6000602082019050612dda6000830184612b30565b92915050565b600060c082019050612df56000830189612b30565b612e026020830188612da7565b612e0f6040830187612bbb565b612e1c6060830186612bbb565b612e296080830185612b30565b612e3660a0830184612da7565b979650505050505050565b6000602082019050612e566000830184612b9d565b92915050565b6000602082019050612e716000830184612bac565b92915050565b60006020820190508181036000830152612e918184612bca565b905092915050565b60006020820190508181036000830152612eb281612c03565b9050919050565b60006020820190508181036000830152612ed281612c26565b9050919050565b60006020820190508181036000830152612ef281612c49565b9050919050565b60006020820190508181036000830152612f1281612c6c565b9050919050565b60006020820190508181036000830152612f3281612c8f565b9050919050565b60006020820190508181036000830152612f5281612cb2565b9050919050565b60006020820190508181036000830152612f7281612cd5565b9050919050565b60006020820190508181036000830152612f9281612cf8565b9050919050565b60006020820190508181036000830152612fb281612d1b565b9050919050565b60006020820190508181036000830152612fd281612d3e565b9050919050565b60006020820190508181036000830152612ff281612d61565b9050919050565b6000602082019050818103600083015261301281612d84565b9050919050565b600060208201905061302e6000830184612da7565b92915050565b600060a0820190506130496000830188612da7565b6130566020830187612bbb565b81810360408301526130688186612b3f565b90506130776060830185612b30565b6130846080830184612da7565b9695505050505050565b60006060820190506130a36000830186612da7565b6130b06020830185612da7565b6130bd6040830184612da7565b949350505050565b60006020820190506130da6000830184612db6565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613140826133f9565b915061314b836133f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131805761317f61348b565b5b828201905092915050565b6000613196826133f9565b91506131a1836133f9565b9250826131b1576131b06134ba565b5b828204905092915050565b6000808291508390505b6001851115613206578086048111156131e2576131e161348b565b5b60018516156131f15780820291505b80810290506131ff8561355d565b94506131c6565b94509492505050565b600061321a826133f9565b915061322583613403565b92506132527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461325a565b905092915050565b60008261326a5760019050613326565b816132785760009050613326565b816001811461328e5760028114613298576132c7565b6001915050613326565b60ff8411156132aa576132a961348b565b5b8360020a9150848211156132c1576132c061348b565b5b50613326565b5060208310610133831016604e8410600b84101617156132fc5782820a9050838111156132f7576132f661348b565b5b613326565b61330984848460016131bc565b925090508184048111156133205761331f61348b565b5b81810290505b9392505050565b6000613338826133f9565b9150613343836133f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337c5761337b61348b565b5b828202905092915050565b6000613392826133f9565b915061339d836133f9565b9250828210156133b0576133af61348b565b5b828203905092915050565b60006133c6826133d9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061341b82613434565b9050919050565b600061342d826133f9565b9050919050565b600061343f82613446565b9050919050565b6000613451826133d9565b9050919050565b60005b8381101561347657808201518184015260208101905061345b565b83811115613485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f626f7473206172656e7420616c6c6f77656420746f2074726164650000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f73776170416e644c6971756966792064697361626c6564000000000000000000600082015250565b61388f816133bb565b811461389a57600080fd5b50565b6138a6816133cd565b81146138b157600080fd5b50565b6138bd816133f9565b81146138c857600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122068f512ff8bf10eefa1cd902faeba3218a29c06c90997d84a845dad7b8a4a78a564736f6c63430008070033