{
    "Function": "getPastTotalSupply",
    "File": "contracts/AuraLocker.sol",
    "Parent Contracts": [
        "contracts/Interfaces.sol",
        "node_modules/@openzeppelin/contracts-0.8/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts-0.8/utils/Context.sol",
        "node_modules/@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "findEpochId",
        "totalSupplyAtEpoch"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getPastTotalSupply(uint256 timestamp) external view returns (uint256) {\n        require(timestamp < block.timestamp, \"ERC20Votes: block not yet mined\");\n        return totalSupplyAtEpoch(findEpochId(timestamp));\n    }"
}