{
    "name": "human16",
    "description": "Human-readable 16-character password.",
    "length": 16,
    "word_source": "data/New-XText/english_words.txt",
    "symbol_position": "random",
    "blocks": [
        {
            "type": "word",
            "length": {
                "min": 5,
                "max": 7
            },
            "case": "capitalize"
        },
        {
            "type": "number",
            "length": {
                "min": 1,
                "max": 3
            }
        },
        {
            "type": "symbol",
            "characters": "!@#%&*_- =+? ,."
        },
        {
            "type": "word",
            "length": {
                "min": 5,
                "max": 6
            },
            "case": "lower"
        },
        {
            "type": "number",
            "length": {
                "min": 1,
                "max": 2
            }
        }
    ],
    "constraints": {
        "lowercase": {
            "min": 3
        },
        "uppercase": {
            "min": 1
        },
        "digits": {
            "min": 2
        },
        "special": {
            "min": 1
        }
    }
}