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