{
    "Function": "_setClaimed",
    "File": "contracts/token/MerkleDistributor.sol",
    "Parent Contracts": [
        "contracts/token/interfaces/IMerkleDistributor.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _setClaimed(uint256 index) private {\n        uint256 claimedWordIndex = index / 256;\n        uint256 claimedBitIndex = index % 256;\n        claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);\n    }"
}