Here you go this is how to generate the keys:
import hashlib
# Define the custom mapping table
custom_mapping_table = {
'0': 'y', '1': 'P', '2': '6', '3': 'G',
'4': 'C', '5': 'J', '6': 'p', '7': '4',
'8': 'l', '9': 'N', 'a': 'F', 'b': 'V',
'c': '3', 'd': 'u', 'e': '2', 'f': 'E'...