| 1 | # https://github.com/AFLplusplus/AFLplusplus/blob/stable/dictionaries/yaml.dict |
| 2 | # sources: |
| 3 | # - https://en.wikipedia.org/wiki/YAML |
| 4 | # - https://yaml.org/spec/1.1/ |
| 5 | # - https://yaml.org/type/ |
| 6 | |
| 7 | directive_yaml="%YAML 1.2" |
| 8 | directive_tag="%TAG !yaml! tag:yaml.org,2002:" |
| 9 | directive_tag2="%TAG !m! !my-" |
| 10 | true="true" |
| 11 | caps_true="TRUE" |
| 12 | caps_false="FALSE" |
| 13 | literal_true="YES" |
| 14 | literal_false="NO" |
| 15 | false="false" |
| 16 | start="---" |
| 17 | comment="#" |
| 18 | list="- " |
| 19 | key="k: " |
| 20 | walrus="=:" |
| 21 | question_key="?k: " |
| 22 | number="\"0e5\"" |
| 23 | expand="!!" |
| 24 | list="[a,b]" |
| 25 | dict="{k: v, x: y}" |
| 26 | value=": v" |
| 27 | exponent="e+03" |
| 28 | neg_inf="-.inf" |
| 29 | nan=".NaN" |
| 30 | end="..." |
| 31 | quoted_key="'k'" |
| 32 | newline="k: |" |
| 33 | newline2="k: >" |
| 34 | anchor="&a" |
| 35 | reference="*a" |
| 36 | type_binary="!!binary" |
| 37 | type_bool="!!bool" |
| 38 | type_float="!!float" |
| 39 | type_int="!!int" |
| 40 | type_map="!!map" |
| 41 | type_merge="!!merge" |
| 42 | type_null="!!null" |
| 43 | type_omap="!!omap" |
| 44 | type_pairs="!!pairs" |
| 45 | type_seq="!!seq" |
| 46 | type_set="!!set" |
| 47 | type_str="!!str" |
| 48 | type_timestamp="!!timestamp" |
| 49 | type_value="!!value" |
| 50 | type_yaml="!!yaml" |
| 51 | type_python="!!python" |
| 52 | merge = "<<" |
| 53 | number_separation="_" |
| 54 | decimal_number="+30_123" |
| 55 | octal_number="0123" |
| 56 | hex_number="0x_12_23" |
| 57 | bin_number="0b1001_1001" |
| 58 | sexa_number="123:34:75" |
| 59 | complex_mapping="? " |
| 60 | litteral_style=" |" |
| 61 | folded_style=" >" |
| 62 | timestamp="2001-12-14t21:59:43.10-05:00" |
| 63 | escaped_unicode="\\u2029" |
| 64 | "[" |
| 65 | "]" |
| 66 | "{" |
| 67 | "}" |
| 68 | "-" |
| 69 | "," |
| 70 | "&" |
| 71 | "<<" |
| 72 | ":" |
| 73 | "|" |
| 74 | "!!" |
| 75 | ">" |
| 76 | "\"" |
| 77 | "'" |
| 78 | integer="123" |
| 79 | float="12.5" |
| 80 | mantissa="1.3e+9" |