{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/test/LiquidityProvidersMaliciousReentrant.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract LiquidityProvidersMaliciousReentrant {\n    LiquidityPool public lpool;\n    address private constant NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;\n    address private owner;\n    modifier onlyOwner() {\n        require(owner == msg.sender, \"Unauthorized\");\n        _;\n    }\n\n    constructor(address _lpaddress) {\n        owner = msg.sender;\n        lpool = LiquidityPool(payable(_lpaddress));\n    }\n\n    fallback() external payable {\n        if (address(lpool).balance >= 1 ether) {\n            lpool.transfer(NATIVE, address(this), 1 ether);\n        }\n    }\n\n    receive() external payable {\n        if (address(lpool).balance >= 1 ether) {\n            lpool.transfer(NATIVE, address(this), 1 ether);\n        }\n    }\n\n    function getBalance(address target) public view returns (uint256) {\n        return target.balance;\n    }\n\n    function destruct() external onlyOwner {\n        selfdestruct(payable(owner));\n    }\n}"
}