@owlmeans/basic-ids 0.1.18-rc.1 → 0.1.18-rc.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,7 +11,7 @@ Utilities for generating cryptographically secure random IDs and UUIDs.
11
11
  ## Installation
12
12
 
13
13
  ```bash
14
- bun add @owlmeans/basic-ids
14
+ bun add @owlmeans/basic-ids@^0.1.18-rc.8
15
15
  ```
16
16
 
17
17
  ## Usage
@@ -65,7 +65,7 @@ This package ships embedded agent skills under `agent-meta/`. After installing y
65
65
  your project's skill store (`.agents/skills/`):
66
66
 
67
67
  ```sh
68
- npx @owlmeans/agent-skills
68
+ npx @owlmeans/agent-skills@^0.1.18-rc.14
69
69
  ```
70
70
 
71
71
  The embedded files are version-matched to this package release. Do not edit them
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "package": "@owlmeans/basic-ids",
4
- "version": "0.1.18-rc.0",
5
- "generatedAt": "2026-08-16T22:20:50.512Z",
4
+ "version": "0.1.18-rc.11",
5
+ "generatedAt": "2026-09-10T23:12:07.515Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: basic-ids
3
- description: How to use @owlmeans/basic-ids — identifier generation helpers (random IDs, namespaced IDs, ULID-like). Auto-invoked when importing ID generation utilities.
3
+ description: How to use @owlmeans/basic-ids — createIdOfLength and createRandomPrefix for random identifiers, uuid for v4 UUIDs, and generateWordSlug / nextSlugCandidate for human-readable two-word slugs. Auto-invoked when importing ID generation utilities or naming a new record, nonce or organization slug.
4
4
  user-invocable: false
5
5
  ---
6
6
  <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
@@ -8,23 +8,57 @@ user-invocable: false
8
8
  # @owlmeans/basic-ids
9
9
 
10
10
  **Layer:** Core
11
- **Install:** `"@owlmeans/basic-ids": "^0.1.18-rc.0"` in `dependencies`
11
+ **Install:** `"@owlmeans/basic-ids": "^0.1.18-rc.11"` in `dependencies`
12
12
 
13
13
  ## Key Exports
14
14
 
15
15
  | Export | Description |
16
16
  |--------|-------------|
17
- | ID helpers | Generate random/sortable identifiers |
18
- | Constants | Default ID lengths, character sets |
17
+ | `createIdOfLength(length?, style?)` | A random id of exactly `length` characters (default 6) |
18
+ | `createRandomPrefix(bytes?, style?)` | Encode `bytes` random bytes (default 6); length varies with the encoding |
19
+ | `uuid()` | A v4 UUID string |
20
+ | `generateWordSlug()` | A readable two-word slug — `civil-format`, `raised-earth` |
21
+ | `nextSlugCandidate(base, attempt)` | The n-th candidate for an occupied slug — `brisk-otter`, `brisk-otter-2` |
22
+ | `IdStyle` | `Base58` (default) and `Base64` (url-safe, unpadded) |
23
+ | `WORD_SLUG_SEPARATOR` (`'-'`), `WORDLIST_SIZE` (2048) | Slug shape and thesaurus size |
24
+ | `WORDLIST_A` / `WORDLIST_B` | The descriptive and subject halves the slug is drawn from |
19
25
 
20
- ## Usage
26
+ ## Random identifiers
21
27
 
22
28
  ```typescript
23
- import { randomId } from '@owlmeans/basic-ids'
29
+ import { createIdOfLength, IdStyle, uuid } from '@owlmeans/basic-ids'
24
30
 
25
- const id = randomId() // e.g. '01HQ9MZ3...'
31
+ const id = createIdOfLength(16) // 16 Base58 chars
32
+ const nonce = createIdOfLength(32, IdStyle.Base64) // 32 url-safe Base64 chars
33
+ const recordId = uuid()
34
+ ```
35
+
36
+ `createIdOfLength` asks for twice the bytes and truncates, so the result is exactly the requested
37
+ number of characters whatever the encoding — this is the function to use for anything that must be
38
+ unguessable. `createRandomPrefix` is the raw form: it encodes the bytes it was given and returns
39
+ however many characters that produced.
40
+
41
+ ## Readable slugs
42
+
43
+ `generateWordSlug` picks one descriptive word and one subject word out of 2048 each, joined by a
44
+ hyphen. The result is a valid DNS label and a valid Kubernetes object-name segment, so the same
45
+ value can address a host, a namespace and an OIDC client without a second sanitising pass — which
46
+ is why an organization entity's `entitySlug` is generated this way rather than as a random string.
47
+
48
+ Two words carry 22 bits of entropy. That is **not** enough to be unguessable, and deliberately so:
49
+ uniqueness is settled by a unique index or a registry claim, never by entropy. Walk
50
+ `nextSlugCandidate` until the store accepts one, and never use a slug where a secret is needed.
51
+
52
+ ```typescript
53
+ import { generateWordSlug, nextSlugCandidate } from '@owlmeans/basic-ids'
54
+
55
+ const base = generateWordSlug()
56
+ for (let attempt = 1; attempt <= 10; ++attempt) {
57
+ const candidate = nextSlugCandidate(base, attempt) // attempt 1 is the bare name
58
+ if (await claim(candidate)) return candidate
59
+ }
26
60
  ```
27
61
 
28
62
  ## Depends On
29
63
 
30
- - None at runtime
64
+ - `@noble/hashes` (randomness), `@scure/base` (Base58 / Base64), `uuid`
package/build/consts.d.ts CHANGED
@@ -2,4 +2,15 @@ export declare enum IdStyle {
2
2
  Base58 = "base58",
3
3
  Base64 = "base64"
4
4
  }
5
+ /**
6
+ * Word-slug shape: two lowercase words joined by a hyphen, optionally carrying a numeric
7
+ * disambiguation suffix (`brisk-otter`, `brisk-otter-2`).
8
+ *
9
+ * A slug generated this way is a valid DNS label and a valid Kubernetes object-name segment,
10
+ * which is the whole point of preferring it over a random string: the same value can address a
11
+ * host, a namespace and an OIDC client without a second sanitising pass.
12
+ */
13
+ export declare const WORD_SLUG_SEPARATOR = "-";
14
+ /** Words per thesaurus. A power of two so an index costs exactly 11 unbiased bits. */
15
+ export declare const WORDLIST_SIZE = 2048;
5
16
  //# sourceMappingURL=consts.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../src/consts.ts"],"names":[],"mappings":"AACA,oBAAY,OAAO;IACjB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB"}
1
+ {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../src/consts.ts"],"names":[],"mappings":"AACA,oBAAY,OAAO;IACjB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,mBAAmB,MAAM,CAAA;AAEtC,sFAAsF;AACtF,eAAO,MAAM,aAAa,OAAO,CAAA"}
package/build/consts.js CHANGED
@@ -3,4 +3,15 @@ export var IdStyle;
3
3
  IdStyle["Base58"] = "base58";
4
4
  IdStyle["Base64"] = "base64";
5
5
  })(IdStyle || (IdStyle = {}));
6
+ /**
7
+ * Word-slug shape: two lowercase words joined by a hyphen, optionally carrying a numeric
8
+ * disambiguation suffix (`brisk-otter`, `brisk-otter-2`).
9
+ *
10
+ * A slug generated this way is a valid DNS label and a valid Kubernetes object-name segment,
11
+ * which is the whole point of preferring it over a random string: the same value can address a
12
+ * host, a namespace and an OIDC client without a second sanitising pass.
13
+ */
14
+ export const WORD_SLUG_SEPARATOR = '-';
15
+ /** Words per thesaurus. A power of two so an index costs exactly 11 unbiased bits. */
16
+ export const WORDLIST_SIZE = 2048;
6
17
  //# sourceMappingURL=consts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"consts.js","sourceRoot":"","sources":["../src/consts.ts"],"names":[],"mappings":"AACA,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IACjB,4BAAiB,CAAA;IACjB,4BAAiB,CAAA;AACnB,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB"}
1
+ {"version":3,"file":"consts.js","sourceRoot":"","sources":["../src/consts.ts"],"names":[],"mappings":"AACA,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IACjB,4BAAiB,CAAA;IACjB,4BAAiB,CAAA;AACnB,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB;AAED;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,CAAA;AAEtC,sFAAsF;AACtF,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,CAAA"}
package/build/helper.d.ts CHANGED
@@ -2,4 +2,23 @@ import { IdStyle } from './consts.js';
2
2
  export declare const createRandomPrefix: (length?: number, format?: IdStyle) => string;
3
3
  export declare const createIdOfLength: (length?: number, format?: IdStyle) => string;
4
4
  export declare const uuid: () => string;
5
+ /**
6
+ * A human-readable slug: one descriptive word, one subject word — `civil-format`, `raised-earth`.
7
+ *
8
+ * This exists because the values it replaces are read by people. An organization slug turns up in
9
+ * hostnames, OIDC client ids and support conversations, and a 16-character Base58 string is
10
+ * unquotable over the phone and unrecognisable in a list. Two words out of 2048 each give 22 bits
11
+ * of entropy — far short of a secret, and deliberately so: uniqueness here is settled by a unique
12
+ * index and `nextSlugCandidate`, not by entropy. Never use this for anything that must be
13
+ * unguessable (nonces, secrets, tokens) — `createIdOfLength` is that function.
14
+ */
15
+ export declare const generateWordSlug: () => string;
16
+ /**
17
+ * The n-th candidate for an occupied slug: `brisk-otter`, `brisk-otter-2`, `brisk-otter-3`.
18
+ *
19
+ * The first attempt is the bare name — a suffix appears only once something already answers to it,
20
+ * so the common case keeps the name it was given. Callers own the availability test (a unique
21
+ * index, a registry claim) and walk this until one is free.
22
+ */
23
+ export declare const nextSlugCandidate: (base: string, attempt: number) => string;
5
24
  //# sourceMappingURL=helper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../src/helper.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAGrC,eAAO,MAAM,kBAAkB,YAAY,MAAM,WAAc,OAAO,KAAoB,MASzF,CAAA;AAED,eAAO,MAAM,gBAAgB,YAAY,MAAM,WAAc,OAAO,KAAoB,MAEvF,CAAA;AAED,eAAO,MAAM,IAAI,QAAO,MAAc,CAAA"}
1
+ {"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../src/helper.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAsC,MAAM,aAAa,CAAA;AAKzE,eAAO,MAAM,kBAAkB,YAAY,MAAM,WAAc,OAAO,KAAoB,MASzF,CAAA;AAED,eAAO,MAAM,gBAAgB,YAAY,MAAM,WAAc,OAAO,KAAoB,MAEvF,CAAA;AAED,eAAO,MAAM,IAAI,QAAO,MAAc,CAAA;AAEtC;;;;;;;;;GASG;AACH,eAAO,MAAM,gBAAgB,QAAO,MAInC,CAAA;AAED;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,SAAU,MAAM,WAAW,MAAM,KAAG,MACF,CAAA"}
package/build/helper.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { randomBytes } from '@noble/hashes/utils';
2
2
  import { base58, base64urlnopad } from '@scure/base';
3
- import { IdStyle } from './consts.js';
3
+ import { IdStyle, WORDLIST_SIZE, WORD_SLUG_SEPARATOR } from './consts.js';
4
+ import { WORDLIST_A } from './wordlists/list-a.js';
5
+ import { WORDLIST_B } from './wordlists/list-b.js';
4
6
  import { v4 } from 'uuid';
5
7
  export const createRandomPrefix = (length = 6, format = IdStyle.Base58) => {
6
8
  const rand = randomBytes(length);
@@ -16,4 +18,38 @@ export const createIdOfLength = (length = 6, format = IdStyle.Base58) => {
16
18
  return createRandomPrefix(length * 2, format).slice(0, length);
17
19
  };
18
20
  export const uuid = () => v4();
21
+ /**
22
+ * A human-readable slug: one descriptive word, one subject word — `civil-format`, `raised-earth`.
23
+ *
24
+ * This exists because the values it replaces are read by people. An organization slug turns up in
25
+ * hostnames, OIDC client ids and support conversations, and a 16-character Base58 string is
26
+ * unquotable over the phone and unrecognisable in a list. Two words out of 2048 each give 22 bits
27
+ * of entropy — far short of a secret, and deliberately so: uniqueness here is settled by a unique
28
+ * index and `nextSlugCandidate`, not by entropy. Never use this for anything that must be
29
+ * unguessable (nonces, secrets, tokens) — `createIdOfLength` is that function.
30
+ */
31
+ export const generateWordSlug = () => {
32
+ const [a, b] = pickWords(2);
33
+ return `${WORDLIST_A[a]}${WORD_SLUG_SEPARATOR}${WORDLIST_B[b]}`;
34
+ };
35
+ /**
36
+ * The n-th candidate for an occupied slug: `brisk-otter`, `brisk-otter-2`, `brisk-otter-3`.
37
+ *
38
+ * The first attempt is the bare name — a suffix appears only once something already answers to it,
39
+ * so the common case keeps the name it was given. Callers own the availability test (a unique
40
+ * index, a registry claim) and walk this until one is free.
41
+ */
42
+ export const nextSlugCandidate = (base, attempt) => attempt < 2 ? base : `${base}${WORD_SLUG_SEPARATOR}${attempt}`;
43
+ /**
44
+ * Uniform indices into a 2048-entry list. 2048 is a power of two, so masking 16 random bits down
45
+ * to 11 is unbiased — no rejection loop, and no modulo skew toward the front of the list.
46
+ */
47
+ const pickWords = (count) => {
48
+ const bytes = randomBytes(count * 2);
49
+ const indices = [];
50
+ for (let i = 0; i < count; ++i) {
51
+ indices.push(((bytes[i * 2] << 8) | bytes[i * 2 + 1]) & (WORDLIST_SIZE - 1));
52
+ }
53
+ return indices;
54
+ };
19
55
  //# sourceMappingURL=helper.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"helper.js","sourceRoot":"","sources":["../src/helper.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,EAAE,EAAE,MAAM,MAAM,CAAA;AAEzB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,MAAM,GAAW,CAAC,EAAE,MAAM,GAAY,OAAO,CAAC,MAAM,EAAU,EAAE;IACjG,MAAM,IAAI,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAChC,QAAQ,MAAM,EAAE,CAAC;QACf,KAAK,OAAO,CAAC,MAAM;YACjB,OAAO,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACpC,KAAK,OAAO,CAAC,MAAM,CAAC;QACpB;YACE,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;IAC9B,CAAC;AACH,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,MAAM,GAAW,CAAC,EAAE,MAAM,GAAY,OAAO,CAAC,MAAM,EAAU,EAAE;IAC/F,OAAO,kBAAkB,CAAC,MAAM,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;AAChE,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,IAAI,GAAG,GAAW,EAAE,CAAC,EAAE,EAAE,CAAA"}
1
+ {"version":3,"file":"helper.js","sourceRoot":"","sources":["../src/helper.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAA;AACjD,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AACpD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAClD,OAAO,EAAE,EAAE,EAAE,MAAM,MAAM,CAAA;AAEzB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,MAAM,GAAW,CAAC,EAAE,MAAM,GAAY,OAAO,CAAC,MAAM,EAAU,EAAE;IACjG,MAAM,IAAI,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAChC,QAAQ,MAAM,EAAE,CAAC;QACf,KAAK,OAAO,CAAC,MAAM;YACjB,OAAO,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACpC,KAAK,OAAO,CAAC,MAAM,CAAC;QACpB;YACE,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;IAC9B,CAAC;AACH,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,MAAM,GAAW,CAAC,EAAE,MAAM,GAAY,OAAO,CAAC,MAAM,EAAU,EAAE;IAC/F,OAAO,kBAAkB,CAAC,MAAM,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;AAChE,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,IAAI,GAAG,GAAW,EAAE,CAAC,EAAE,EAAE,CAAA;AAEtC;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAW,EAAE;IAC3C,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAA;IAE3B,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,mBAAmB,GAAG,UAAU,CAAC,CAAC,CAAC,EAAE,CAAA;AACjE,CAAC,CAAA;AAED;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,IAAY,EAAE,OAAe,EAAU,EAAE,CACzE,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,mBAAmB,GAAG,OAAO,EAAE,CAAA;AAEhE;;;GAGG;AACH,MAAM,SAAS,GAAG,CAAC,KAAa,EAAY,EAAE;IAC5C,MAAM,KAAK,GAAG,WAAW,CAAC,KAAK,GAAG,CAAC,CAAC,CAAA;IACpC,MAAM,OAAO,GAAa,EAAE,CAAA;IAC5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,EAAE,CAAC,EAAE,CAAC;QAC/B,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,CAAC,CAAC,CAAC,CAAA;IAC9E,CAAC;IAED,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA"}
package/build/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  export * from './helper.js';
2
2
  export * from './consts.js';
3
+ export * from './wordlists/list-a.js';
4
+ export * from './wordlists/list-b.js';
3
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,uBAAuB,CAAA;AACrC,cAAc,uBAAuB,CAAA"}
package/build/index.js CHANGED
@@ -1,3 +1,5 @@
1
1
  export * from './helper.js';
2
2
  export * from './consts.js';
3
+ export * from './wordlists/list-a.js';
4
+ export * from './wordlists/list-b.js';
3
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,uBAAuB,CAAA;AACrC,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Descriptive half of a word slug — adjectives and adverbs.
3
+ *
4
+ * Exactly 2048 words (11 bits of entropy per pick), each lowercase ASCII, 3-8 characters, and
5
+ * unique within this list. The two lists share no word, so the halves of a slug can never repeat.
6
+ *
7
+ * Curated by `scripts/curate-wordlists.ts` from the Moby part-of-speech list, screened against
8
+ * profanity, stopword, negative-sentiment and proper-noun sources. Regenerate with that script
9
+ * rather than editing by hand: `tests/word-slug.spec.ts` enforces the invariants above, and a
10
+ * hand-edit that breaks the 2048 count silently biases slug generation.
11
+ */
12
+ export declare const WORDLIST_A: string[];
13
+ //# sourceMappingURL=list-a.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-a.d.ts","sourceRoot":"","sources":["../../src/wordlists/list-a.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU,EAAE,MAAM,EAiQ9B,CAAA"}
@@ -0,0 +1,270 @@
1
+ /**
2
+ * Descriptive half of a word slug — adjectives and adverbs.
3
+ *
4
+ * Exactly 2048 words (11 bits of entropy per pick), each lowercase ASCII, 3-8 characters, and
5
+ * unique within this list. The two lists share no word, so the halves of a slug can never repeat.
6
+ *
7
+ * Curated by `scripts/curate-wordlists.ts` from the Moby part-of-speech list, screened against
8
+ * profanity, stopword, negative-sentiment and proper-noun sources. Regenerate with that script
9
+ * rather than editing by hand: `tests/word-slug.spec.ts` enforces the invariants above, and a
10
+ * hand-edit that breaks the 2048 count silently biases slug generation.
11
+ */
12
+ export const WORDLIST_A = [
13
+ 'public', 'days', 'united', 'real', 'local', 'national', 'black', 'special',
14
+ 'current', 'personal', 'white', 'level', 'digital', 'previous', 'main', 'private',
15
+ 'teen', 'advanced', 'left', 'gay', 'human', 'hot', 'medical', 'complete',
16
+ 'mobile', 'legal', 'social', 'august', 'single', 'easy', 'listed', 'popular',
17
+ 'central', 'original', 'common', 'specific', 'living', 'called', 'short', 'powered',
18
+ 'daily', 'natural', 'official', 'pro', 'federal', 'final', 'adult', 'true',
19
+ 'fast', 'global', 'economic', 'included', 'wide', 'simple', 'quick', 'annual',
20
+ 'basic', 'active', 'designed', 'western', 'regional', 'double', 'mature', 'running',
21
+ 'military', 'pre', 'huge', 'middle', 'coming', 'nice', 'foreign', 'super',
22
+ 'male', 'multiple', 'late', 'female', 'primary', 'friendly', 'physical', 'happy',
23
+ 'safe', 'unique', 'prior', 'ready', 'regular', 'secure', 'simply', 'larger',
24
+ 'anti', 'strong', 'perfect', 'classic', 'involved', 'extra', 'existing', 'selected',
25
+ 'joined', 'valid', 'modern', 'senior', 'grand', 'cool', 'normal', 'entire',
26
+ 'leading', 'positive', 'abstract', 'pass', 'multi', 'academic', 'expected', 'pacific',
27
+ 'northern', 'proposed', 'outdoor', 'deep', 'reported', 'hit', 'mini', 'internal',
28
+ 'detailed', 'moving', 'pretty', 'southern', 'medium', 'virtual', 'remote', 'external',
29
+ 'visual', 'manual', 'fair', 'civil', 'fixed', 'finally', 'electric', 'worth',
30
+ 'creative', 'accepted', 'flat', 'helpful', 'monthly', 'musical', 'colorado', 'royal',
31
+ 'clean', 'largest', 'relevant', 'applied', 'weekly', 'allowed', 'firm', 'random',
32
+ 'clinical', 'lowest', 'highly', 'patient', 'actual', 'persons', 'cultural', 'easily',
33
+ 'oral', 'closed', 'initial', 'optional', 'driving', 'mid', 'soft', 'fresh',
34
+ 'growing', 'eastern', 'signed', 'upper', 'prime', 'informed', 'urban', 'sorted',
35
+ 'heavy', 'covered', 'solid', 'rich', 'marine', 'intended', 'smart', 'racing',
36
+ 'missing', 'domestic', 'mental', 'extended', 'native', 'owned', 'played', 'equal',
37
+ 'matching', 'variable', 'golden', 'portable', 'earlier', 'nuclear', 'powerful', 'passed',
38
+ 'stated', 'decided', 'graphic', 'winning', 'straight', 'prepared', 'void', 'alert',
39
+ 'sweet', 'dry', 'eligible', 'faster', 'frank', 'rural', 'shared', 'forced',
40
+ 'secret', 'healthy', 'married', 'gratis', 'postal', 'ultimate', 'minor', 'reduced',
41
+ 'rare', 'extreme', 'removed', 'dual', 'famous', 'dynamic', 'junior', 'agreed',
42
+ 'proper', 'nearby', 'outdoors', 'printed', 'easier', 'optical', 'relative', 'amazing',
43
+ 'recorded', 'finished', 'yeah', 'fourth', 'generic', 'mixed', 'compact', 'accurate',
44
+ 'managing', 'raw', 'walking', 'sharp', 'assigned', 'raised', 'directed', 'sporting',
45
+ 'totally', 'organic', 'tony', 'advisory', 'wet', 'matt', 'speaking', 'plain',
46
+ 'holy', 'fiscal', 'filled', 'dental', 'ancient', 'learned', 'historic', 'attached',
47
+ 'upcoming', 'linear', 'edited', 'constant', 'jewish', 'linked', 'pure', 'treated',
48
+ 'tested', 'exact', 'formal', 'micro', 'supreme', 'ultra', 'gray', 'charged',
49
+ 'broad', 'terminal', 'nights', 'properly', 'saving', 'newly', 'suitable', 'typical',
50
+ 'catholic', 'solar', 'reliable', 'biggest', 'memorial', 'twin', 'pregnant', 'cellular',
51
+ 'flexible', 'numerous', 'superior', 'granted', 'magnetic', 'massive', 'employed', 'bright',
52
+ 'formed', 'rapid', 'hairy', 'smooth', 'narrow', 'acting', 'grey', 'parallel',
53
+ 'amended', 'bold', 'drinking', 'blank', 'enhanced', 'deluxe', 'aged', 'lived',
54
+ 'pursuant', 'tight', 'flying', 'cute', 'marked', 'measured', 'roman', 'valuable',
55
+ 'busy', 'stereo', 'tiny', 'liberal', 'usual', 'ongoing', 'exciting', 'oriented',
56
+ 'quiet', 'comic', 'familiar', 'capable', 'elected', 'ethnic', 'vertical', 'absolute',
57
+ 'anytime', 'alive', 'genetic', 'tropical', 'mutual', 'everyday', 'checked', 'visible',
58
+ 'obvious', 'passing', 'awesome', 'desired', 'healing', 'funded', 'rolling', 'adequate',
59
+ 'stopped', 'closely', 'drawn', 'overseas', 'mod', 'nearest', 'partial', 'ranking',
60
+ 'sublime', 'glad', 'trusted', 'supposed', 'ordinary', 'knowing', 'tall', 'athletic',
61
+ 'thermal', 'vital', 'telling', 'coastal', 'lucky', 'expanded', 'casual', 'grown',
62
+ 'lovely', 'indoor', 'armed', 'partly', 'exposed', 'loaded', 'founded', 'moral',
63
+ 'trained', 'wooden', 'tough', 'diverse', 'sole', 'divided', 'wise', 'pleased',
64
+ 'genuine', 'bigger', 'romantic', 'revealed', 'barry', 'sized', 'silent', 'literary',
65
+ 'meta', 'facial', 'dated', 'noble', 'earned', 'islamic', 'teenage', 'triple',
66
+ 'secured', 'wearing', 'mounted', 'median', 'animated', 'judicial', 'engaged', 'binary',
67
+ 'attended', 'picked', 'assumed', 'moderate', 'rapidly', 'vast', 'careful', 'tracked',
68
+ 'minimal', 'declared', 'handheld', 'greatly', 'commonly', 'pleasant', 'suddenly', 'olympic',
69
+ 'outer', 'lite', 'acute', 'honest', 'logical', 'payable', 'detected', 'juvenile',
70
+ 'acoustic', 'locked', 'adjusted', 'pulled', 'shaped', 'seasonal', 'painted', 'ethical',
71
+ 'floral', 'neutral', 'equally', 'resolved', 'frequent', 'trim', 'untitled', 'optimal',
72
+ 'distinct', 'civic', 'colored', 'herbal', 'loving', 'elegant', 'opposed', 'solely',
73
+ 'headed', 'repeated', 'atomic', 'weekends', 'sixth', 'deviant', 'sandy', 'crucial',
74
+ 'adjacent', 'exotic', 'surgical', 'proved', 'imperial', 'stylish', 'slim', 'offshore',
75
+ 'alt', 'finest', 'apparent', 'midi', 'ranked', 'packed', 'excited', 'tied',
76
+ 'timely', 'explicit', 'spatial', 'prompt', 'precious', 'annually', 'sunny', 'lang',
77
+ 'advised', 'interim', 'assisted', 'divine', 'locally', 'sacred', 'composed', 'occupied',
78
+ 'ripe', 'enabling', 'vocal', 'nuts', 'implied', 'guided', 'tender', 'unsigned',
79
+ 'integral', 'absent', 'imported', 'contrary', 'fancy', 'martial', 'gathered', 'dramatic',
80
+ 'surely', 'bare', 'assuming', 'monetary', 'elderly', 'mono', 'floating', 'hottest',
81
+ 'alleged', 'bridal', 'tribal', 'curious', 'stunning', 'actively', 'fastest', 'injured',
82
+ 'wired', 'immune', 'rarely', 'steady', 'wider', 'publicly', 'hourly', 'handed',
83
+ 'informal', 'heavily', 'devoted', 'randy', 'naval', 'decent', 'shortly', 'innocent',
84
+ 'cordless', 'boolean', 'circular', 'handy', 'gorgeous', 'superb', 'calm', 'copied',
85
+ 'troy', 'fitted', 'oriental', 'artistic', 'polar', 'precise', 'colonial', 'slight',
86
+ 'indirect', 'deeply', 'eyed', 'racial', 'safely', 'finite', 'durable', 'allied',
87
+ 'mailed', 'arctic', 'seventh', 'soonest', 'neo', 'fitting', 'mere', 'elder',
88
+ 'sonic', 'zoning', 'mighty', 'dominant', 'robust', 'alpine', 'fabulous', 'alias',
89
+ 'oval', 'maritime', 'periodic', 'overhead', 'incoming', 'eternal', 'metric', 'varied',
90
+ 'sudden', 'lyric', 'matched', 'rational', 'chubby', 'gentle', 'worthy', 'enormous',
91
+ 'insured', 'yea', 'freely', 'mild', 'infinite', 'legally', 'adapted', 'barely',
92
+ 'retained', 'modular', 'sheer', 'roughly', 'floppy', 'aerial', 'lasting', 'pushed',
93
+ 'evident', 'ana', 'blessed', 'italic', 'merry', 'valued', 'jake', 'peaceful',
94
+ 'altered', 'scenic', 'refined', 'acrylic', 'rolled', 'alike', 'homeless', 'hungry',
95
+ 'metallic', 'blocked', 'parental', 'lesser', 'pressing', 'apt', 'dressed', 'prepaid',
96
+ 'weighted', 'plastics', 'cleared', 'coated', 'aquatic', 'striking', 'assured', 'biblical',
97
+ 'ambient', 'limiting', 'viral', 'laden', 'pushing', 'bald', 'grateful', 'swift',
98
+ 'focal', 'distant', 'magical', 'manually', 'centered', 'yearly', 'petite', 'rotary',
99
+ 'discrete', 'boxed', 'cubic', 'intimate', 'keen', 'adaptive', 'generous', 'heated',
100
+ 'cardiac', 'suited', 'numeric', 'kinda', 'educated', 'proudly', 'inserted', 'suburban',
101
+ 'cingular', 'julian', 'charming', 'titled', 'endorsed', 'engaging', 'deferred', 'polished',
102
+ 'gently', 'securely', 'endless', 'figured', 'cooked', 'pressed', 'sic', 'cir',
103
+ 'neural', 'wan', 'handmade', 'nested', 'verbal', 'temporal', 'brave', 'subtle',
104
+ 'blond', 'earliest', 'stuffed', 'touched', 'alright', 'crying', 'yep', 'grunting',
105
+ 'upstairs', 'asleep', 'murdered', 'honestly', 'handsome', 'nope', 'sooner', 'groaning',
106
+ 'clever', 'gasping', 'beloved', 'terrific', 'quietly', 'shy', 'crossed', 'wounded',
107
+ 'aboard', 'beaten', 'touching', 'frankly', 'sounded', 'cleaned', 'busted', 'loyal',
108
+ 'landed', 'invented', 'moaning', 'reverend', 'softly', 'punished', 'thirsty', 'washed',
109
+ 'stabbed', 'nicely', 'happily', 'catching', 'chin', 'obsessed', 'halfway', 'riley',
110
+ 'booked', 'pops', 'delicate', 'nowadays', 'unfair', 'polite', 'bonnie', 'hooked',
111
+ 'happier', 'raining', 'deserved', 'splendid', 'parked', 'muffled', 'roaring', 'humble',
112
+ 'adorable', 'spotted', 'planted', 'faithful', 'corporal', 'luckily', 'drowned', 'honored',
113
+ 'wee', 'kindly', 'neat', 'psychic', 'glorious', 'fooling', 'thrilled', 'loudly',
114
+ 'woody', 'jolly', 'vanished', 'offended', 'secretly', 'mortal', 'haunted', 'smashed',
115
+ 'wealthy', 'deceased', 'sleepy', 'almighty', 'tasty', 'inviting', 'cracking', 'harmless',
116
+ 'relaxed', 'nicer', 'seated', 'stressed', 'rattling', 'resting', 'howling', 'choking',
117
+ 'quicker', 'shiny', 'lifted', 'awhile', 'sneaking', 'blamed', 'mentally', 'intact',
118
+ 'immortal', 'amusing', 'deserted', 'modest', 'tearing', 'thankful', 'wally', 'heavenly',
119
+ 'flowing', 'rushed', 'gracious', 'lightly', 'trusting', 'gladly', 'healed', 'happiest',
120
+ 'amazed', 'dexter', 'forensic', 'eighth', 'abducted', 'stinking', 'oui', 'freed',
121
+ 'echoing', 'destined', 'invested', 'yelled', 'filmed', 'lively', 'ava', 'tidy',
122
+ 'classy', 'bananas', 'cheerful', 'cosmic', 'heroic', 'spicy', 'bats', 'prettier',
123
+ 'discreet', 'slipping', 'purely', 'profound', 'cunning', 'sounding', 'definite', 'ninth',
124
+ 'hunted', 'cozy', 'gifted', 'solitary', 'yummy', 'smashing', 'daring', 'dearly',
125
+ 'curly', 'erased', 'hotter', 'stoned', 'slippery', 'ripping', 'sane', 'melted',
126
+ 'juicy', 'eerie', 'freaky', 'nicest', 'butch', 'ashore', 'wrecked', 'cautious',
127
+ 'mute', 'glowing', 'slick', 'unarmed', 'tactical', 'relaxing', 'traded', 'feminine',
128
+ 'gigantic', 'tenth', 'eldest', 'easiest', 'shouted', 'fearless', 'flooded', 'openly',
129
+ 'soaked', 'severely', 'boiled', 'merciful', 'fishy', 'hale', 'homemade', 'weeping',
130
+ 'legit', 'hardy', 'guarded', 'firmly', 'calmly', 'immense', 'stinky', 'tuned',
131
+ 'repaired', 'urgently', 'unlocked', 'salty', 'crackers', 'smoothly', 'severed', 'rainy',
132
+ 'bouncing', 'stabbing', 'clanging', 'heavier', 'manly', 'onboard', 'tempting', 'stranded',
133
+ 'spinal', 'blinded', 'cheeky', 'tame', 'titanic', 'damp', 'doubled', 'macho',
134
+ 'mornings', 'uptight', 'sideways', 'lowered', 'sweeping', 'evenings', 'orderly', 'marian',
135
+ 'upright', 'reborn', 'utmost', 'remotely', 'iced', 'honoured', 'shaggy', 'grilled',
136
+ 'probable', 'stirring', 'extinct', 'tightly', 'vacant', 'colorful', 'daft', 'milky',
137
+ 'wiser', 'taped', 'sliding', 'fiery', 'departed', 'charmed', 'spiral', 'posh',
138
+ 'manifest', 'crisp', 'icy', 'seldom', 'poetic', 'hacking', 'canned', 'chopping',
139
+ 'tucked', 'imminent', 'masked', 'armored', 'volcanic', 'airborne', 'staged', 'lunar',
140
+ 'rightful', 'chained', 'gabby', 'hopeful', 'flipping', 'flaming', 'welcomed', 'retiring',
141
+ 'silently', 'windy', 'strapped', 'firstly', 'nearer', 'audible', 'roasted', 'formally',
142
+ 'onstage', 'comfy', 'thumping', 'clanking', 'nosy', 'horribly', 'fluffy', 'underway',
143
+ 'corny', 'sacked', 'wedded', 'decisive', 'symbolic', 'pierced', 'vivid', 'folded',
144
+ 'chic', 'fertile', 'righty', 'sedative', 'reversed', 'newborn', 'absorbed', 'clinking',
145
+ 'cornered', 'uptown', 'viable', 'covert', 'mystical', 'unreal', 'gallant', 'tripping',
146
+ 'mellow', 'opposing', 'whacked', 'afar', 'indoors', 'homey', 'stained', 'elevated',
147
+ 'socially', 'enlisted', 'emptied', 'misty', 'witty', 'rested', 'renowned', 'speedy',
148
+ 'squared', 'earthly', 'credible', 'pinched', 'overly', 'cutest', 'rosy', 'unsolved',
149
+ 'joyful', 'rightly', 'barefoot', 'foremost', 'vaguely', 'playful', 'cerebral', 'hallowed',
150
+ 'slimy', 'wisely', 'truthful', 'moist', 'flushed', 'lifelong', 'licked', 'rhythmic',
151
+ 'drying', 'unseen', 'underage', 'booming', 'yonder', 'anyplace', 'aloud', 'nauseous',
152
+ 'funniest', 'sterile', 'pitched', 'minded', 'loony', 'marital', 'amused', 'politely',
153
+ 'graceful', 'groovy', 'crowned', 'majestic', 'colossal', 'morally', 'apiece', 'upstate',
154
+ 'casually', 'youthful', 'lawful', 'stacked', 'awakened', 'elusive', 'flawless', 'esteemed',
155
+ 'moira', 'tossing', 'lodged', 'blinking', 'valiant', 'crispy', 'radiant', 'furry',
156
+ 'pronto', 'edible', 'uncommon', 'weakened', 'bodily', 'rounded', 'bonded', 'mastered',
157
+ 'pleasing', 'craziest', 'blooming', 'finer', 'inland', 'humbly', 'dashing', 'hammered',
158
+ 'galactic', 'wronged', 'snappy', 'bravely', 'steadily', 'blushing', 'insides', 'maternal',
159
+ 'festive', 'brushed', 'carefree', 'saline', 'edgy', 'homesick', 'steamed', 'coloured',
160
+ 'tensed', 'doubting', 'funnier', 'worldly', 'pushy', 'frontal', 'piercing', 'stamped',
161
+ 'potent', 'unharmed', 'culinary', 'nonstop', 'prone', 'crazier', 'blindly', 'diabetic',
162
+ 'muscular', 'unborn', 'hind', 'dodgy', 'drenched', 'virtuous', 'grizzly', 'gaga',
163
+ 'wacky', 'disposed', 'deranged', 'rebuilt', 'kosher', 'hotshot', 'sordid', 'luckiest',
164
+ 'tidal', 'rowdy', 'wondrous', 'humane', 'painless', 'waved', 'pickled', 'potty',
165
+ 'indebted', 'sensual', 'rugged', 'joyous', 'molten', 'frosty', 'renewed', 'snowy',
166
+ 'slashed', 'freshly', 'literal', 'solemnly', 'fancied', 'penal', 'nutty', 'prudent',
167
+ 'bearded', 'foggy', 'hearty', 'bolted', 'bossy', 'beheaded', 'cosy', 'branded',
168
+ 'aft', 'sighted', 'seasoned', 'pious', 'steaming', 'quaint', 'anew', 'teeny',
169
+ 'breached', 'thriving', 'swiftly', 'ample', 'serene', 'fore', 'vibrant', 'barbed',
170
+ 'ecstatic', 'weakly', 'punctual', 'girly', 'lush', 'earnest', 'noir', 'sturdy',
171
+ 'molested', 'piled', 'selfless', 'sassy', 'barred', 'scheming', 'outgoing', 'perished',
172
+ 'headless', 'shortest', 'ruptured', 'privy', 'uncanny', 'cooled', 'vested', 'trampled',
173
+ 'orthodox', 'unheard', 'flashy', 'plucked', 'yawning', 'faraway', 'clipped', 'singular',
174
+ 'pilar', 'lovable', 'coy', 'primal', 'narrowed', 'dormant', 'foxy', 'chilled',
175
+ 'crazed', 'surreal', 'afloat', 'sadistic', 'iconic', 'occult', 'rooted', 'catchy',
176
+ 'feisty', 'plainly', 'spiked', 'mythical', 'unpaid', 'neatly', 'duly', 'nameless',
177
+ 'outdated', 'abed', 'dreaded', 'hatched', 'patched', 'brightly', 'pappy', 'breathed',
178
+ 'powdered', 'honorary', 'midway', 'detached', 'tum', 'quickest', 'cashed', 'teased',
179
+ 'stitched', 'dyed', 'outright', 'nasal', 'enduring', 'winged', 'dreamy', 'vigilant',
180
+ 'paired', 'demented', 'scrubbed', 'porky', 'stellar', 'tiniest', 'shrewd', 'tres',
181
+ 'uphill', 'stalked', 'squashed', 'jailed', 'ghostly', 'bubbly', 'drilled', 'fatter',
182
+ 'soaring', 'benign', 'aligned', 'mildly', 'boldly', 'puffy', 'daffy', 'erect',
183
+ 'mutually', 'canine', 'reformed', 'spirited', 'bouncy', 'hurried', 'fragrant', 'spotless',
184
+ 'merrily', 'rounding', 'wholly', 'hugely', 'lowering', 'phoney', 'cuter', 'papal',
185
+ 'fluent', 'lax', 'sweetly', 'slender', 'unholy', 'pubic', 'vaginal', 'lucid',
186
+ 'skinned', 'diverted', 'freeing', 'tangible', 'bipolar', 'devout', 'crunchy', 'unmarked',
187
+ 'abundant', 'nightly', 'candid', 'visually', 'mayan', 'faintly', 'tolerant', 'rotating',
188
+ 'devoured', 'communal', 'polluted', 'plotted', 'smoky', 'meek', 'unloaded', 'plump',
189
+ 'trendy', 'creamy', 'goddam', 'cultured', 'toasted', 'smeared', 'doubling', 'bonny',
190
+ 'stout', 'eminent', 'seasick', 'elastic', 'pristine', 'lateral', 'prying', 'diseased',
191
+ 'ruddy', 'forcibly', 'petit', 'coronary', 'stocked', 'satanic', 'liege', 'septic',
192
+ 'timeless', 'airtight', 'jazzy', 'militant', 'darned', 'perk', 'sensory', 'docked',
193
+ 'oily', 'corky', 'fetching', 'eagerly', 'peachy', 'bestowed', 'nigh', 'poached',
194
+ 'snug', 'lawfully', 'thrice', 'residual', 'striped', 'cavalier', 'lenient', 'perky',
195
+ 'prodigal', 'smacking', 'secluded', 'plural', 'scrawny', 'manned', 'awaited', 'chatty',
196
+ 'spacious', 'cuddly', 'furthest', 'soggy', 'regal', 'adrift', 'silky', 'dink',
197
+ 'parched', 'raiding', 'soiled', 'fruity', 'purest', 'withered', 'rumored', 'botched',
198
+ 'pinto', 'immersed', 'tamed', 'seismic', 'bowed', 'shakily', 'swaying', 'quirky',
199
+ 'fiercely', 'ordained', 'lovingly', 'carnal', 'wobbly', 'aired', 'merrier', 'starry',
200
+ 'chaste', 'poised', 'rustic', 'celsius', 'lastly', 'vigorous', 'scented', 'busiest',
201
+ 'fined', 'agile', 'grasping', 'tubby', 'bony', 'diligent', 'secular', 'watery',
202
+ 'dopey', 'dashed', 'ticklish', 'ideally', 'widowed', 'salted', 'lofty', 'tipsy',
203
+ 'rigorous', 'swirling', 'matey', 'fated', 'fetal', 'famously', 'bene', 'sicker',
204
+ 'labored', 'ironed', 'tempered', 'hypnotic', 'lavish', 'hooded', 'clement', 'looted',
205
+ 'frisky', 'cryptic', 'sculpted', 'favored', 'curled', 'pelvic', 'tasteful', 'platonic',
206
+ 'humorous', 'roasting', 'braver', 'hushed', 'dotty', 'matured', 'orphaned', 'chipper',
207
+ 'upstream', 'ish', 'autistic', 'atop', 'redeemed', 'vascular', 'watered', 'nitro',
208
+ 'tailed', 'combed', 'kindred', 'humanoid', 'cheery', 'fab', 'nursed', 'maxi',
209
+ 'hearted', 'uniquely', 'pied', 'tenderly', 'depicted', 'pesky', 'clouded', 'optic',
210
+ 'lacy', 'dotted', 'crowning', 'saucy', 'presto', 'fiddling', 'humbled', 'untold',
211
+ 'spouting', 'hippy', 'froggy', 'sparing', 'eloquent', 'rusted', 'burdened', 'beaming',
212
+ 'mangy', 'inherent', 'sparkly', 'pampered', 'angelic', 'wishful', 'armoured', 'sedate',
213
+ 'inbound', 'fro', 'sanitary', 'evilly', 'bitty', 'sociable', 'splashed', 'fruitful',
214
+ 'uttered', 'queasy', 'scorched', 'latent', 'famed', 'groping', 'olden', 'godless',
215
+ 'gummy', 'luminous', 'vee', 'spaced', 'gastric', 'pained', 'auld', 'jugular',
216
+ 'soundly', 'farthest', 'snoopy', 'backdoor', 'scorned', 'vastly', 'tinny', 'cordial',
217
+ 'chummy', 'adoptive', 'scruffy', 'coveted', 'astute', 'tranquil', 'hep', 'hormonal',
218
+ 'towering', 'conjugal', 'blended', 'crusty', 'luscious', 'cleverly', 'unspoken', 'dainty',
219
+ 'rarest', 'wisest', 'degraded', 'ingested', 'loosely', 'runny', 'exalted', 'twelfth',
220
+ 'grubby', 'nautical', 'clerical', 'clingy', 'leary', 'astral', 'renal', 'teeming',
221
+ 'afoot', 'feral', 'coherent', 'peddling', 'gushing', 'gory', 'luckier', 'faceless',
222
+ 'finely', 'nifty', 'prickly', 'gnarly', 'cissy', 'fastened', 'longtime', 'padded',
223
+ 'tanned', 'glaring', 'snotty', 'newfound', 'heartily', 'heaviest', 'pearly', 'idly',
224
+ 'angered', 'primed', 'fondly', 'engulfed', 'baggy', 'arguably', 'paternal', 'whacking',
225
+ 'nimble', 'soulful', 'intrepid', 'corned', 'angrier', 'patented', 'doable', 'battled',
226
+ 'rotted', 'docile', 'poignant', 'humanly', 'etched', 'blissful', 'innate', 'outlawed',
227
+ 'loosened', 'decently', 'booted', 'comatose', 'aided', 'swindled', 'emptying', 'cervical',
228
+ 'usable', 'shielded', 'sporty', 'idling', 'inverted', 'shifty', 'ablaze', 'doubly',
229
+ 'anterior', 'brisk', 'ardent', 'woolly', 'watchful', 'ratty', 'cuffed', 'feasible',
230
+ 'cranial', 'undying', 'glazed', 'stony', 'wedged', 'femoral', 'woozy', 'thyroid',
231
+ 'steamy', 'endowed', 'husky', 'attained', 'unused', 'soulless', 'amorous', 'peaked',
232
+ 'reigning', 'sultry', 'flowery', 'alluring', 'gooey', 'oft', 'gradual', 'verbally',
233
+ 'adhesive', 'chewy', 'willful', 'moldy', 'takeaway', 'adorned', 'notable', 'endo',
234
+ 'seared', 'faux', 'icky', 'mucking', 'suave', 'unmanned', 'disowned', 'puffed',
235
+ 'prius', 'breezy', 'likeable', 'bosnian', 'rancid', 'eleventh', 'littered', 'pasty',
236
+ 'brainy', 'looney', 'cloaked', 'lashed', 'bloomed', 'squishy', 'outdone', 'feudal',
237
+ 'arterial', 'horsey', 'bearable', 'winking', 'uncalled', 'virile', 'surly', 'singled',
238
+ 'ethereal', 'credited', 'fouled', 'hairless', 'racking', 'decked', 'rudely', 'rousing',
239
+ 'sentient', 'willed', 'feline', 'mindful', 'drowsy', 'derelict', 'pivotal', 'genital',
240
+ 'arty', 'assorted', 'kinetic', 'homely', 'perched', 'flabby', 'dolce', 'choosy',
241
+ 'sleek', 'vividly', 'nitrous', 'walled', 'hoarse', 'wetting', 'myriad', 'supple',
242
+ 'molded', 'versed', 'wordy', 'unbroken', 'awry', 'tilted', 'veiled', 'halted',
243
+ 'smarty', 'bavarian', 'empties', 'fingered', 'impacted', 'moonlit', 'starred', 'sodding',
244
+ 'cushy', 'wheeled', 'tireless', 'groomed', 'solvent', 'gutsy', 'largo', 'adept',
245
+ 'busier', 'stewed', 'unsaid', 'silvery', 'tinted', 'muddled', 'tailored', 'upriver',
246
+ 'groggy', 'looser', 'akin', 'lovesick', 'likable', 'resolute', 'avid', 'conveyed',
247
+ 'gilded', 'lumbar', 'sizable', 'aloft', 'aortic', 'filial', 'epidural', 'rectal',
248
+ 'reactive', 'jilted', 'mignon', 'uncut', 'nominal', 'bluntly', 'takedown', 'dicey',
249
+ 'softened', 'deathly', 'nee', 'westside', 'modeled', 'blooded', 'nuptial', 'fatherly',
250
+ 'grueling', 'buttoned', 'totaled', 'jinxed', 'zig', 'pally', 'hunky', 'knitted',
251
+ 'unturned', 'putrid', 'sappy', 'ravenous', 'schooled', 'haired', 'afresh', 'stumpy',
252
+ 'reasoned', 'lifelike', 'lustful', 'clawed', 'ortho', 'clenched', 'raspy', 'keyed',
253
+ 'wavy', 'stately', 'bionic', 'allo', 'elated', 'grassy', 'tutti', 'syne',
254
+ 'ungodly', 'dirtier', 'freudian', 'baal', 'abject', 'bleached', 'digested', 'oceanic',
255
+ 'thirdly', 'cleanly', 'fizzy', 'unafraid', 'prenatal', 'snooty', 'hilly', 'foiled',
256
+ 'unopened', 'hydrated', 'factual', 'nomadic', 'argyle', 'reputed', 'odious', 'scoured',
257
+ 'subtly', 'tabby', 'sweated', 'drier', 'abiding', 'ornery', 'arid', 'royally',
258
+ 'vexed', 'flavored', 'roan', 'boned', 'frayed', 'uppity', 'clammy', 'frosted',
259
+ 'thoracic', 'plowed', 'hygienic', 'inbred', 'upscale', 'foaming', 'punchy', 'fey',
260
+ 'billed', 'favoured', 'viennese', 'unnamed', 'dutiful', 'raggedy', 'plucky', 'noblest',
261
+ 'untidy', 'gentler', 'lovelier', 'godly', 'habitual', 'loopy', 'tactful', 'airy',
262
+ 'swanky', 'peppy', 'eventual', 'heady', 'radial', 'tingly', 'herding', 'idyllic',
263
+ 'meaty', 'hereto', 'affluent', 'prissy', 'treble', 'telford', 'weepy', 'censored',
264
+ 'trig', 'prolific', 'lyrical', 'leftist', 'raucous', 'marooned', 'restful', 'tamer',
265
+ 'wrinkly', 'amicable', 'skeletal', 'wetter', 'fleshy', 'remiss', 'tectonic', 'elective',
266
+ 'dirtiest', 'bushy', 'balding', 'catty', 'saintly', 'truer', 'dapper', 'wry',
267
+ 'mirrored', 'palpable', 'oiled', 'beady', 'geared', 'unending', 'cohesive', 'trifling',
268
+ 'justly', 'sizeable', 'ajar', 'writhing', 'iffy', 'unveiled', 'choral', 'scaled',
269
+ ];
270
+ //# sourceMappingURL=list-a.js.map