{
    "Function": "min",
    "File": "contracts/libraries/Math.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function min(uint x, uint y) internal pure returns (uint z) {\n        z = x < y ? x : y;\n    }"
}