forked from blissymbolics/blissymbols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblissdata_chars.js
4279 lines (4274 loc) · 301 KB
/
blissdata_chars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BLISS_CHAR_DATA = {
"center": {
"ability,capability,capacity,potential": 16,
"ability_(half_sized)": 16,
"animal_(bushy_tailed)": 8,
"approach": -16,
"blindness": -16,
"branch": -24,
"camel": -48,
"cart,carriage": -32,
"cat,feline_(animal),felid": -16,
"chemical_product": 48,
"claw_(animal)": -40,
"conception,fertilization,fertilized_egg": 48,
"continuance,continuation": -32,
"cup": -16,
"departure": 16,
"development": -32,
"dinosaur": 16,
"dog,canine_(animal),canid": 16,
"dromedary": -48,
"protection_with_pointer": -24,
"emptying,voidance,evacuation": -48,
"finger": -24,
"foot": -32,
"forgetting,amnesia": -32,
"foundation_(building)": -24,
"fur,coat_(animal),hair_(animal)": -8,
"giraffe": -32,
"goat": -16,
"hedgehog_(OLD)": 32,
"help,aid,assistance,support": 16,
"hip": -32,
"hippopotamus": -48,
"hoof": -48,
"horse": -48,
"horse_neck": -48,
"horse_rump": -24,
"humidity": -16,
"hypodermic_needlepoint": -24,
"indicator_(description_after_fact)": -8,
"indicator_(description_before_fact)": 8,
"into": 32,
"into_(backward)": -32,
"jump": -16,
"jump_(backward)": 16,
"leadership,guidance": -32,
"leg_and_foot": -48,
"legs_and_feet": -32,
"mug,cup": -16,
"muzzle": -72,
"newness,novelty": -32,
"out,exterior,external,outside": -16,
"out_of,exit_(forward)": -32,
"paw": -24,
"persuasion": -32,
"pig": 32,
"point,tip,peak": -24,
"portability": -32,
"projector": -32,
"pull,pulling": -32,
"push,pushing": 64,
"return": 16,
"rhinoceros": -64,
"roller_skates": -32,
"rotation,circulation,orbit,lap,circle,round": 16,
"spitting": -48,
"steering_wheel": -16,
"tail": 40,
"that_(there)": 8,
"this": -8,
"toe": -56,
"tool,instrument": 16,
"turtle,tortoise": -32,
"understanding,comprehension": 32,
"unicorn": -56,
"vertical-(a)": 24,
"visit": 32,
"water_animal_(big_tail)": 32,
"wind": -32,
"year": -16,
},
"chars": {
"a,an,any": {"d":[{"d":"@0252","x":0,"y":112}],"h":144,"w":32},
"a_(lowercase)": {"d":[{"d":"@TEXT:a:64","x":0,"y":64}],"h":128,"w":32},
"A_(uppercase)": {"d":[{"d":"@TEXT:A:64","x":0,"y":64}],"h":128,"w":40},
"ability,capability,capacity,potential": {"d":[{"d":"@0011","x":0,"y":128}, {"d":"@0253","x":32,"y":64}],"h":128,"w":160},
"ability_(half_sized)": {"d":[{"d":"@0011","x":0,"y":128}, {"d":"@0254","x":32,"y":64}],"h":128,"w":96},
"about,concerning,in_relation_to,of,on": {"d":[{"d":"@0237","x":0,"y":128}],"h":160,"w":32},
"account": {"d":[{"d":"@0267","x":0,"y":96}],"h":192,"w":128},
"across": {"d":[{"d":"@0276","x":0,"y":64}],"h":160,"w":64},
"action,act,deed": {"d":[{"d":"@0278","x":0,"y":64}],"h":192,"w":128},
"activity,male_gender_(in_combinations)": {"d":[{"d":"@0039","x":0,"y":64}],"h":128,"w":64},
"addition,gain": {"d":[{"d":"@0166","x":0,"y":64}],"h":192,"w":128},
"adult,grownup": {"d":[{"d":"@0283","x":0,"y":128}],"h":192,"w":64},
"adversity,hardship,setback": {"d":[{"d":"@0118","x":0,"y":128},{"d":"@0284","x":128,"y":192}],"h":228,"w":288},
"after,behind":{"d":[{"d":"@0015","x":0,"y":64},{"d":"@0011","x":32,"y":128}],"h":128,"w":32},
"again": {"d":[{"d":"@0011","x":0,"y":128}, {"d":"@0011","x":32,"y":128}],"h":128,"w":32},
"against,opposed_to": {"d":[{"d":"@0027","x":0,"y":128},{"d":"@0027","x":32,"y":128}],"h":160,"w":64},
"ago,then_(past)": {"d":[{"d":"@0156","x":0,"y":64}],"h":128,"w":16},
"agreement": {"d":[{"d":"@0291","x":0,"y":128}],"h":160,"w":128},
"air,atmosphere": {"d":[{"d":"@0294","x":0,"y":64}],"h":192,"w":128},
"airplane,aeroplane,plane": {"d":[{"d":"@0295","x":0,"y":128}],"h":192,"w":128},
"alcoholic_drink,alcoholic_beverage,liquor": {"d":[{"d":"@0097","x":0,"y":128}],"h":192,"w":128},
"all,every,everything,total,whole": {"d":[{"d":"@0245","x":0,"y":64}],"h":192,"w":128},
"alphabet,letters_(lowercase)": {"d":[{"d":"@TEXT:a:64","x":0,"y":64},{"d":"@TEXT:b:64","x":48,"y":64},{"d":"@TEXT:c:64","x":96,"y":64}],"h":128,"w":128},
"alphabet,letters_(uppercase)": {"d":[{"d":"@TEXT:A:64","x":0,"y":64},{"d":"@TEXT:B:64","x":64,"y":64},{"d":"@TEXT:C:64","x":128,"y":64}],"h":128,"w":160},
"alternation": {"d":[{"d":"@0306","x":0,"y":128}],"h":160,"w":128},
"although": {"d":[{"d":"@0308","x":0,"y":192},{"d":"@0237","x":64,"y":128}],"h":224,"w":96},
"alto": {"d":[{"d":"@0311","x":0,"y":160}],"h":192,"w":112},
"and,also,plus,too": {"d":[{"d":"@0264","x":0,"y":96}],"h":160,"w":64},
"angel_(1)": {"d":[{"d":"@0323","x":0,"y":64}],"h":192,"w":128},
"angle": {"d":[{"d":"@0110","x":0,"y":64}],"h":192,"w":128},
"angle_(right),right_angle": {"d":[{"d":"@0326","x":0,"y":64}],"h":192,"w":128},
"animal,beast": {"d":[{"d":"@0138","x":0,"y":64}],"h":128,"w":128},
"animal_(bovine,ovine),bovid,bovine": {"d":[{"d":"@0037","x":0,"y":96}],"h":160,"w":128},
"animal_(bushy_tailed)": {"d":[{"d":"@0327","x":0,"y":192}],"h":256,"w":144},
"animal_(water)": {"d":[{"d":"@0302","x":0,"y":64}],"h":128,"w":128},
"ankle": {"d":[{"d":"@0329","x":0,"y":128}],"h":192,"w":112},
"answer,reply": {"d":[{"d":"@0331","x":0,"y":64}],"h":192,"w":128},
"anywhere,anyplace,someplace,somewhere": {"d":[{"d":"@0336","x":0,"y":112}],"h":144,"w":128},
"apostrophe": {"d":[{"d":"@0176","x":0,"y":184}],"h":192,"w":0},
"apple": {"d":[{"d":"@0343","x":0,"y":128}],"h":192,"w":128},
"approach" : {"d":[{"d":"@0118","x":0,"y":128}, {"d":"@0015","x":160,"y":64}],"h":192,"w":160},
"arm": {"d":[{"d":"@0348","x":0,"y":128}],"h":192,"w":64},
"armchair": {"d":[{"d":"@0349","x":0,"y":64}],"h":192,"w":64},
"around": {"d":[{"d":"@0352","x":0,"y":64}],"h":192,"w":64},
"arrow_(bent)": {"d":[{"d":"@0354","x":0,"y":128}],"h":192,"w":64},
"ascending_and_descending": {"d":[{"d":"@0358","x":0,"y":64}],"h":192,"w":128},
"asparagus": {"d":[{"d":"@0362","x":0,"y":64}],"h":192,"w":128},
"at": {"d":[{"d":"@0237","x":0,"y":128},{"d":"@0011","x":64,"y":128}],"h":160,"w":64},
"atom": {"d":[{"d":"@0366","x":0,"y":64}],"h":192,"w":128},
"attachment,appendix,annex": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0264","x":32,"y":96},{"d":"@0015","x":128,"y":64}],"h":192,"w":128},
"attic": {"d":[{"d":"@0367","x":0,"y":128},{"d":"@0027","x":128,"y":160}],"h":192,"w":160},
"aunt": {"d":[{"d":"@0369","x":0,"y":64}],"h":192,"w":256},
"avocado": {"d":[{"d":"@0372","x":0,"y":192}],"h":256,"w":112},
"away,at_a_distance,off": {"d":[{"d":"@0330","x":0,"y":96},{"d":"@0011","x":32,"y":64},{"d":"@0011","x":64,"y":64},{"d":"@0011","x":96,"y":64},{"d":"@0237","x":128,"y":128}],"h":160,"w":160},
"away,at_a_distance,off_(OLD)": {"d":[{"d":"@0373","x":0,"y":96}],"h":160,"w":160},
"b_(lowercase)": {"d":[{"d":"@TEXT:b:64","x":0,"y":64}],"h":128,"w":32},
"B_(uppercase)": {"d":[{"d":"@TEXT:B:64","x":0,"y":64}],"h":128,"w":40},
"baby,infant": {"d":[{"d":"@0157","x":0,"y":64}],"h":128,"w":128},
"baby_boy": {"d":[{"d":"@0374","x":0,"y":64}],"h":128,"w":128},
"baby_girl": {"d":[{"d":"@0376","x":0,"y":64}],"h":128,"w":128},
"back_(body)": {"d":[{"d":"@0377","x":0,"y":64}],"h":192,"w":112},
"back_and_forth,backward_and_forward,to_and_fro": {"d":[{"d":"@0266","x":0,"y":128}],"h":160,"w":128},
"backward,back": {"d":[{"d":"@0143","x":0,"y":128}],"h":160,"w":128},
"bad_conscience": {"d":[{"d":"@0379","x":0,"y":192}],"h":256,"w":128},
"badge,shield": {"d":[{"d":"@0380","x":0,"y":128}],"h":192,"w":128},
"baggage,bag,luggage,suitcase": {"d":[{"d":"@0383","x":0,"y":96}],"h":160,"w":128},
"ball": {"d":[{"d":"@0061","x":0,"y":64}],"h":128,"w":64},
"ball_field": {"d":[{"d":"@0387","x":0,"y":64}],"h":128,"w":128},
"balloon": {"d":[{"d":"@0390","x":0,"y":128}],"h":256,"w":128},
"balloon_(hot_air)": {"d":[{"d":"@0391","x":0,"y":128}],"h":256,"w":128},
"banana": {"d":[{"d":"@0392","x":0,"y":128}],"h":256,"w":64},
"bar,cake": {"d":[{"d":"@0395","x":0,"y":96}],"h":160,"w":128},
"barred_window": {"d":[{"d":"@0400","x":0,"y":64}],"h":192,"w":128},
"barrier_(contraceptive)": {"d":[{"d":"@0401","x":0,"y":64}],"h":192,"w":192},
"basement,cellar": {"d":[{"d":"@0404","x":0,"y":96}],"h":192,"w":176},
"bass": {"d":[{"d":"@0405","x":0,"y":160}],"h":192,"w":112},
"bat_(animal)": {"d":[{"d":"@0050","x":0,"y":128}],"h":192,"w":128},
"bath,washing": {"d":[{"d":"@0409","x":0,"y":80}],"h":144,"w":128},
"beach,bank,coast,shore": {"d":[{"d":"@0414","x":0,"y":64}],"h":80,"w":256},
"bean": {"d":[{"d":"@0417","x":0,"y":64}],"h":192,"w":96},
"bear's_head": {"d":[{"d":"@0211","x":0,"y":64}],"h":192,"w":160},
"beard": {"d":[{"d":"@0215","x":0,"y":64}],"h":192,"w":144},
"bed": {"d":[{"d":"@0420","x":0,"y":64}],"h":192,"w":128},
"beetle": {"d":[{"d":"@0424","x":0,"y":128}],"h":192,"w":192},
"before,in_front_of,prior_to": {"d":[{"d":"@0011","x":0,"y":128},{"d":"@0015","x":32,"y":64}],"h":128,"w":32},
"beginning,start": {"d":[{"d":"@0077","x":0,"y":64}],"h":192,"w":128},
"belief_(supernatural)": {"d":[{"d":"@0425","x":0,"y":128}],"h":256,"w":128},
"belongs_to,of_(possessive)": {"d":[{"d":"@0264","x":0,"y":32}],"h":96,"w":64},
"berry": {"d":[{"d":"@0429","x":0,"y":96}],"h":160,"w":128},
"between": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0011","x":32,"y":128},{"d":"@0015","x":64,"y":64}],"h":192,"w":64},
"bigness,largeness": {"d":[{"d":"@0064","x":0,"y":64}],"h":192,"w":64},
"biochemical_product,organic_compound": {"d":[{"d":"@0436","x":0,"y":64}],"h":192,"w":192},
"bird": {"d":[{"d":"@0160","x":0,"y":128}],"h":192,"w":128},
"bird_of_prey,raptor": {"d":[{"d":"@0440","x":0,"y":128}],"h":192,"w":128},
"birth": {"d":[{"d":"@0017","x":0,"y":128}],"h":192,"w":128},
"birth,giving_birth,parturition,delivery": {"d":[{"d":"@0441","x":0,"y":64}],"h":192,"w":192},
"blindness": {"d":[{"d":"@0447","x":0,"y":64}],"h":192,"w":128},
"bliss-name": {"d":[{"d":"@0028","x":0,"y":64}],"h":192,"w":128},
"blissymbol,Bliss-word": {"d":[{"d":"@0056","x":0,"y":64}],"h":192,"w":128},
"block,brick": {"d":[{"d":"@0448","x":0,"y":128}],"h":192,"w":96},
"board": {"d":[{"d":"@0451","x":0,"y":64}],"h":96,"w":160},
"board_(material)": {"d":[{"d":"@0452","x":0,"y":64}],"h":128,"w":128},
"boarding,embarkation_(to_sea)": {"d":[{"d":"@0453","x":0,"y":128}],"h":160,"w":256},
"boat,ship": {"d":[{"d":"@0197","x":0,"y":128}],"h":192,"w":128},
"body_with_mane": {"d":[{"d":"@0301","x":0,"y":64},{"d":"@0456","x":56,"y":192}],"h":224,"w":192},
"body_with_navel": {"d":[{"d":"@0301","x":0,"y":64},{"d":"@0011","x":96,"y":128}],"h":192,"w":192},
"body_with_pubic_hair": {"d":[{"d":"@0301","x":0,"y":64},{"d":"@0456","x":56,"y":32}],"h":192,"w":192},
"body,trunk": {"d":[{"d":"@0301","x":0,"y":64}],"h":192,"w":192},
"bone": {"d":[{"d":"@0011","x":0,"y":192},{"d":"@0330","x":0,"y":96},{"d":"@0011","x":0,"y":64}],"h":192,"w":0},
"bones_with_joint": {"d":[{"d":"@0011","x":0,"y":192},{"d":"@0330","x":0,"y":96},{"d":"@0011","x":0,"y":64},{"d":"@0181","x":32,"y":64},{"d":"@0011","x":128,"y":64}],"h":192,"w":128},
"book": {"d":[{"d":"@0055","x":0,"y":64}],"h":192,"w":128},
"boom": {"d":[{"d":"@0463","x":0,"y":64}],"h":192,"w":80},
"bottle,flask": {"d":[{"d":"@0319","x":0,"y":128}],"h":192,"w":64},
"bottleneck,bottle_opening": {"d":[{"d":"@0465","x":0,"y":160}],"h":224,"w":80},
"bottom,base": {"d":[{"d":"@0466","x":0,"y":64}],"h":192,"w":128},
"bottom,bottom_of_a_thing": {"d":[{"d":"@0467","x":0,"y":96}],"h":160,"w":64},
"bow,arc": {"d":[{"d":"@0468","x":0,"y":64}],"h":128,"w":128},
"bow,fore": {"d":[{"d":"@0469","x":0,"y":128}],"h":192,"w":176},
"bow_(knot)": {"d":[{"d":"@0470","x":0,"y":96}],"h":160,"w":128},
"bow_(musical_instrument)": {"d":[{"d":"@0471","x":0,"y":64}],"h":192,"w":176},
"bow_and_arrow": {"d":[{"d":"@0213","x":0,"y":64}],"h":192,"w":128},
"bow_and_string_(musical)": {"d":[{"d":"@0472","x":0,"y":64}],"h":192,"w":128},
"box,cube": {"d":[{"d":"@0473","x":0,"y":128}],"h":256,"w":192},
"boy,lad": {"d":[{"d":"@0223","x":0,"y":128}],"h":192,"w":64},
"brain_signal": {"d":[{"d":"@0477","x":0,"y":128}],"h":192,"w":128},
"branch": {"d":[{"d":"@0479","x":0,"y":64}],"h":192,"w":176},
"bread,loaf_of_bread,loaf": {"d":[{"d":"@0147","x":0,"y":64}],"h":128,"w":160},
"bread_surface": {"d":[{"d":"@0481","x":0,"y":112}],"h":176,"w":160},
"break,fracture,damage": {"d":[{"d":"@0484","x":0,"y":64}],"h":128,"w":128},
"breast(s)": {"d":[{"d":"@0475","x":0,"y":64}],"h":192,"w":192},
"bridge,overpass": {"d":[{"d":"@0161","x":0,"y":64}],"h":128,"w":256},
"broom": {"d":[{"d":"@0490","x":0,"y":64}],"h":192,"w":128},
"brush": {"d":[{"d":"@0457","x":0,"y":64}],"h":192,"w":128},
"bubble": {"d":[{"d":"@0494","x":0,"y":64}],"h":192,"w":112},
"buffalo,bison": {"d":[{"d":"@0051","x":0,"y":96}],"h":160,"w":128},
"building_with_attic": {"d":[{"d":"@1006","x":0,"y":128}],"h":192,"w":128},
"building_with_cellar": {"d":[{"d":"@1007","x":0,"y":128}],"h":192,"w":128},
"building_with_chimney": {"d":[{"d":"@1008","x":0,"y":64}],"h":192,"w":128},
"building_with_foundation": {"d":[{"d":"@1009","x":0,"y":64}],"h":192,"w":128},
"building_with_storey": {"d":[{"d":"@1010","x":0,"y":128}],"h":192,"w":128},
"building_with_yard_and_fence": {"d":[{"d":"@1011","x":0,"y":128}],"h":192,"w":256},
"buildings_with_courtyard": {"d":[{"d":"@1012","x":0,"y":128}],"h":192,"w":384},
"bulb_(flower)": {"d":[{"d":"@0496","x":0,"y":128}],"h":192,"w":144},
"bulb_(plant)": {"d":[{"d":"@0497","x":0,"y":0}],"h":64,"w":128},
"bulbous_plant": {"d":[{"d":"@1017","x":0,"y":128}],"h":192,"w":128},
"bump,press,pressing": {"d":[{"d":"@0493","x":0,"y":64}],"h":192,"w":128},
"bun_(food)": {"d":[{"d":"@0382","x":0,"y":64}],"h":128,"w":96},
"bus,coach": {"d":[{"d":"@0499","x":0,"y":112}],"h":176,"w":192},
"bus_stop,bus_bay_(OLD)": {"d":[{"d":"@0501","x":0,"y":112}],"h":176,"w":352},
"bush,shrub": {"d":[{"d":"@0502","x":0,"y":64}],"h":160,"w":128},
"business,economy,commerce,trade": {"d":[{"d":"@0495","x":0,"y":64}],"h":192,"w":128},
"but,except": {"d":[{"d":"@0504","x":0,"y":96}],"h":160,"w":64},
"butterfly,moth": {"d":[{"d":"@0507","x":0,"y":64}],"h":192,"w":128},
"buttocks,bottom,bum,rear,ass": {"d":[{"d":"@0322","x":0,"y":64}],"h":192,"w":112},
"buttocks_and_genitals": {"d":[{"d":"@0508","x":0,"y":64}],"h":192,"w":112},
"by,by_means_of,of": {"d":[{"d":"@0027","x":0,"y":128}],"h":160,"w":32},
"c_(lowercase)": {"d":[{"d":"@TEXT:c:64","x":0,"y":64}],"h":128,"w":32},
"C_(uppercase)": {"d":[{"d":"@TEXT:C:64","x":0,"y":64}],"h":128,"w":40},
"cabbage": {"d":[{"d":"@0487","x":0,"y":96}],"h":160,"w":128},
"calculation_(mathematical,in_mind)": {"d":[{"d":"@0510","x":0,"y":128}],"h":192,"w":128},
"camel": {"d":[{"d":"@0511","x":0,"y":128}],"h":192,"w":224},
"camera": {"d":[{"d":"@0512","x":0,"y":64}],"h":192,"w":128},
"camper,caravan,mobile_home": {"d":[{"d":"@0513","x":0,"y":192}],"h":256,"w":128},
"can,tin,jar": {"d":[{"d":"@0516","x":0,"y":80}],"h":208,"w":64},
"candy": {"d":[{"d":"@0518","x":0,"y":96}],"h":160,"w":128},
"cannon,gun": {"d":[{"d":"@0357","x":0,"y":64}],"h":192,"w":128},
"cap": {"d":[{"d":"@0521","x":0,"y":128}],"h":192,"w":192},
"car,automobile,motor_vehicle": {"d":[{"d":"@0117","x":0,"y":112}],"h":176,"w":128},
"card": {"d":[{"d":"@0005","x":0,"y":96}],"h":160,"w":128},
"carrot,vegetable_(wedge-shaped)": {"d":[{"d":"@0526","x":0,"y":64}],"h":128,"w":128},
"cart,carriage": {"d":[{"d":"@0525","x":0,"y":128}],"h":192,"w":128},
"case,casing": {"d":[{"d":"@0529","x":0,"y":64}],"h":192,"w":128},
"cassette,audiocassette,videocassette": {"d":[{"d":"@0530","x":0,"y":64}],"h":192,"w":224},
"castle,palace": {"d":[{"d":"@0227","x":0,"y":96}],"h":224,"w":256},
"cat,feline_(animal),felid": {"d":[{"d":"@0048","x":0,"y":64}],"h":128,"w":160},
"causality": {"d":[{"d":"@0533","x":0,"y":64}],"h":192,"w":128},
"cause": {"d":[{"d":"@0257","x":0,"y":64}],"h":192,"w":64},
"cavity,caries": {"d":[{"d":"@0535","x":0,"y":64}],"h":128,"w":128},
"ceiling": {"d":[{"d":"@0536","x":0,"y":64}],"h":192,"w":128},
"celeriac,celery": {"d":[{"d":"@0537","x":0,"y":64}],"h":192,"w":128},
"celery": {"d":[{"d":"@0538","x":0,"y":64}],"h":192,"w":128},
"cell": {"d":[{"d":"@0517","x":0,"y":64}],"h":192,"w":128},
"cent": {"d":[{"d":"@0539","x":0,"y":64}],"h":192,"w":64},
"cereal": {"d":[{"d":"@0541","x":0,"y":64}],"h":128,"w":256},
"chain": {"d":[{"d":"@0542","x":0,"y":96}],"h":160,"w":160},
"chair,seat": {"d":[{"d":"@0427","x":0,"y":64}],"h":192,"w":64},
"chairman": {"d":[{"d":"@0206","x":0,"y":64},{"d":"@0289","x":224,"y":128}],"h":192,"w":288},
"change,alteration,conversion": {"d":[{"d":"@0545","x":0,"y":64}],"h":192,"w":128},
"chase": {"d":[{"d":"@0118","x":0,"y":128},{"d":"@0118","x":160,"y":128}],"h":160,"w":288},
"cheek": {"d":[{"d":"@0549","x":0,"y":64}],"h":192,"w":176},
"cheese": {"d":[{"d":"@0550","x":0,"y":64}],"h":128,"w":64},
"chemical_product": {"d":[{"d":"@0300","x":0,"y":64}],"h":192,"w":160},
"cherry_(cherries)": {"d":[{"d":"@0551","x":0,"y":128}],"h":192,"w":128},
"chest": {"d":[{"d":"@0231","x":0,"y":64}],"h":192,"w":192},
"chest_of_drawers,bureau,dresser": {"d":[{"d":"@0552","x":0,"y":64}],"h":192,"w":128},
"child,kid,youngster": {"d":[{"d":"@0079","x":0,"y":128}],"h":192,"w":64},
"chimney": {"d":[{"d":"@0553","x":0,"y":96}],"h":224,"w":176},
"chin": {"d":[{"d":"@0554","x":0,"y":64}],"h":192,"w":128},
"choice,selection,election": {"d":[{"d":"@0234","x":0,"y":128}],"h":192,"w":64},
"cigarette": {"d":[{"d":"@0558","x":0,"y":128}],"h":192,"w":176},
"citizen": {"d":[{"d":"@0561","x":0,"y":128}],"h":192,"w":128},
"claw_(animal)": {"d":[{"d":"@0562","x":0,"y":64}],"h":128,"w":208},
"claw_(bird)": {"d":[{"d":"@0440","x":0,"y":128},{"d":"@0027","x":128,"y":96}],"h":192,"w":160},
"claw_(shellfish)": {"d":[{"d":"@0563","x":0,"y":128}],"h":192,"w":176},
"cloth,fabric,material,textile,net": {"d":[{"d":"@0038","x":0,"y":64}],"h":192,"w":128},
"clothing,clothes,garment": {"d":[{"d":"@0230","x":0,"y":64}],"h":192,"w":128},
"cloud": {"d":[{"d":"@0248","x":0,"y":192}],"h":208,"w":128},
"coarse_slang": {"d":[{"d":"@0568","x":0,"y":64}],"h":192,"w":128},
"cod,codfish": {"d":[{"d":"@0570","x":0,"y":64}],"h":128,"w":160},
"coffin": {"d":[{"d":"@0571","x":0,"y":64}],"h":160,"w":192},
"coldness,cold": {"d":[{"d":"@0027","x":0,"y":128},{"d":"@0165","x":32,"y":96},{"d":"@0237","x":160,"y":128}],"h":160,"w":192},
"colon": {"d":[{"d":"@0011","x":0,"y":96},{"d":"@0011","x":0,"y":64}],"h":96,"w":0},
"colour": {"d":[{"d":"@0124","x":0,"y":96}],"h":160,"w":64},
"comb": {"d":[{"d":"@0575","x":0,"y":64}],"h":128,"w":128},
"combination,connection": {"d":[{"d":"@0320","x":0,"y":96}],"h":160,"w":96},
"combine_marker": {"d":[{"d":"@0783","x":0,"y":224}],"w":48},
"comet": {"d":[{"d":"@0576","x":0,"y":64}],"h":192,"w":80},
"comma": {"d":[{"d":"@0176","x":0,"y":56}],"h":64,"w":0},
"commandments": {"d":[{"d":"@0194","x":0,"y":96}],"h":192,"w":128},
"comparative_more": {"d":[{"d":"@0200","x":0,"y":128}],"h":192,"w":64},
"compression,compressing,squeezing": {"d":[{"d":"@0579","x":0,"y":96}],"h":160,"w":320},
"conception,fertilization,fertilized_egg": {"d":[{"d":"@0356","x":0,"y":64}],"h":192,"w":224},
"condensation": {"d":[{"d":"@0011","x":0,"y":192},{"d":"@0580","x":0,"y":160},{"d":"@0011","x":0,"y":128},{"d":"@0011","x":64,"y":96},{"d":"@0581","x":96,"y":144}],"h":192,"w":224},
"cone": {"d":[{"d":"@0582","x":0,"y":128}],"h":192,"w":128},
"conscience": {"d":[{"d":"@0584","x":0,"y":192}],"h":256,"w":128},
"consideration,thoughtfulness": {"d":[{"d":"@0313","x":0,"y":64}],"h":192,"w":128},
"container,basket_(high)": {"d":[{"d":"@0293","x":0,"y":128}],"h":192,"w":128},
"container,bowl,holder,pouch,basket": {"d":[{"d":"@0293","x":0,"y":64}],"h":128,"w":128},
"container_(low)": {"d":[{"d":"@0293","x":0,"y":0}],"h":64,"w":128},
"continuance,continuation": {"d":[{"d":"@0270","x":0,"y":96}],"h":160,"w":192},
"corn": {"d":[{"d":"@0589","x":0,"y":128}],"h":192,"w":128},
"corner": {"d":[{"d":"@0403","x":0,"y":128}],"h":192,"w":176},
"corner_(room)": {"d":[{"d":"@0590","x":0,"y":64}],"h":192,"w":176},
"correct_thinking": {"d":[{"d":"@0344","x":0,"y":128}],"h":192,"w":128},
"couch,chesterfield,sofa": {"d":[{"d":"@0594","x":0,"y":128}],"h":192,"w":192},
"country,state": {"d":[{"d":"@0023","x":0,"y":64}],"h":192,"w":128},
"countryside,country,nature": {"d":[{"d":"@0003","x":0,"y":64}],"h":192,"w":128},
"couple_(female)": {"d":[{"d":"@0595","x":0,"y":128}],"h":192,"w":128},
"couple_(heterosexual)": {"d":[{"d":"@0442","x":0,"y":128}],"h":192,"w":128},
"couple_(male)": {"d":[{"d":"@0596","x":0,"y":128}],"h":192,"w":128},
"crab,shellfish_(with_claws)": {"d":[{"d":"@0072","x":0,"y":128}],"h":192,"w":128},
"creation,nature": {"d":[{"d":"@0060","x":0,"y":64}],"h":192,"w":128},
"cross,Christianity_(in_combinations)": {"d":[{"d":"@0018","x":0,"y":64}],"h":192,"w":64},
"crossed_racquets_(OLD)": {"d":[{"d":"@0416","x":0,"y":120}],"h":192,"w":192},
"crotch": {"d":[{"d":"@0603","x":0,"y":64}],"h":192,"w":192},
"crown": {"d":[{"d":"@0229","x":0,"y":128}],"h":192,"w":128},
"crystal": {"d":[{"d":"@0605","x":0,"y":128}],"h":192,"w":64},
"cup": {"d":[{"d":"@0607","x":0,"y":64}],"h":128,"w":96},
"cupboard,closet,wardrobe": {"d":[{"d":"@0608","x":0,"y":64}],"h":192,"w":128},
"currant(s)": {"d":[{"d":"@0609","x":0,"y":96}],"h":160,"w":128},
"curtain(s),drape(s)": {"d":[{"d":"@0610","x":0,"y":64}],"h":192,"w":128},
"curve,curved_line": {"d":[{"d":"@0428","x":0,"y":64}],"h":192,"w":64},
"cylinder,can": {"d":[{"d":"@0527","x":0,"y":128}],"h":192,"w":64},
"d_(lowercase)": {"d":[{"d":"@TEXT:d:64","x":0,"y":64}],"h":128,"w":32},
"D_(uppercase)": {"d":[{"d":"@TEXT:D:64","x":0,"y":64}],"h":128,"w":40},
"danger": {"d":[{"d":"@0459","x":0,"y":64}],"h":192,"w":128},
"daughter": {"d":[{"d":"@0598","x":0,"y":128}],"h":192,"w":128},
"day": {"d":[{"d":"@0016","x":0,"y":64}],"h":192,"w":128},
"deafness": {"d":[{"d":"@0614","x":0,"y":64}],"h":192,"w":128},
"death": {"d":[{"d":"@0142","x":0,"y":64}],"h":192,"w":128},
"debarkation,disembarkation_(ashore)": {"d":[{"d":"@0359","x":0,"y":128}],"h":160,"w":256},
"decision": {"d":[{"d":"@0209","x":0,"y":64}],"h":192,"w":128},
"deck": {"d":[{"d":"@0615","x":0,"y":128}],"h":192,"w":144},
"deer,cervine_(animal),cervid": {"d":[{"d":"@0178","x":0,"y":128}],"h":192,"w":128},
"degree": {"d":[{"d":"@1030","x":0,"y":160}],"h":192,"w":32},
"deletion,cancellation,destruction": {"d":[{"d":"@0221","x":0,"y":64}],"h":192,"w":128},
"departure" : {"d":[{"d":"@0015","x":0,"y":64}, {"d":"@0118","x":32,"y":128}],"h":192,"w":160},
"depth": {"d":[{"d":"@0616","x":0,"y":64}],"h":192,"w":64},
"detachment,separation,breakup": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0181","x":32,"y":128},{"d":"@0015","x":128,"y":64}],"h":192,"w":128},
"development": {"d":[{"d":"@0622","x":0,"y":64}],"h":192,"w":192},
"devil_(1)": {"d":[{"d":"@0623","x":0,"y":96}],"h":224,"w":64},
"Dharma_wheel": {"d":[{"d":"@0066","x":0,"y":64}],"h":192,"w":128},
"diamond_(character)": {"d":[{"d":"@0625","x":0,"y":128}],"h":192,"w":64},
"different,other,difference": {"d":[{"d":"@0585","x":0,"y":64}],"h":192,"w":128},
"difficulty": {"d":[{"d":"@0118","x":0,"y":128},{"d":"@0626","x":128,"y":160},{"d":"@0626","x":128,"y":64}],"h":192,"w":128},
"digging,excavation": {"d":[{"d":"@0627","x":0,"y":96}],"h":192,"w":128},
"digital_device": {"d":[{"d":"@0134","x":0,"y":64}],"h":192,"w":128},
"digital_space_(limited)": {"d":[{"d":"@0629","x":0,"y":64}],"h":192,"w":128},
"digital_world": {"d":[{"d":"@0630","x":0,"y":160}],"h":192,"w":128},
"digits_(computer)": {"d":[{"d":"@0335","x":0,"y":128}],"h":160,"w":32},
"dinosaur": {"d":[{"d":"@0063","x":0,"y":128}],"h":192,"w":224},
"disc,disk": {"d":[{"d":"@0225","x":0,"y":64}],"h":128,"w":96},
"discomfort": {"d":[{"d":"@0631","x":0,"y":64}],"h":192,"w":128},
"dish,plate,platter": {"d":[{"d":"@0632","x":0,"y":64}],"h":128,"w":256},
"dispersion,dissemination,scattering,spread,spreading": {"d":[{"d":"@0289","x":0,"y":128},{"d":"@0339","x":64,"y":160},{"d":"@0287","x":128,"y":128}],"h":224,"w":192},
"disturbance,unrest": {"d":[{"d":"@0635","x":0,"y":64}],"h":192,"w":128},
"division": {"d":[{"d":"@0636","x":0,"y":160}],"h":160,"w":128},
"dog,canine_(animal),canid": {"d":[{"d":"@0399","x":0,"y":128}],"h":192,"w":160},
"dollar": {"d":[{"d":"@0638","x":0,"y":32}],"h":224,"w":64},
"dolphin,porpoise,water_mammal_(with_tail)": {"d":[{"d":"@0639","x":0,"y":64}],"h":128,"w":160},
"door": {"d":[{"d":"@0641","x":0,"y":64}],"h":192,"w":128},
"dot": {"d":[{"d":"@0011","x":0,"y":128}],"h":128,"w":0},
"doubt,uncertainty": {"d":[{"d":"@0290","x":0,"y":128}],"h":192,"w":128},
"down,downward": {"d":[{"d":"@0172","x":0,"y":64}],"h":192,"w":64},
"downward_and_backward": {"d":[{"d":"@0644","x":0,"y":64}],"h":192,"w":128},
"downward_and_forward": {"d":[{"d":"@0643","x":0,"y":64}],"h":192,"w":128},
"drawer": {"d":[{"d":"@0645","x":0,"y":64}],"h":192,"w":176},
"dreidel_top": {"d":[{"d":"@0646","x":0,"y":96}],"h":160,"w":64},
"drink,beverage": {"d":[{"d":"@0506","x":0,"y":96}],"h":160,"w":128},
"dromedary": {"d":[{"d":"@0647","x":0,"y":128}],"h":192,"w":224},
"drum_(1)": {"d":[{"d":"@0648","x":0,"y":64}],"h":128,"w":128},
"dryness,drought": {"d":[{"d":"@0346","x":0,"y":64}],"h":192,"w":128},
"duck,bird_(water),waterbird,waterfowl,seabird,seafowl": {"d":[{"d":"@0650","x":0,"y":128}],"h":192,"w":128},
"during,while": {"d":[{"d":"@0014","x":0,"y":64},{"d":"@0011","x":64,"y":224}],"h":224,"w":128},
"e_(lowercase)": {"d":[{"d":"@TEXT:e:64","x":0,"y":64}],"h":128,"w":32},
"E_(uppercase)": {"d":[{"d":"@TEXT:E:64","x":0,"y":64}],"h":128,"w":32},
"ear": {"d":[{"d":"@0069","x":0,"y":96}],"h":192,"w":64},
"ear_mold": {"d":[{"d":"@0654","x":0,"y":96}],"h":192,"w":96},
"earmuffs_(general)": {"d":[{"d":"@0655","x":0,"y":128}],"h":192,"w":192},
"earth,globe,world": {"d":[{"d":"@0026","x":0,"y":64}],"h":192,"w":128},
"earth,ground,land": {"d":[{"d":"@0174","x":0,"y":64}],"h":64,"w":128},
"Earth_axis,axis": {"d":[{"d":"@0104","x":0,"y":64}],"h":192,"w":128},
"ease,easiness,simplicity": {"d":[{"d":"@0656","x":0,"y":160}],"h":192,"w":128},
"east": {"d":[{"d":"@0041","x":0,"y":64}],"h":192,"w":128},
"edge": {"d":[{"d":"@0659","x":0,"y":112}],"h":176,"w":160},
"effect,result": {"d":[{"d":"@0271","x":0,"y":64}],"h":192,"w":64},
"egg,ovum_(2)": {"d":[{"d":"@0439","x":0,"y":64}],"h":192,"w":128},
"eight_(digit),8": {"d":[{"d":"@0042","x":0,"y":96}],"h":128,"w":32},
"eight_(index_number)": {"d":[{"d":"@0660","x":0,"y":80}],"h":96,"w":16},
"either": {"d":[{"d":"@0661","x":0,"y":128}],"h":160,"w":32},
"elbow": {"d":[{"d":"@0663","x":0,"y":128}],"h":192,"w":112},
"electric_field": {"d":[{"d":"@0664","x":0,"y":128}],"h":192,"w":160},
"electricity": {"d":[{"d":"@0150","x":0,"y":128}],"h":192,"w":64},
"electromagnetic_radiation": {"d":[{"d":"@0669","x":0,"y":96}],"h":160,"w":256},
"embryo": {"d":[{"d":"@0671","x":0,"y":64}],"h":192,"w":192},
"emptying,voidance,evacuation": {"d":[{"d":"@0672","x":0,"y":96}],"h":160,"w":224},
"enclosure": {"d":[{"d":"@0184","x":0,"y":64}],"h":192,"w":128},
"end,arrival,stop": {"d":[{"d":"@0151","x":0,"y":64}],"h":192,"w":128},
"energy": {"d":[{"d":"@0437","x":0,"y":64}],"h":192,"w":256},
"enter_(computer)": {"d":[{"d":"@0674","x":0,"y":128}],"h":192,"w":128},
"environment": {"d":[{"d":"@0675","x":0,"y":176}],"h":192,"w":128},
"environs": {"d":[{"d":"@0181","x":0,"y":64}],"h":64,"w":64},
"equator": {"d":[{"d":"@0026","x":0,"y":64},{"d":"@0027","x":128,"y":176}],"h":208,"w":160},
"erection,erect_penis": {"d":[{"d":"@0321","x":0,"y":64}],"h":192,"w":64},
"etrog": {"d":[{"d":"@0677","x":0,"y":96}],"h":224,"w":64},
"Euro": {"d":[{"d":"@0111","x":0,"y":128}],"h":192,"w":96},
"evaluation,value": {"d":[{"d":"@0253","x":0,"y":64}],"h":192,"w":128},
"evaluation,value_(half-sized)": {"d":[{"d":"@0254","x":0,"y":64}],"h":128,"w":64},
"evening": {"d":[{"d":"@0090","x":0,"y":64}],"h":128,"w":128},
"event,happening,occasion": {"d":[{"d":"@0084","x":0,"y":96}],"h":160,"w":64},
"evergreen_tree,spruce,fir,fir_tree": {"d":[{"d":"@0216","x":0,"y":64}],"h":192,"w":128},
"exchange,substitution": {"d":[{"d":"@0136","x":0,"y":64}],"h":192,"w":128},
"exclamation_mark": {"d":[{"d":"@0680","x":0,"y":96},{"d":"@0011","x":0,"y":64}],"h":192,"w":0},
"existence,being_(1)": {"d":[{"d":"@0681","x":0,"y":64}],"h":192,"w":128},
"existence,being_(2)": {"d":[{"d":"@0262","x":0,"y":96}],"h":160,"w":64},
"expectation,anticipation": {"d":[{"d":"@0265","x":0,"y":64}],"h":192,"w":128},
"explosion,detonation,blowup": {"d":[{"d":"@0460","x":0,"y":160}],"h":224,"w":192},
"extinction,extinguishing_(fire)": {"d":[{"d":"@0683","x":0,"y":64}],"h":192,"w":128},
"eye": {"d":[{"d":"@0099","x":0,"y":96}],"h":160,"w":64},
"eye_with_eyebrow": {"d":[{"d":"@1018","x":0,"y":96}],"h":160,"w":64},
"eyebrow": {"d":[{"d":"@0686","x":0,"y":160}],"h":224,"w":112},
"eyelid(s)": {"d":[{"d":"@0684","x":0,"y":144}],"h":208,"w":64},
"eyelid_(lower)": {"d":[{"d":"@0687","x":0,"y":96}],"h":160,"w":64},
"eyelid_(upper)": {"d":[{"d":"@0688","x":0,"y":144}],"h":208,"w":64},
"f_(lowercase)": {"d":[{"d":"@TEXT:f:64","x":0,"y":64}],"h":128,"w":24},
"F_(uppercase)": {"d":[{"d":"@TEXT:F:64","x":0,"y":64}],"h":128,"w":32},
"face": {"d":[{"d":"@0450","x":0,"y":64}],"h":192,"w":128},
"face_with_beard": {"d":[{"d":"@1019","x":0,"y":32},{"d":"@0456","x":24,"y":32}],"h":192,"w":128},
"face_with_pimple": {"d":[{"d":"@1020","x":0,"y":64},{"d":"@0011","x":112,"y":128}],"h":192,"w":128},
"fact": {"d":[{"d":"@0679","x":0,"y":128}],"h":192,"w":128},
"failure": {"d":[{"d":"@0689","x":0,"y":96}],"h":224,"w":192},
"family": {"d":[{"d":"@0113","x":0,"y":128}],"h":192,"w":192},
"family,couple": {"d":[{"d":"@0691","x":0,"y":128}],"h":192,"w":192},
"family,couple_(female)": {"d":[{"d":"@0692","x":0,"y":128}],"h":192,"w":192},
"family,couple_(male)": {"d":[{"d":"@0693","x":0,"y":128}],"h":192,"w":192},
"family_(cohabiting)": {"d":[{"d":"@0694","x":0,"y":64}],"h":192,"w":192},
"family_(female)": {"d":[{"d":"@0695","x":0,"y":128}],"h":192,"w":192},
"family_(male)": {"d":[{"d":"@0696","x":0,"y":128}],"h":192,"w":192},
"family_(traditional)": {"d":[{"d":"@0697","x":0,"y":128}],"h":192,"w":320},
"fan": {"d":[{"d":"@0698","x":0,"y":128}],"h":192,"w":128},
"fantasy,phantasy,imagination,illusion": {"d":[{"d":"@0592","x":0,"y":192}],"h":256,"w":128},
"farm": {"d":[{"d":"@0699","x":0,"y":128}],"h":192,"w":128},
"farness,remoteness,farawayness": {"d":[{"d":"@0330","x":0,"y":96},{"d":"@0011","x":32,"y":64},{"d":"@0011","x":64,"y":64},{"d":"@0011","x":96,"y":64},{"d":"@0330","x":128,"y":96}],"h":160,"w":128},
"farness,remoteness,farawayness_(OLD)": {"d":[{"d":"@0435","x":0,"y":96}],"h":160,"w":128},
"father,dad,daddy,papa,pa,pop": {"d":[{"d":"@0114","x":0,"y":128}],"h":192,"w":128},
"fatness,thickness": {"d":[{"d":"@0523","x":0,"y":64},{"d":"@0011","x":64,"y":64},{"d":"@0011","x":96,"y":64},{"d":"@0011","x":128,"y":64},{"d":"@0524","x":160,"y":64}],"h":192,"w":192},
"fatness,thickness_(OLD)": {"d":[{"d":"@0701","x":0,"y":64}],"h":192,"w":192},
"feeling,emotion,sensation": {"d":[{"d":"@0058","x":0,"y":96}],"h":192,"w":128},
"female_(gender)": {"d":[{"d":"@0565","x":0,"y":64}],"h":128,"w":64},
"fence,wall": {"d":[{"d":"@0642","x":0,"y":128}],"h":192,"w":304},
"fetus": {"d":[{"d":"@0509","x":0,"y":64}],"h":192,"w":192},
"fiber,fibre,fibril,filament,strand": {"d":[{"d":"@0702","x":0,"y":128}],"h":192,"w":128},
"field": {"d":[{"d":"@0205","x":0,"y":64}],"h":128,"w":128},
"fight,combat": {"d":[{"d":"@0474","x":0,"y":64}],"h":192,"w":128},
"file,data_file_(digital)": {"d":[{"d":"@0068","x":0,"y":96}],"h":160,"w":128},
"filling,fill,fullness": {"d":[{"d":"@0673","x":0,"y":64}],"h":128,"w":128},
"finger": {"d":[{"d":"@0226","x":0,"y":96}],"h":224,"w":112},
"fire": {"d":[{"d":"@0158","x":0,"y":128}],"h":192,"w":32},
"fireplace": {"d":[{"d":"@0515","x":0,"y":64}],"h":192,"w":128},
"fish_(animal)": {"d":[{"d":"@0204","x":0,"y":64}],"h":128,"w":128},
"five_(digit),5": {"d":[{"d":"@0095","x":0,"y":96}],"h":128,"w":32},
"five_(index_number)": {"d":[{"d":"@0131","x":0,"y":80}],"h":96,"w":16},
"fjord": {"d":[{"d":"@0199","x":0,"y":64}],"h":192,"w":256},
"flag": {"d":[{"d":"@0706","x":0,"y":64}],"h":192,"w":64},
"floating_container": {"d":[{"d":"@0708","x":0,"y":64}],"h":128,"w":128},
"floor": {"d":[{"d":"@0304","x":0,"y":64}],"h":192,"w":128},
"floor,storey,level,etage": {"d":[{"d":"@0337","x":0,"y":128}],"h":192,"w":176},
"floor_covering,linoleum": {"d":[{"d":"@0709","x":0,"y":64}],"h":192,"w":128},
"flower": {"d":[{"d":"@0108","x":0,"y":128}],"h":192,"w":64},
"flower,bloom,blossom": {"d":[{"d":"@0593","x":0,"y":128}],"h":192,"w":112},
"flower_(from_bulb)": {"d":[{"d":"@0710","x":0,"y":128}],"h":192,"w":144},
"flute,recorder": {"d":[{"d":"@0406","x":0,"y":64}],"h":192,"w":64},
"flute,transverse_flute": {"d":[{"d":"@0712","x":0,"y":64}],"h":128,"w":160},
"fly,flying_insect": {"d":[{"d":"@0422","x":0,"y":128}],"h":192,"w":192},
"fog": {"d":[{"d":"@0670","x":0,"y":176}],"h":192,"w":128},
"fold,folding,pleating": {"d":[{"d":"@0714","x":0,"y":64}],"h":192,"w":128},
"folder": {"d":[{"d":"@0715","x":0,"y":96}],"h":160,"w":128},
"food": {"d":[{"d":"@0210","x":0,"y":96}],"h":160,"w":64},
"foot": {"d":[{"d":"@0716","x":0,"y":64}],"h":192,"w":192},
"for_(in_exchange_for)": {"d":[{"d":"@0547","x":0,"y":160}],"h":192,"w":64},
"for_(the_purpose_of),in_order_to": {"d":[{"d":"@0237","x":0,"y":128},{"d":"@0237","x":32,"y":128}],"h":160,"w":64},
"forehead": {"d":[{"d":"@0434","x":0,"y":80}],"h":208,"w":128},
"forgetting,amnesia": {"d":[{"d":"@0717","x":0,"y":128}],"h":192,"w":192},
"fork": {"d":[{"d":"@0718","x":0,"y":96}],"h":192,"w":128},
"forward": {"d":[{"d":"@0118","x":0,"y":128}],"h":160,"w":128},
"foundation,base,fundament": {"d":[{"d":"@0388","x":0,"y":64}],"h":128,"w":128},
"foundation_(building)": {"d":[{"d":"@0719","x":0,"y":64}],"h":192,"w":176},
"four_(digit),4": {"d":[{"d":"@0033","x":0,"y":64}],"h":128,"w":32},
"four_(index_number)": {"d":[{"d":"@0238","x":0,"y":64}],"h":96,"w":16},
"freedom,liberty": {"d":[{"d":"@0279","x":0,"y":64}],"h":192,"w":128},
"freezing,hardening,solidifying": {"d":[{"d":"@0720","x":0,"y":96}],"h":160,"w":160},
"freighter": {"d":[{"d":"@0397","x":0,"y":128}],"h":192,"w":128},
"from": {"d":[{"d":"@0330","x":0,"y":96},{"d":"@0237","x":32,"y":128}],"h":160,"w":64},
"from_sky": {"d":[{"d":"@0721","x":0,"y":64}],"h":192,"w":128},
"front,front_of_a_thing": {"d":[{"d":"@0722","x":0,"y":96}],"h":160,"w":112},
"fruit": {"d":[{"d":"@0482","x":0,"y":128}],"h":192,"w":96},
"fruit_(pointed)": {"d":[{"d":"@0723","x":0,"y":128}],"h":192,"w":96},
"fuel": {"d":[{"d":"@0438","x":0,"y":64}],"h":192,"w":256},
"funnel": {"d":[{"d":"@0725","x":0,"y":128}],"h":192,"w":144},
"fur,coat_(animal),hair_(animal)": {"d":[{"d":"@0726","x":0,"y":128}],"h":192,"w":144},
"furred_animal": {"d":[{"d":"@0138","x":0,"y":64},{"d":"@0456","x":24,"y":128}],"h":160,"w":128},
"future": {"d":[{"d":"@0086","x":0,"y":64}],"h":192,"w":32},
"future_(uncertain)": {"d":[{"d":"@0086","x":0,"y":64},{"d":"@0087","x":32,"y":128}],"h":192,"w":64},
"g_(lowercase)": {"d":[{"d":"@TEXT:g:64","x":0,"y":64}],"h":128,"w":32},
"G_(uppercase)": {"d":[{"d":"@TEXT:G:64","x":0,"y":64}],"h":128,"w":40},
"galaxy": {"d":[{"d":"@0246","x":0,"y":64}],"h":192,"w":128},
"garage": {"d":[{"d":"@0727","x":0,"y":128}],"h":192,"w":128},
"garbage_can,rubbish_bin,trash_can": {"d":[{"d":"@0360","x":0,"y":64}],"h":192,"w":128},
"garden": {"d":[{"d":"@0169","x":0,"y":128}],"h":192,"w":128},
"gas": {"d":[{"d":"@0098","x":0,"y":64}],"h":192,"w":64},
"gathering,assembly,meeting,conference": {"d":[{"d":"@0287","x":0,"y":128},{"d":"@0288","x":64,"y":160},{"d":"@0289","x":128,"y":128}],"h":224,"w":192},
"gender,sex": {"d":[{"d":"@0728","x":0,"y":64}],"h":128,"w":128},
"generalization": {"d":[{"d":"@0476","x":0,"y":128}],"h":192,"w":64},
"genitals,sex_organs": {"d":[{"d":"@0446","x":0,"y":64}],"h":192,"w":64},
"giraffe": {"d":[{"d":"@0730","x":0,"y":128}],"h":256,"w":192},
"girl": {"d":[{"d":"@0029","x":0,"y":128}],"h":192,"w":64},
"giving,gift": {"d":[{"d":"@0312","x":0,"y":64}],"h":192,"w":128},
"glass,drinking_glass": {"d":[{"d":"@0634","x":0,"y":64}],"h":192,"w":64},
"glasses,eyeglasses": {"d":[{"d":"@0222","x":0,"y":96}],"h":160,"w":192},
"goal": {"d":[{"d":"@0732","x":0,"y":64}],"h":192,"w":128},
"goat": {"d":[{"d":"@0733","x":0,"y":96}],"h":160,"w":160},
"goblet,wineglass": {"d":[{"d":"@0544","x":0,"y":128}],"h":192,"w":128},
"God": {"d":[{"d":"@0019","x":0,"y":128}],"h":256,"w":128},
"good_conscience": {"d":[{"d":"@0734","x":0,"y":192}],"h":256,"w":128},
"goods,contents": {"d":[{"d":"@0682","x":0,"y":96}],"h":160,"w":128},
"grace,grace_of_God": {"d":[{"d":"@0735","x":0,"y":128}],"h":256,"w":224},
"grain,cereal": {"d":[{"d":"@0243","x":0,"y":64},{"d":"@0243","x":64,"y":64}],"h":128,"w":128},
"grandfather,granddad,grandpa": {"d":[{"d":"@0737","x":0,"y":64}],"h":192,"w":256},
"grandfather_(maternal)": {"d":[{"d":"@0738","x":0,"y":128}],"h":192,"w":256},
"grandfather_(paternal)": {"d":[{"d":"@0739","x":0,"y":128}],"h":192,"w":256},
"grandmother,grandma,granny": {"d":[{"d":"@0740","x":0,"y":64}],"h":192,"w":256},
"grandmother_(maternal)": {"d":[{"d":"@0741","x":0,"y":128}],"h":192,"w":256},
"grandmother_(paternal)": {"d":[{"d":"@0742","x":0,"y":128}],"h":192,"w":256},
"grandparent": {"d":[{"d":"@0736","x":0,"y":64}],"h":192,"w":256},
"grape(s)": {"d":[{"d":"@0119","x":0,"y":128}],"h":192,"w":128},
"grass": {"d":[{"d":"@0243","x":0,"y":64}],"h":128,"w":64},
"grave": {"d":[{"d":"@0402","x":0,"y":32}],"h":64,"w":128},
"gravity,gravitation": {"d":[{"d":"@0744","x":0,"y":96}],"h":160,"w":64},
"greater_than_(relation)": {"d":[{"d":"@0277","x":0,"y":128}],"h":192,"w":64},
"grid,matrix": {"d":[{"d":"@0548","x":0,"y":64}],"h":192,"w":128},
"group_of,much_of,many_of,quantity_of": {"d":[{"d":"@0021","x":0,"y":64}],"h":128,"w":64},
"gun,firearm": {"d":[{"d":"@0432","x":0,"y":96}],"h":128,"w":192},
"h_(lowercase)": {"d":[{"d":"@TEXT:h:64","x":0,"y":64}],"h":128,"w":32},
"H_(uppercase)": {"d":[{"d":"@TEXT:H:64","x":0,"y":64}],"h":128,"w":32},
"hail": {"d":[{"d":"@0747","x":0,"y":64}],"h":192,"w":128},
"hair": {"d":[{"d":"@0456","x":0,"y":128}],"h":160,"w":72},
"hair_(head)": {"d":[{"d":"@0396","x":0,"y":128}],"h":256,"w":144},
"half,one-half": {"d":[{"d":"@0010","x":0,"y":128},{"d":"@0750","x":32,"y":64},{"d":"@0001","x":96,"y":80}],"h":192,"w":128},
"hammer,gavel,mallet": {"d":[{"d":"@0191","x":0,"y":96}],"h":192,"w":128},
"hand": {"d":[{"d":"@0103","x":0,"y":64}],"h":192,"w":64},
"handbag,shopping_bag,carrier_bag": {"d":[{"d":"@0753","x":0,"y":96}],"h":160,"w":128},
"head": {"d":[{"d":"@0433","x":0,"y":64}],"h":192,"w":128},
"head_and_neck": {"d":[{"d":"@1021","x":0,"y":64}],"h":192,"w":128},
"head_with_hair": {"d":[{"d":"@1005","x":0,"y":128}],"h":224,"w":128},
"health": {"d":[{"d":"@0597","x":0,"y":64}],"h":192,"w":64},
"heat": {"d":[{"d":"@0572","x":0,"y":128}],"h":192,"w":128},
"hedgehog": {"d":[{"d":"@0757","x":0,"y":96}],"h":160,"w":128},
"hedgehog_(OLD)": {"d":[{"d":"@0758","x":0,"y":128}],"h":192,"w":192},
"heel": {"d":[{"d":"@0759","x":0,"y":64}],"h":192,"w":240},
"height,tallness": {"d":[{"d":"@0310","x":0,"y":192}],"h":192,"w":64},
"helicopter": {"d":[{"d":"@0760","x":0,"y":128}],"h":192,"w":128},
"help,aid,assistance,support": {"d":[{"d":"@0082","x":0,"y":64}],"h":192,"w":96},
"here": {"d":[{"d":"@0237","x":0,"y":128},{"d":"@0011","x":64,"y":128},{"d":"@0011","x":96,"y":128}],"h":160,"w":96},
"hidden_thing": {"d":[{"d":"@0705","x":0,"y":32}],"h":96,"w":128},
"hip": {"d":[{"d":"@0762","x":0,"y":96}],"h":224,"w":192},
"hippopotamus": {"d":[{"d":"@0763","x":0,"y":128}],"h":192,"w":224},
"holding": {"d":[{"d":"@0577","x":0,"y":64}],"h":128,"w":64},
"hole": {"d":[{"d":"@0534","x":0,"y":0}],"h":64,"w":256},
"holiness": {"d":[{"d":"@0155","x":0,"y":128},{"d":"@0156","x":48,"y":128}],"h":192,"w":64},
"hoof": {"d":[{"d":"@0700","x":0,"y":128}],"h":192,"w":224},
"hook,hanger": {"d":[{"d":"@0602","x":0,"y":96}],"h":128,"w":192},
"horizon": {"d":[{"d":"@0765","x":0,"y":64}],"h":128,"w":176},
"horizontal-(a)": {"d":[{"d":"@0766","x":0,"y":64}],"h":192,"w":128},
"horn(s)": {"d":[{"d":"@0767","x":0,"y":128}],"h":192,"w":176},
"horn(s),antler(s)": {"d":[{"d":"@0239","x":0,"y":160}],"h":192,"w":64},
"horse": {"d":[{"d":"@0175","x":0,"y":128}],"h":192,"w":224},
"horse_neck": {"d":[{"d":"@0768","x":0,"y":144}],"h":208,"w":224},
"horse_rump": {"d":[{"d":"@0769","x":0,"y":128}],"h":192,"w":272},
"house,building,dwelling,residence": {"d":[{"d":"@0154","x":0,"y":128}],"h":192,"w":128},
"hull,body": {"d":[{"d":"@0531","x":0,"y":128}],"h":192,"w":128},
"humidity": {"d":[{"d":"@0775","x":0,"y":64}],"h":192,"w":160},
"husband": {"d":[{"d":"@0491","x":0,"y":128}],"h":192,"w":160},
"hypodermic_needlepoint": {"d":[{"d":"@0776","x":0,"y":96}],"h":160,"w":304},
"hypothesis,theory": {"d":[{"d":"@0085","x":0,"y":64}],"h":192,"w":128},
"i_(lowercase)": {"d":[{"d":"@TEXT:i:64","x":0,"y":64}],"h":128,"w":24},
"I_(uppercase)": {"d":[{"d":"@TEXT:I:64","x":0,"y":64}],"h":128,"w":24},
"ice": {"d":[{"d":"@0165","x":0,"y":96}],"h":160,"w":128},
"ice_cream,sherbet,sorbet": {"d":[{"d":"@0777","x":0,"y":96},{"d":"@0027","x":64,"y":160}],"h":192,"w":96},
"ice_cream_(cone)": {"d":[{"d":"@0777","x":0,"y":96}],"h":160,"w":64},
"ice_cream_(lollipop)": {"d":[{"d":"@0778","x":0,"y":128}],"h":192,"w":64},
"ice_skates": {"d":[{"d":"@0703","x":0,"y":64}],"h":192,"w":192},
"idea,thought": {"d":[{"d":"@0503","x":0,"y":64}],"h":192,"w":128},
"illness,disease,sickness_(sick_person)": {"d":[{"d":"@0093","x":0,"y":64}],"h":128,"w":128},
"importance,significance": {"d":[{"d":"@0059","x":0,"y":128}],"h":192,"w":128},
"imprint,depression": {"d":[{"d":"@0193","x":0,"y":64}],"h":128,"w":128},
"in,inside,interior,internal": {"d":[{"d":"@0255","x":0,"y":64}],"h":192,"w":128},
"incorrect_thinking": {"d":[{"d":"@0624","x":0,"y":128}],"h":192,"w":128},
"indicator_(action)": {"d":[{"d":"@0163","x":0,"y":224}],"w":32},
"indicator_(active)": {"d":[{"d":"@0782","x":0,"y":240}],"w":32},
"indicator_(adverb)": {"d":[{"d":"@0173","x":0,"y":224},{"d":"@0163","x":32,"y":224}],"w":64},
"indicator_(conditional)": {"d":[{"d":"@0784","x":0,"y":240},{"d":"@0011","x":8,"y":224}],"w":16},
"indicator_(definite_form)": {"d":[{"d":"@0786","x":0,"y":224}],"w":32},
"indicator_(description)": {"d":[{"d":"@0173","x":0,"y":224}],"w":32},
"indicator_(description_after_fact)": {"d":[{"d":"@0173","x":0,"y":224},{"d":"@0011","x":48,"y":256}],"w":48},
"indicator_(description_before_fact)": {"d":[{"d":"@0011","x":0,"y":256},{"d":"@0173","x":16,"y":224}],"w":48},
"indicator_(future_action)": {"d":[{"d":"@0789","x":0,"y":224}],"w":8},
"indicator_(future_conditional)": {"d":[{"d":"@0784","x":0,"y":240},{"d":"@0011","x":8,"y":224},{"d":"@0789","x":24,"y":224}],"w":32},
"indicator_(future_passive)": {"d":[{"d":"@0413","x":0,"y":240},{"d":"@0789","x":40,"y":224}],"w":48},
"indicator_(future_passive_conditional)": {"d":[{"d":"@0413","x":0,"y":240},{"d":"@0784","x":48,"y":240},{"d":"@0011","x":56,"y":224},{"d":"@0789","x":72,"y":224}],"w":80},
"indicator_(imperative_form)": {"d":[{"d":"@0790","x":0,"y":236},{"d":"@0011","x":0,"y":224}],"w":0},
"indicator_(passive)": {"d":[{"d":"@0413","x":0,"y":240}],"w":32},
"indicator_(past_action)": {"d":[{"d":"@0792","x":0,"y":224}],"w":8},
"indicator_(past_conditional)": {"d":[{"d":"@0784","x":0,"y":240},{"d":"@0011","x":8,"y":224},{"d":"@0792","x":32,"y":224}],"w":40},
"indicator_(past_participle_1)": {"d":[{"d":"@0792","x":0,"y":224},{"d":"@0173","x":16,"y":224}],"w":48},
"indicator_(past_participle_2)": {"d":[{"d":"@0792","x":0,"y":224},{"d":"@0011","x":16,"y":256}],"w":16},
"indicator_(past_passive)": {"d":[{"d":"@0413","x":0,"y":240},{"d":"@0792","x":48,"y":224}],"w":56},
"indicator_(past_passive_conditional)": {"d":[{"d":"@0413","x":0,"y":240},{"d":"@0784","x":48,"y":240},{"d":"@0011","x":56,"y":224},{"d":"@0792","x":80,"y":224}],"w":88},
"indicator_(plural)": {"d":[{"d":"@0123","x":0,"y":224}],"w":32},
"indicator_(present_action)": {"d":[{"d":"@0792","x":0,"y":224},{"d":"@0789","x":24,"y":224}],"w":32},
"indicator_(present_participle)": {"d":[{"d":"@0792","x":0,"y":224},{"d":"@0789","x":24,"y":224},{"d":"@0173","x":48,"y":224}],"w":80},
"indicator_(present_passive_conditional)": {"d":[{"d":"@0413","x":0,"y":240},{"d":"@0784","x":48,"y":240},{"d":"@0011","x":56,"y":224}],"w":64},
"indicator_(thing)": {"d":[{"d":"@0120","x":0,"y":224}],"w":32},
"indicator_(things)": {"d":[{"d":"@0120","x":0,"y":224},{"d":"@0123","x":48,"y":224}],"w":80},
"indoor_(character)": {"d":[{"d":"@0421","x":0,"y":128}],"h":192,"w":128},
"information": {"d":[{"d":"@0386","x":0,"y":64}],"h":192,"w":128},
"injection,inoculation,shot": {"d":[{"d":"@0794","x":0,"y":96}],"h":160,"w":256},
"inlet": {"d":[{"d":"@0795","x":0,"y":64}],"h":80,"w":384},
"insect,bug": {"d":[{"d":"@0332","x":0,"y":64}],"h":128,"w":192},
"insight": {"d":[{"d":"@0796","x":0,"y":128}],"h":192,"w":128},
"insurance": {"d":[{"d":"@0797","x":0,"y":64}],"h":192,"w":128},
"intensity": {"d":[{"d":"@0054","x":0,"y":112},{"d":"@0011","x":0,"y":96}],"h":160,"w":0},
"interest": {"d":[{"d":"@0153","x":0,"y":128}],"h":192,"w":128},
"into": {"d":[{"d":"@0260","x":0,"y":64}],"h":192,"w":192},
"into_(backward)": {"d":[{"d":"@0798","x":0,"y":64}],"h":192,"w":192},
"into_(downward)": {"d":[{"d":"@0799","x":0,"y":128}],"h":256,"w":128},
"into_(upward)": {"d":[{"d":"@0800","x":0,"y":64}],"h":192,"w":128},
"iron,smoothing_iron": {"d":[{"d":"@0801","x":0,"y":96}],"h":160,"w":128},
"island": {"d":[{"d":"@0347","x":0,"y":64}],"h":80,"w":384},
"it,itself": {"d":[{"d":"@0330","x":0,"y":64}],"h":128,"w":0},
"j_(lowercase)": {"d":[{"d":"@TEXT:j:64","x":0,"y":64}],"h":128,"w":24},
"J_(uppercase)": {"d":[{"d":"@TEXT:J:64","x":0,"y":64}],"h":128,"w":32},
"jellyfish": {"d":[{"d":"@0802","x":0,"y":64}],"h":128,"w":128},
"joint": {"d":[{"d":"@0555","x":0,"y":160},{"d":"@0330","x":48,"y":96},{"d":"@0011","x":48,"y":64},{"d":"@0181","x":80,"y":64},{"d":"@0011","x":176,"y":64}],"h":192,"w":176},
"judgement,law_(in_combinations)": {"d":[{"d":"@0269","x":0,"y":128}],"h":192,"w":128},
"jump": {"d":[{"d":"@0224","x":0,"y":64}],"h":128,"w":160},
"jump_(backward)": {"d":[{"d":"@0803","x":0,"y":64}],"h":128,"w":160},
"k_(lowercase)": {"d":[{"d":"@TEXT:k:64","x":0,"y":64}],"h":128,"w":32},
"K_(uppercase)": {"d":[{"d":"@TEXT:K:64","x":0,"y":64}],"h":128,"w":40},
"keel": {"d":[{"d":"@0805","x":0,"y":128}],"h":192,"w":128},
"key": {"d":[{"d":"@0806","x":0,"y":64}],"h":128,"w":128},
"keyboard": {"d":[{"d":"@0666","x":0,"y":96}],"h":160,"w":128},
"kidney": {"d":[{"d":"@0808","x":0,"y":64}],"h":192,"w":96},
"kiss": {"d":[{"d":"@0809","x":0,"y":96}],"h":160,"w":128},
"kitchen_tool,utensil": {"d":[{"d":"@0588","x":0,"y":64}],"h":192,"w":96},
"kite": {"d":[{"d":"@0024","x":0,"y":192}],"h":256,"w":128},
"knee": {"d":[{"d":"@0811","x":0,"y":128}],"h":192,"w":112},
"kneeling_(kneeling_person)": {"d":[{"d":"@0600","x":0,"y":128}],"h":192,"w":64},
"knife,sword": {"d":[{"d":"@0249","x":0,"y":64}],"h":192,"w":128},
"knowledge,class_(in_combinations)": {"d":[{"d":"@0031","x":0,"y":128}],"h":192,"w":128},
"l_(lowercase)": {"d":[{"d":"@TEXT:l:64","x":0,"y":64}],"h":128,"w":24},
"L_(uppercase)": {"d":[{"d":"@TEXT:L:64","x":0,"y":64}],"h":128,"w":32},
"ladder": {"d":[{"d":"@0454","x":0,"y":64}],"h":192,"w":64},
"language": {"d":[{"d":"@0035","x":0,"y":96}],"h":192,"w":96},
"lawn,meadow": {"d":[{"d":"@0711","x":0,"y":64}],"h":128,"w":128},
"layer,level": {"d":[{"d":"@0779","x":0,"y":160}],"h":160,"w":64},
"leader,director,guide_(1)": {"d":[{"d":"@0206","x":0,"y":64}],"h":192,"w":192},
"leadership,guidance": {"d":[{"d":"@0410","x":0,"y":128}],"h":192,"w":192},
"leaf": {"d":[{"d":"@0371","x":0,"y":64}],"h":192,"w":64},
"left_turn,left_(position_or_direction)": {"d":[{"d":"@0338","x":0,"y":64}],"h":192,"w":64},
"leg": {"d":[{"d":"@0812","x":0,"y":64}],"h":192,"w":192},
"leg_and_foot": {"d":[{"d":"@0464","x":0,"y":64}],"h":192,"w":224},
"legs_and_feet": {"d":[{"d":"@0062","x":0,"y":64}],"h":192,"w":192},
"lemon": {"d":[{"d":"@0813","x":0,"y":128}],"h":256,"w":96},
"length,longness": {"d":[{"d":"@0081","x":0,"y":96}],"h":160,"w":128},
"less_than_(relation)": {"d":[{"d":"@0268","x":0,"y":128}],"h":192,"w":64},
"letter,mail,post": {"d":[{"d":"@0653","x":0,"y":64}],"h":192,"w":128},
"lettuce,leafy_vegetable": {"d":[{"d":"@0814","x":0,"y":64}],"h":128,"w":128},
"lid": {"d":[{"d":"@0815","x":0,"y":160}],"h":192,"w":128},
"life": {"d":[{"d":"@0159","x":0,"y":64}],"h":192,"w":128},
"light": {"d":[{"d":"@0047","x":0,"y":64}],"h":192,"w":128},
"lightning": {"d":[{"d":"@0816","x":0,"y":128}],"h":192,"w":128},
"limit(s),limitation,restriction": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0011","x":32,"y":64},{"d":"@0011","x":64,"y":64},{"d":"@0011","x":96,"y":64},{"d":"@0015","x":128,"y":64}],"h":192,"w":128},
"limit(s),limitation_(OLD)": {"d":[{"d":"@0393","x":0,"y":64}],"h":192,"w":128},
"limited_time,interval,period,awhile,for_a_while": {"d":[{"d":"@0014","x":0,"y":64}],"h":192,"w":128},
"line,stripe": {"d":[{"d":"@0015","x":0,"y":64}],"h":192,"w":0},
"lip(s)": {"d":[{"d":"@0817","x":0,"y":144}],"h":208,"w":64},
"littleness,smallness": {"d":[{"d":"@0075","x":0,"y":64}],"h":128,"w":64},
"lollipop,sucker": {"d":[{"d":"@0818","x":0,"y":128}],"h":192,"w":64},
"love,affection": {"d":[{"d":"@0088","x":0,"y":96}],"h":192,"w":256},
"lowness,shortness_(height)": {"d":[{"d":"@0140","x":0,"y":128}],"h":128,"w":64},
"lump(s)": {"d":[{"d":"@0011","x":0,"y":160},{"d":"@0186","x":0,"y":160},{"d":"@0011","x":64,"y":96}],"h":160,"w":64},
"m_(lowercase)": {"d":[{"d":"@TEXT:m:64","x":0,"y":64}],"h":128,"w":48},
"M_(uppercase)": {"d":[{"d":"@TEXT:M:64","x":0,"y":64}],"h":128,"w":40},
"machine,appliance,engine,motor": {"d":[{"d":"@0004","x":0,"y":64}],"h":192,"w":128},
"magnetic_field": {"d":[{"d":"@0820","x":0,"y":144}],"h":208,"w":224},
"magnetism": {"d":[{"d":"@0668","x":0,"y":144}],"h":208,"w":128},
"make-believe_man": {"d":[{"d":"@0049","x":0,"y":128}],"h":256,"w":128},
"make-believe_person,imaginary_person": {"d":[{"d":"@0148","x":0,"y":64}],"h":256,"w":128},
"make-believe_woman": {"d":[{"d":"@0690","x":0,"y":128}],"h":256,"w":128},
"making,production,fashioning": {"d":[{"d":"@0355","x":0,"y":64}],"h":128,"w":128},
"male_genitals_(man_with_penis)": {"d":[{"d":"@0560","x":0,"y":64}],"h":192,"w":64},
"man,male": {"d":[{"d":"@0007","x":0,"y":128}],"h":192,"w":64},
"mane_(lion_etc)": {"d":[{"d":"@0179","x":0,"y":128}],"h":256,"w":192},
"mango": {"d":[{"d":"@0821","x":0,"y":128}],"h":256,"w":80},
"maple-leaf": {"d":[{"d":"@0071","x":0,"y":160}],"h":192,"w":128},
"marriage": {"d":[{"d":"@0637","x":0,"y":128}],"h":192,"w":128},
"mash,mush,pulp_(food)": {"d":[{"d":"@0822","x":0,"y":96}],"h":160,"w":320},
"mask_(disguise)": {"d":[{"d":"@0823","x":0,"y":64}],"h":192,"w":128},
"mast": {"d":[{"d":"@0824","x":0,"y":64}],"h":192,"w":112},
"material,raw_material,stuff": {"d":[{"d":"@0259","x":0,"y":96}],"h":160,"w":64},
"mathematics,arithmetic,math_(2)": {"d":[{"d":"@0825","x":0,"y":64}],"h":192,"w":128},
"meaning,sense,significance": {"d":[{"d":"@0578","x":0,"y":64}],"h":192,"w":128},
"measurement,measure": {"d":[{"d":"@0317","x":0,"y":96}],"h":160,"w":128},
"medicine,medical_practice": {"d":[{"d":"@0314","x":0,"y":64}],"h":192,"w":32},
"meeting,encounter": {"d":[{"d":"@0118","x":0,"y":128},{"d":"@0143","x":160,"y":128}],"h":160,"w":288},
"meeting_and_parting": {"d":[{"d":"@0266","x":0,"y":160},{"d":"@0827","x":160,"y":160}],"h":192,"w":288},
"Megillah_(Book_of_Esther)": {"d":[{"d":"@0013","x":0,"y":96}],"h":224,"w":64},
"melon": {"d":[{"d":"@0828","x":0,"y":128}],"h":256,"w":128},
"membrane,drumhead,drum_skin": {"d":[{"d":"@0648","x":0,"y":64},{"d":"@1022","x":0,"y":96}],"h":192,"w":128},
"memory": {"d":[{"d":"@0628","x":0,"y":128}],"h":192,"w":128},
"menorah": {"d":[{"d":"@0829","x":0,"y":64}],"h":224,"w":256},
"mental_illness": {"d":[{"d":"@0657","x":0,"y":128}],"h":192,"w":128},
"metal_bar": {"d":[{"d":"@0128","x":0,"y":96}],"h":160,"w":128},
"metaphor": {"d":[{"d":"@0831","x":0,"y":128}],"h":256,"w":64},
"metaphor_(winged)": {"d":[{"d":"@0168","x":0,"y":128}],"h":256,"w":128},
"microwave_oven": {"d":[{"d":"@0832","x":0,"y":64}],"h":192,"w":256},
"middle,centre": {"d":[{"d":"@0076","x":0,"y":64}],"h":192,"w":128},
"mind,intellect,reason": {"d":[{"d":"@0468","x":0,"y":128}],"h":192,"w":128},
"mine": {"d":[{"d":"@0833","x":0,"y":64}],"h":192,"w":128},
"minus,no,without": {"d":[{"d":"@0181","x":0,"y":128}],"h":128,"w":64},
"miscarriage,abortion_(general)": {"d":[{"d":"@0258","x":0,"y":64}],"h":192,"w":224},
"mixture": {"d":[{"d":"@0412","x":0,"y":128}],"h":192,"w":192},
"money,cash": {"d":[{"d":"@0006","x":0,"y":64}],"h":192,"w":64},
"month": {"d":[{"d":"@0012","x":0,"y":64}],"h":192,"w":64},
"moon": {"d":[{"d":"@0036","x":0,"y":64}],"h":192,"w":64},
"morning_(early)": {"d":[{"d":"@0144","x":0,"y":64}],"h":128,"w":128},
"mother,mom,mommy,mum": {"d":[{"d":"@0187","x":0,"y":128}],"h":192,"w":128},
"mountain": {"d":[{"d":"@0045","x":0,"y":64}],"h":192,"w":128},
"mountains_with_valley": {"d":[{"d":"@0991","x":0,"y":64}],"h":192,"w":384},
"mouth": {"d":[{"d":"@0092","x":0,"y":96}],"h":160,"w":64},
"move,movement": {"d":[{"d":"@0478","x":0,"y":64}],"h":128,"w":64},
"mud,clay": {"d":[{"d":"@0540","x":0,"y":64}],"h":80,"w":192},
"mug,cup": {"d":[{"d":"@0488","x":0,"y":64}],"h":192,"w":96},
"multiplication": {"d":[{"d":"@0008","x":0,"y":64}],"h":192,"w":128},
"muscle": {"d":[{"d":"@0274","x":0,"y":128}],"h":192,"w":64},
"muscle_(OLD)": {"d":[{"d":"@0835","x":0,"y":128}],"h":192,"w":112},
"mushroom": {"d":[{"d":"@0836","x":0,"y":96}],"h":160,"w":64},
"musical_instrument_(in_combinations)": {"d":[{"d":"@0127","x":0,"y":96}],"h":192,"w":96},
"musical_note,music_(in_combinations)": {"d":[{"d":"@0044","x":0,"y":96}],"h":192,"w":64},
"must_(a)": {"d":[{"d":"@0261","x":0,"y":64}],"h":192,"w":128},
"muzzle": {"d":[{"d":"@0485","x":0,"y":128}],"h":192,"w":272},
"mystery,unknown": {"d":[{"d":"@0819","x":0,"y":128}],"h":192,"w":128},
"n_(lowercase)": {"d":[{"d":"@TEXT:n:64","x":0,"y":64}],"h":128,"w":32},
"N_(uppercase)": {"d":[{"d":"@TEXT:N:64","x":0,"y":64}],"h":128,"w":40},
"nail": {"d":[{"d":"@0445","x":0,"y":64}],"h":192,"w":64},
"name,label,term,title": {"d":[{"d":"@0281","x":0,"y":64}],"h":192,"w":128},
"navel": {"d":[{"d":"@0838","x":0,"y":64}],"h":192,"w":192},
"nearness,closeness,proximity": {"d":[{"d":"@0364","x":0,"y":96}],"h":160,"w":64},
"neck_(body)": {"d":[{"d":"@0573","x":0,"y":112}],"h":240,"w":192},
"neck_(head)": {"d":[{"d":"@0839","x":0,"y":64}],"h":192,"w":128},
"need_(needy_person)": {"d":[{"d":"@0083","x":0,"y":64}],"h":192,"w":96},
"needle": {"d":[{"d":"@0519","x":0,"y":64}],"h":192,"w":32},
"newness,novelty": {"d":[{"d":"@0208","x":0,"y":64}],"h":192,"w":192},
"news": {"d":[{"d":"@0678","x":0,"y":96}],"h":192,"w":96},
"night": {"d":[{"d":"@0145","x":0,"y":64}],"h":192,"w":128},
"nine_(digit),9": {"d":[{"d":"@0220","x":0,"y":96}],"h":128,"w":32},
"nine_(index_number)": {"d":[{"d":"@0840","x":0,"y":80}],"h":96,"w":16},
"no_speech,anarthria": {"d":[{"d":"@0841","x":0,"y":64}],"h":192,"w":128},
"nonsense": {"d":[{"d":"@0842","x":0,"y":64}],"h":192,"w":128},
"north": {"d":[{"d":"@0020","x":0,"y":64}],"h":192,"w":128},
"northeast": {"d":[{"d":"@1013","x":0,"y":64}],"h":192,"w":128},
"northwest": {"d":[{"d":"@1014","x":0,"y":64}],"h":192,"w":128},
"North_Pole": {"d":[{"d":"@0198","x":0,"y":96}],"h":224,"w":176},
"nose": {"d":[{"d":"@0139","x":0,"y":64}],"h":192,"w":64},
"now": {"d":[{"d":"@0156","x":0,"y":64},{"d":"@0155","x":48,"y":64}],"h":128,"w":64},
"nowhere,no_place": {"d":[{"d":"@0843","x":0,"y":128}],"h":128,"w":128},
"nuclear_radiation,radioactivity": {"d":[{"d":"@0845","x":0,"y":64}],"h":192,"w":224},
"nucleus_(atom)": {"d":[{"d":"@0844","x":0,"y":64}],"h":192,"w":128},
"number": {"d":[{"d":"@0286","x":0,"y":64}],"h":192,"w":160},
"o_(lowercase)": {"d":[{"d":"@TEXT:o:64","x":0,"y":64}],"h":128,"w":32},
"O_(uppercase)": {"d":[{"d":"@TEXT:O:64","x":0,"y":64}],"h":128,"w":40},
"observation": {"d":[{"d":"@0109","x":0,"y":128}],"h":192,"w":128},
"offspring,child": {"d":[{"d":"@0009","x":0,"y":128}],"h":192,"w":128},
"oil,lubricant": {"d":[{"d":"@0122","x":0,"y":128}],"h":144,"w":128},
"olive": {"d":[{"d":"@0846","x":0,"y":128}],"h":192,"w":80},
"on": {"d":[{"d":"@0847","x":0,"y":64}],"h":96,"w":64},
"one_(digit),1": {"d":[{"d":"@0010","x":0,"y":64}],"h":128,"w":32},
"one_(index_number)": {"d":[{"d":"@0192","x":0,"y":64}],"h":96,"w":16},
"one_third": {"d":[{"d":"@0010","x":0,"y":128},{"d":"@0750","x":32,"y":64},{"d":"@0100","x":96,"y":96}],"h":192,"w":128},
"onion,vegetable_(bulb)": {"d":[{"d":"@0556","x":0,"y":64}],"h":128,"w":128},
"opening": {"d":[{"d":"@0297","x":0,"y":64}],"h":192,"w":128},
"opinion": {"d":[{"d":"@0285","x":0,"y":128}],"h":192,"w":128},
"opposing_forces,counter-forces": {"d":[{"d":"@0284","x":0,"y":192}],"h":224,"w":128},
"opposite_meaning,opposite_of,opposite": {"d":[{"d":"@0183","x":0,"y":64}],"h":192,"w":64},
"opposition,counter_purpose": {"d":[{"d":"@0268","x":0,"y":128},{"d":"@0268","x":64,"y":128}],"h":192,"w":128},
"oppression,captivity,slavery": {"d":[{"d":"@0772","x":0,"y":64}],"h":192,"w":128},
"or": {"d":[{"d":"@0027","x":0,"y":128},{"d":"@0011","x":32,"y":128}],"h":160,"w":32},
"orange,citrus_fruit": {"d":[{"d":"@0743","x":0,"y":128}],"h":192,"w":96},
"organ,inner_organ,inner_body_part": {"d":[{"d":"@0341","x":0,"y":64}],"h":192,"w":128},
"out,exterior,external,outside": {"d":[{"d":"@0184","x":0,"y":64},{"d":"@0011","x":160,"y":128}],"h":192,"w":160},
"out_of,exit_(downward)": {"d":[{"d":"@0652","x":0,"y":64}],"h":192,"w":128},
"out_of,exit_(forward)": {"d":[{"d":"@0618","x":0,"y":64}],"h":192,"w":192},
"out_of_(backward)": {"d":[{"d":"@0848","x":0,"y":64}],"h":192,"w":192},
"out_of_(upward)": {"d":[{"d":"@0849","x":0,"y":128}],"h":256,"w":128},
"out_of_body_(upward)": {"d":[{"d":"@0498","x":0,"y":128}],"h":256,"w":192},
"out_of_body_(downward),elimination,excretion": {"d":[{"d":"@1025","x":0,"y":0}],"h":192,"w":192},
"oval": {"d":[{"d":"@0850","x":0,"y":128}],"h":192,"w":64},
"over,above,superior": {"d":[{"d":"@0272","x":0,"y":160}],"h":160,"w":128},
"ownership,possession": {"d":[{"d":"@0780","x":0,"y":64}],"h":192,"w":128},
"oyster,clam,mussel": {"d":[{"d":"@0852","x":0,"y":96}],"h":128,"w":128},
"p_(lowercase)": {"d":[{"d":"@TEXT:p:64","x":0,"y":64}],"h":128,"w":32},
"P_(uppercase)": {"d":[{"d":"@TEXT:P:64","x":0,"y":64}],"h":128,"w":40},
"paddle,oar": {"d":[{"d":"@0520","x":0,"y":112}],"h":192,"w":176},
"paddle_(two_blades)": {"d":[{"d":"@0804","x":0,"y":160}],"h":224,"w":208},
"pail,bucket": {"d":[{"d":"@0853","x":0,"y":96}],"h":160,"w":128},
"palm": {"d":[{"d":"@0569","x":0,"y":96}],"h":192,"w":128},
"pancake,crepe,tortilla": {"d":[{"d":"@0854","x":0,"y":64}],"h":128,"w":256},
"paper,card,page": {"d":[{"d":"@0247","x":0,"y":64}],"h":192,"w":64},
"parachute": {"d":[{"d":"@0855","x":0,"y":128}],"h":256,"w":128},
"parallel": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0015","x":32,"y":64}],"h":192,"w":32},
"parcel,package": {"d":[{"d":"@0856","x":0,"y":64}],"h":192,"w":192},
"parent": {"d":[{"d":"@0282","x":0,"y":64}],"h":192,"w":128},
"park": {"d":[{"d":"@0857","x":0,"y":64}],"h":192,"w":224},
"part,bit,piece,portion,part_of": {"d":[{"d":"@0025","x":0,"y":160}],"h":160,"w":64},
"parting": {"d":[{"d":"@0143","x":0,"y":128},{"d":"@0118","x":160,"y":128}],"h":160,"w":288},
"past": {"d":[{"d":"@0190","x":0,"y":64}],"h":192,"w":32},
"pate,crown_(body_part)": {"d":[{"d":"@0433","x":0,"y":64},{"d":"@1022","x":0,"y":160}],"h":240,"w":128},
"paw": {"d":[{"d":"@0858","x":0,"y":64}],"h":128,"w":176},
"peace,peace_of_mind,serenity": {"d":[{"d":"@0188","x":0,"y":96}],"h":192,"w":128},
"peach,nectarine": {"d":[{"d":"@0345","x":0,"y":128}],"h":192,"w":128},
"pear": {"d":[{"d":"@0859","x":0,"y":192}],"h":256,"w":112},
"pea(s)": {"d":[{"d":"@0086","x":0,"y":64},{"d":"@0860","x":32,"y":144},{"d":"@0190","x":64,"y":64}],"h":192,"w":96},
"pen,pencil": {"d":[{"d":"@0444","x":0,"y":64}],"h":192,"w":128},
"penis": {"d":[{"d":"@0861","x":0,"y":64}],"h":192,"w":80},
"pepper_(vegetable)": {"d":[{"d":"@0862","x":0,"y":192}],"h":256,"w":96},
"percent,percentage,%": {"d":[{"d":"@0863","x":0,"y":64}],"h":192,"w":64},
"period,point,full_stop,decimal_point": {"d":[{"d":"@0011","x":0,"y":64}],"h":64,"w":0},
"permission,allowance": {"d":[{"d":"@0619","x":0,"y":64}],"h":192,"w":128},
"permission,allowance_(moral)": {"d":[{"d":"@0251","x":0,"y":128}],"h":256,"w":128},
"perpendicular": {"d":[{"d":"@0864","x":0,"y":64}],"h":192,"w":128},
"person,human_being,individual,human": {"d":[{"d":"@0057","x":0,"y":64}],"h":192,"w":64},
"personality": {"d":[{"d":"@0546","x":0,"y":64}],"h":192,"w":160},
"persuasion": {"d":[{"d":"@0865","x":0,"y":128}],"h":192,"w":192},
"pier_(OLD)": {"d":[{"d":"@0866","x":0,"y":128}],"h":192,"w":288},
"pig": {"d":[{"d":"@0212","x":0,"y":128}],"h":192,"w":192},
"pillow,cushion": {"d":[{"d":"@0867","x":0,"y":112}],"h":240,"w":160},
"pimple,blemish": {"d":[{"d":"@0273","x":0,"y":64}],"h":192,"w":176},
"pin": {"d":[{"d":"@0232","x":0,"y":64}],"h":128,"w":64},
"pineapple": {"d":[{"d":"@0868","x":0,"y":192}],"h":256,"w":128},
"pipe,hose,tube_(1)": {"d":[{"d":"@0869","x":0,"y":64}],"h":128,"w":160},
"pipe,hose,tube_(2)": {"d":[{"d":"@0342","x":0,"y":64}],"h":192,"w":64},
"pipe,smoking_pipe": {"d":[{"d":"@0870","x":0,"y":128}],"h":192,"w":240},
"pipe,tube_(closed)": {"d":[{"d":"@0871","x":0,"y":64}],"h":192,"w":64},
"pit,stone": {"d":[{"d":"@0872","x":0,"y":80}],"h":128,"w":16},
"pita": {"d":[{"d":"@0874","x":0,"y":64}],"h":128,"w":160},
"pitch_(sound)": {"d":[{"d":"@0875","x":0,"y":160}],"h":192,"w":112},
"pitcher,jug,kettle,pot": {"d":[{"d":"@0665","x":0,"y":64}],"h":192,"w":160},
"pizza_slice(s),sector(s),circle_sector(s)": {"d":[{"d":"@0876","x":0,"y":64}],"h":192,"w":128},
"place,area,location,space": {"d":[{"d":"@0137","x":0,"y":64}],"h":96,"w":128},
"plan,design,method,system": {"d":[{"d":"@0275","x":0,"y":128}],"h":192,"w":128},
"planet": {"d":[{"d":"@0074","x":0,"y":64}],"h":192,"w":192},
"plant": {"d":[{"d":"@0129","x":0,"y":128}],"h":192,"w":96},
"platform,stage": {"d":[{"d":"@0500","x":0,"y":64}],"h":128,"w":192},
"pliers,tongs,tweezer(s),pincer(s)_(pair_of)": {"d":[{"d":"@0810","x":0,"y":128}],"h":192,"w":128},
"plough": {"d":[{"d":"@0877","x":0,"y":64}],"h":192,"w":128},
"plum,drupe": {"d":[{"d":"@0612","x":0,"y":128}],"h":192,"w":96},
"plus_minus": {"d":[{"d":"@0745","x":0,"y":96}],"h":160,"w":64},
"plus_sign_(low)": {"d":[{"d":"@0264","x":0,"y":64}],"h":128,"w":64},
"pod,seedcase,seedpod": {"d":[{"d":"@0086","x":0,"y":64},{"d":"@0190","x":64,"y":64}],"h":192,"w":96},
"point,tip,peak": {"d":[{"d":"@0219","x":0,"y":96}],"h":224,"w":176},
"pointer_(hand)": {"d":[{"d":"@0685","x":0,"y":64}],"h":128,"w":128},
"pointer,arrowhead": {"d":[{"d":"@1028","x":0,"y":128}],"h":160,"w":62},
"pointer,arrowhead_(small)": {"d":[{"d":"@1029","x":0,"y":128}],"h":144,"w":32},
"politics": {"d":[{"d":"@0879","x":0,"y":128}],"h":192,"w":192},
"pool": {"d":[{"d":"@0411","x":0,"y":80}],"h":144,"w":128},
"portability": {"d":[{"d":"@0185","x":0,"y":96}],"h":160,"w":192},
"position": {"d":[{"d":"@0277","x":0,"y":128},{"d":"@0011","x":96,"y":128}],"h":192,"w":96},
"postcard": {"d":[{"d":"@0880","x":0,"y":64}],"h":192,"w":128},
"pot,kettle,boiler": {"d":[{"d":"@0617","x":0,"y":64}],"h":192,"w":192},
"pot,pan": {"d":[{"d":"@0489","x":0,"y":128}],"h":192,"w":192},
"potty,chamber_pot,bedpan": {"d":[{"d":"@0881","x":0,"y":64}],"h":128,"w":144},
"pound_sterling": {"d":[{"d":"@0882","x":0,"y":72}],"h":176,"w":80},
"powder,dust": {"d":[{"d":"@0186","x":0,"y":128},{"d":"@0011","x":64,"y":64}],"h":128,"w":64},
"power_(physics)": {"d":[{"d":"@0883","x":0,"y":64}],"h":192,"w":256},
"present": {"d":[{"d":"@0190","x":0,"y":64},{"d":"@0086","x":64,"y":64}],"h":192,"w":96},
"pressure": {"d":[{"d":"@0202","x":0,"y":64}],"h":192,"w":128},
"projectile,rocket,spacecraft": {"d":[{"d":"@0365","x":0,"y":128}],"h":192,"w":64},
"projector": {"d":[{"d":"@0528","x":0,"y":64}],"h":192,"w":192},
"prone_board,scooter-board": {"d":[{"d":"@0885","x":0,"y":96}],"h":160,"w":160},
"propeller,rotor_(blades)": {"d":[{"d":"@0886","x":0,"y":128}],"h":192,"w":128},
"protected_water": {"d":[{"d":"@0755","x":0,"y":128}],"h":192,"w":128},
"protection,shelter": {"d":[{"d":"@0070","x":0,"y":128}],"h":192,"w":128},
"protection_with_pointer": {"d":[{"d":"@0658","x":0,"y":128}],"h":192,"w":176},
"pubic_hair": {"d":[{"d":"@0887","x":0,"y":64}],"h":192,"w":192},
"public_room": {"d":[{"d":"@0296","x":0,"y":64}],"h":192,"w":256},
"pudding,cream": {"d":[{"d":"@0091","x":0,"y":64}],"h":128,"w":256},
"puddle,pool,water_(ground_level)": {"d":[{"d":"@0022","x":0,"y":64}],"h":80,"w":128},
"pull,pulling": {"d":[{"d":"@0888","x":0,"y":96}],"h":160,"w":128},
"purpose": {"d":[{"d":"@0277","x":0,"y":128},{"d":"@0277","x":64,"y":128}],"h":192,"w":128},
"push,pushing": {"d":[{"d":"@0890","x":0,"y":96}],"h":160,"w":192},
"pyramid": {"d":[{"d":"@0105","x":0,"y":64}],"h":192,"w":192},
"q_(lowercase)": {"d":[{"d":"@TEXT:q:64","x":0,"y":64}],"h":128,"w":32},
"Q_(uppercase)": {"d":[{"d":"@TEXT:Q:64","x":0,"y":64}],"h":128,"w":40},
"quarter,one_quarter": {"d":[{"d":"@0010","x":0,"y":128},{"d":"@0750","x":32,"y":64},{"d":"@0033","x":96,"y":64}],"h":192,"w":128},
"question": {"d":[{"d":"@0361","x":0,"y":64}],"h":192,"w":128},
"question_mark": {"d":[{"d":"@0892","x":0,"y":128}],"h":192,"w":64},
"quill(s),spine(s)": {"d":[{"d":"@0252","x":0,"y":128},{"d":"@0252","x":32,"y":128},{"d":"@0252","x":64,"y":128}],"h":160,"w":96},
"r_(lowercase)": {"d":[{"d":"@TEXT:r:64","x":0,"y":64}],"h":128,"w":24},
"R_(uppercase)": {"d":[{"d":"@TEXT:R:64","x":0,"y":64}],"h":128,"w":40},
"race,competition,contest": {"d":[{"d":"@0201","x":0,"y":128}],"h":160,"w":192},
"racket,racquet": {"d":[{"d":"@0415","x":0,"y":120}],"h":192,"w":128},
"rain": {"d":[{"d":"@0078","x":0,"y":64}],"h":192,"w":128},
"raised_wavy_line": {"d":[{"d":"@0158","x":0,"y":192}],"h":256,"w":32},
"ramp": {"d":[{"d":"@0893","x":0,"y":64}],"h":128,"w":192},
"raspberry,blackberry,compound_berry": {"d":[{"d":"@0443","x":0,"y":96}],"h":160,"w":128},
"reality": {"d":[{"d":"@0894","x":0,"y":64}],"h":192,"w":128},
"rear,back_of_a_thing": {"d":[{"d":"@0895","x":0,"y":96}],"h":160,"w":112},
"receiver,dish": {"d":[{"d":"@0896","x":0,"y":64}],"h":128,"w":64},
"return": {"d":[{"d":"@0015","x":0,"y":64}, {"d":"@0143","x":32,"y":128}],"h":192,"w":160},
"getting,acquiring,receiving": {"d":[{"d":"@0353","x":0,"y":64}],"h":192,"w":128},
"reclining,lying_(person_lying_down)": {"d":[{"d":"@0514","x":0,"y":64}],"h":128,"w":128},
"recording_disk": {"d":[{"d":"@0067","x":0,"y":64}],"h":192,"w":128},
"reed": {"d":[{"d":"@0407","x":0,"y":64}],"h":128,"w":96},
"reflection": {"d":[{"d":"@0834","x":0,"y":64}],"h":192,"w":64},
"reflection_(mental),consideration": {"d":[{"d":"@0826","x":0,"y":64}],"h":192,"w":128},
"relative,relation": {"d":[{"d":"@0781","x":0,"y":64}],"h":192,"w":256},
"relay": {"d":[{"d":"@0898","x":0,"y":64}],"h":192,"w":256},
"religion,naturalism": {"d":[{"d":"@0065","x":0,"y":64}],"h":192,"w":128},
"religion_(God_based)": {"d":[{"d":"@0089","x":0,"y":128}],"h":256,"w":128},
"repetition,copying,duplication,replication": {"d":[{"d":"@0462","x":0,"y":64}],"h":192,"w":64},
"responsibility": {"d":[{"d":"@0899","x":0,"y":128}],"h":256,"w":128},
"rest,comfort": {"d":[{"d":"@0094","x":0,"y":96}],"h":192,"w":128},
"rhinoceros": {"d":[{"d":"@0900","x":0,"y":128}],"h":192,"w":256},
"rice": {"d":[{"d":"@0902","x":0,"y":64}],"h":128,"w":160},
"ride,drive": {"d":[{"d":"@0731","x":0,"y":128}],"h":192,"w":128},
"right_turn,right_(position_or_direction)": {"d":[{"d":"@0363","x":0,"y":64}],"h":192,"w":64},
"ring": {"d":[{"d":"@0146","x":0,"y":64}],"h":192,"w":128},
"river,stream,current": {"d":[{"d":"@0307","x":0,"y":128}],"h":160,"w":128},
"road_(1)": {"d":[{"d":"@0903","x":0,"y":112},{"d":"@1024","x":0,"y":16}],"h":176,"w":256},
"road_and_car": {"d":[{"d":"@0903","x":0,"y":112}],"h":176,"w":256},
"roll,bun": {"d":[{"d":"@0384","x":0,"y":64}],"h":128,"w":96},
"roller_skates": {"d":[{"d":"@0904","x":0,"y":64}],"h":192,"w":192},
"rolling_pin": {"d":[{"d":"@0905","x":0,"y":64}],"h":128,"w":192},
"room": {"d":[{"d":"@0292","x":0,"y":64}],"h":192,"w":128},
"root": {"d":[{"d":"@0906","x":0,"y":0}],"h":64,"w":128},
"root(s),rootage,root_system": {"d":[{"d":"@0729","x":0,"y":0}],"h":64,"w":128},
"rotation,circulation,orbit,lap,circle,round": {"d":[{"d":"@0126","x":0,"y":64}],"h":192,"w":160},
"row_house,attached_houses": {"d":[{"d":"@0907","x":0,"y":64}],"h":192,"w":256},
"rudder": {"d":[{"d":"@0908","x":0,"y":128}],"h":192,"w":128},
"rugby_ball,football_(N.A.)": {"d":[{"d":"@0909","x":0,"y":96}],"h":128,"w":128},
"ruin,wreck,wreckage_(building)_(1)": {"d":[{"d":"@0046","x":0,"y":64}],"h":192,"w":128},
"s_(lowercase)": {"d":[{"d":"@TEXT:s:64","x":0,"y":64}],"h":128,"w":32},
"S_(uppercase)": {"d":[{"d":"@TEXT:S:64","x":0,"y":64}],"h":128,"w":40},
"sack,bag": {"d":[{"d":"@0378","x":0,"y":128}],"h":192,"w":128},
"sail": {"d":[{"d":"@0897","x":0,"y":64}],"h":192,"w":64},
"sail_(OLD)": {"d":[{"d":"@0910","x":0,"y":64}],"h":192,"w":64},
"sailboat,sailing_boat,yacht": {"d":[{"d":"@0911","x":0,"y":128}],"h":192,"w":128},
"sailboat_(OLD)": {"d":[{"d":"@0912","x":0,"y":128}],"h":192,"w":128},
"salad": {"d":[{"d":"@0724","x":0,"y":64}],"h":128,"w":256},
"same,equal,equality": {"d":[{"d":"@0140","x":0,"y":160}],"h":160,"w":64},
"satellite": {"d":[{"d":"@0135","x":0,"y":96}],"h":160,"w":128},
"sauce,gravy,relish,dressing": {"d":[{"d":"@0557","x":0,"y":96}],"h":160,"w":128},
"saucepan": {"d":[{"d":"@0913","x":0,"y":128}],"h":192,"w":128},
"saw": {"d":[{"d":"@0914","x":0,"y":0}],"h":192,"w":192},
"scale,measurement": {"d":[{"d":"@0309","x":0,"y":64}],"h":192,"w":64},
"science,body_of_learning": {"d":[{"d":"@0334","x":0,"y":64}],"h":192,"w":128},
"scissors": {"d":[{"d":"@0611","x":0,"y":64}],"h":192,"w":128},
"screw": {"d":[{"d":"@0015","x":0,"y":64},{"d":"@0158","x":32,"y":128},{"d":"@0015","x":96,"y":64}],"h":192,"w":96},
"seal": {"d":[{"d":"@0916","x":0,"y":96}],"h":160,"w":240},
"seat,sitting_(sitting_person)": {"d":[{"d":"@0543","x":0,"y":128}],"h":192,"w":64},
"seaweed": {"d":[{"d":"@0917","x":0,"y":64}],"h":128,"w":128},
"secret": {"d":[{"d":"@0559","x":0,"y":64}],"h":192,"w":128},
"seed": {"d":[{"d":"@0483","x":0,"y":64}],"h":64,"w":128},
"seesaw,teeter-totter,teeter_board": {"d":[{"d":"@0919","x":0,"y":96}],"h":160,"w":128},
"selfishness,egoism": {"d":[{"d":"@0591","x":0,"y":64}],"h":192,"w":128},
"semi-detached_house": {"d":[{"d":"@0920","x":0,"y":64}],"h":192,"w":128},
"seven_(digit),7": {"d":[{"d":"@0132","x":0,"y":64}],"h":128,"w":32},
"seven_(index_number)": {"d":[{"d":"@0228","x":0,"y":64}],"h":96,"w":16},
"shallowness": {"d":[{"d":"@0921","x":0,"y":64}],"h":128,"w":64},
"shamrock,clover": {"d":[{"d":"@0171","x":0,"y":128}],"h":192,"w":128},
"shekel_(character)": {"d":[{"d":"@0923","x":0,"y":64}],"h":128,"w":64},
"shelf": {"d":[{"d":"@0924","x":0,"y":64}],"h":192,"w":128},
"shell,crust": {"d":[{"d":"@0480","x":0,"y":64}],"h":192,"w":176},
"shellfish_(without_claws)": {"d":[{"d":"@0884","x":0,"y":128}],"h":192,"w":128},
"shine": {"d":[{"d":"@0878","x":0,"y":64}],"h":192,"w":64},
"shortness_(distance,length)": {"d":[{"d":"@0754","x":0,"y":96}],"h":160,"w":64},