@graffiticode/l0175 0.2.0

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.
Files changed (41) hide show
  1. package/dist/compiler.d.ts +12 -0
  2. package/dist/compiler.d.ts.map +1 -0
  3. package/dist/compiler.js +1285 -0
  4. package/dist/compiler.js.map +1 -0
  5. package/dist/embedding.d.ts +64 -0
  6. package/dist/embedding.d.ts.map +1 -0
  7. package/dist/embedding.js +294 -0
  8. package/dist/embedding.js.map +1 -0
  9. package/dist/index.d.ts +7 -0
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +8 -0
  12. package/dist/index.js.map +1 -0
  13. package/dist/lexicon.d.ts +644 -0
  14. package/dist/lexicon.d.ts.map +1 -0
  15. package/dist/lexicon.js +101 -0
  16. package/dist/lexicon.js.map +1 -0
  17. package/dist/static/instructions.md +527 -0
  18. package/dist/static/language-info.json +85 -0
  19. package/dist/static/lexicon.json +1112 -0
  20. package/dist/static/schema.json +162 -0
  21. package/dist/static/scope.json +28 -0
  22. package/dist/static/spec.html +572 -0
  23. package/dist/static/stems.md +374 -0
  24. package/dist/static/template.gc +67 -0
  25. package/dist/static/usage-guide.md +111 -0
  26. package/package.json +33 -0
  27. package/spec/README.md +18 -0
  28. package/spec/data/examples.gc +84 -0
  29. package/spec/data/examples_with_explanations.md +124 -0
  30. package/spec/data/training_examples.json +122 -0
  31. package/spec/docs.md +102 -0
  32. package/spec/examples.md +91 -0
  33. package/spec/instructions.md +337 -0
  34. package/spec/language-info.json +78 -0
  35. package/spec/schema.json +162 -0
  36. package/spec/scope.json +28 -0
  37. package/spec/spec.md +277 -0
  38. package/spec/stems.md +374 -0
  39. package/spec/template.gc +67 -0
  40. package/spec/unparse-hints.json +3 -0
  41. package/spec/usage-guide.md +111 -0
@@ -0,0 +1,1112 @@
1
+ {
2
+ "print": {
3
+ "tk": 1,
4
+ "name": "PRINT",
5
+ "cls": "function",
6
+ "arity": 1,
7
+ "type": "<any: record>",
8
+ "description": "Outputs a value to the form."
9
+ },
10
+ "get": {
11
+ "tk": 1,
12
+ "name": "GET",
13
+ "cls": "function",
14
+ "arity": 2,
15
+ "type": "<tag|string|number record: any>",
16
+ "description": "Retrieves a value from a record by key (tag, string, or number)."
17
+ },
18
+ "set": {
19
+ "tk": 1,
20
+ "name": "SET",
21
+ "cls": "function",
22
+ "arity": 3,
23
+ "type": "<tag|string|number any record: record>",
24
+ "description": "Returns a new record with the specified key updated."
25
+ },
26
+ "nth": {
27
+ "tk": 1,
28
+ "name": "NTH",
29
+ "cls": "function",
30
+ "arity": 2,
31
+ "type": "<integer list: any>",
32
+ "description": "Returns the nth element of a list by index."
33
+ },
34
+ "sub": {
35
+ "tk": 1,
36
+ "name": "SUB",
37
+ "cls": "function",
38
+ "arity": 2,
39
+ "type": "<number number: number>",
40
+ "description": "Subtracts the second number from the first."
41
+ },
42
+ "div": {
43
+ "tk": 1,
44
+ "name": "DIV",
45
+ "cls": "function",
46
+ "arity": 2,
47
+ "type": "<number number: number>",
48
+ "description": "Divides the first number by the second."
49
+ },
50
+ "filter": {
51
+ "tk": 1,
52
+ "name": "FILTER",
53
+ "cls": "function",
54
+ "arity": 2,
55
+ "type": "<lambda list: list>",
56
+ "description": "Returns a list of elements that match a predicate."
57
+ },
58
+ "reduce": {
59
+ "tk": 1,
60
+ "name": "REDUCE",
61
+ "cls": "function",
62
+ "arity": 3,
63
+ "type": "<lambda any list: any>",
64
+ "description": "Reduces a list to a single value using a binary function and initial value."
65
+ },
66
+ "map": {
67
+ "tk": 1,
68
+ "name": "MAP",
69
+ "cls": "function",
70
+ "arity": 2,
71
+ "type": "<lambda list: list>",
72
+ "description": "Applies a function to each element in a list and returns a new list."
73
+ },
74
+ "lt": {
75
+ "tk": 1,
76
+ "name": "LT",
77
+ "cls": "function",
78
+ "arity": 2,
79
+ "type": "<number number: boolean>",
80
+ "description": "Returns true if the first value is less than the second."
81
+ },
82
+ "le": {
83
+ "tk": 1,
84
+ "name": "LE",
85
+ "cls": "function",
86
+ "arity": 2,
87
+ "type": "<number number: boolean>",
88
+ "description": "Returns true if the first value is less than or equal to the second."
89
+ },
90
+ "gt": {
91
+ "tk": 1,
92
+ "name": "GT",
93
+ "cls": "function",
94
+ "arity": 2,
95
+ "type": "<number number: boolean>",
96
+ "description": "Returns true if the first value is greater than the second."
97
+ },
98
+ "ge": {
99
+ "tk": 1,
100
+ "name": "GE",
101
+ "cls": "function",
102
+ "arity": 2,
103
+ "type": "<number number: boolean>",
104
+ "description": "Returns true if the first value is greater than or equal to the second."
105
+ },
106
+ "ne": {
107
+ "tk": 1,
108
+ "name": "NE",
109
+ "cls": "function",
110
+ "arity": 2,
111
+ "type": "<number number: boolean>",
112
+ "description": "Returns true if the two values are not equal."
113
+ },
114
+ "length": {
115
+ "tk": 1,
116
+ "name": "LENGTH",
117
+ "cls": "function",
118
+ "arity": 1,
119
+ "type": "<list|string|record: integer>",
120
+ "description": "Returns the length of a list, string, or record."
121
+ },
122
+ "concat": {
123
+ "tk": 1,
124
+ "name": "CONCAT",
125
+ "cls": "function",
126
+ "arity": 2,
127
+ "type": "<string|list string|list: string|list>",
128
+ "description": "Concatenates two strings or two lists."
129
+ },
130
+ "add": {
131
+ "tk": 1,
132
+ "name": "ADD",
133
+ "cls": "function",
134
+ "arity": 2,
135
+ "type": "<number number: number>",
136
+ "description": "Adds two numbers."
137
+ },
138
+ "mul": {
139
+ "tk": 1,
140
+ "name": "MUL",
141
+ "cls": "function",
142
+ "arity": 2,
143
+ "type": "<number number: number>",
144
+ "description": "Multiplies two numbers."
145
+ },
146
+ "pow": {
147
+ "tk": 1,
148
+ "name": "POW",
149
+ "cls": "function",
150
+ "arity": 2,
151
+ "type": "<number number: number>",
152
+ "description": "Raises the first number to the power of the second."
153
+ },
154
+ "apply": {
155
+ "tk": 1,
156
+ "name": "APPLY",
157
+ "cls": "function",
158
+ "arity": 2,
159
+ "type": "<number number: number>",
160
+ "description": "Applies a function to a list of arguments."
161
+ },
162
+ "data": {
163
+ "tk": 1,
164
+ "name": "DATA",
165
+ "cls": "function",
166
+ "arity": 1,
167
+ "type": "<record: record>",
168
+ "description": "Returns the data from the upstream task, or the argument value if no input exists."
169
+ },
170
+ "use": {
171
+ "tk": 1,
172
+ "name": "USE",
173
+ "cls": "function",
174
+ "arity": 1,
175
+ "type": "<string: record>",
176
+ "description": "Inside `data`, declares the upstream language whose output is expected (e.g. `data use \"0166\"`). The console resolves the language's schema at write time; at runtime falls back to {} when no upstream is bound."
177
+ },
178
+ "json": {
179
+ "tk": 1,
180
+ "name": "JSON",
181
+ "cls": "function",
182
+ "arity": 1,
183
+ "type": "<string: any>",
184
+ "description": "Parses a string as JSON."
185
+ },
186
+ "eq": {
187
+ "tk": 1,
188
+ "name": "EQ",
189
+ "cls": "function",
190
+ "arity": 2,
191
+ "type": "<number number: boolean>",
192
+ "description": "Returns true if the two values are equal."
193
+ },
194
+ "mod": {
195
+ "tk": 1,
196
+ "name": "MOD",
197
+ "cls": "function",
198
+ "arity": 2,
199
+ "type": "<number number: integer>",
200
+ "description": "Returns the remainder of dividing the first number by the second."
201
+ },
202
+ "min": {
203
+ "tk": 1,
204
+ "name": "MIN",
205
+ "cls": "function",
206
+ "arity": 2,
207
+ "type": "<number number: number>",
208
+ "description": "Returns the smaller of two values."
209
+ },
210
+ "max": {
211
+ "tk": 1,
212
+ "name": "MAX",
213
+ "cls": "function",
214
+ "arity": 2,
215
+ "type": "<number number: number>",
216
+ "description": "Returns the larger of two values."
217
+ },
218
+ "range": {
219
+ "tk": 1,
220
+ "name": "RANGE",
221
+ "cls": "function",
222
+ "arity": 3,
223
+ "type": "<number number number: list>",
224
+ "description": "Generates a list of numbers from start to end using a step."
225
+ },
226
+ "not": {
227
+ "tk": 1,
228
+ "name": "NOT",
229
+ "cls": "function",
230
+ "arity": 1,
231
+ "type": "<boolean: boolean>",
232
+ "description": "Returns the logical negation of a boolean value."
233
+ },
234
+ "equiv": {
235
+ "tk": 1,
236
+ "name": "EQUIV",
237
+ "cls": "function",
238
+ "arity": 2,
239
+ "type": "<any any: boolean>",
240
+ "description": "Returns true if the two values are semantically equivalent."
241
+ },
242
+ "or": {
243
+ "tk": 1,
244
+ "name": "OR",
245
+ "cls": "function",
246
+ "arity": 2,
247
+ "type": "<boolean boolean: boolean>",
248
+ "description": "Returns true if at least one of the two values is true."
249
+ },
250
+ "and": {
251
+ "tk": 1,
252
+ "name": "AND",
253
+ "cls": "function",
254
+ "arity": 2,
255
+ "type": "<boolean boolean: boolean>",
256
+ "description": "Returns true if both values are true."
257
+ },
258
+ "hd": {
259
+ "tk": 1,
260
+ "name": "HD",
261
+ "cls": "function",
262
+ "arity": 1,
263
+ "type": "<list: any>",
264
+ "description": "Returns the first element of a list."
265
+ },
266
+ "tl": {
267
+ "tk": 1,
268
+ "name": "TL",
269
+ "cls": "function",
270
+ "arity": 1,
271
+ "type": "<list: list>",
272
+ "description": "Returns the list without its first element."
273
+ },
274
+ "cons": {
275
+ "tk": 1,
276
+ "name": "CONS",
277
+ "cls": "function",
278
+ "length": 2,
279
+ "arity": 2,
280
+ "type": "<any list: list>",
281
+ "description": "Prepends an element to the front of a list."
282
+ },
283
+ "append": {
284
+ "tk": 1,
285
+ "name": "APPEND",
286
+ "cls": "function",
287
+ "arity": 2,
288
+ "type": "<any list: list>",
289
+ "description": "Appends an element to the end of a list."
290
+ },
291
+ "log": {
292
+ "tk": 1,
293
+ "name": "LOG",
294
+ "cls": "function",
295
+ "arity": 1,
296
+ "type": "<any: any>",
297
+ "description": "Logs the value to the console and returns the value (identity function)."
298
+ },
299
+ "isempty": {
300
+ "tk": 1,
301
+ "name": "ISEMPTY",
302
+ "cls": "function",
303
+ "arity": 1,
304
+ "type": "<list: boolean>",
305
+ "description": "Returns true if the list is empty, otherwise returns false."
306
+ },
307
+ "last": {
308
+ "tk": 1,
309
+ "name": "LAST",
310
+ "cls": "function",
311
+ "arity": 1,
312
+ "type": "<list: any>",
313
+ "description": "Returns the last element of a list."
314
+ },
315
+ "drop": {
316
+ "tk": 1,
317
+ "name": "DROP",
318
+ "cls": "function",
319
+ "arity": 2,
320
+ "type": "<integer list: list>",
321
+ "description": "Returns a list with the first n elements removed."
322
+ },
323
+ "take": {
324
+ "tk": 1,
325
+ "name": "TAKE",
326
+ "cls": "function",
327
+ "arity": 2,
328
+ "type": "<integer list: list>",
329
+ "description": "Returns the first n elements of a list."
330
+ },
331
+ "get-var": {
332
+ "tk": 1,
333
+ "name": "GET_VAR",
334
+ "cls": "function",
335
+ "arity": 1,
336
+ "type": "<string: any>",
337
+ "description": "Gets the value of a named variable."
338
+ },
339
+ "get-val-private": {
340
+ "tk": 1,
341
+ "name": "GET_VAL_PRIVATE",
342
+ "cls": "function",
343
+ "arity": 1,
344
+ "type": "<string: string>",
345
+ "description": "Resolves a variable by name, encrypted at parse time and decrypted at compile time."
346
+ },
347
+ "get-val-public": {
348
+ "tk": 1,
349
+ "name": "GET_VAL_PUBLIC",
350
+ "cls": "function",
351
+ "arity": 1,
352
+ "type": "<string: string>",
353
+ "description": "Resolves a variable by name as plain text."
354
+ },
355
+ "set-var": {
356
+ "tk": 1,
357
+ "name": "SET_VAR",
358
+ "cls": "function",
359
+ "arity": 2,
360
+ "type": "<string any: any>",
361
+ "description": "Sets a named variable to a value."
362
+ },
363
+ "literary": {
364
+ "tk": 22,
365
+ "name": "TAG",
366
+ "cls": "val",
367
+ "length": 0,
368
+ "arity": 0
369
+ },
370
+ "informational": {
371
+ "tk": 22,
372
+ "name": "TAG",
373
+ "cls": "val",
374
+ "length": 0,
375
+ "arity": 0
376
+ },
377
+ "ebsr": {
378
+ "tk": 22,
379
+ "name": "TAG",
380
+ "cls": "val",
381
+ "length": 0,
382
+ "arity": 0
383
+ },
384
+ "hot-text": {
385
+ "tk": 22,
386
+ "name": "TAG",
387
+ "cls": "val",
388
+ "length": 0,
389
+ "arity": 0
390
+ },
391
+ "short-text": {
392
+ "tk": 22,
393
+ "name": "TAG",
394
+ "cls": "val",
395
+ "length": 0,
396
+ "arity": 0
397
+ },
398
+ "multiple-choice": {
399
+ "tk": 22,
400
+ "name": "TAG",
401
+ "cls": "val",
402
+ "length": 0,
403
+ "arity": 0
404
+ },
405
+ "multi-select": {
406
+ "tk": 22,
407
+ "name": "TAG",
408
+ "cls": "val",
409
+ "length": 0,
410
+ "arity": 0
411
+ },
412
+ "c1-t4": {
413
+ "tk": 22,
414
+ "name": "TAG",
415
+ "cls": "val",
416
+ "length": 0,
417
+ "arity": 0
418
+ },
419
+ "c1-t11": {
420
+ "tk": 22,
421
+ "name": "TAG",
422
+ "cls": "val",
423
+ "length": 0,
424
+ "arity": 0
425
+ },
426
+ "c1-t9": {
427
+ "tk": 22,
428
+ "name": "TAG",
429
+ "cls": "val",
430
+ "length": 0,
431
+ "arity": 0
432
+ },
433
+ "c1-t8": {
434
+ "tk": 22,
435
+ "name": "TAG",
436
+ "cls": "val",
437
+ "length": 0,
438
+ "arity": 0
439
+ },
440
+ "c1-t10": {
441
+ "tk": 22,
442
+ "name": "TAG",
443
+ "cls": "val",
444
+ "length": 0,
445
+ "arity": 0
446
+ },
447
+ "character": {
448
+ "tk": 22,
449
+ "name": "TAG",
450
+ "cls": "val",
451
+ "length": 0,
452
+ "arity": 0
453
+ },
454
+ "setting": {
455
+ "tk": 22,
456
+ "name": "TAG",
457
+ "cls": "val",
458
+ "length": 0,
459
+ "arity": 0
460
+ },
461
+ "event": {
462
+ "tk": 22,
463
+ "name": "TAG",
464
+ "cls": "val",
465
+ "length": 0,
466
+ "arity": 0
467
+ },
468
+ "point-of-view": {
469
+ "tk": 22,
470
+ "name": "TAG",
471
+ "cls": "val",
472
+ "length": 0,
473
+ "arity": 0
474
+ },
475
+ "theme": {
476
+ "tk": 22,
477
+ "name": "TAG",
478
+ "cls": "val",
479
+ "length": 0,
480
+ "arity": 0
481
+ },
482
+ "topic": {
483
+ "tk": 22,
484
+ "name": "TAG",
485
+ "cls": "val",
486
+ "length": 0,
487
+ "arity": 0
488
+ },
489
+ "narrators-feelings": {
490
+ "tk": 22,
491
+ "name": "TAG",
492
+ "cls": "val",
493
+ "length": 0,
494
+ "arity": 0
495
+ },
496
+ "character-relationship": {
497
+ "tk": 22,
498
+ "name": "TAG",
499
+ "cls": "val",
500
+ "length": 0,
501
+ "arity": 0
502
+ },
503
+ "relationships-interactions": {
504
+ "tk": 22,
505
+ "name": "TAG",
506
+ "cls": "val",
507
+ "length": 0,
508
+ "arity": 0
509
+ },
510
+ "author-use-of-information": {
511
+ "tk": 22,
512
+ "name": "TAG",
513
+ "cls": "val",
514
+ "length": 0,
515
+ "arity": 0
516
+ },
517
+ "purpose": {
518
+ "tk": 22,
519
+ "name": "TAG",
520
+ "cls": "val",
521
+ "length": 0,
522
+ "arity": 0
523
+ },
524
+ "authors-opinion": {
525
+ "tk": 22,
526
+ "name": "TAG",
527
+ "cls": "val",
528
+ "length": 0,
529
+ "arity": 0
530
+ },
531
+ "central-idea": {
532
+ "tk": 22,
533
+ "name": "TAG",
534
+ "cls": "val",
535
+ "length": 0,
536
+ "arity": 0
537
+ },
538
+ "key-detail": {
539
+ "tk": 22,
540
+ "name": "TAG",
541
+ "cls": "val",
542
+ "length": 0,
543
+ "arity": 0
544
+ },
545
+ "summary": {
546
+ "tk": 22,
547
+ "name": "TAG",
548
+ "cls": "val",
549
+ "length": 0,
550
+ "arity": 0
551
+ },
552
+ "supporting-evidence": {
553
+ "tk": 22,
554
+ "name": "TAG",
555
+ "cls": "val",
556
+ "length": 0,
557
+ "arity": 0
558
+ },
559
+ "word-meaning": {
560
+ "tk": 22,
561
+ "name": "TAG",
562
+ "cls": "val",
563
+ "length": 0,
564
+ "arity": 0
565
+ },
566
+ "supported": {
567
+ "tk": 22,
568
+ "name": "TAG",
569
+ "cls": "val",
570
+ "length": 0,
571
+ "arity": 0
572
+ },
573
+ "distractor": {
574
+ "tk": 22,
575
+ "name": "TAG",
576
+ "cls": "val",
577
+ "length": 0,
578
+ "arity": 0
579
+ },
580
+ "correct": {
581
+ "tk": 22,
582
+ "name": "TAG",
583
+ "cls": "val",
584
+ "length": 0,
585
+ "arity": 0
586
+ },
587
+ "directly-supports": {
588
+ "tk": 22,
589
+ "name": "TAG",
590
+ "cls": "val",
591
+ "length": 0,
592
+ "arity": 0
593
+ },
594
+ "supports-wrong-claim": {
595
+ "tk": 22,
596
+ "name": "TAG",
597
+ "cls": "val",
598
+ "length": 0,
599
+ "arity": 0
600
+ },
601
+ "irrelevant": {
602
+ "tk": 22,
603
+ "name": "TAG",
604
+ "cls": "val",
605
+ "length": 0,
606
+ "arity": 0
607
+ },
608
+ "misreads-detail": {
609
+ "tk": 22,
610
+ "name": "TAG",
611
+ "cls": "val",
612
+ "length": 0,
613
+ "arity": 0
614
+ },
615
+ "erroneous-inference": {
616
+ "tk": 22,
617
+ "name": "TAG",
618
+ "cls": "val",
619
+ "length": 0,
620
+ "arity": 0
621
+ },
622
+ "faulty-reasoning": {
623
+ "tk": 22,
624
+ "name": "TAG",
625
+ "cls": "val",
626
+ "length": 0,
627
+ "arity": 0
628
+ },
629
+ "too-narrow": {
630
+ "tk": 22,
631
+ "name": "TAG",
632
+ "cls": "val",
633
+ "length": 0,
634
+ "arity": 0
635
+ },
636
+ "too-broad": {
637
+ "tk": 22,
638
+ "name": "TAG",
639
+ "cls": "val",
640
+ "length": 0,
641
+ "arity": 0
642
+ },
643
+ "insignificant": {
644
+ "tk": 22,
645
+ "name": "TAG",
646
+ "cls": "val",
647
+ "length": 0,
648
+ "arity": 0
649
+ },
650
+ "other-meaning": {
651
+ "tk": 22,
652
+ "name": "TAG",
653
+ "cls": "val",
654
+ "length": 0,
655
+ "arity": 0
656
+ },
657
+ "misinterprets": {
658
+ "tk": 22,
659
+ "name": "TAG",
660
+ "cls": "val",
661
+ "length": 0,
662
+ "arity": 0
663
+ },
664
+ "wrong-context": {
665
+ "tk": 22,
666
+ "name": "TAG",
667
+ "cls": "val",
668
+ "length": 0,
669
+ "arity": 0
670
+ },
671
+ "rl-1": {
672
+ "tk": 22,
673
+ "name": "TAG",
674
+ "cls": "val",
675
+ "length": 0,
676
+ "arity": 0
677
+ },
678
+ "rl-3": {
679
+ "tk": 22,
680
+ "name": "TAG",
681
+ "cls": "val",
682
+ "length": 0,
683
+ "arity": 0
684
+ },
685
+ "rl-6": {
686
+ "tk": 22,
687
+ "name": "TAG",
688
+ "cls": "val",
689
+ "length": 0,
690
+ "arity": 0
691
+ },
692
+ "rl-9": {
693
+ "tk": 22,
694
+ "name": "TAG",
695
+ "cls": "val",
696
+ "length": 0,
697
+ "arity": 0
698
+ },
699
+ "ri-1": {
700
+ "tk": 22,
701
+ "name": "TAG",
702
+ "cls": "val",
703
+ "length": 0,
704
+ "arity": 0
705
+ },
706
+ "ri-2": {
707
+ "tk": 22,
708
+ "name": "TAG",
709
+ "cls": "val",
710
+ "length": 0,
711
+ "arity": 0
712
+ },
713
+ "ri-3": {
714
+ "tk": 22,
715
+ "name": "TAG",
716
+ "cls": "val",
717
+ "length": 0,
718
+ "arity": 0
719
+ },
720
+ "ri-4": {
721
+ "tk": 22,
722
+ "name": "TAG",
723
+ "cls": "val",
724
+ "length": 0,
725
+ "arity": 0
726
+ },
727
+ "ri-6": {
728
+ "tk": 22,
729
+ "name": "TAG",
730
+ "cls": "val",
731
+ "length": 0,
732
+ "arity": 0
733
+ },
734
+ "ri-7": {
735
+ "tk": 22,
736
+ "name": "TAG",
737
+ "cls": "val",
738
+ "length": 0,
739
+ "arity": 0
740
+ },
741
+ "ri-8": {
742
+ "tk": 22,
743
+ "name": "TAG",
744
+ "cls": "val",
745
+ "length": 0,
746
+ "arity": 0
747
+ },
748
+ "ri-9": {
749
+ "tk": 22,
750
+ "name": "TAG",
751
+ "cls": "val",
752
+ "length": 0,
753
+ "arity": 0
754
+ },
755
+ "l-4": {
756
+ "tk": 22,
757
+ "name": "TAG",
758
+ "cls": "val",
759
+ "length": 0,
760
+ "arity": 0
761
+ },
762
+ "l-4a": {
763
+ "tk": 22,
764
+ "name": "TAG",
765
+ "cls": "val",
766
+ "length": 0,
767
+ "arity": 0
768
+ },
769
+ "l-4b": {
770
+ "tk": 22,
771
+ "name": "TAG",
772
+ "cls": "val",
773
+ "length": 0,
774
+ "arity": 0
775
+ },
776
+ "l-4c": {
777
+ "tk": 22,
778
+ "name": "TAG",
779
+ "cls": "val",
780
+ "length": 0,
781
+ "arity": 0
782
+ },
783
+ "l-5c": {
784
+ "tk": 22,
785
+ "name": "TAG",
786
+ "cls": "val",
787
+ "length": 0,
788
+ "arity": 0
789
+ },
790
+ "r-dok1": {
791
+ "tk": 22,
792
+ "name": "TAG",
793
+ "cls": "val",
794
+ "length": 0,
795
+ "arity": 0
796
+ },
797
+ "r-dok2": {
798
+ "tk": 22,
799
+ "name": "TAG",
800
+ "cls": "val",
801
+ "length": 0,
802
+ "arity": 0
803
+ },
804
+ "r-dok3": {
805
+ "tk": 22,
806
+ "name": "TAG",
807
+ "cls": "val",
808
+ "length": 0,
809
+ "arity": 0
810
+ },
811
+ "inference": {
812
+ "tk": 22,
813
+ "name": "TAG",
814
+ "cls": "val",
815
+ "length": 0,
816
+ "arity": 0
817
+ },
818
+ "conclusion": {
819
+ "tk": 22,
820
+ "name": "TAG",
821
+ "cls": "val",
822
+ "length": 0,
823
+ "arity": 0
824
+ },
825
+ "author-intent": {
826
+ "tk": 22,
827
+ "name": "TAG",
828
+ "cls": "val",
829
+ "length": 0,
830
+ "arity": 0
831
+ },
832
+ "id": {
833
+ "tk": 1,
834
+ "name": "ID",
835
+ "cls": "function",
836
+ "length": 2,
837
+ "arity": 2
838
+ },
839
+ "status": {
840
+ "tk": 1,
841
+ "name": "STATUS",
842
+ "cls": "function",
843
+ "length": 2,
844
+ "arity": 2
845
+ },
846
+ "dimension": {
847
+ "tk": 1,
848
+ "name": "DIMENSION",
849
+ "cls": "function",
850
+ "length": 2,
851
+ "arity": 2
852
+ },
853
+ "error-type": {
854
+ "tk": 1,
855
+ "name": "ERROR_TYPE",
856
+ "cls": "function",
857
+ "length": 2,
858
+ "arity": 2
859
+ },
860
+ "text": {
861
+ "tk": 1,
862
+ "name": "TEXT",
863
+ "cls": "function",
864
+ "length": 2,
865
+ "arity": 2
866
+ },
867
+ "rationale": {
868
+ "tk": 1,
869
+ "name": "RATIONALE",
870
+ "cls": "function",
871
+ "length": 2,
872
+ "arity": 2
873
+ },
874
+ "cites": {
875
+ "tk": 1,
876
+ "name": "CITES",
877
+ "cls": "function",
878
+ "length": 2,
879
+ "arity": 2
880
+ },
881
+ "targets": {
882
+ "tk": 1,
883
+ "name": "TARGETS",
884
+ "cls": "function",
885
+ "length": 2,
886
+ "arity": 2
887
+ },
888
+ "line": {
889
+ "tk": 1,
890
+ "name": "LINE",
891
+ "cls": "function",
892
+ "length": 2,
893
+ "arity": 2
894
+ },
895
+ "quote": {
896
+ "tk": 1,
897
+ "name": "QUOTE",
898
+ "cls": "function",
899
+ "length": 2,
900
+ "arity": 2
901
+ },
902
+ "supports": {
903
+ "tk": 1,
904
+ "name": "SUPPORTS",
905
+ "cls": "function",
906
+ "length": 2,
907
+ "arity": 2
908
+ },
909
+ "type": {
910
+ "tk": 1,
911
+ "name": "TYPE",
912
+ "cls": "function",
913
+ "length": 2,
914
+ "arity": 2
915
+ },
916
+ "subject": {
917
+ "tk": 1,
918
+ "name": "SUBJECT",
919
+ "cls": "function",
920
+ "length": 2,
921
+ "arity": 2
922
+ },
923
+ "standard": {
924
+ "tk": 1,
925
+ "name": "STANDARD",
926
+ "cls": "function",
927
+ "length": 2,
928
+ "arity": 2
929
+ },
930
+ "focus": {
931
+ "tk": 1,
932
+ "name": "FOCUS",
933
+ "cls": "function",
934
+ "length": 2,
935
+ "arity": 2
936
+ },
937
+ "passage": {
938
+ "tk": 1,
939
+ "name": "PASSAGE",
940
+ "cls": "function",
941
+ "length": 2,
942
+ "arity": 2
943
+ },
944
+ "lines": {
945
+ "tk": 1,
946
+ "name": "LINES",
947
+ "cls": "function",
948
+ "length": 2,
949
+ "arity": 2
950
+ },
951
+ "title": {
952
+ "tk": 1,
953
+ "name": "TITLE",
954
+ "cls": "function",
955
+ "length": 2,
956
+ "arity": 2
957
+ },
958
+ "target": {
959
+ "tk": 1,
960
+ "name": "TARGET",
961
+ "cls": "function",
962
+ "length": 2,
963
+ "arity": 2
964
+ },
965
+ "grade": {
966
+ "tk": 1,
967
+ "name": "GRADE",
968
+ "cls": "function",
969
+ "length": 2,
970
+ "arity": 2
971
+ },
972
+ "stem": {
973
+ "tk": 1,
974
+ "name": "STEM",
975
+ "cls": "function",
976
+ "length": 2,
977
+ "arity": 2
978
+ },
979
+ "rubric": {
980
+ "tk": 1,
981
+ "name": "RUBRIC",
982
+ "cls": "function",
983
+ "length": 2,
984
+ "arity": 2
985
+ },
986
+ "dok": {
987
+ "tk": 1,
988
+ "name": "DOK",
989
+ "cls": "function",
990
+ "length": 2,
991
+ "arity": 2
992
+ },
993
+ "plausibility": {
994
+ "tk": 1,
995
+ "name": "PLAUSIBILITY",
996
+ "cls": "function",
997
+ "length": 2,
998
+ "arity": 2
999
+ },
1000
+ "mode": {
1001
+ "tk": 1,
1002
+ "name": "MODE",
1003
+ "cls": "function",
1004
+ "length": 2,
1005
+ "arity": 2
1006
+ },
1007
+ "other": {
1008
+ "tk": 1,
1009
+ "name": "OTHER",
1010
+ "cls": "function",
1011
+ "length": 2,
1012
+ "arity": 2
1013
+ },
1014
+ "stem-b": {
1015
+ "tk": 1,
1016
+ "name": "STEM_B",
1017
+ "cls": "function",
1018
+ "length": 2,
1019
+ "arity": 2
1020
+ },
1021
+ "score": {
1022
+ "tk": 1,
1023
+ "name": "SCORE",
1024
+ "cls": "function",
1025
+ "length": 2,
1026
+ "arity": 2
1027
+ },
1028
+ "descriptor": {
1029
+ "tk": 1,
1030
+ "name": "DESCRIPTOR",
1031
+ "cls": "function",
1032
+ "length": 2,
1033
+ "arity": 2
1034
+ },
1035
+ "claims": {
1036
+ "tk": 1,
1037
+ "name": "CLAIMS",
1038
+ "cls": "function",
1039
+ "length": 2,
1040
+ "arity": 2
1041
+ },
1042
+ "evidence": {
1043
+ "tk": 1,
1044
+ "name": "EVIDENCE",
1045
+ "cls": "function",
1046
+ "length": 2,
1047
+ "arity": 2
1048
+ },
1049
+ "outcomes": {
1050
+ "tk": 1,
1051
+ "name": "OUTCOMES",
1052
+ "cls": "function",
1053
+ "length": 2,
1054
+ "arity": 2
1055
+ },
1056
+ "words": {
1057
+ "tk": 1,
1058
+ "name": "WORDS",
1059
+ "cls": "function",
1060
+ "length": 2,
1061
+ "arity": 2
1062
+ },
1063
+ "meanings": {
1064
+ "tk": 1,
1065
+ "name": "MEANINGS",
1066
+ "cls": "function",
1067
+ "length": 2,
1068
+ "arity": 2
1069
+ },
1070
+ "claim": {
1071
+ "tk": 1,
1072
+ "name": "CLAIM",
1073
+ "cls": "function",
1074
+ "length": 1,
1075
+ "arity": 1
1076
+ },
1077
+ "source": {
1078
+ "tk": 1,
1079
+ "name": "SOURCE",
1080
+ "cls": "function",
1081
+ "length": 1,
1082
+ "arity": 1
1083
+ },
1084
+ "outcome": {
1085
+ "tk": 1,
1086
+ "name": "OUTCOME",
1087
+ "cls": "function",
1088
+ "length": 1,
1089
+ "arity": 1
1090
+ },
1091
+ "band": {
1092
+ "tk": 1,
1093
+ "name": "BAND",
1094
+ "cls": "function",
1095
+ "length": 1,
1096
+ "arity": 1
1097
+ },
1098
+ "word": {
1099
+ "tk": 1,
1100
+ "name": "WORD",
1101
+ "cls": "function",
1102
+ "length": 1,
1103
+ "arity": 1
1104
+ },
1105
+ "meaning": {
1106
+ "tk": 1,
1107
+ "name": "MEANING",
1108
+ "cls": "function",
1109
+ "length": 1,
1110
+ "arity": 1
1111
+ }
1112
+ }