{
    "Function": "setInitialOwners",
    "File": "contracts/test/CryptoPunks.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert()",
        "setInitialOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setInitialOwners(\n        address[] memory addresses,\n        uint256[] memory indices\n    ) external {\n        if (msg.sender != owner) revert();\n        uint256 n = addresses.length;\n        for (uint256 i = 0; i < n; i++) {\n            setInitialOwner(addresses[i], indices[i]);\n        }\n    }"
}