Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: testing/libfuzzer/fuzzers/dicts/generated/net_http_proxy_client_socket_fuzzer.dict

Issue 2115563002: [libfuzzer] Added script for dictionary generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: A couple of fixes ported from local version. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Fuzzer dictionary targetting HTTP/1.x responses.
6
7 # Entries that are generally useful in headers
8 ":"
9 "\x0A"
10 "\x0D"
11 "0"
12 "50"
13 "500"
14 # Horizontal whitespace. Matters mostly in status line.
15 " "
16 "\x09"
17 # Header continuation
18 "\x0D\x0A\x09"
19 # Used in a lot of individual headers
20 ";"
21 "="
22 ","
23 "\""
24 "-"
25
26 # Status line components
27 "HTTP"
28 "/1.1"
29 "/1.0"
30 # More interesting status codes. Leading space so can be inserted into
31 # other status lines.
32 " 100"
33 " 200"
34 " 206"
35 " 301"
36 " 302"
37 " 303"
38 " 304"
39 " 307"
40 " 308"
41 " 401"
42 " 403"
43 " 404"
44 " 500"
45 " 501"
46 " 403"
47
48 # Full status lines (Some with relevant following headers)
49 "HTTP/1.1 200 OK\x0A\x0A"
50 "HTTP/1.1 100 Continue\x0A\x0A"
51 "HTTP/1.1 401 Unauthorized\x0AWWW-Authenticate: Basic realm=\"Middle-Earth\"\x0A \xA0"
52 "HTTP/1.1 407 Proxy Authentication Required\x0AProxy-Authenticate: Digest realm= \"Middle-Earth\", nonce=\"aaaaaaaaaa\"\x0A\x0A"
53 "HTTP/1.0 301 Moved Permanently\x0ALocation: /a\x0A\x0A"
54 "HTTP/1.1 302 Found\x0ALocation: http://lost/\x0A\x0A"
55
56 # Proxy authentication headers. Note that fuzzers don't support NTLM or
57 # negotiate.
58 "WWW-Authenticate:"
59 "Proxy-Authenticate:"
60 "Basic"
61 "Digest"
62 "realm"
63 "nonce"
64
65 "Connection:"
66 "Proxy-Connection:"
67 "Keep-Alive"
68 "Close"
69 "Upgrade"
70 "\x0AConnection: Keep-Alive"
71 "\x0AConnection: Close"
72 "\x0AProxy-Connection: Keep-Alive"
73 "\x0AProxy-Connection: Close"
74
75 "Content-Length:"
76 "Transfer-Encoding:"
77 "chunked"
78 "\x0AContent-Length: 0"
79 "\x0AContent-Length: 500"
80 "\x0ATransfer-Encoding: chunked\x0A\x0A5\x0A12345\x0A0\x0A\x0A"
81
82 "Location:"
83 "\x0ALocation: http://foo/"
84 "\x0ALocation: http://bar/"
85 "\x0ALocation: https://foo/"
86 "\x0ALocation: https://bar/"
87
88 "Accept-Ranges:"
89 "bytes"
90 "\x0AAccept-Ranges: bytes"
91
92 "Content-Range:"
93
94 "Age:"
95 "\x0AAge: 0"
96 "\x0AAge: 3153600000"
97
98 "Cache-Control:"
99 "max-age"
100 "no-cache"
101 "no-store"
102 "must-revalidate"
103 "\x0ACache-Control: max-age=3153600000"
104 "\x0ACache-Control: max-age=0"
105 "\x0ACache-Control: no-cache"
106 "\x0ACache-Control: no-store"
107 "\x0ACache-Control: must-revalidate"
108
109 "Content-Disposition:"
110 "attachment"
111 "filename"
112
113 "Content-Encoding:"
114 "gzip"
115 "deflate"
116 "sdch"
117 "br"
118 "\x0AContent-Encoding: gzip"
119 "\x0AContent-Encoding: deflate"
120 "\x0AContent-Encoding: sdch"
121 "\x0AContent-Encoding: br"
122
123 "Date:"
124 "Fri, 01 Apr, 2050 14:14:14 GMT"
125 "Mon, 28 Mar, 2016 04:04:04 GMT"
126 "\x0ADate: Fri, 01 Apr, 2050 14:14:14 GMT"
127 "\x0ADate: Mon, 28 Mar, 2016 04:04:04 GMT"
128
129 "Last-Modified:"
130 "\x0ALast-Modified: Fri, 01 Apr, 2050 14:14:14 GMT"
131 "\x0ALast-Modified: Mon, 28 Mar, 2016 04:04:04 GMT"
132
133 "Expires:"
134 "\x0AExpires: Fri, 01 Apr, 2050 14:14:14 GMT"
135 "\x0AExpires: Mon, 28 Mar, 2016 04:04:04 GMT"
136
137 "Set-Cookie:"
138 "Expires"
139 "Max-Age"
140 "Domain"
141 "Path"
142 "Secure"
143 "HttpOnly"
144 "Priority"
145 "Low"
146 "Medium"
147 "High"
148 "SameSite"
149 "Strict"
150 "Lax"
151 "\x0ASet-Cookie: foo=bar"
152 "\x0ASet-Cookie: foo2=bar2;HttpOnly;Priority=Low;SameSite=Strict;Path=/"
153 "\x0ASet-Cookie: foo=chicken;SameSite=Lax"
154
155 "Strict-Transport-Security:"
156 "includeSubDomains"
157
158 "Vary:"
159 "\x0AVary: Cookie"
160 "\x0AVary: Age"
161
162 "ETag:"
163 "\x0AETag: jumboshrimp"
164
165
166 # Dictionary elements below have been generated automatically.
167 "all"
168 "code"
169 "maximum"
170 "Transfer-Encoding"
171 "D.,"
172 "results"
173 "follow"
174 "(LZW)."
175 "provided."
176 "(which"
177 "ISDN"
178 "\x22TE\x22"
179 "LF>"
180 "FORCE"
181 "calculate"
182 "\x22IETF"
183 "UNIX,"
184 "ARPA"
185 "\x22OPTIONAL\x22"
186 "environment"
187 "Host"
188 "program"
189 "USENET"
190 "TEXT"
191 "Not"
192 "Nov"
193 "include"
194 "resources"
195 "CONNECT"
196 "digit"
197 "supported"
198 "string"
199 "returning"
200 "ALL"
201 "HTTP/1.1;"
202 "3333"
203 "SP,"
204 "SP."
205 "entries"
206 "HTTP/1.1,"
207 "HTTP/1.1."
208 "difference"
209 "(URI):"
210 "--"
211 "[CRLF]"
212 "EXPRESS"
213 "list"
214 "HTTP/1.0\x22,"
215 "(RFC"
216 "large"
217 "ONLY"
218 "Tag"
219 "(LWS"
220 "enclosing"
221 "\x22SHOULD\x22,"
222 "(URL)\x22,"
223 "\x22A\x22..\x22Z\x22>"
224 "unexpected"
225 "GET)"
226 "\x22HEAD\x22"
227 "direct"
228 "Failed"
229 "second"
230 "Version"
231 "M."
232 "allowed."
233 "pass"
234 "GET,"
235 "tag."
236 "implemented"
237 "\x22HTTP/1.0\x22"
238 "INFRINGE"
239 "errors"
240 "ISO-8859-4,"
241 "appear"
242 "opaque"
243 "section"
244 "CPU"
245 "current"
246 "waiting"
247 "version"
248 "above"
249 "TTL"
250 "shared"
251 "CRLF)"
252 "public"
253 "FTP"
254 "NNTP."
255 "WWW-"
256 "never"
257 "equals"
258 "\x22HTTP/1.1"
259 "reported"
260 "objects"
261 "address"
262 "active"
263 "path"
264 "["
265 "\x22POST\x22"
266 "HTTP."
267 "change"
268 "MA"
269 "\x22AS"
270 "broken"
271 "BACK)"
272 "NOT"
273 "{"
274 "NNTP"
275 "named"
276 "useful"
277 "secure"
278 "family"
279 "case."
280 "detected."
281 "\x22HTTP\x22"
282 "private"
283 "CERN/3.0"
284 "CTE"
285 "(CTE)"
286 "Too"
287 "CTL"
288 "PUT,"
289 "user-agent"
290 "PUT)"
291 "byte"
292 "select"
293 "use"
294 "TASK"
295 "from"
296 "exception."
297 "working"
298 "to"
299 "value."
300 "WARRANTIES"
301 "two"
302 "URI;"
303 "User-Agent"
304 "few"
305 "--THIS_STRING_SEPARATES"
306 "POST,"
307 "call"
308 "6"
309 "MUST,"
310 "scope"
311 "type"
312 "authorization"
313 "more"
314 "ISO-8859-9,"
315 "(GMT),"
316 "(TE)"
317 "name."
318 "initial"
319 "Required"
320 "RFC-850"
321 "warn"
322 "bytes,"
323 "known"
324 "Found"
325 "cases"
326 "MHTML"
327 "name:"
328 "must"
329 "parse"
330 "lowercase"
331 "MHTML,"
332 "RIGHTS"
333 "this"
334 "NTP"
335 "work"
336 "--THIS_STRING_SEPARATES--"
337 "Syntax"
338 "paragraph"
339 "can"
340 "tracing"
341 "following"
342 "\x22I"
343 "closing"
344 "modifier"
345 "root"
346 "example"
347 "requested,"
348 "J.,"
349 "control"
350 "type."
351 "reserved"
352 "links"
353 "process"
354 "attribute"
355 "allowed"
356 "high"
357 "currency"
358 "numbers"
359 "want"
360 "type:"
361 "native"
362 "LF"
363 "class,"
364 "end"
365 "Missing"
366 "HTTP-"
367 "HTTP,"
368 "charset"
369 "1"
370 "line."
371 "2*N"
372 "H."
373 "1XX"
374 "WARRANTIES,"
375 "HTTP:"
376 "A"
377 "badly"
378 "HEAD"
379 "may"
380 "insecure"
381 "after"
382 "variant"
383 "mapping"
384 "wrong"
385 "[SP"
386 "ANSI,"
387 "date"
388 "such"
389 "data"
390 "parallel"
391 "repeat"
392 "a"
393 "FTP,"
394 "All"
395 "short"
396 "\x22GET\x22"
397 "Y."
398 "UA"
399 "(2**N),"
400 "element"
401 "so"
402 "cases."
403 "File"
404 "(LWS)"
405 "\x22DEFLATE"
406 "order"
407 "\x22SHOULD"
408 "don\x27t"
409 "MIC"
410 "move"
411 "vary"
412 "satisfied"
413 "CD-ROM,"
414 "ended"
415 "HTTP-WG."
416 "LINK,"
417 "pointer"
418 "its"
419 "digest"
420 "before"
421 "HTML"
422 "(OK)"
423 "using:"
424 "MAY,"
425 "fix"
426 "ISO-3166"
427 "actually"
428 "407"
429 "(GNU"
430 "\x22HTTP/1.1\x22,"
431 "P.,"
432 "401"
433 "MERCHANTABILITY"
434 "DNS."
435 "into"
436 "\x22HTTP"
437 "it."
438 "it,"
439 "return"
440 "combination"
441 "URL"
442 "URI"
443 "token."
444 "9"
445 "Bad"
446 "not"
447 "However,"
448 "SSL"
449 "name"
450 "always"
451 "decimal"
452 "expectation."
453 "did"
454 "ISO-639"
455 "]URI,"
456 "found"
457 "trailer"
458 "mean"
459 "breakdown"
460 "domain"
461 "From"
462 "(via"
463 "(URI)"
464 "UNLINK"
465 "used"
466 "expect"
467 "exceeded"
468 "(MIC)"
469 "event"
470 "out"
471 "is:"
472 "by"
473 "E."
474 "space"
475 "\x22MUST/MAY/SHOULD\x22"
476 "REQUIRED"
477 "ALPHA"
478 "HTTP/2.4"
479 "4DIGIT"
480 "increase"
481 "L."
482 "time."
483 "PATCH,"
484 "7"
485 "supports"
486 "2DIGIT"
487 "K.,"
488 "(A,"
489 "This"
490 "free"
491 "\x22B\x22"
492 "RFC"
493 "base"
494 "proxy"
495 "IMPLIED,"
496 "POST"
497 "received."
498 "generate"
499 "text/plain"
500 "ISO-8859-7,"
501 "\x22HTTP/1.1\x22"
502 "Partial"
503 "could"
504 "transition"
505 "DISCLAIMS"
506 "times"
507 "filter"
508 "HTML\x22,"
509 "length"
510 "HEAD."
511 "HEAD,"
512 "S.,"
513 "first"
514 "origin"
515 "\x22E\x22"
516 "already"
517 "UPALPHA"
518 "3DIGIT"
519 "*"
520 "Cache"
521 "Please"
522 "number"
523 "one"
524 "CHAR"
525 "ISI"
526 "another"
527 "FITNESS"
528 "message"
529 "CSS1,"
530 "open"
531 "size"
532 "doesn\x27t"
533 "\x22"
534 "script"
535 "unknown"
536 "top"
537 "header)"
538 "system"
539 "construct"
540 "image/gif"
541 "2"
542 "ignored."
543 "listed"
544 "Date"
545 "LOALPHA"
546 "scheme"
547 "final"
548 "store"
549 "too"
550 "B"
551 "Success"
552 "that"
553 "completed"
554 "OPTIONAL;"
555 "tokens"
556 "task"
557 "pragma"
558 "(IANA"
559 "WAIS"
560 "F.,"
561 "than"
562 "(A"
563 "K."
564 "target"
565 "16"
566 "require"
567 "Only"
568 "WWW-Authenticate"
569 "HTTP/2.13,"
570 "headers"
571 "See"
572 "GMT."
573 "HTTP/2.0,"
574 "were"
575 "1)"
576 "\x22A\x22"
577 "stale"
578 "1*8ALPHA"
579 "are"
580 "and"
581 "IRC/6.9,"
582 "false"
583 "URL)."
584 "turned"
585 "ANSI"
586 "(IANA)"
587 "(LWS)."
588 "have"
589 "MIME,"
590 "need"
591 "HTTP/1.1.)"
592 "null"
593 "any"
594 "contents"
595 "conversion"
596 "data)"
597 "(LZ77)"
598 "(MIME"
599 "mechanism"
600 "internal"
601 "(C)"
602 "take"
603 "which"
604 "With"
605 "UCI"
606 "HTTP/0.9,"
607 "content-"
608 "200"
609 "begin"
610 "headers)"
611 "unless"
612 "TCP/IP"
613 "Content-Disposition"
614 "206"
615 "buffer"
616 "object"
617 "\x22MUST\x22,"
618 "regular"
619 "letter"
620 "entry"
621 "The"
622 "]"
623 "the"
624 "D."
625 "(STD"
626 "incompatible"
627 "L.,"
628 "R"
629 "(URL)"
630 "left"
631 "}"
632 "+"
633 "\x22MIME"
634 "Note:"
635 "particularly"
636 "WA"
637 "text"
638 "labels"
639 "\x22C\x22"
640 "Authentication"
641 "Unrecognized"
642 "CRLF."
643 "PARTICULAR"
644 "CRLF,"
645 "SP"
646 "find"
647 "MUST"
648 "true,"
649 "cache."
650 "upgrade"
651 "cache)"
652 "implementation"
653 "("
654 "[RFC"
655 "cache"
656 "3"
657 "should"
658 "failed"
659 "only"
660 "unable"
661 "LDAP)"
662 "USA"
663 "8"
664 "US-ASCII"
665 "(UA)"
666 "get"
667 "E.,"
668 "HEREIN"
669 "\x22HTTP\x22."
670 "cannot"
671 "new"
672 "THE"
673 "BNF"
674 "DIGIT,"
675 "closure"
676 "PUT"
677 "0)"
678 "resource"
679 "A.,"
680 "W."
681 "Content-Type:"
682 "ISO-8859."
683 "calling"
684 "J."
685 "INCLUDING"
686 "common"
687 "INTERNET"
688 "release"
689 "ISI/RR-98-463,"
690 "\x22CONNECT\x22"
691 "where"
692 "set"
693 "IANA"
694 "For"
695 "\x22F\x22"
696 "configured"
697 "we"
698 "this,"
699 "multipart"
700 "close"
701 "SHOULD"
702 "end."
703 "detect"
704 "GET"
705 "WWW\x22,"
706 "1*DIGIT"
707 "BUT"
708 "MIT"
709 "outside"
710 "Proxy-Authorization"
711 "closed"
712 "between"
713 "probably"
714 "boundary"
715 "reading"
716 "\x22SHALL"
717 "\x22RECOMMENDED\x22,"
718 "available"
719 "C"
720 "FOR"
721 "missing"
722 "importance"
723 "screen"
724 "connection."
725 "ISO-8859-1"
726 "UNIX"
727 "STD"
728 "key"
729 "IS\x22"
730 "P."
731 "\x22HTTP/1.1\x22."
732 "HTTP/1.0),"
733 "AND"
734 "received"
735 "WWW"
736 "TRACE"
737 "\x22MAY\x22,"
738 "many"
739 "*TEXT"
740 "Unsupported"
741 "Rules"
742 "connection"
743 "Unicode"
744 "*OCTET"
745 "exceeds"
746 "(URN)"
747 "safely"
748 "finds"
749 "can\x27t"
750 "comment"
751 "ISO-8859-8,"
752 "Content-Length"
753 "consume"
754 "stream"
755 "simple"
756 "(MIME)"
757 "header"
758 "DNS)"
759 "colon"
760 "adding"
761 "spans"
762 "1*HEX"
763 "table"
764 "allocated"
765 "BCP"
766 "application/pdf"
767 "LWS:"
768 "\x22REQUIRED\x22,"
769 "Wed,"
770 "C."
771 "C,"
772 "Proxy-Authenticate"
773 "encryption"
774 "create"
775 "(MHTML)\x22,"
776 "been"
777 "."
778 "HTTP/12.3."
779 "\x22OPTIONS\x22"
780 "\x22PUT\x22"
781 "context."
782 "LWS,"
783 "basic"
784 "expected"
785 "prototype"
786 "GMT,"
787 "empty"
788 ">"
789 "URL."
790 "PNG,\x22"
791 "\x22D\x22"
792 "CA"
793 "HEX"
794 "N"
795 "0*3DIGIT"
796 "\x22W/\x22"
797 "CR"
798 "\x22DELETE\x22"
799 "unnecessarily"
800 "OPTIONAL"
801 "case"
802 "exception"
803 "save"
804 "(HTTP)"
805 "value"
806 "Assigned"
807 "while"
808 "\x22GZIP"
809 "\x22SHALL\x22,"
810 "error"
811 "\x22GMT\x22"
812 "\x22TRACE\x22"
813 "resident"
814 "is"
815 "thus"
816 "it"
817 "encountered"
818 "Content"
819 "MIME"
820 "in"
821 "SIGCOMM"
822 "You"
823 "if"
824 "result"
825 "binary"
826 "containing"
827 "\x22A"
828 ")"
829 "CREATE"
830 "expired"
831 "1DIGIT"
832 "same"
833 "OPTIONS"
834 "read"
835 "BNF,"
836 "unrecognized"
837 "units"
838 "UST"
839 "status"
840 "UTC"
841 "extended"
842 "http"
843 "context"
844 "I"
845 "IP"
846 "(O)."
847 "allocation"
848 "running"
849 "*LWS"
850 "user"
851 "SMTP"
852 "stack"
853 "URI,"
854 "tracking"
855 "IETF"
856 "CR."
857 "failing"
858 "ANY"
859 "patterns"
860 "M.,"
861 "Names"
862 "In"
863 "position"
864 "model"
865 "audio"
866 "If"
867 "WARRANTY"
868 "US-ASCII."
869 "MAY"
870 "THAT"
871 "being"
872 "(OK)."
873 "actions"
874 "invalid"
875 "HTTP/1.0)"
876 "CRC."
877 "previous"
878 "tables"
879 "TO"
880 "<US-ASCII"
881 "character"
882 "source"
883 "ISO-8859-2,"
884 "valid"
885 "4"
886 "HTTP/1.0"
887 "HTTP/1.1"
888 "size,"
889 "has"
890 "match"
891 "build"
892 "URI."
893 "tests"
894 "format"
895 "transfer-encoding"
896 "H.,"
897 "T"
898 "using"
899 "LIMITED"
900 "OK"
901 "success"
902 "text/html"
903 "ISO-8859-5,"
904 "B,"
905 "signal"
906 "MIME:"
907 "(HTCPCP/1.0)\x22,"
908 "server"
909 "discarded"
910 "true"
911 "OF"
912 "output"
913 "page"
914 "S."
915 "right"
916 "old"
917 "sequence"
918 "uppercase"
919 "B.,"
920 "some"
921 "back"
922 "HT"
923 "Last-Modified"
924 "growth"
925 "equivalent"
926 "specified"
927 "multiple"
928 "H.F.,"
929 "HTTP/1.0."
930 "(BNF)"
931 "happens"
932 "ignore"
933 "PUT."
934 "INDEX."
935 "trace"
936 "for"
937 "avoid"
938 "CR,"
939 "does"
940 "Authorization"
941 "assuming"
942 "be"
943 "run"
944 "GET."
945 "deleted"
946 "302"
947 "X3.4-1986"
948 "<URL:"
949 "O"
950 "ISO-8859-1."
951 "last-modified"
952 "host"
953 "HTTP/1.0,"
954 "LWS>"
955 "INFORMATION"
956 "X3.4-1986,"
957 "properties"
958 "ALPHA,"
959 "Location"
960 "on"
961 "DIGIT"
962 "ENGINEERING"
963 "actual"
964 "extension"
965 "of"
966 "R.,"
967 "\x22UTF-8,"
968 "location"
969 "*<TEXT,"
970 "OR"
971 "range"
972 "3ALPHA"
973 "extensions"
974 "positive"
975 "Message"
976 "DELETE"
977 "content-type"
978 "or"
979 "UC"
980 "No"
981 "ISO-"
982 "image"
983 "ACM"
984 "HEX\x22"
985 "URL,"
986 "because"
987 "ISO-8859-6,"
988 "T.,"
989 "operator"
990 "T/TCP"
991 "mark"
992 "file."
993 "area"
994 "GET\x22"
995 "transfer"
996 "support"
997 "there"
998 "long"
999 "class"
1000 "start"
1001 "HT."
1002 "forward"
1003 "was"
1004 "function"
1005 "HT,"
1006 "N."
1007 "HTTP/1.1\x22,"
1008 "memory"
1009 "OCTET"
1010 "but"
1011 "failure"
1012 "TE:"
1013 "IMPLIED"
1014 "CRLF"
1015 "DNS"
1016 "Error"
1017 "\x22ZLIB"
1018 "line"
1019 "trying"
1020 "with"
1021 "GMT"
1022 "count"
1023 "algorithm"
1024 "default"
1025 "B."
1026 "ISO-8859-1,"
1027 "up"
1028 "ISO-8859-1)"
1029 "different"
1030 "PURPOSE."
1031 "limit"
1032 "used."
1033 "WILL"
1034 "DEL"
1035 "define"
1036 "called"
1037 "delete"
1038 "DELETE,"
1039 "storing"
1040 "USE"
1041 "image/jpeg"
1042 "defined"
1043 "LWS"
1044 "combining"
1045 "unsafe"
1046 "an"
1047 "To"
1048 "as"
1049 "warning"
1050 "exist"
1051 "at"
1052 "file"
1053 "NOT\x22"
1054 "NOT,"
1055 "W3C/MIT"
1056 "ISO-8859-1:1987."
1057 "SHTTP/1.3,"
1058 "no"
1059 "when"
1060 "A,"
1061 "virtual"
1062 "A."
1063 "details."
1064 "application"
1065 "other"
1066 "5"
1067 "Proxy"
1068 "LF,"
1069 "test"
1070 "MD5"
1071 "you"
1072 "TE"
1073 "ISO-8859-3,"
1074 "requested"
1075 "elements"
1076 "C)"
1077 "symbol"
1078 "T."
1079 "code)"
1080 "variable"
1081 "SOCIETY"
1082 "\x22MUST"
1083 "TCP"
1084 "ISO-10646\x22,"
1085 "NOT\x22,"
1086 "R."
1087 "lead"
1088 "audio/basic"
1089 "IANA."
1090 "\x22WAIS"
1091 "persistent"
1092 "Its"
1093 "As"
1094 "time"
1095 "failures"
1096 "\x22ISO-8859-1\x22"
1097 "once"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698