false
true
0

Contract Address Details

0x1f828fc55472Ff3a343F86FAcffafcb0Cb7772a0

Token
JACK (JACK)
Creator
0x23e3a7–791cf5 at 0xfbb163–6d5144
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
2,864 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25878139
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
JACK




Optimization enabled
false
Compiler version
v0.8.18+commit.87f61d96




EVM Version
default




Verified at
2023-09-03T05:47:32.230791Z

Contract source code

// File: contracts/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity >=0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        if (_status == _ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}
// File: contracts/IXENCrypto.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 IXENCrypto {
    /**
     * @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);

    function burn(address user, uint256 amount) external;

    function userBurns(address user) external view returns (uint256);
    
}
          
// File: contracts/IPulseXRouter.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

interface IPulseXRouter01 {
    function factory() external pure returns (address);

    function WPLS() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);

    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);

    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IPulseXRouter02 is IPulseXRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

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

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
          
// File: contracts/IPancakeFactory.sol



pragma solidity >=0.5.16;


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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}          
// File: contracts/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: contracts/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: contracts/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: contracts/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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



pragma solidity >=0.8.0;








interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IBurnRedeemable {
    function onTokenBurned(address user, uint256 amount) external;
}


contract JACK is ERC20, Ownable, IERC165, IBurnRedeemable, ReentrancyGuard {

    IPulseXRouter02 public immutable router;
    address public immutable lpPair;
    address public immutable xenAddress;
    uint256 public burntAmount;
    uint256 public immutable taxFee;
    string public constant Author = "@0xSlashd0t";
    
    mapping(address => uint256) public userAccumulatedJack;
    mapping(address => uint256) public userBurntXen;
    mapping(address => bool) public excludedFromFee;
    event AccumulatedFee(address account, uint256 amount);
    event SwappedFee(address token, uint256 amount);
    event XENTokenBurnt(address user, uint256 amount);

    bytes4 private constant _INTERFACE_ID_IBURNREDEEMABLE = type(IBurnRedeemable).interfaceId;

    function supportsInterface(bytes4 interfaceId) external pure override returns (bool) {
        return interfaceId == _INTERFACE_ID_IBURNREDEEMABLE || interfaceId == type(IERC165).interfaceId;
    }


    modifier onlyXENCrypto() {
        require(msg.sender == xenAddress, "Unauthorized: Can only be called by XENCrypto contract");
        _;
    }

    function onTokenBurned(address user, uint256 amount) external onlyXENCrypto override {
        emit XENTokenBurnt(user, amount);
    }

    constructor() ERC20('JACK', 'JACK') {
        xenAddress = 0x8a7FDcA264e87b6da72D000f22186B4403081A2a;
        IPulseXRouter02 _router = IPulseXRouter02(0x98bf93ebf5c380C0e6Ae8e192A7e2AE08edAcc02); 
        
        router = _router;
        lpPair = IPancakeFactory(router.factory()).createPair(address(this), router.WPLS());
        burntAmount = 0;
        taxFee = 100;
        excludedFromFee[msg.sender] = true;
        excludedFromFee[address(router)] = true;
        excludedFromFee[address(this)] = true;
        // approve maximum amount of XEN for the JACK contract
        IXENCrypto xenTokenInstance = IXENCrypto(xenAddress);
        uint256 maxAmount = type(uint256).max;  // max possible value for uint256
        xenTokenInstance.approve(xenAddress, maxAmount);
        // mint the initial supply
        _mint(msg.sender, 2100000000000 * 10 ** 18);
    }

    // transferOwnership
    function transferOwnership(address newOwner) public override onlyOwner {
        // remove old owner from fee exclusion
        excludedFromFee[msg.sender] = false;
        // add new owner to fee exclusion
        excludedFromFee[newOwner] = true;
        super.transferOwnership(newOwner);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');
        uint256 fee = amount / taxFee; // This represents the 1% fee tax
        if (from == lpPair && !excludedFromFee[to]) {
            super._transfer(from, to, amount - fee);
            super._transfer(from, address(this), fee);
            // record the amount of jack bought
            userAccumulatedJack[to] += fee;
            emit AccumulatedFee(to, fee);
        } else if (to == lpPair && !excludedFromFee[from]) {
            super._transfer(from, to, amount - fee);
            super._transfer(from, address(this), fee);
            // record the amount of jack bought
            userAccumulatedJack[from] += fee;
            emit AccumulatedFee(from, fee);
        } else {
            super._transfer(from, to, amount);
        }
    }

    // burn xen and get X1 allocation
    function burn() public nonReentrant returns (uint256){
        require(userAccumulatedJack[msg.sender] > 0, 'JACK: You have no JACK to burn');

        uint256 jackAmount = userAccumulatedJack[msg.sender];
        address swapToken = xenAddress;
        uint256 outputAmount;
        uint256[] memory amounts;
        // approve Jack on the Router
        _approve(address(this), address(router), jackAmount);
        // do the swap
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = router.WPLS();
        path[2] = swapToken;
        amounts = router.swapExactTokensForTokens(jackAmount, 0, path, address(this), block.timestamp);
        outputAmount = amounts[2];

        emit SwappedFee(swapToken, outputAmount);

        // burn the xen on behalf of the user
        uint256 amountBurnt = burnXen(msg.sender, outputAmount);

        return amountBurnt;
    }

    // burn xen and get X1 allocation
    function burnXen(address user, uint256 amount) internal returns (uint256){
        if(amount > 0){
            IXENCrypto xenTokenInstance = IXENCrypto(xenAddress);
            // send the Xen to the user
            xenTokenInstance.transfer(user, amount);
            // burn the xen on behalf of the user
            xenTokenInstance.burn(user, amount);
            // update the user stats
            userAccumulatedJack[user] = 0;
            userBurntXen[user] += amount;
            // update state
            burntAmount += amount;

            return amount;
        }
        return 0;
    }

    // get users Xen balance
    function getXenBalance(address userAddress) external view returns (uint256) {
        IERC20 tokenInstance = IERC20(xenAddress);
        return tokenInstance.balanceOf(userAddress);
    }

    // get X1 allocation
    function getX1Allocation(address userAddress) external view returns (uint256) {
        IXENCrypto xenTokenInstance = IXENCrypto(xenAddress);
        return xenTokenInstance.userBurns(userAddress);
    }

    // this function will shouw how much XEN you get when you swap JACK to XEN
    function getJackToXenOutput(uint256 amountIn) external view returns (uint256) {
        uint256 outputAmount;
        uint256[] memory amounts;
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = router.WPLS();
        path[2] = xenAddress;
        amounts = router.getAmountsOut(amountIn, path);
        outputAmount = amounts[2];
        return outputAmount;
    }

     // this function will shouw how much XEN the user can burn
    function getXenUserCanBurn() external view returns (uint256) {
        if (userAccumulatedJack[msg.sender] > 0) {
            uint256 amountIn = userAccumulatedJack[msg.sender];
            uint256 outputAmount;
            uint256[] memory amounts;
            address[] memory path = new address[](3);
            path[0] = address(this);
            path[1] = router.WPLS();
            path[2] = xenAddress;
            amounts = router.getAmountsOut(amountIn, path);
            outputAmount = amounts[2];
            return outputAmount;
        }
        return 0;
    }

    function getUserJackAccumulated() external view returns (uint256) {
        return userAccumulatedJack[msg.sender];
    }

    function getUserXenBurnt() external view returns (uint256) {
        return userBurntXen[msg.sender];
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ReentrancyGuardReentrantCall","inputs":[]},{"type":"event","name":"AccumulatedFee","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"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":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SwappedFee","inputs":[{"type":"address","name":"token","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","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":"event","name":"XENTokenBurnt","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"Author","inputs":[]},{"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":[{"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":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burn","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burntAmount","inputs":[]},{"type":"function","stateMutability":"view","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":"bool","name":"","internalType":"bool"}],"name":"excludedFromFee","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getJackToXenOutput","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getUserJackAccumulated","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getUserXenBurnt","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getX1Allocation","inputs":[{"type":"address","name":"userAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getXenBalance","inputs":[{"type":"address","name":"userAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getXenUserCanBurn","inputs":[]},{"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":"address","name":"","internalType":"address"}],"name":"lpPair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"onTokenBurned","inputs":[{"type":"address","name":"user","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPulseXRouter02"}],"name":"router","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxFee","inputs":[]},{"type":"function","stateMutability":"view","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":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","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":"uint256","name":"","internalType":"uint256"}],"name":"userAccumulatedJack","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userBurntXen","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"xenAddress","inputs":[]}]
              

Contract Creation Code

0x6101006040523480156200001257600080fd5b506040518060400160405280600481526020017f4a41434b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a41434b000000000000000000000000000000000000000000000000000000008152508160039081620000909190620009bd565b508060049081620000a29190620009bd565b505050620000c5620000b9620004f360201b60201c565b620004fb60201b60201c565b6001600681905550738a7fdca264e87b6da72d000f22186b4403081a2a73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505060007398bf93ebf5c380c0e6ae8e192a7e2ae08edacc0290508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d6919062000b0e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000240573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000266919062000b0e565b6040518363ffffffff1660e01b81526004016200028592919062000b51565b6020604051808303816000875af1158015620002a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cb919062000b0e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506000600781905550606460e081815250506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060c051905060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90508173ffffffffffffffffffffffffffffffffffffffff1663095ea7b360c051836040518363ffffffff1660e01b81526004016200048492919062000b8f565b6020604051808303816000875af1158015620004a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ca919062000bf9565b50620004ea336c1a8177494efa5bf39f20000000620005c160201b60201c565b50505062000d35565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000633576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062a9062000c8c565b60405180910390fd5b62000647600083836200073960201b60201c565b80600260008282546200065b919062000cdd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006b2919062000cdd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000719919062000d18565b60405180910390a362000735600083836200073e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c557607f821691505b602082108103620007db57620007da6200077d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000806565b62000851868362000806565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200089e62000898620008928462000869565b62000873565b62000869565b9050919050565b6000819050919050565b620008ba836200087d565b620008d2620008c982620008a5565b84845462000813565b825550505050565b600090565b620008e9620008da565b620008f6818484620008af565b505050565b5b818110156200091e5762000912600082620008df565b600181019050620008fc565b5050565b601f8211156200096d576200093781620007e1565b6200094284620007f6565b8101602085101562000952578190505b6200096a6200096185620007f6565b830182620008fb565b50505b505050565b600082821c905092915050565b6000620009926000198460080262000972565b1980831691505092915050565b6000620009ad83836200097f565b9150826002028217905092915050565b620009c88262000743565b67ffffffffffffffff811115620009e457620009e36200074e565b5b620009f08254620007ac565b620009fd82828562000922565b600060209050601f83116001811462000a35576000841562000a20578287015190505b62000a2c85826200099f565b86555062000a9c565b601f19841662000a4586620007e1565b60005b8281101562000a6f5784890151825560018201915060208501945060208101905062000a48565b8683101562000a8f578489015162000a8b601f8916826200097f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ad68262000aa9565b9050919050565b62000ae88162000ac9565b811462000af457600080fd5b50565b60008151905062000b088162000add565b92915050565b60006020828403121562000b275762000b2662000aa4565b5b600062000b378482850162000af7565b91505092915050565b62000b4b8162000ac9565b82525050565b600060408201905062000b68600083018562000b40565b62000b77602083018462000b40565b9392505050565b62000b898162000869565b82525050565b600060408201905062000ba6600083018562000b40565b62000bb5602083018462000b7e565b9392505050565b60008115159050919050565b62000bd38162000bbc565b811462000bdf57600080fd5b50565b60008151905062000bf38162000bc8565b92915050565b60006020828403121562000c125762000c1162000aa4565b5b600062000c228482850162000be2565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c74601f8362000c2b565b915062000c818262000c3c565b602082019050919050565b6000602082019050818103600083015262000ca78162000c65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cea8262000869565b915062000cf78362000869565b925082820190508082111562000d125762000d1162000cae565b5b92915050565b600060208201905062000d2f600083018462000b7e565b92915050565b60805160a05160c05160e05161362962000de660003960008181610ff50152611cb801526000818161090a01528181610a0001528181610d64015281816110b6015281816111e501528181611495015281816118400152612009015260008181610d4001528181611ce60152611e45015260008181610a2b01528181610aef01528181610c1b015281816113b8015281816115040152818161169d0152818161176301526118af01526136296000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063a9059cbb116100a2578063e804289311610071578063e804289314610611578063f2fde38b1461062f578063f887ea401461064b578063fc3d9a4914610669576101f0565b8063a9059cbb14610551578063b1929a5e14610581578063dd62ed3e146105b1578063e22bbd18146105e1576101f0565b80638da5cb5b116100de5780638da5cb5b146104c757806395d89b41146104e5578063a071dcf414610503578063a457c2d714610521576101f0565b806370a082311461043f578063715018a61461046f57806385ecafd7146104795780638a2b64b1146104a9576101f0565b80632afad5491161018757806344df8e701161015657806344df8e70146103c9578063452ed4f1146103e7578063543746b1146104055780636b44b9e514610421576101f0565b80632afad5491461032d578063313ce5671461035d578063395093511461037b578063433af240146103ab576101f0565b806318160ddd116101c357806318160ddd1461029157806320b2af52146102af57806323b872dd146102cd578063291870af146102fd576101f0565b806301ffc9a7146101f557806306fdde031461022557806307f003c314610243578063095ea7b314610261575b600080fd5b61020f600480360381019061020a91906126a4565b610699565b60405161021c91906126ec565b60405180910390f35b61022d61076b565b60405161023a9190612797565b60405180910390f35b61024b6107fd565b60405161025891906127d2565b60405180910390f35b61027b60048036038101906102769190612877565b610803565b60405161028891906126ec565b60405180910390f35b610299610826565b6040516102a691906127d2565b60405180910390f35b6102b7610830565b6040516102c49190612797565b60405180910390f35b6102e760048036038101906102e291906128b7565b610869565b6040516102f491906126ec565b60405180910390f35b6103176004803603810190610312919061290a565b610898565b60405161032491906127d2565b60405180910390f35b6103476004803603810190610342919061290a565b6108b0565b60405161035491906127d2565b60405180910390f35b6103656108c8565b6040516103729190612953565b60405180910390f35b61039560048036038101906103909190612877565b6108d1565b6040516103a291906126ec565b60405180910390f35b6103b3610908565b6040516103c0919061297d565b60405180910390f35b6103d161092c565b6040516103de91906127d2565b60405180910390f35b6103ef610d3e565b6040516103fc919061297d565b60405180910390f35b61041f600480360381019061041a9190612877565b610d62565b005b610429610e2d565b60405161043691906127d2565b60405180910390f35b6104596004803603810190610454919061290a565b610e74565b60405161046691906127d2565b60405180910390f35b610477610ebc565b005b610493600480360381019061048e919061290a565b610ed0565b6040516104a091906126ec565b60405180910390f35b6104b1610ef0565b6040516104be91906127d2565b60405180910390f35b6104cf610f37565b6040516104dc919061297d565b60405180910390f35b6104ed610f61565b6040516104fa9190612797565b60405180910390f35b61050b610ff3565b60405161051891906127d2565b60405180910390f35b61053b60048036038101906105369190612877565b611017565b60405161054891906126ec565b60405180910390f35b61056b60048036038101906105669190612877565b61108e565b60405161057891906126ec565b60405180910390f35b61059b6004803603810190610596919061290a565b6110b1565b6040516105a891906127d2565b60405180910390f35b6105cb60048036038101906105c69190612998565b611159565b6040516105d891906127d2565b60405180910390f35b6105fb60048036038101906105f6919061290a565b6111e0565b60405161060891906127d2565b60405180910390f35b610619611288565b60405161062691906127d2565b60405180910390f35b6106496004803603810190610644919061290a565b6115d7565b005b61065361169b565b6040516106609190612a37565b60405180910390f35b610683600480360381019061067e9190612a52565b6116bf565b60405161069091906127d2565b60405180910390f35b60007f543746b1000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461077a90612aae565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612aae565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60075481565b60008061080e611979565b905061081b818585611981565b600191505092915050565b6000600254905090565b6040518060400160405280600b81526020017f403078536c61736864307400000000000000000000000000000000000000000081525081565b600080610874611979565b9050610881858285611b4a565b61088c858585611bd6565b60019150509392505050565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915090505481565b60006012905090565b6000806108dc611979565b90506108fd8185856108ee8589611159565b6108f89190612b0e565b611981565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610936611fb5565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90612b8e565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060007f0000000000000000000000000000000000000000000000000000000000000000905060006060610a50307f000000000000000000000000000000000000000000000000000000000000000086611981565b6000600367ffffffffffffffff811115610a6d57610a6c612bae565b5b604051908082528060200260200182016040528015610a9b5781602001602082028036833780820191505090505b5090503081600081518110610ab357610ab2612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7c9190612c21565b81600181518110610b9057610b8f612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600281518110610bdf57610bde612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166338ed17398660008430426040518663ffffffff1660e01b8152600401610c7b959493929190612d47565b6000604051808303816000875af1158015610c9a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610cc39190612ecf565b915081600281518110610cd957610cd8612bdd565b5b602002602001015192507f6f524d0d9e69a9693b9df3e491ec38657da0cdd4e8a58529a938245d8fce0f328484604051610d14929190612f18565b60405180910390a16000610d283385611ffb565b9050809650505050505050610d3b6121de565b90565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612fb3565b60405180910390fd5b7fd9bc2555b4fe8733117f9f8c316235dd005ac8606613c99e0756689cc72c9e858282604051610e21929190612f18565b60405180910390a15050565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec46121e8565b610ece6000612266565b565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f7090612aae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90612aae565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611022611979565b905060006110308286611159565b905083811015611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613045565b60405180910390fd5b6110828286868403611981565b60019250505092915050565b600080611099611979565b90506110a6818585611bd6565b600191505092915050565b6000807f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663ce653d5f846040518263ffffffff1660e01b8152600401611110919061297d565b602060405180830381865afa15801561112d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111519190613065565b915050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000807f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161123f919061297d565b602060405180830381865afa15801561125c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112809190613065565b915050919050565b600080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115cf576000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060606000600367ffffffffffffffff81111561133657611335612bae565b5b6040519080825280602002602001820160405280156113645781602001602082028036833780820191505090505b509050308160008151811061137c5761137b612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114459190612c21565b8160018151811061145957611458612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000000000000000000000000000000000000000000000816002815181106114c8576114c7612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d06ca61f85836040518363ffffffff1660e01b815260040161155d929190613092565b600060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115a39190612ecf565b9150816002815181106115b9576115b8612bdd565b5b60200260200101519250829450505050506115d4565b600090505b90565b6115df6121e8565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116988161232c565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060606000600367ffffffffffffffff8111156116e1576116e0612bae565b5b60405190808252806020026020018201604052801561170f5781602001602082028036833780820191505090505b509050308160008151811061172757611726612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f09190612c21565b8160018151811061180457611803612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000000000000000000000000000000000000000000008160028151811061187357611872612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d06ca61f86836040518363ffffffff1660e01b8152600401611908929190613092565b600060405180830381865afa158015611925573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061194e9190612ecf565b91508160028151811061196457611963612bdd565b5b60200260200101519250829350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613134565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a56906131c6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b3d91906127d2565b60405180910390a3505050565b6000611b568484611159565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bd05781811015611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613232565b60405180910390fd5b611bcf8484848403611981565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906132c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613356565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082611ce291906133a5565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611d895750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e4357611da484848385611d9f91906133d6565b6123af565b611daf8430836123af565b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dfe9190612b0e565b925050819055507f9265b35b046f5bb882035c40b12e04cfc83fd19fe4a2a945720b1f6dc1ec9b6b8382604051611e36929190612f18565b60405180910390a1611faf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611ee85750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fa257611f0384848385611efe91906133d6565b6123af565b611f0e8430836123af565b80600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5d9190612b0e565b925050819055507f9265b35b046f5bb882035c40b12e04cfc83fd19fe4a2a945720b1f6dc1ec9b6b8482604051611f95929190612f18565b60405180910390a1611fae565b611fad8484846123af565b5b5b50505050565b600260065403611ff1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b6000808211156121d35760007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401612065929190612f18565b6020604051808303816000875af1158015612084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a89190613436565b508073ffffffffffffffffffffffffffffffffffffffff16639dc29fac85856040518363ffffffff1660e01b81526004016120e4929190612f18565b600060405180830381600087803b1580156120fe57600080fd5b505af1158015612112573d6000803e3d6000fd5b505050506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121aa9190612b0e565b9250508190555082600760008282546121c39190612b0e565b92505081905550829150506121d8565b600090505b92915050565b6001600681905550565b6121f0611979565b73ffffffffffffffffffffffffffffffffffffffff1661220e610f37565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906134af565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123346121e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90613541565b60405180910390fd5b6123ac81612266565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906132c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490613356565b60405180910390fd5b61249883838361262e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561251e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612515906135d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b19190612b0e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261591906127d2565b60405180910390a3612628848484612633565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126818161264c565b811461268c57600080fd5b50565b60008135905061269e81612678565b92915050565b6000602082840312156126ba576126b9612642565b5b60006126c88482850161268f565b91505092915050565b60008115159050919050565b6126e6816126d1565b82525050565b600060208201905061270160008301846126dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612741578082015181840152602081019050612726565b60008484015250505050565b6000601f19601f8301169050919050565b600061276982612707565b6127738185612712565b9350612783818560208601612723565b61278c8161274d565b840191505092915050565b600060208201905081810360008301526127b1818461275e565b905092915050565b6000819050919050565b6127cc816127b9565b82525050565b60006020820190506127e760008301846127c3565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612818826127ed565b9050919050565b6128288161280d565b811461283357600080fd5b50565b6000813590506128458161281f565b92915050565b612854816127b9565b811461285f57600080fd5b50565b6000813590506128718161284b565b92915050565b6000806040838503121561288e5761288d612642565b5b600061289c85828601612836565b92505060206128ad85828601612862565b9150509250929050565b6000806000606084860312156128d0576128cf612642565b5b60006128de86828701612836565b93505060206128ef86828701612836565b925050604061290086828701612862565b9150509250925092565b6000602082840312156129205761291f612642565b5b600061292e84828501612836565b91505092915050565b600060ff82169050919050565b61294d81612937565b82525050565b60006020820190506129686000830184612944565b92915050565b6129778161280d565b82525050565b6000602082019050612992600083018461296e565b92915050565b600080604083850312156129af576129ae612642565b5b60006129bd85828601612836565b92505060206129ce85828601612836565b9150509250929050565b6000819050919050565b60006129fd6129f86129f3846127ed565b6129d8565b6127ed565b9050919050565b6000612a0f826129e2565b9050919050565b6000612a2182612a04565b9050919050565b612a3181612a16565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b600060208284031215612a6857612a67612642565b5b6000612a7684828501612862565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac657607f821691505b602082108103612ad957612ad8612a7f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b19826127b9565b9150612b24836127b9565b9250828201905080821115612b3c57612b3b612adf565b5b92915050565b7f4a41434b3a20596f752068617665206e6f204a41434b20746f206275726e0000600082015250565b6000612b78601e83612712565b9150612b8382612b42565b602082019050919050565b60006020820190508181036000830152612ba781612b6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c1b8161281f565b92915050565b600060208284031215612c3757612c36612642565b5b6000612c4584828501612c0c565b91505092915050565b6000819050919050565b6000612c73612c6e612c6984612c4e565b6129d8565b6127b9565b9050919050565b612c8381612c58565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cbe8161280d565b82525050565b6000612cd08383612cb5565b60208301905092915050565b6000602082019050919050565b6000612cf482612c89565b612cfe8185612c94565b9350612d0983612ca5565b8060005b83811015612d3a578151612d218882612cc4565b9750612d2c83612cdc565b925050600181019050612d0d565b5085935050505092915050565b600060a082019050612d5c60008301886127c3565b612d696020830187612c7a565b8181036040830152612d7b8186612ce9565b9050612d8a606083018561296e565b612d9760808301846127c3565b9695505050505050565b600080fd5b612daf8261274d565b810181811067ffffffffffffffff82111715612dce57612dcd612bae565b5b80604052505050565b6000612de1612638565b9050612ded8282612da6565b919050565b600067ffffffffffffffff821115612e0d57612e0c612bae565b5b602082029050602081019050919050565b600080fd5b600081519050612e328161284b565b92915050565b6000612e4b612e4684612df2565b612dd7565b90508083825260208201905060208402830185811115612e6e57612e6d612e1e565b5b835b81811015612e975780612e838882612e23565b845260208401935050602081019050612e70565b5050509392505050565b600082601f830112612eb657612eb5612da1565b5b8151612ec6848260208601612e38565b91505092915050565b600060208284031215612ee557612ee4612642565b5b600082015167ffffffffffffffff811115612f0357612f02612647565b5b612f0f84828501612ea1565b91505092915050565b6000604082019050612f2d600083018561296e565b612f3a60208301846127c3565b9392505050565b7f556e617574686f72697a65643a2043616e206f6e6c792062652063616c6c656460008201527f2062792058454e43727970746f20636f6e747261637400000000000000000000602082015250565b6000612f9d603683612712565b9150612fa882612f41565b604082019050919050565b60006020820190508181036000830152612fcc81612f90565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061302f602583612712565b915061303a82612fd3565b604082019050919050565b6000602082019050818103600083015261305e81613022565b9050919050565b60006020828403121561307b5761307a612642565b5b600061308984828501612e23565b91505092915050565b60006040820190506130a760008301856127c3565b81810360208301526130b98184612ce9565b90509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061311e602483612712565b9150613129826130c2565b604082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b0602283612712565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061321c601d83612712565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132ae602583612712565b91506132b982613252565b604082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613340602383612712565b915061334b826132e4565b604082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133b0826127b9565b91506133bb836127b9565b9250826133cb576133ca613376565b5b828204905092915050565b60006133e1826127b9565b91506133ec836127b9565b925082820390508181111561340457613403612adf565b5b92915050565b613413816126d1565b811461341e57600080fd5b50565b6000815190506134308161340a565b92915050565b60006020828403121561344c5761344b612642565b5b600061345a84828501613421565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613499602083612712565b91506134a482613463565b602082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061352b602683612712565b9150613536826134cf565b604082019050919050565b6000602082019050818103600083015261355a8161351e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135bd602683612712565b91506135c882613561565b604082019050919050565b600060208201905081810360008301526135ec816135b0565b905091905056fea2646970667358221220e99fcedefb79714c301c1e96f477c4ca92e226652287903e3b8fbc874ea8fd0f64736f6c63430008120033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063a9059cbb116100a2578063e804289311610071578063e804289314610611578063f2fde38b1461062f578063f887ea401461064b578063fc3d9a4914610669576101f0565b8063a9059cbb14610551578063b1929a5e14610581578063dd62ed3e146105b1578063e22bbd18146105e1576101f0565b80638da5cb5b116100de5780638da5cb5b146104c757806395d89b41146104e5578063a071dcf414610503578063a457c2d714610521576101f0565b806370a082311461043f578063715018a61461046f57806385ecafd7146104795780638a2b64b1146104a9576101f0565b80632afad5491161018757806344df8e701161015657806344df8e70146103c9578063452ed4f1146103e7578063543746b1146104055780636b44b9e514610421576101f0565b80632afad5491461032d578063313ce5671461035d578063395093511461037b578063433af240146103ab576101f0565b806318160ddd116101c357806318160ddd1461029157806320b2af52146102af57806323b872dd146102cd578063291870af146102fd576101f0565b806301ffc9a7146101f557806306fdde031461022557806307f003c314610243578063095ea7b314610261575b600080fd5b61020f600480360381019061020a91906126a4565b610699565b60405161021c91906126ec565b60405180910390f35b61022d61076b565b60405161023a9190612797565b60405180910390f35b61024b6107fd565b60405161025891906127d2565b60405180910390f35b61027b60048036038101906102769190612877565b610803565b60405161028891906126ec565b60405180910390f35b610299610826565b6040516102a691906127d2565b60405180910390f35b6102b7610830565b6040516102c49190612797565b60405180910390f35b6102e760048036038101906102e291906128b7565b610869565b6040516102f491906126ec565b60405180910390f35b6103176004803603810190610312919061290a565b610898565b60405161032491906127d2565b60405180910390f35b6103476004803603810190610342919061290a565b6108b0565b60405161035491906127d2565b60405180910390f35b6103656108c8565b6040516103729190612953565b60405180910390f35b61039560048036038101906103909190612877565b6108d1565b6040516103a291906126ec565b60405180910390f35b6103b3610908565b6040516103c0919061297d565b60405180910390f35b6103d161092c565b6040516103de91906127d2565b60405180910390f35b6103ef610d3e565b6040516103fc919061297d565b60405180910390f35b61041f600480360381019061041a9190612877565b610d62565b005b610429610e2d565b60405161043691906127d2565b60405180910390f35b6104596004803603810190610454919061290a565b610e74565b60405161046691906127d2565b60405180910390f35b610477610ebc565b005b610493600480360381019061048e919061290a565b610ed0565b6040516104a091906126ec565b60405180910390f35b6104b1610ef0565b6040516104be91906127d2565b60405180910390f35b6104cf610f37565b6040516104dc919061297d565b60405180910390f35b6104ed610f61565b6040516104fa9190612797565b60405180910390f35b61050b610ff3565b60405161051891906127d2565b60405180910390f35b61053b60048036038101906105369190612877565b611017565b60405161054891906126ec565b60405180910390f35b61056b60048036038101906105669190612877565b61108e565b60405161057891906126ec565b60405180910390f35b61059b6004803603810190610596919061290a565b6110b1565b6040516105a891906127d2565b60405180910390f35b6105cb60048036038101906105c69190612998565b611159565b6040516105d891906127d2565b60405180910390f35b6105fb60048036038101906105f6919061290a565b6111e0565b60405161060891906127d2565b60405180910390f35b610619611288565b60405161062691906127d2565b60405180910390f35b6106496004803603810190610644919061290a565b6115d7565b005b61065361169b565b6040516106609190612a37565b60405180910390f35b610683600480360381019061067e9190612a52565b6116bf565b60405161069091906127d2565b60405180910390f35b60007f543746b1000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461077a90612aae565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612aae565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60075481565b60008061080e611979565b905061081b818585611981565b600191505092915050565b6000600254905090565b6040518060400160405280600b81526020017f403078536c61736864307400000000000000000000000000000000000000000081525081565b600080610874611979565b9050610881858285611b4a565b61088c858585611bd6565b60019150509392505050565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915090505481565b60006012905090565b6000806108dc611979565b90506108fd8185856108ee8589611159565b6108f89190612b0e565b611981565b600191505092915050565b7f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a81565b6000610936611fb5565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90612b8e565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060007f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a905060006060610a50307f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0286611981565b6000600367ffffffffffffffff811115610a6d57610a6c612bae565b5b604051908082528060200260200182016040528015610a9b5781602001602082028036833780820191505090505b5090503081600081518110610ab357610ab2612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7c9190612c21565b81600181518110610b9057610b8f612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508381600281518110610bdf57610bde612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff166338ed17398660008430426040518663ffffffff1660e01b8152600401610c7b959493929190612d47565b6000604051808303816000875af1158015610c9a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610cc39190612ecf565b915081600281518110610cd957610cd8612bdd565b5b602002602001015192507f6f524d0d9e69a9693b9df3e491ec38657da0cdd4e8a58529a938245d8fce0f328484604051610d14929190612f18565b60405180910390a16000610d283385611ffb565b9050809650505050505050610d3b6121de565b90565b7f000000000000000000000000f3d41f8579998879f8c4e58cc7bc2d21cb6983d381565b7f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612fb3565b60405180910390fd5b7fd9bc2555b4fe8733117f9f8c316235dd005ac8606613c99e0756689cc72c9e858282604051610e21929190612f18565b60405180910390a15050565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec46121e8565b610ece6000612266565b565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f7090612aae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90612aae565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000006481565b600080611022611979565b905060006110308286611159565b905083811015611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613045565b60405180910390fd5b6110828286868403611981565b60019250505092915050565b600080611099611979565b90506110a6818585611bd6565b600191505092915050565b6000807f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a90508073ffffffffffffffffffffffffffffffffffffffff1663ce653d5f846040518263ffffffff1660e01b8152600401611110919061297d565b602060405180830381865afa15801561112d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111519190613065565b915050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000807f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a90508073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161123f919061297d565b602060405180830381865afa15801561125c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112809190613065565b915050919050565b600080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115cf576000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060606000600367ffffffffffffffff81111561133657611335612bae565b5b6040519080825280602002602001820160405280156113645781602001602082028036833780820191505090505b509050308160008151811061137c5761137b612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114459190612c21565b8160018151811061145957611458612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a816002815181106114c8576114c7612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff1663d06ca61f85836040518363ffffffff1660e01b815260040161155d929190613092565b600060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115a39190612ecf565b9150816002815181106115b9576115b8612bdd565b5b60200260200101519250829450505050506115d4565b600090505b90565b6115df6121e8565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116988161232c565b50565b7f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0281565b60008060606000600367ffffffffffffffff8111156116e1576116e0612bae565b5b60405190808252806020026020018201604052801561170f5781602001602082028036833780820191505090505b509050308160008151811061172757611726612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f09190612c21565b8160018151811061180457611803612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a8160028151811061187357611872612bdd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc0273ffffffffffffffffffffffffffffffffffffffff1663d06ca61f86836040518363ffffffff1660e01b8152600401611908929190613092565b600060405180830381865afa158015611925573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061194e9190612ecf565b91508160028151811061196457611963612bdd565b5b60200260200101519250829350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613134565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a56906131c6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b3d91906127d2565b60405180910390a3505050565b6000611b568484611159565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bd05781811015611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613232565b60405180910390fd5b611bcf8484848403611981565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906132c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613356565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006482611ce291906133a5565b90507f000000000000000000000000f3d41f8579998879f8c4e58cc7bc2d21cb6983d373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611d895750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e4357611da484848385611d9f91906133d6565b6123af565b611daf8430836123af565b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dfe9190612b0e565b925050819055507f9265b35b046f5bb882035c40b12e04cfc83fd19fe4a2a945720b1f6dc1ec9b6b8382604051611e36929190612f18565b60405180910390a1611faf565b7f000000000000000000000000f3d41f8579998879f8c4e58cc7bc2d21cb6983d373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611ee85750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fa257611f0384848385611efe91906133d6565b6123af565b611f0e8430836123af565b80600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5d9190612b0e565b925050819055507f9265b35b046f5bb882035c40b12e04cfc83fd19fe4a2a945720b1f6dc1ec9b6b8482604051611f95929190612f18565b60405180910390a1611fae565b611fad8484846123af565b5b5b50505050565b600260065403611ff1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b6000808211156121d35760007f0000000000000000000000008a7fdca264e87b6da72d000f22186b4403081a2a90508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401612065929190612f18565b6020604051808303816000875af1158015612084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a89190613436565b508073ffffffffffffffffffffffffffffffffffffffff16639dc29fac85856040518363ffffffff1660e01b81526004016120e4929190612f18565b600060405180830381600087803b1580156120fe57600080fd5b505af1158015612112573d6000803e3d6000fd5b505050506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121aa9190612b0e565b9250508190555082600760008282546121c39190612b0e565b92505081905550829150506121d8565b600090505b92915050565b6001600681905550565b6121f0611979565b73ffffffffffffffffffffffffffffffffffffffff1661220e610f37565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906134af565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123346121e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90613541565b60405180910390fd5b6123ac81612266565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906132c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490613356565b60405180910390fd5b61249883838361262e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561251e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612515906135d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b19190612b0e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261591906127d2565b60405180910390a3612628848484612633565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126818161264c565b811461268c57600080fd5b50565b60008135905061269e81612678565b92915050565b6000602082840312156126ba576126b9612642565b5b60006126c88482850161268f565b91505092915050565b60008115159050919050565b6126e6816126d1565b82525050565b600060208201905061270160008301846126dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612741578082015181840152602081019050612726565b60008484015250505050565b6000601f19601f8301169050919050565b600061276982612707565b6127738185612712565b9350612783818560208601612723565b61278c8161274d565b840191505092915050565b600060208201905081810360008301526127b1818461275e565b905092915050565b6000819050919050565b6127cc816127b9565b82525050565b60006020820190506127e760008301846127c3565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612818826127ed565b9050919050565b6128288161280d565b811461283357600080fd5b50565b6000813590506128458161281f565b92915050565b612854816127b9565b811461285f57600080fd5b50565b6000813590506128718161284b565b92915050565b6000806040838503121561288e5761288d612642565b5b600061289c85828601612836565b92505060206128ad85828601612862565b9150509250929050565b6000806000606084860312156128d0576128cf612642565b5b60006128de86828701612836565b93505060206128ef86828701612836565b925050604061290086828701612862565b9150509250925092565b6000602082840312156129205761291f612642565b5b600061292e84828501612836565b91505092915050565b600060ff82169050919050565b61294d81612937565b82525050565b60006020820190506129686000830184612944565b92915050565b6129778161280d565b82525050565b6000602082019050612992600083018461296e565b92915050565b600080604083850312156129af576129ae612642565b5b60006129bd85828601612836565b92505060206129ce85828601612836565b9150509250929050565b6000819050919050565b60006129fd6129f86129f3846127ed565b6129d8565b6127ed565b9050919050565b6000612a0f826129e2565b9050919050565b6000612a2182612a04565b9050919050565b612a3181612a16565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b600060208284031215612a6857612a67612642565b5b6000612a7684828501612862565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac657607f821691505b602082108103612ad957612ad8612a7f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b19826127b9565b9150612b24836127b9565b9250828201905080821115612b3c57612b3b612adf565b5b92915050565b7f4a41434b3a20596f752068617665206e6f204a41434b20746f206275726e0000600082015250565b6000612b78601e83612712565b9150612b8382612b42565b602082019050919050565b60006020820190508181036000830152612ba781612b6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c1b8161281f565b92915050565b600060208284031215612c3757612c36612642565b5b6000612c4584828501612c0c565b91505092915050565b6000819050919050565b6000612c73612c6e612c6984612c4e565b6129d8565b6127b9565b9050919050565b612c8381612c58565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cbe8161280d565b82525050565b6000612cd08383612cb5565b60208301905092915050565b6000602082019050919050565b6000612cf482612c89565b612cfe8185612c94565b9350612d0983612ca5565b8060005b83811015612d3a578151612d218882612cc4565b9750612d2c83612cdc565b925050600181019050612d0d565b5085935050505092915050565b600060a082019050612d5c60008301886127c3565b612d696020830187612c7a565b8181036040830152612d7b8186612ce9565b9050612d8a606083018561296e565b612d9760808301846127c3565b9695505050505050565b600080fd5b612daf8261274d565b810181811067ffffffffffffffff82111715612dce57612dcd612bae565b5b80604052505050565b6000612de1612638565b9050612ded8282612da6565b919050565b600067ffffffffffffffff821115612e0d57612e0c612bae565b5b602082029050602081019050919050565b600080fd5b600081519050612e328161284b565b92915050565b6000612e4b612e4684612df2565b612dd7565b90508083825260208201905060208402830185811115612e6e57612e6d612e1e565b5b835b81811015612e975780612e838882612e23565b845260208401935050602081019050612e70565b5050509392505050565b600082601f830112612eb657612eb5612da1565b5b8151612ec6848260208601612e38565b91505092915050565b600060208284031215612ee557612ee4612642565b5b600082015167ffffffffffffffff811115612f0357612f02612647565b5b612f0f84828501612ea1565b91505092915050565b6000604082019050612f2d600083018561296e565b612f3a60208301846127c3565b9392505050565b7f556e617574686f72697a65643a2043616e206f6e6c792062652063616c6c656460008201527f2062792058454e43727970746f20636f6e747261637400000000000000000000602082015250565b6000612f9d603683612712565b9150612fa882612f41565b604082019050919050565b60006020820190508181036000830152612fcc81612f90565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061302f602583612712565b915061303a82612fd3565b604082019050919050565b6000602082019050818103600083015261305e81613022565b9050919050565b60006020828403121561307b5761307a612642565b5b600061308984828501612e23565b91505092915050565b60006040820190506130a760008301856127c3565b81810360208301526130b98184612ce9565b90509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061311e602483612712565b9150613129826130c2565b604082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b0602283612712565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061321c601d83612712565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132ae602583612712565b91506132b982613252565b604082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613340602383612712565b915061334b826132e4565b604082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133b0826127b9565b91506133bb836127b9565b9250826133cb576133ca613376565b5b828204905092915050565b60006133e1826127b9565b91506133ec836127b9565b925082820390508181111561340457613403612adf565b5b92915050565b613413816126d1565b811461341e57600080fd5b50565b6000815190506134308161340a565b92915050565b60006020828403121561344c5761344b612642565b5b600061345a84828501613421565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613499602083612712565b91506134a482613463565b602082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061352b602683612712565b9150613536826134cf565b604082019050919050565b6000602082019050818103600083015261355a8161351e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135bd602683612712565b91506135c882613561565b604082019050919050565b600060208201905081810360008301526135ec816135b0565b905091905056fea2646970667358221220e99fcedefb79714c301c1e96f477c4ca92e226652287903e3b8fbc874ea8fd0f64736f6c63430008120033