{
    "Function": "sqrt",
    "File": "contracts/governance/YaxisVotePower.sol",
    "Parent Contracts": [
        "contracts/governance/interfaces/IVoteProxy.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function sqrt(\n        uint256 x\n    )\n        private\n        pure\n        returns (uint256 y)\n    {\n        uint256 z = (x + 1) / 2;\n        y = x;\n        while (z < y) {\n            y = z;\n            z = (x / z + z) / 2;\n        }\n        y = y * (10 ** 9);\n    }"
}