{
    "Function": "toAlphabet",
    "File": "contracts/libraries/Base58Encoder.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toAlphabet(uint8[] memory indices) internal pure returns (bytes memory) {\n        bytes memory output = new bytes(indices.length);\n        for (uint256 i = 0; i < indices.length; i++) {\n            output[i] = ALPHABET[indices[i]];\n        }\n        return output;\n    }"
}