{
    "Function": "getPricePerFullShare",
    "File": "contracts/mock/MockGenericVault.sol",
    "Parent Contracts": [
        "contracts/mock/MockERC20.sol"
    ],
    "High-Level Calls": [
        "SafeMath",
        "SafeMath"
    ],
    "Internal Calls": [
        "totalSupply",
        "balance"
    ],
    "Library Calls": [
        "mul",
        "div"
    ],
    "Low-Level Calls": [],
    "Code": "function getPricePerFullShare() public view returns (uint) {\n        return balance().mul(1e18).div(totalSupply());\n    }"
}