{
    "Function": "cbrt",
    "File": "contracts/contracts/libraries/Math.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function cbrt(uint256 n) internal pure returns (uint256) { unchecked {\n        uint256 x = 0;\n        for (uint256 y = 1 << 255; y > 0; y >>= 3) {\n            x <<= 1;\n            uint256 z = 3 * x * (x + 1) + 1;\n            if (n / y >= z) {\n                n -= y * z;\n                x += 1;\n            }\n        }\n        return x;\n    }}"
}