{
    "Function": "getFighterPoints",
    "File": "src/MergingPool.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getFighterPoints(uint256 maxId) public view returns(uint256[] memory) {\n        uint256[] memory points = new uint256[](1);\n        for (uint256 i = 0; i < maxId; i++) {\n            points[i] = fighterPoints[i];\n        }\n        return points;\n    }"
}