new tiny model
Browse files- README.md +1 -0
- config.json +28 -0
- make-tiny-layoutlm.py +85 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +1 -0
- tokenizer_config.json +1 -0
- vocab.txt +5000 -0
README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
This is a tiny-layoutlm random model to be used for basic testing.
|
config.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "microsoft/layoutlm-base-uncased",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"LayoutLMForMaskedLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"classifier_dropout": null,
|
| 8 |
+
"gradient_checkpointing": false,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_dropout_prob": 0.1,
|
| 11 |
+
"hidden_size": 32,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 64,
|
| 14 |
+
"layer_norm_eps": 1e-12,
|
| 15 |
+
"max_2d_position_embeddings": 128,
|
| 16 |
+
"max_position_embeddings": 512,
|
| 17 |
+
"model_type": "layoutlm",
|
| 18 |
+
"num_attention_heads": 2,
|
| 19 |
+
"num_hidden_layers": 2,
|
| 20 |
+
"output_past": true,
|
| 21 |
+
"pad_token_id": 0,
|
| 22 |
+
"position_embedding_type": "absolute",
|
| 23 |
+
"torch_dtype": "float16",
|
| 24 |
+
"transformers_version": "4.10.0.dev0",
|
| 25 |
+
"type_vocab_size": 2,
|
| 26 |
+
"use_cache": true,
|
| 27 |
+
"vocab_size": 5000
|
| 28 |
+
}
|
make-tiny-layoutlm.py
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
import sys
|
| 5 |
+
import os
|
| 6 |
+
|
| 7 |
+
from transformers import LayoutLMTokenizer, LayoutLMTokenizerFast, LayoutLMConfig, LayoutLMForMaskedLM
|
| 8 |
+
|
| 9 |
+
mname_orig = "microsoft/layoutlm-base-uncased"
|
| 10 |
+
mname_tiny = "tiny-layoutlm"
|
| 11 |
+
|
| 12 |
+
### Tokenizer
|
| 13 |
+
|
| 14 |
+
import json
|
| 15 |
+
from transformers import AutoTokenizer
|
| 16 |
+
from tokenizers import Tokenizer
|
| 17 |
+
vocab_keep_items = 5000
|
| 18 |
+
tokenizer = AutoTokenizer.from_pretrained(mname_orig, use_fast=True)
|
| 19 |
+
assert tokenizer.is_fast, "This only works for fast tokenizers."
|
| 20 |
+
tokenizer_json = json.loads(tokenizer._tokenizer.to_str())
|
| 21 |
+
vocab = tokenizer_json["model"]["vocab"]
|
| 22 |
+
if tokenizer_json["model"]["type"] == "BPE":
|
| 23 |
+
new_vocab = { token: i for token, i in vocab.items() if i < vocab_keep_items }
|
| 24 |
+
merges = tokenizer_json["model"]["merges"]
|
| 25 |
+
new_merges = []
|
| 26 |
+
for i in range(len(merges)):
|
| 27 |
+
a, b = merges[i].split()
|
| 28 |
+
new_token = "".join((a, b))
|
| 29 |
+
if a in new_vocab and b in new_vocab and new_token in new_vocab:
|
| 30 |
+
new_merges.append(merges[i])
|
| 31 |
+
tokenizer_json["model"]["merges"] = new_merges
|
| 32 |
+
elif tokenizer_json["model"]["type"] == "Unigram":
|
| 33 |
+
new_vocab = vocab[:vocab_keep_items]
|
| 34 |
+
elif tokenizer_json["model"]["type"] == "WordPiece" or tokenizer_json["model"]["type"] == "WordLevel":
|
| 35 |
+
new_vocab = { token: i for token, i in vocab.items() if i < vocab_keep_items }
|
| 36 |
+
else:
|
| 37 |
+
raise ValueError(f"don't know how to handle {tokenizer_json['model']['type']}")
|
| 38 |
+
tokenizer_json["model"]["vocab"] = new_vocab
|
| 39 |
+
tokenizer._tokenizer = Tokenizer.from_str(json.dumps(tokenizer_json))
|
| 40 |
+
tokenizer_fast_tiny = tokenizer
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
### Config
|
| 44 |
+
|
| 45 |
+
config_tiny = LayoutLMConfig.from_pretrained(mname_orig)
|
| 46 |
+
print(config_tiny)
|
| 47 |
+
# remember to update this to the actual config as each model is different and then shrink the numbers
|
| 48 |
+
config_tiny.update(dict(
|
| 49 |
+
vocab_size=vocab_keep_items,
|
| 50 |
+
hidden_size=32,
|
| 51 |
+
intermediate_size=64,
|
| 52 |
+
max_position_embeddings=512,
|
| 53 |
+
max_2d_position_embeddings=128,
|
| 54 |
+
num_attention_heads=2,
|
| 55 |
+
num_hidden_layers=2,
|
| 56 |
+
))
|
| 57 |
+
print("New config", config_tiny)
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
### Model
|
| 62 |
+
|
| 63 |
+
model_tiny = LayoutLMForMaskedLM(config_tiny)
|
| 64 |
+
print(f"{mname_tiny}: num of params {model_tiny.num_parameters()}")
|
| 65 |
+
model_tiny.resize_token_embeddings(len(tokenizer_fast_tiny))
|
| 66 |
+
|
| 67 |
+
# Test
|
| 68 |
+
inputs = tokenizer_fast_tiny("The capital of France is [MASK].", return_tensors="pt")
|
| 69 |
+
#print(inputs)
|
| 70 |
+
outputs = model_tiny(**inputs)
|
| 71 |
+
print("Test with normal tokenizer:", len(outputs.logits[0]))
|
| 72 |
+
|
| 73 |
+
# Save
|
| 74 |
+
model_tiny.half() # makes it smaller
|
| 75 |
+
model_tiny.save_pretrained(".")
|
| 76 |
+
tokenizer_fast_tiny.save_pretrained(".")
|
| 77 |
+
|
| 78 |
+
#print(model_tiny)
|
| 79 |
+
|
| 80 |
+
readme = "README.md"
|
| 81 |
+
if not os.path.exists(readme):
|
| 82 |
+
with open(readme, "w") as f:
|
| 83 |
+
f.write(f"This is a {mname_tiny} random model to be used for basic testing.\n")
|
| 84 |
+
|
| 85 |
+
print(f"Generated {mname_tiny}")
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a238a7e723f1805fbde73007f48ffd5fe54606369694a89ae5bd81b80ea76971
|
| 3 |
+
size 456786
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":"1.0","truncation":null,"padding":null,"added_tokens":[{"id":0,"special":true,"content":"[PAD]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":100,"special":true,"content":"[UNK]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":101,"special":true,"content":"[CLS]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":102,"special":true,"content":"[SEP]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":103,"special":true,"content":"[MASK]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false}],"normalizer":{"type":"BertNormalizer","clean_text":true,"handle_chinese_chars":true,"strip_accents":null,"lowercase":true},"pre_tokenizer":{"type":"BertPreTokenizer"},"post_processor":{"type":"TemplateProcessing","single":[{"SpecialToken":{"id":"[CLS]","type_id":0}},{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"[SEP]","type_id":0}}],"pair":[{"SpecialToken":{"id":"[CLS]","type_id":0}},{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"[SEP]","type_id":0}},{"Sequence":{"id":"B","type_id":1}},{"SpecialToken":{"id":"[SEP]","type_id":1}}],"special_tokens":{"[CLS]":{"id":"[CLS]","ids":[101],"tokens":["[CLS]"]},"[SEP]":{"id":"[SEP]","ids":[102],"tokens":["[SEP]"]}}},"decoder":{"type":"WordPiece","prefix":"##","cleanup":true},"model":{"type":"WordPiece","unk_token":"[UNK]","continuing_subword_prefix":"##","max_input_chars_per_word":100,"vocab":{"[PAD]":0,"[unused0]":1,"[unused1]":2,"[unused2]":3,"[unused3]":4,"[unused4]":5,"[unused5]":6,"[unused6]":7,"[unused7]":8,"[unused8]":9,"[unused9]":10,"[unused10]":11,"[unused11]":12,"[unused12]":13,"[unused13]":14,"[unused14]":15,"[unused15]":16,"[unused16]":17,"[unused17]":18,"[unused18]":19,"[unused19]":20,"[unused20]":21,"[unused21]":22,"[unused22]":23,"[unused23]":24,"[unused24]":25,"[unused25]":26,"[unused26]":27,"[unused27]":28,"[unused28]":29,"[unused29]":30,"[unused30]":31,"[unused31]":32,"[unused32]":33,"[unused33]":34,"[unused34]":35,"[unused35]":36,"[unused36]":37,"[unused37]":38,"[unused38]":39,"[unused39]":40,"[unused40]":41,"[unused41]":42,"[unused42]":43,"[unused43]":44,"[unused44]":45,"[unused45]":46,"[unused46]":47,"[unused47]":48,"[unused48]":49,"[unused49]":50,"[unused50]":51,"[unused51]":52,"[unused52]":53,"[unused53]":54,"[unused54]":55,"[unused55]":56,"[unused56]":57,"[unused57]":58,"[unused58]":59,"[unused59]":60,"[unused60]":61,"[unused61]":62,"[unused62]":63,"[unused63]":64,"[unused64]":65,"[unused65]":66,"[unused66]":67,"[unused67]":68,"[unused68]":69,"[unused69]":70,"[unused70]":71,"[unused71]":72,"[unused72]":73,"[unused73]":74,"[unused74]":75,"[unused75]":76,"[unused76]":77,"[unused77]":78,"[unused78]":79,"[unused79]":80,"[unused80]":81,"[unused81]":82,"[unused82]":83,"[unused83]":84,"[unused84]":85,"[unused85]":86,"[unused86]":87,"[unused87]":88,"[unused88]":89,"[unused89]":90,"[unused90]":91,"[unused91]":92,"[unused92]":93,"[unused93]":94,"[unused94]":95,"[unused95]":96,"[unused96]":97,"[unused97]":98,"[unused98]":99,"[UNK]":100,"[CLS]":101,"[SEP]":102,"[MASK]":103,"[unused99]":104,"[unused100]":105,"[unused101]":106,"[unused102]":107,"[unused103]":108,"[unused104]":109,"[unused105]":110,"[unused106]":111,"[unused107]":112,"[unused108]":113,"[unused109]":114,"[unused110]":115,"[unused111]":116,"[unused112]":117,"[unused113]":118,"[unused114]":119,"[unused115]":120,"[unused116]":121,"[unused117]":122,"[unused118]":123,"[unused119]":124,"[unused120]":125,"[unused121]":126,"[unused122]":127,"[unused123]":128,"[unused124]":129,"[unused125]":130,"[unused126]":131,"[unused127]":132,"[unused128]":133,"[unused129]":134,"[unused130]":135,"[unused131]":136,"[unused132]":137,"[unused133]":138,"[unused134]":139,"[unused135]":140,"[unused136]":141,"[unused137]":142,"[unused138]":143,"[unused139]":144,"[unused140]":145,"[unused141]":146,"[unused142]":147,"[unused143]":148,"[unused144]":149,"[unused145]":150,"[unused146]":151,"[unused147]":152,"[unused148]":153,"[unused149]":154,"[unused150]":155,"[unused151]":156,"[unused152]":157,"[unused153]":158,"[unused154]":159,"[unused155]":160,"[unused156]":161,"[unused157]":162,"[unused158]":163,"[unused159]":164,"[unused160]":165,"[unused161]":166,"[unused162]":167,"[unused163]":168,"[unused164]":169,"[unused165]":170,"[unused166]":171,"[unused167]":172,"[unused168]":173,"[unused169]":174,"[unused170]":175,"[unused171]":176,"[unused172]":177,"[unused173]":178,"[unused174]":179,"[unused175]":180,"[unused176]":181,"[unused177]":182,"[unused178]":183,"[unused179]":184,"[unused180]":185,"[unused181]":186,"[unused182]":187,"[unused183]":188,"[unused184]":189,"[unused185]":190,"[unused186]":191,"[unused187]":192,"[unused188]":193,"[unused189]":194,"[unused190]":195,"[unused191]":196,"[unused192]":197,"[unused193]":198,"[unused194]":199,"[unused195]":200,"[unused196]":201,"[unused197]":202,"[unused198]":203,"[unused199]":204,"[unused200]":205,"[unused201]":206,"[unused202]":207,"[unused203]":208,"[unused204]":209,"[unused205]":210,"[unused206]":211,"[unused207]":212,"[unused208]":213,"[unused209]":214,"[unused210]":215,"[unused211]":216,"[unused212]":217,"[unused213]":218,"[unused214]":219,"[unused215]":220,"[unused216]":221,"[unused217]":222,"[unused218]":223,"[unused219]":224,"[unused220]":225,"[unused221]":226,"[unused222]":227,"[unused223]":228,"[unused224]":229,"[unused225]":230,"[unused226]":231,"[unused227]":232,"[unused228]":233,"[unused229]":234,"[unused230]":235,"[unused231]":236,"[unused232]":237,"[unused233]":238,"[unused234]":239,"[unused235]":240,"[unused236]":241,"[unused237]":242,"[unused238]":243,"[unused239]":244,"[unused240]":245,"[unused241]":246,"[unused242]":247,"[unused243]":248,"[unused244]":249,"[unused245]":250,"[unused246]":251,"[unused247]":252,"[unused248]":253,"[unused249]":254,"[unused250]":255,"[unused251]":256,"[unused252]":257,"[unused253]":258,"[unused254]":259,"[unused255]":260,"[unused256]":261,"[unused257]":262,"[unused258]":263,"[unused259]":264,"[unused260]":265,"[unused261]":266,"[unused262]":267,"[unused263]":268,"[unused264]":269,"[unused265]":270,"[unused266]":271,"[unused267]":272,"[unused268]":273,"[unused269]":274,"[unused270]":275,"[unused271]":276,"[unused272]":277,"[unused273]":278,"[unused274]":279,"[unused275]":280,"[unused276]":281,"[unused277]":282,"[unused278]":283,"[unused279]":284,"[unused280]":285,"[unused281]":286,"[unused282]":287,"[unused283]":288,"[unused284]":289,"[unused285]":290,"[unused286]":291,"[unused287]":292,"[unused288]":293,"[unused289]":294,"[unused290]":295,"[unused291]":296,"[unused292]":297,"[unused293]":298,"[unused294]":299,"[unused295]":300,"[unused296]":301,"[unused297]":302,"[unused298]":303,"[unused299]":304,"[unused300]":305,"[unused301]":306,"[unused302]":307,"[unused303]":308,"[unused304]":309,"[unused305]":310,"[unused306]":311,"[unused307]":312,"[unused308]":313,"[unused309]":314,"[unused310]":315,"[unused311]":316,"[unused312]":317,"[unused313]":318,"[unused314]":319,"[unused315]":320,"[unused316]":321,"[unused317]":322,"[unused318]":323,"[unused319]":324,"[unused320]":325,"[unused321]":326,"[unused322]":327,"[unused323]":328,"[unused324]":329,"[unused325]":330,"[unused326]":331,"[unused327]":332,"[unused328]":333,"[unused329]":334,"[unused330]":335,"[unused331]":336,"[unused332]":337,"[unused333]":338,"[unused334]":339,"[unused335]":340,"[unused336]":341,"[unused337]":342,"[unused338]":343,"[unused339]":344,"[unused340]":345,"[unused341]":346,"[unused342]":347,"[unused343]":348,"[unused344]":349,"[unused345]":350,"[unused346]":351,"[unused347]":352,"[unused348]":353,"[unused349]":354,"[unused350]":355,"[unused351]":356,"[unused352]":357,"[unused353]":358,"[unused354]":359,"[unused355]":360,"[unused356]":361,"[unused357]":362,"[unused358]":363,"[unused359]":364,"[unused360]":365,"[unused361]":366,"[unused362]":367,"[unused363]":368,"[unused364]":369,"[unused365]":370,"[unused366]":371,"[unused367]":372,"[unused368]":373,"[unused369]":374,"[unused370]":375,"[unused371]":376,"[unused372]":377,"[unused373]":378,"[unused374]":379,"[unused375]":380,"[unused376]":381,"[unused377]":382,"[unused378]":383,"[unused379]":384,"[unused380]":385,"[unused381]":386,"[unused382]":387,"[unused383]":388,"[unused384]":389,"[unused385]":390,"[unused386]":391,"[unused387]":392,"[unused388]":393,"[unused389]":394,"[unused390]":395,"[unused391]":396,"[unused392]":397,"[unused393]":398,"[unused394]":399,"[unused395]":400,"[unused396]":401,"[unused397]":402,"[unused398]":403,"[unused399]":404,"[unused400]":405,"[unused401]":406,"[unused402]":407,"[unused403]":408,"[unused404]":409,"[unused405]":410,"[unused406]":411,"[unused407]":412,"[unused408]":413,"[unused409]":414,"[unused410]":415,"[unused411]":416,"[unused412]":417,"[unused413]":418,"[unused414]":419,"[unused415]":420,"[unused416]":421,"[unused417]":422,"[unused418]":423,"[unused419]":424,"[unused420]":425,"[unused421]":426,"[unused422]":427,"[unused423]":428,"[unused424]":429,"[unused425]":430,"[unused426]":431,"[unused427]":432,"[unused428]":433,"[unused429]":434,"[unused430]":435,"[unused431]":436,"[unused432]":437,"[unused433]":438,"[unused434]":439,"[unused435]":440,"[unused436]":441,"[unused437]":442,"[unused438]":443,"[unused439]":444,"[unused440]":445,"[unused441]":446,"[unused442]":447,"[unused443]":448,"[unused444]":449,"[unused445]":450,"[unused446]":451,"[unused447]":452,"[unused448]":453,"[unused449]":454,"[unused450]":455,"[unused451]":456,"[unused452]":457,"[unused453]":458,"[unused454]":459,"[unused455]":460,"[unused456]":461,"[unused457]":462,"[unused458]":463,"[unused459]":464,"[unused460]":465,"[unused461]":466,"[unused462]":467,"[unused463]":468,"[unused464]":469,"[unused465]":470,"[unused466]":471,"[unused467]":472,"[unused468]":473,"[unused469]":474,"[unused470]":475,"[unused471]":476,"[unused472]":477,"[unused473]":478,"[unused474]":479,"[unused475]":480,"[unused476]":481,"[unused477]":482,"[unused478]":483,"[unused479]":484,"[unused480]":485,"[unused481]":486,"[unused482]":487,"[unused483]":488,"[unused484]":489,"[unused485]":490,"[unused486]":491,"[unused487]":492,"[unused488]":493,"[unused489]":494,"[unused490]":495,"[unused491]":496,"[unused492]":497,"[unused493]":498,"[unused494]":499,"[unused495]":500,"[unused496]":501,"[unused497]":502,"[unused498]":503,"[unused499]":504,"[unused500]":505,"[unused501]":506,"[unused502]":507,"[unused503]":508,"[unused504]":509,"[unused505]":510,"[unused506]":511,"[unused507]":512,"[unused508]":513,"[unused509]":514,"[unused510]":515,"[unused511]":516,"[unused512]":517,"[unused513]":518,"[unused514]":519,"[unused515]":520,"[unused516]":521,"[unused517]":522,"[unused518]":523,"[unused519]":524,"[unused520]":525,"[unused521]":526,"[unused522]":527,"[unused523]":528,"[unused524]":529,"[unused525]":530,"[unused526]":531,"[unused527]":532,"[unused528]":533,"[unused529]":534,"[unused530]":535,"[unused531]":536,"[unused532]":537,"[unused533]":538,"[unused534]":539,"[unused535]":540,"[unused536]":541,"[unused537]":542,"[unused538]":543,"[unused539]":544,"[unused540]":545,"[unused541]":546,"[unused542]":547,"[unused543]":548,"[unused544]":549,"[unused545]":550,"[unused546]":551,"[unused547]":552,"[unused548]":553,"[unused549]":554,"[unused550]":555,"[unused551]":556,"[unused552]":557,"[unused553]":558,"[unused554]":559,"[unused555]":560,"[unused556]":561,"[unused557]":562,"[unused558]":563,"[unused559]":564,"[unused560]":565,"[unused561]":566,"[unused562]":567,"[unused563]":568,"[unused564]":569,"[unused565]":570,"[unused566]":571,"[unused567]":572,"[unused568]":573,"[unused569]":574,"[unused570]":575,"[unused571]":576,"[unused572]":577,"[unused573]":578,"[unused574]":579,"[unused575]":580,"[unused576]":581,"[unused577]":582,"[unused578]":583,"[unused579]":584,"[unused580]":585,"[unused581]":586,"[unused582]":587,"[unused583]":588,"[unused584]":589,"[unused585]":590,"[unused586]":591,"[unused587]":592,"[unused588]":593,"[unused589]":594,"[unused590]":595,"[unused591]":596,"[unused592]":597,"[unused593]":598,"[unused594]":599,"[unused595]":600,"[unused596]":601,"[unused597]":602,"[unused598]":603,"[unused599]":604,"[unused600]":605,"[unused601]":606,"[unused602]":607,"[unused603]":608,"[unused604]":609,"[unused605]":610,"[unused606]":611,"[unused607]":612,"[unused608]":613,"[unused609]":614,"[unused610]":615,"[unused611]":616,"[unused612]":617,"[unused613]":618,"[unused614]":619,"[unused615]":620,"[unused616]":621,"[unused617]":622,"[unused618]":623,"[unused619]":624,"[unused620]":625,"[unused621]":626,"[unused622]":627,"[unused623]":628,"[unused624]":629,"[unused625]":630,"[unused626]":631,"[unused627]":632,"[unused628]":633,"[unused629]":634,"[unused630]":635,"[unused631]":636,"[unused632]":637,"[unused633]":638,"[unused634]":639,"[unused635]":640,"[unused636]":641,"[unused637]":642,"[unused638]":643,"[unused639]":644,"[unused640]":645,"[unused641]":646,"[unused642]":647,"[unused643]":648,"[unused644]":649,"[unused645]":650,"[unused646]":651,"[unused647]":652,"[unused648]":653,"[unused649]":654,"[unused650]":655,"[unused651]":656,"[unused652]":657,"[unused653]":658,"[unused654]":659,"[unused655]":660,"[unused656]":661,"[unused657]":662,"[unused658]":663,"[unused659]":664,"[unused660]":665,"[unused661]":666,"[unused662]":667,"[unused663]":668,"[unused664]":669,"[unused665]":670,"[unused666]":671,"[unused667]":672,"[unused668]":673,"[unused669]":674,"[unused670]":675,"[unused671]":676,"[unused672]":677,"[unused673]":678,"[unused674]":679,"[unused675]":680,"[unused676]":681,"[unused677]":682,"[unused678]":683,"[unused679]":684,"[unused680]":685,"[unused681]":686,"[unused682]":687,"[unused683]":688,"[unused684]":689,"[unused685]":690,"[unused686]":691,"[unused687]":692,"[unused688]":693,"[unused689]":694,"[unused690]":695,"[unused691]":696,"[unused692]":697,"[unused693]":698,"[unused694]":699,"[unused695]":700,"[unused696]":701,"[unused697]":702,"[unused698]":703,"[unused699]":704,"[unused700]":705,"[unused701]":706,"[unused702]":707,"[unused703]":708,"[unused704]":709,"[unused705]":710,"[unused706]":711,"[unused707]":712,"[unused708]":713,"[unused709]":714,"[unused710]":715,"[unused711]":716,"[unused712]":717,"[unused713]":718,"[unused714]":719,"[unused715]":720,"[unused716]":721,"[unused717]":722,"[unused718]":723,"[unused719]":724,"[unused720]":725,"[unused721]":726,"[unused722]":727,"[unused723]":728,"[unused724]":729,"[unused725]":730,"[unused726]":731,"[unused727]":732,"[unused728]":733,"[unused729]":734,"[unused730]":735,"[unused731]":736,"[unused732]":737,"[unused733]":738,"[unused734]":739,"[unused735]":740,"[unused736]":741,"[unused737]":742,"[unused738]":743,"[unused739]":744,"[unused740]":745,"[unused741]":746,"[unused742]":747,"[unused743]":748,"[unused744]":749,"[unused745]":750,"[unused746]":751,"[unused747]":752,"[unused748]":753,"[unused749]":754,"[unused750]":755,"[unused751]":756,"[unused752]":757,"[unused753]":758,"[unused754]":759,"[unused755]":760,"[unused756]":761,"[unused757]":762,"[unused758]":763,"[unused759]":764,"[unused760]":765,"[unused761]":766,"[unused762]":767,"[unused763]":768,"[unused764]":769,"[unused765]":770,"[unused766]":771,"[unused767]":772,"[unused768]":773,"[unused769]":774,"[unused770]":775,"[unused771]":776,"[unused772]":777,"[unused773]":778,"[unused774]":779,"[unused775]":780,"[unused776]":781,"[unused777]":782,"[unused778]":783,"[unused779]":784,"[unused780]":785,"[unused781]":786,"[unused782]":787,"[unused783]":788,"[unused784]":789,"[unused785]":790,"[unused786]":791,"[unused787]":792,"[unused788]":793,"[unused789]":794,"[unused790]":795,"[unused791]":796,"[unused792]":797,"[unused793]":798,"[unused794]":799,"[unused795]":800,"[unused796]":801,"[unused797]":802,"[unused798]":803,"[unused799]":804,"[unused800]":805,"[unused801]":806,"[unused802]":807,"[unused803]":808,"[unused804]":809,"[unused805]":810,"[unused806]":811,"[unused807]":812,"[unused808]":813,"[unused809]":814,"[unused810]":815,"[unused811]":816,"[unused812]":817,"[unused813]":818,"[unused814]":819,"[unused815]":820,"[unused816]":821,"[unused817]":822,"[unused818]":823,"[unused819]":824,"[unused820]":825,"[unused821]":826,"[unused822]":827,"[unused823]":828,"[unused824]":829,"[unused825]":830,"[unused826]":831,"[unused827]":832,"[unused828]":833,"[unused829]":834,"[unused830]":835,"[unused831]":836,"[unused832]":837,"[unused833]":838,"[unused834]":839,"[unused835]":840,"[unused836]":841,"[unused837]":842,"[unused838]":843,"[unused839]":844,"[unused840]":845,"[unused841]":846,"[unused842]":847,"[unused843]":848,"[unused844]":849,"[unused845]":850,"[unused846]":851,"[unused847]":852,"[unused848]":853,"[unused849]":854,"[unused850]":855,"[unused851]":856,"[unused852]":857,"[unused853]":858,"[unused854]":859,"[unused855]":860,"[unused856]":861,"[unused857]":862,"[unused858]":863,"[unused859]":864,"[unused860]":865,"[unused861]":866,"[unused862]":867,"[unused863]":868,"[unused864]":869,"[unused865]":870,"[unused866]":871,"[unused867]":872,"[unused868]":873,"[unused869]":874,"[unused870]":875,"[unused871]":876,"[unused872]":877,"[unused873]":878,"[unused874]":879,"[unused875]":880,"[unused876]":881,"[unused877]":882,"[unused878]":883,"[unused879]":884,"[unused880]":885,"[unused881]":886,"[unused882]":887,"[unused883]":888,"[unused884]":889,"[unused885]":890,"[unused886]":891,"[unused887]":892,"[unused888]":893,"[unused889]":894,"[unused890]":895,"[unused891]":896,"[unused892]":897,"[unused893]":898,"[unused894]":899,"[unused895]":900,"[unused896]":901,"[unused897]":902,"[unused898]":903,"[unused899]":904,"[unused900]":905,"[unused901]":906,"[unused902]":907,"[unused903]":908,"[unused904]":909,"[unused905]":910,"[unused906]":911,"[unused907]":912,"[unused908]":913,"[unused909]":914,"[unused910]":915,"[unused911]":916,"[unused912]":917,"[unused913]":918,"[unused914]":919,"[unused915]":920,"[unused916]":921,"[unused917]":922,"[unused918]":923,"[unused919]":924,"[unused920]":925,"[unused921]":926,"[unused922]":927,"[unused923]":928,"[unused924]":929,"[unused925]":930,"[unused926]":931,"[unused927]":932,"[unused928]":933,"[unused929]":934,"[unused930]":935,"[unused931]":936,"[unused932]":937,"[unused933]":938,"[unused934]":939,"[unused935]":940,"[unused936]":941,"[unused937]":942,"[unused938]":943,"[unused939]":944,"[unused940]":945,"[unused941]":946,"[unused942]":947,"[unused943]":948,"[unused944]":949,"[unused945]":950,"[unused946]":951,"[unused947]":952,"[unused948]":953,"[unused949]":954,"[unused950]":955,"[unused951]":956,"[unused952]":957,"[unused953]":958,"[unused954]":959,"[unused955]":960,"[unused956]":961,"[unused957]":962,"[unused958]":963,"[unused959]":964,"[unused960]":965,"[unused961]":966,"[unused962]":967,"[unused963]":968,"[unused964]":969,"[unused965]":970,"[unused966]":971,"[unused967]":972,"[unused968]":973,"[unused969]":974,"[unused970]":975,"[unused971]":976,"[unused972]":977,"[unused973]":978,"[unused974]":979,"[unused975]":980,"[unused976]":981,"[unused977]":982,"[unused978]":983,"[unused979]":984,"[unused980]":985,"[unused981]":986,"[unused982]":987,"[unused983]":988,"[unused984]":989,"[unused985]":990,"[unused986]":991,"[unused987]":992,"[unused988]":993,"[unused989]":994,"[unused990]":995,"[unused991]":996,"[unused992]":997,"[unused993]":998,"!":999,"\"":1000,"#":1001,"$":1002,"%":1003,"&":1004,"'":1005,"(":1006,")":1007,"*":1008,"+":1009,",":1010,"-":1011,".":1012,"/":1013,"0":1014,"1":1015,"2":1016,"3":1017,"4":1018,"5":1019,"6":1020,"7":1021,"8":1022,"9":1023,":":1024,";":1025,"<":1026,"=":1027,">":1028,"?":1029,"@":1030,"[":1031,"\\":1032,"]":1033,"^":1034,"_":1035,"`":1036,"a":1037,"b":1038,"c":1039,"d":1040,"e":1041,"f":1042,"g":1043,"h":1044,"i":1045,"j":1046,"k":1047,"l":1048,"m":1049,"n":1050,"o":1051,"p":1052,"q":1053,"r":1054,"s":1055,"t":1056,"u":1057,"v":1058,"w":1059,"x":1060,"y":1061,"z":1062,"{":1063,"|":1064,"}":1065,"~":1066,"¡":1067,"¢":1068,"£":1069,"¤":1070,"¥":1071,"¦":1072,"§":1073,"¨":1074,"©":1075,"ª":1076,"«":1077,"¬":1078,"®":1079,"°":1080,"±":1081,"²":1082,"³":1083,"´":1084,"µ":1085,"¶":1086,"·":1087,"¹":1088,"º":1089,"»":1090,"¼":1091,"½":1092,"¾":1093,"¿":1094,"×":1095,"ß":1096,"æ":1097,"ð":1098,"÷":1099,"ø":1100,"þ":1101,"đ":1102,"ħ":1103,"ı":1104,"ł":1105,"ŋ":1106,"œ":1107,"ƒ":1108,"ɐ":1109,"ɑ":1110,"ɒ":1111,"ɔ":1112,"ɕ":1113,"ə":1114,"ɛ":1115,"ɡ":1116,"ɣ":1117,"ɨ":1118,"ɪ":1119,"ɫ":1120,"ɬ":1121,"ɯ":1122,"ɲ":1123,"ɴ":1124,"ɹ":1125,"ɾ":1126,"ʀ":1127,"ʁ":1128,"ʂ":1129,"ʃ":1130,"ʉ":1131,"ʊ":1132,"ʋ":1133,"ʌ":1134,"ʎ":1135,"ʐ":1136,"ʑ":1137,"ʒ":1138,"ʔ":1139,"ʰ":1140,"ʲ":1141,"ʳ":1142,"ʷ":1143,"ʸ":1144,"ʻ":1145,"ʼ":1146,"ʾ":1147,"ʿ":1148,"ˈ":1149,"ː":1150,"ˡ":1151,"ˢ":1152,"ˣ":1153,"ˤ":1154,"α":1155,"β":1156,"γ":1157,"δ":1158,"ε":1159,"ζ":1160,"η":1161,"θ":1162,"ι":1163,"κ":1164,"λ":1165,"μ":1166,"ν":1167,"ξ":1168,"ο":1169,"π":1170,"ρ":1171,"ς":1172,"σ":1173,"τ":1174,"υ":1175,"φ":1176,"χ":1177,"ψ":1178,"ω":1179,"а":1180,"б":1181,"в":1182,"г":1183,"д":1184,"е":1185,"ж":1186,"з":1187,"и":1188,"к":1189,"л":1190,"м":1191,"н":1192,"о":1193,"п":1194,"р":1195,"с":1196,"т":1197,"у":1198,"ф":1199,"х":1200,"ц":1201,"ч":1202,"ш":1203,"щ":1204,"ъ":1205,"ы":1206,"ь":1207,"э":1208,"ю":1209,"я":1210,"ђ":1211,"є":1212,"і":1213,"ј":1214,"љ":1215,"њ":1216,"ћ":1217,"ӏ":1218,"ա":1219,"բ":1220,"գ":1221,"դ":1222,"ե":1223,"թ":1224,"ի":1225,"լ":1226,"կ":1227,"հ":1228,"մ":1229,"յ":1230,"ն":1231,"ո":1232,"պ":1233,"ս":1234,"վ":1235,"տ":1236,"ր":1237,"ւ":1238,"ք":1239,"־":1240,"א":1241,"ב":1242,"ג":1243,"ד":1244,"ה":1245,"ו":1246,"ז":1247,"ח":1248,"ט":1249,"י":1250,"ך":1251,"כ":1252,"ל":1253,"ם":1254,"מ":1255,"ן":1256,"נ":1257,"ס":1258,"ע":1259,"ף":1260,"פ":1261,"ץ":1262,"צ":1263,"ק":1264,"ר":1265,"ש":1266,"ת":1267,"،":1268,"ء":1269,"ا":1270,"ب":1271,"ة":1272,"ت":1273,"ث":1274,"ج":1275,"ح":1276,"خ":1277,"د":1278,"ذ":1279,"ر":1280,"ز":1281,"س":1282,"ش":1283,"ص":1284,"ض":1285,"ط":1286,"ظ":1287,"ع":1288,"غ":1289,"ـ":1290,"ف":1291,"ق":1292,"ك":1293,"ل":1294,"م":1295,"ن":1296,"ه":1297,"و":1298,"ى":1299,"ي":1300,"ٹ":1301,"پ":1302,"چ":1303,"ک":1304,"گ":1305,"ں":1306,"ھ":1307,"ہ":1308,"ی":1309,"ے":1310,"अ":1311,"आ":1312,"उ":1313,"ए":1314,"क":1315,"ख":1316,"ग":1317,"च":1318,"ज":1319,"ट":1320,"ड":1321,"ण":1322,"त":1323,"थ":1324,"द":1325,"ध":1326,"न":1327,"प":1328,"ब":1329,"भ":1330,"म":1331,"य":1332,"र":1333,"ल":1334,"व":1335,"श":1336,"ष":1337,"स":1338,"ह":1339,"ा":1340,"ि":1341,"ी":1342,"ो":1343,"।":1344,"॥":1345,"ং":1346,"অ":1347,"আ":1348,"ই":1349,"উ":1350,"এ":1351,"ও":1352,"ক":1353,"খ":1354,"গ":1355,"চ":1356,"ছ":1357,"জ":1358,"ট":1359,"ড":1360,"ণ":1361,"ত":1362,"থ":1363,"দ":1364,"ধ":1365,"ন":1366,"প":1367,"ব":1368,"ভ":1369,"ম":1370,"য":1371,"র":1372,"ল":1373,"শ":1374,"ষ":1375,"স":1376,"হ":1377,"া":1378,"ি":1379,"ী":1380,"ে":1381,"க":1382,"ச":1383,"ட":1384,"த":1385,"ந":1386,"ன":1387,"ப":1388,"ம":1389,"ய":1390,"ர":1391,"ல":1392,"ள":1393,"வ":1394,"ா":1395,"ி":1396,"ு":1397,"ே":1398,"ை":1399,"ನ":1400,"ರ":1401,"ಾ":1402,"ක":1403,"ය":1404,"ර":1405,"ල":1406,"ව":1407,"ා":1408,"ก":1409,"ง":1410,"ต":1411,"ท":1412,"น":1413,"พ":1414,"ม":1415,"ย":1416,"ร":1417,"ล":1418,"ว":1419,"ส":1420,"อ":1421,"า":1422,"เ":1423,"་":1424,"།":1425,"ག":1426,"ང":1427,"ད":1428,"ན":1429,"པ":1430,"བ":1431,"མ":1432,"འ":1433,"ར":1434,"ལ":1435,"ས":1436,"မ":1437,"ა":1438,"ბ":1439,"გ":1440,"დ":1441,"ე":1442,"ვ":1443,"თ":1444,"ი":1445,"კ":1446,"ლ":1447,"მ":1448,"ნ":1449,"ო":1450,"რ":1451,"ს":1452,"ტ":1453,"უ":1454,"ᄀ":1455,"ᄂ":1456,"ᄃ":1457,"ᄅ":1458,"ᄆ":1459,"ᄇ":1460,"ᄉ":1461,"ᄊ":1462,"ᄋ":1463,"ᄌ":1464,"ᄎ":1465,"ᄏ":1466,"ᄐ":1467,"ᄑ":1468,"ᄒ":1469,"ᅡ":1470,"ᅢ":1471,"ᅥ":1472,"ᅦ":1473,"ᅧ":1474,"ᅩ":1475,"ᅪ":1476,"ᅭ":1477,"ᅮ":1478,"ᅯ":1479,"ᅲ":1480,"ᅳ":1481,"ᅴ":1482,"ᅵ":1483,"ᆨ":1484,"ᆫ":1485,"ᆯ":1486,"ᆷ":1487,"ᆸ":1488,"ᆼ":1489,"ᴬ":1490,"ᴮ":1491,"ᴰ":1492,"ᴵ":1493,"ᴺ":1494,"ᵀ":1495,"ᵃ":1496,"ᵇ":1497,"ᵈ":1498,"ᵉ":1499,"ᵍ":1500,"ᵏ":1501,"ᵐ":1502,"ᵒ":1503,"ᵖ":1504,"ᵗ":1505,"ᵘ":1506,"ᵢ":1507,"ᵣ":1508,"ᵤ":1509,"ᵥ":1510,"ᶜ":1511,"ᶠ":1512,"‐":1513,"‑":1514,"‒":1515,"–":1516,"—":1517,"―":1518,"‖":1519,"‘":1520,"’":1521,"‚":1522,"“":1523,"”":1524,"„":1525,"†":1526,"‡":1527,"•":1528,"…":1529,"‰":1530,"′":1531,"″":1532,"›":1533,"‿":1534,"⁄":1535,"⁰":1536,"ⁱ":1537,"⁴":1538,"⁵":1539,"⁶":1540,"⁷":1541,"⁸":1542,"⁹":1543,"⁺":1544,"⁻":1545,"ⁿ":1546,"₀":1547,"₁":1548,"₂":1549,"₃":1550,"₄":1551,"₅":1552,"₆":1553,"₇":1554,"₈":1555,"₉":1556,"₊":1557,"₍":1558,"₎":1559,"ₐ":1560,"ₑ":1561,"ₒ":1562,"ₓ":1563,"ₕ":1564,"ₖ":1565,"ₗ":1566,"ₘ":1567,"ₙ":1568,"ₚ":1569,"ₛ":1570,"ₜ":1571,"₤":1572,"₩":1573,"€":1574,"₱":1575,"₹":1576,"ℓ":1577,"№":1578,"ℝ":1579,"™":1580,"⅓":1581,"⅔":1582,"←":1583,"↑":1584,"→":1585,"↓":1586,"↔":1587,"↦":1588,"⇄":1589,"⇌":1590,"⇒":1591,"∂":1592,"∅":1593,"∆":1594,"∇":1595,"∈":1596,"−":1597,"∗":1598,"∘":1599,"√":1600,"∞":1601,"∧":1602,"∨":1603,"∩":1604,"∪":1605,"≈":1606,"≡":1607,"≤":1608,"≥":1609,"⊂":1610,"⊆":1611,"⊕":1612,"⊗":1613,"⋅":1614,"─":1615,"│":1616,"■":1617,"▪":1618,"●":1619,"★":1620,"☆":1621,"☉":1622,"♠":1623,"♣":1624,"♥":1625,"♦":1626,"♭":1627,"♯":1628,"⟨":1629,"⟩":1630,"ⱼ":1631,"⺩":1632,"⺼":1633,"⽥":1634,"、":1635,"。":1636,"〈":1637,"〉":1638,"《":1639,"》":1640,"「":1641,"」":1642,"『":1643,"』":1644,"〜":1645,"あ":1646,"い":1647,"う":1648,"え":1649,"お":1650,"か":1651,"き":1652,"く":1653,"け":1654,"こ":1655,"さ":1656,"し":1657,"す":1658,"せ":1659,"そ":1660,"た":1661,"ち":1662,"っ":1663,"つ":1664,"て":1665,"と":1666,"な":1667,"に":1668,"ぬ":1669,"ね":1670,"の":1671,"は":1672,"ひ":1673,"ふ":1674,"へ":1675,"ほ":1676,"ま":1677,"み":1678,"む":1679,"め":1680,"も":1681,"や":1682,"ゆ":1683,"よ":1684,"ら":1685,"り":1686,"る":1687,"れ":1688,"ろ":1689,"を":1690,"ん":1691,"ァ":1692,"ア":1693,"ィ":1694,"イ":1695,"ウ":1696,"ェ":1697,"エ":1698,"オ":1699,"カ":1700,"キ":1701,"ク":1702,"ケ":1703,"コ":1704,"サ":1705,"シ":1706,"ス":1707,"セ":1708,"タ":1709,"チ":1710,"ッ":1711,"ツ":1712,"テ":1713,"ト":1714,"ナ":1715,"ニ":1716,"ノ":1717,"ハ":1718,"ヒ":1719,"フ":1720,"ヘ":1721,"ホ":1722,"マ":1723,"ミ":1724,"ム":1725,"メ":1726,"モ":1727,"ャ":1728,"ュ":1729,"ョ":1730,"ラ":1731,"リ":1732,"ル":1733,"レ":1734,"ロ":1735,"ワ":1736,"ン":1737,"・":1738,"ー":1739,"一":1740,"三":1741,"上":1742,"下":1743,"不":1744,"世":1745,"中":1746,"主":1747,"久":1748,"之":1749,"也":1750,"事":1751,"二":1752,"五":1753,"井":1754,"京":1755,"人":1756,"亻":1757,"仁":1758,"介":1759,"代":1760,"仮":1761,"伊":1762,"会":1763,"佐":1764,"侍":1765,"保":1766,"信":1767,"健":1768,"元":1769,"光":1770,"八":1771,"公":1772,"内":1773,"出":1774,"分":1775,"前":1776,"劉":1777,"力":1778,"加":1779,"勝":1780,"北":1781,"区":1782,"十":1783,"千":1784,"南":1785,"博":1786,"原":1787,"口":1788,"古":1789,"史":1790,"司":1791,"合":1792,"吉":1793,"同":1794,"名":1795,"和":1796,"囗":1797,"四":1798,"国":1799,"國":1800,"土":1801,"地":1802,"坂":1803,"城":1804,"堂":1805,"場":1806,"士":1807,"夏":1808,"外":1809,"大":1810,"天":1811,"太":1812,"夫":1813,"奈":1814,"女":1815,"子":1816,"学":1817,"宀":1818,"宇":1819,"安":1820,"宗":1821,"定":1822,"宣":1823,"宮":1824,"家":1825,"宿":1826,"寺":1827,"將":1828,"小":1829,"尚":1830,"山":1831,"岡":1832,"島":1833,"崎":1834,"川":1835,"州":1836,"巿":1837,"帝":1838,"平":1839,"年":1840,"幸":1841,"广":1842,"弘":1843,"張":1844,"彳":1845,"後":1846,"御":1847,"德":1848,"心":1849,"忄":1850,"志":1851,"忠":1852,"愛":1853,"成":1854,"我":1855,"戦":1856,"戸":1857,"手":1858,"扌":1859,"政":1860,"文":1861,"新":1862,"方":1863,"日":1864,"明":1865,"星":1866,"春":1867,"昭":1868,"智":1869,"曲":1870,"書":1871,"月":1872,"有":1873,"朝":1874,"木":1875,"本":1876,"李":1877,"村":1878,"東":1879,"松":1880,"林":1881,"森":1882,"楊":1883,"樹":1884,"橋":1885,"歌":1886,"止":1887,"正":1888,"武":1889,"比":1890,"氏":1891,"民":1892,"水":1893,"氵":1894,"氷":1895,"永":1896,"江":1897,"沢":1898,"河":1899,"治":1900,"法":1901,"海":1902,"清":1903,"漢":1904,"瀬":1905,"火":1906,"版":1907,"犬":1908,"王":1909,"生":1910,"田":1911,"男":1912,"疒":1913,"発":1914,"白":1915,"的":1916,"皇":1917,"目":1918,"相":1919,"省":1920,"真":1921,"石":1922,"示":1923,"社":1924,"神":1925,"福":1926,"禾":1927,"秀":1928,"秋":1929,"空":1930,"立":1931,"章":1932,"竹":1933,"糹":1934,"美":1935,"義":1936,"耳":1937,"良":1938,"艹":1939,"花":1940,"英":1941,"華":1942,"葉":1943,"藤":1944,"行":1945,"街":1946,"西":1947,"見":1948,"訁":1949,"語":1950,"谷":1951,"貝":1952,"貴":1953,"車":1954,"軍":1955,"辶":1956,"道":1957,"郎":1958,"郡":1959,"部":1960,"都":1961,"里":1962,"野":1963,"金":1964,"鈴":1965,"镇":1966,"長":1967,"門":1968,"間":1969,"阝":1970,"阿":1971,"陳":1972,"陽":1973,"雄":1974,"青":1975,"面":1976,"風":1977,"食":1978,"香":1979,"馬":1980,"高":1981,"龍":1982,"龸":1983,"fi":1984,"fl":1985,"!":1986,"(":1987,")":1988,",":1989,"-":1990,".":1991,"/":1992,":":1993,"?":1994,"~":1995,"the":1996,"of":1997,"and":1998,"in":1999,"to":2000,"was":2001,"he":2002,"is":2003,"as":2004,"for":2005,"on":2006,"with":2007,"that":2008,"it":2009,"his":2010,"by":2011,"at":2012,"from":2013,"her":2014,"##s":2015,"she":2016,"you":2017,"had":2018,"an":2019,"were":2020,"but":2021,"be":2022,"this":2023,"are":2024,"not":2025,"my":2026,"they":2027,"one":2028,"which":2029,"or":2030,"have":2031,"him":2032,"me":2033,"first":2034,"all":2035,"also":2036,"their":2037,"has":2038,"up":2039,"who":2040,"out":2041,"been":2042,"when":2043,"after":2044,"there":2045,"into":2046,"new":2047,"two":2048,"its":2049,"##a":2050,"time":2051,"would":2052,"no":2053,"what":2054,"about":2055,"said":2056,"we":2057,"over":2058,"then":2059,"other":2060,"so":2061,"more":2062,"##e":2063,"can":2064,"if":2065,"like":2066,"back":2067,"them":2068,"only":2069,"some":2070,"could":2071,"##i":2072,"where":2073,"just":2074,"##ing":2075,"during":2076,"before":2077,"##n":2078,"do":2079,"##o":2080,"made":2081,"school":2082,"through":2083,"than":2084,"now":2085,"years":2086,"most":2087,"world":2088,"may":2089,"between":2090,"down":2091,"well":2092,"three":2093,"##d":2094,"year":2095,"while":2096,"will":2097,"##ed":2098,"##r":2099,"##y":2100,"later":2101,"##t":2102,"city":2103,"under":2104,"around":2105,"did":2106,"such":2107,"being":2108,"used":2109,"state":2110,"people":2111,"part":2112,"know":2113,"against":2114,"your":2115,"many":2116,"second":2117,"university":2118,"both":2119,"national":2120,"##er":2121,"these":2122,"don":2123,"known":2124,"off":2125,"way":2126,"until":2127,"re":2128,"how":2129,"even":2130,"get":2131,"head":2132,"...":2133,"didn":2134,"##ly":2135,"team":2136,"american":2137,"because":2138,"de":2139,"##l":2140,"born":2141,"united":2142,"film":2143,"since":2144,"still":2145,"long":2146,"work":2147,"south":2148,"us":2149,"became":2150,"any":2151,"high":2152,"again":2153,"day":2154,"family":2155,"see":2156,"right":2157,"man":2158,"eyes":2159,"house":2160,"season":2161,"war":2162,"states":2163,"including":2164,"took":2165,"life":2166,"north":2167,"same":2168,"each":2169,"called":2170,"name":2171,"much":2172,"place":2173,"however":2174,"go":2175,"four":2176,"group":2177,"another":2178,"found":2179,"won":2180,"area":2181,"here":2182,"going":2183,"10":2184,"away":2185,"series":2186,"left":2187,"home":2188,"music":2189,"best":2190,"make":2191,"hand":2192,"number":2193,"company":2194,"several":2195,"never":2196,"last":2197,"john":2198,"000":2199,"very":2200,"album":2201,"take":2202,"end":2203,"good":2204,"too":2205,"following":2206,"released":2207,"game":2208,"played":2209,"little":2210,"began":2211,"district":2212,"##m":2213,"old":2214,"want":2215,"those":2216,"side":2217,"held":2218,"own":2219,"early":2220,"county":2221,"ll":2222,"league":2223,"use":2224,"west":2225,"##u":2226,"face":2227,"think":2228,"##es":2229,"2010":2230,"government":2231,"##h":2232,"march":2233,"came":2234,"small":2235,"general":2236,"town":2237,"june":2238,"##on":2239,"line":2240,"based":2241,"something":2242,"##k":2243,"september":2244,"thought":2245,"looked":2246,"along":2247,"international":2248,"2011":2249,"air":2250,"july":2251,"club":2252,"went":2253,"january":2254,"october":2255,"our":2256,"august":2257,"april":2258,"york":2259,"12":2260,"few":2261,"2012":2262,"2008":2263,"east":2264,"show":2265,"member":2266,"college":2267,"2009":2268,"father":2269,"public":2270,"##us":2271,"come":2272,"men":2273,"five":2274,"set":2275,"station":2276,"church":2277,"##c":2278,"next":2279,"former":2280,"november":2281,"room":2282,"party":2283,"located":2284,"december":2285,"2013":2286,"age":2287,"got":2288,"2007":2289,"##g":2290,"system":2291,"let":2292,"love":2293,"2006":2294,"though":2295,"every":2296,"2014":2297,"look":2298,"song":2299,"water":2300,"century":2301,"without":2302,"body":2303,"black":2304,"night":2305,"within":2306,"great":2307,"women":2308,"single":2309,"ve":2310,"building":2311,"large":2312,"population":2313,"river":2314,"named":2315,"band":2316,"white":2317,"started":2318,"##an":2319,"once":2320,"15":2321,"20":2322,"should":2323,"18":2324,"2015":2325,"service":2326,"top":2327,"built":2328,"british":2329,"open":2330,"death":2331,"king":2332,"moved":2333,"local":2334,"times":2335,"children":2336,"february":2337,"book":2338,"why":2339,"11":2340,"door":2341,"need":2342,"president":2343,"order":2344,"final":2345,"road":2346,"wasn":2347,"although":2348,"due":2349,"major":2350,"died":2351,"village":2352,"third":2353,"knew":2354,"2016":2355,"asked":2356,"turned":2357,"st":2358,"wanted":2359,"say":2360,"##p":2361,"together":2362,"received":2363,"main":2364,"son":2365,"served":2366,"different":2367,"##en":2368,"behind":2369,"himself":2370,"felt":2371,"members":2372,"power":2373,"football":2374,"law":2375,"voice":2376,"play":2377,"##in":2378,"near":2379,"park":2380,"history":2381,"30":2382,"having":2383,"2005":2384,"16":2385,"##man":2386,"saw":2387,"mother":2388,"##al":2389,"army":2390,"point":2391,"front":2392,"help":2393,"english":2394,"street":2395,"art":2396,"late":2397,"hands":2398,"games":2399,"award":2400,"##ia":2401,"young":2402,"14":2403,"put":2404,"published":2405,"country":2406,"division":2407,"across":2408,"told":2409,"13":2410,"often":2411,"ever":2412,"french":2413,"london":2414,"center":2415,"six":2416,"red":2417,"2017":2418,"led":2419,"days":2420,"include":2421,"light":2422,"25":2423,"find":2424,"tell":2425,"among":2426,"species":2427,"really":2428,"according":2429,"central":2430,"half":2431,"2004":2432,"form":2433,"original":2434,"gave":2435,"office":2436,"making":2437,"enough":2438,"lost":2439,"full":2440,"opened":2441,"must":2442,"included":2443,"live":2444,"given":2445,"german":2446,"player":2447,"run":2448,"business":2449,"woman":2450,"community":2451,"cup":2452,"might":2453,"million":2454,"land":2455,"2000":2456,"court":2457,"development":2458,"17":2459,"short":2460,"round":2461,"ii":2462,"km":2463,"seen":2464,"class":2465,"story":2466,"always":2467,"become":2468,"sure":2469,"research":2470,"almost":2471,"director":2472,"council":2473,"la":2474,"##2":2475,"career":2476,"things":2477,"using":2478,"island":2479,"##z":2480,"couldn":2481,"car":2482,"##is":2483,"24":2484,"close":2485,"force":2486,"##1":2487,"better":2488,"free":2489,"support":2490,"control":2491,"field":2492,"students":2493,"2003":2494,"education":2495,"married":2496,"##b":2497,"nothing":2498,"worked":2499,"others":2500,"record":2501,"big":2502,"inside":2503,"level":2504,"anything":2505,"continued":2506,"give":2507,"james":2508,"##3":2509,"military":2510,"established":2511,"non":2512,"returned":2513,"feel":2514,"does":2515,"title":2516,"written":2517,"thing":2518,"feet":2519,"william":2520,"far":2521,"co":2522,"association":2523,"hard":2524,"already":2525,"2002":2526,"##ra":2527,"championship":2528,"human":2529,"western":2530,"100":2531,"##na":2532,"department":2533,"hall":2534,"role":2535,"various":2536,"production":2537,"21":2538,"19":2539,"heart":2540,"2001":2541,"living":2542,"fire":2543,"version":2544,"##ers":2545,"##f":2546,"television":2547,"royal":2548,"##4":2549,"produced":2550,"working":2551,"act":2552,"case":2553,"society":2554,"region":2555,"present":2556,"radio":2557,"period":2558,"looking":2559,"least":2560,"total":2561,"keep":2562,"england":2563,"wife":2564,"program":2565,"per":2566,"brother":2567,"mind":2568,"special":2569,"22":2570,"##le":2571,"am":2572,"works":2573,"soon":2574,"##6":2575,"political":2576,"george":2577,"services":2578,"taken":2579,"created":2580,"##7":2581,"further":2582,"able":2583,"reached":2584,"david":2585,"union":2586,"joined":2587,"upon":2588,"done":2589,"important":2590,"social":2591,"information":2592,"either":2593,"##ic":2594,"##x":2595,"appeared":2596,"position":2597,"ground":2598,"lead":2599,"rock":2600,"dark":2601,"election":2602,"23":2603,"board":2604,"france":2605,"hair":2606,"course":2607,"arms":2608,"site":2609,"police":2610,"girl":2611,"instead":2612,"real":2613,"sound":2614,"##v":2615,"words":2616,"moment":2617,"##te":2618,"someone":2619,"##8":2620,"summer":2621,"project":2622,"announced":2623,"san":2624,"less":2625,"wrote":2626,"past":2627,"followed":2628,"##5":2629,"blue":2630,"founded":2631,"al":2632,"finally":2633,"india":2634,"taking":2635,"records":2636,"america":2637,"##ne":2638,"1999":2639,"design":2640,"considered":2641,"northern":2642,"god":2643,"stop":2644,"battle":2645,"toward":2646,"european":2647,"outside":2648,"described":2649,"track":2650,"today":2651,"playing":2652,"language":2653,"28":2654,"call":2655,"26":2656,"heard":2657,"professional":2658,"low":2659,"australia":2660,"miles":2661,"california":2662,"win":2663,"yet":2664,"green":2665,"##ie":2666,"trying":2667,"blood":2668,"##ton":2669,"southern":2670,"science":2671,"maybe":2672,"everything":2673,"match":2674,"square":2675,"27":2676,"mouth":2677,"video":2678,"race":2679,"recorded":2680,"leave":2681,"above":2682,"##9":2683,"daughter":2684,"points":2685,"space":2686,"1998":2687,"museum":2688,"change":2689,"middle":2690,"common":2691,"##0":2692,"move":2693,"tv":2694,"post":2695,"##ta":2696,"lake":2697,"seven":2698,"tried":2699,"elected":2700,"closed":2701,"ten":2702,"paul":2703,"minister":2704,"##th":2705,"months":2706,"start":2707,"chief":2708,"return":2709,"canada":2710,"person":2711,"sea":2712,"release":2713,"similar":2714,"modern":2715,"brought":2716,"rest":2717,"hit":2718,"formed":2719,"mr":2720,"##la":2721,"1997":2722,"floor":2723,"event":2724,"doing":2725,"thomas":2726,"1996":2727,"robert":2728,"care":2729,"killed":2730,"training":2731,"star":2732,"week":2733,"needed":2734,"turn":2735,"finished":2736,"railway":2737,"rather":2738,"news":2739,"health":2740,"sent":2741,"example":2742,"ran":2743,"term":2744,"michael":2745,"coming":2746,"currently":2747,"yes":2748,"forces":2749,"despite":2750,"gold":2751,"areas":2752,"50":2753,"stage":2754,"fact":2755,"29":2756,"dead":2757,"says":2758,"popular":2759,"2018":2760,"originally":2761,"germany":2762,"probably":2763,"developed":2764,"result":2765,"pulled":2766,"friend":2767,"stood":2768,"money":2769,"running":2770,"mi":2771,"signed":2772,"word":2773,"songs":2774,"child":2775,"eventually":2776,"met":2777,"tour":2778,"average":2779,"teams":2780,"minutes":2781,"festival":2782,"current":2783,"deep":2784,"kind":2785,"1995":2786,"decided":2787,"usually":2788,"eastern":2789,"seemed":2790,"##ness":2791,"episode":2792,"bed":2793,"added":2794,"table":2795,"indian":2796,"private":2797,"charles":2798,"route":2799,"available":2800,"idea":2801,"throughout":2802,"centre":2803,"addition":2804,"appointed":2805,"style":2806,"1994":2807,"books":2808,"eight":2809,"construction":2810,"press":2811,"mean":2812,"wall":2813,"friends":2814,"remained":2815,"schools":2816,"study":2817,"##ch":2818,"##um":2819,"institute":2820,"oh":2821,"chinese":2822,"sometimes":2823,"events":2824,"possible":2825,"1992":2826,"australian":2827,"type":2828,"brown":2829,"forward":2830,"talk":2831,"process":2832,"food":2833,"debut":2834,"seat":2835,"performance":2836,"committee":2837,"features":2838,"character":2839,"arts":2840,"herself":2841,"else":2842,"lot":2843,"strong":2844,"russian":2845,"range":2846,"hours":2847,"peter":2848,"arm":2849,"##da":2850,"morning":2851,"dr":2852,"sold":2853,"##ry":2854,"quickly":2855,"directed":2856,"1993":2857,"guitar":2858,"china":2859,"##w":2860,"31":2861,"list":2862,"##ma":2863,"performed":2864,"media":2865,"uk":2866,"players":2867,"smile":2868,"##rs":2869,"myself":2870,"40":2871,"placed":2872,"coach":2873,"province":2874,"towards":2875,"wouldn":2876,"leading":2877,"whole":2878,"boy":2879,"official":2880,"designed":2881,"grand":2882,"census":2883,"##el":2884,"europe":2885,"attack":2886,"japanese":2887,"henry":2888,"1991":2889,"##re":2890,"##os":2891,"cross":2892,"getting":2893,"alone":2894,"action":2895,"lower":2896,"network":2897,"wide":2898,"washington":2899,"japan":2900,"1990":2901,"hospital":2902,"believe":2903,"changed":2904,"sister":2905,"##ar":2906,"hold":2907,"gone":2908,"sir":2909,"hadn":2910,"ship":2911,"##ka":2912,"studies":2913,"academy":2914,"shot":2915,"rights":2916,"below":2917,"base":2918,"bad":2919,"involved":2920,"kept":2921,"largest":2922,"##ist":2923,"bank":2924,"future":2925,"especially":2926,"beginning":2927,"mark":2928,"movement":2929,"section":2930,"female":2931,"magazine":2932,"plan":2933,"professor":2934,"lord":2935,"longer":2936,"##ian":2937,"sat":2938,"walked":2939,"hill":2940,"actually":2941,"civil":2942,"energy":2943,"model":2944,"families":2945,"size":2946,"thus":2947,"aircraft":2948,"completed":2949,"includes":2950,"data":2951,"captain":2952,"##or":2953,"fight":2954,"vocals":2955,"featured":2956,"richard":2957,"bridge":2958,"fourth":2959,"1989":2960,"officer":2961,"stone":2962,"hear":2963,"##ism":2964,"means":2965,"medical":2966,"groups":2967,"management":2968,"self":2969,"lips":2970,"competition":2971,"entire":2972,"lived":2973,"technology":2974,"leaving":2975,"federal":2976,"tournament":2977,"bit":2978,"passed":2979,"hot":2980,"independent":2981,"awards":2982,"kingdom":2983,"mary":2984,"spent":2985,"fine":2986,"doesn":2987,"reported":2988,"##ling":2989,"jack":2990,"fall":2991,"raised":2992,"itself":2993,"stay":2994,"true":2995,"studio":2996,"1988":2997,"sports":2998,"replaced":2999,"paris":3000,"systems":3001,"saint":3002,"leader":3003,"theatre":3004,"whose":3005,"market":3006,"capital":3007,"parents":3008,"spanish":3009,"canadian":3010,"earth":3011,"##ity":3012,"cut":3013,"degree":3014,"writing":3015,"bay":3016,"christian":3017,"awarded":3018,"natural":3019,"higher":3020,"bill":3021,"##as":3022,"coast":3023,"provided":3024,"previous":3025,"senior":3026,"ft":3027,"valley":3028,"organization":3029,"stopped":3030,"onto":3031,"countries":3032,"parts":3033,"conference":3034,"queen":3035,"security":3036,"interest":3037,"saying":3038,"allowed":3039,"master":3040,"earlier":3041,"phone":3042,"matter":3043,"smith":3044,"winning":3045,"try":3046,"happened":3047,"moving":3048,"campaign":3049,"los":3050,"##ley":3051,"breath":3052,"nearly":3053,"mid":3054,"1987":3055,"certain":3056,"girls":3057,"date":3058,"italian":3059,"african":3060,"standing":3061,"fell":3062,"artist":3063,"##ted":3064,"shows":3065,"deal":3066,"mine":3067,"industry":3068,"1986":3069,"##ng":3070,"everyone":3071,"republic":3072,"provide":3073,"collection":3074,"library":3075,"student":3076,"##ville":3077,"primary":3078,"owned":3079,"older":3080,"via":3081,"heavy":3082,"1st":3083,"makes":3084,"##able":3085,"attention":3086,"anyone":3087,"africa":3088,"##ri":3089,"stated":3090,"length":3091,"ended":3092,"fingers":3093,"command":3094,"staff":3095,"skin":3096,"foreign":3097,"opening":3098,"governor":3099,"okay":3100,"medal":3101,"kill":3102,"sun":3103,"cover":3104,"job":3105,"1985":3106,"introduced":3107,"chest":3108,"hell":3109,"feeling":3110,"##ies":3111,"success":3112,"meet":3113,"reason":3114,"standard":3115,"meeting":3116,"novel":3117,"1984":3118,"trade":3119,"source":3120,"buildings":3121,"##land":3122,"rose":3123,"guy":3124,"goal":3125,"##ur":3126,"chapter":3127,"native":3128,"husband":3129,"previously":3130,"unit":3131,"limited":3132,"entered":3133,"weeks":3134,"producer":3135,"operations":3136,"mountain":3137,"takes":3138,"covered":3139,"forced":3140,"related":3141,"roman":3142,"complete":3143,"successful":3144,"key":3145,"texas":3146,"cold":3147,"##ya":3148,"channel":3149,"1980":3150,"traditional":3151,"films":3152,"dance":3153,"clear":3154,"approximately":3155,"500":3156,"nine":3157,"van":3158,"prince":3159,"question":3160,"active":3161,"tracks":3162,"ireland":3163,"regional":3164,"silver":3165,"author":3166,"personal":3167,"sense":3168,"operation":3169,"##ine":3170,"economic":3171,"1983":3172,"holding":3173,"twenty":3174,"isbn":3175,"additional":3176,"speed":3177,"hour":3178,"edition":3179,"regular":3180,"historic":3181,"places":3182,"whom":3183,"shook":3184,"movie":3185,"km²":3186,"secretary":3187,"prior":3188,"report":3189,"chicago":3190,"read":3191,"foundation":3192,"view":3193,"engine":3194,"scored":3195,"1982":3196,"units":3197,"ask":3198,"airport":3199,"property":3200,"ready":3201,"immediately":3202,"lady":3203,"month":3204,"listed":3205,"contract":3206,"##de":3207,"manager":3208,"themselves":3209,"lines":3210,"##ki":3211,"navy":3212,"writer":3213,"meant":3214,"##ts":3215,"runs":3216,"##ro":3217,"practice":3218,"championships":3219,"singer":3220,"glass":3221,"commission":3222,"required":3223,"forest":3224,"starting":3225,"culture":3226,"generally":3227,"giving":3228,"access":3229,"attended":3230,"test":3231,"couple":3232,"stand":3233,"catholic":3234,"martin":3235,"caught":3236,"executive":3237,"##less":3238,"eye":3239,"##ey":3240,"thinking":3241,"chair":3242,"quite":3243,"shoulder":3244,"1979":3245,"hope":3246,"decision":3247,"plays":3248,"defeated":3249,"municipality":3250,"whether":3251,"structure":3252,"offered":3253,"slowly":3254,"pain":3255,"ice":3256,"direction":3257,"##ion":3258,"paper":3259,"mission":3260,"1981":3261,"mostly":3262,"200":3263,"noted":3264,"individual":3265,"managed":3266,"nature":3267,"lives":3268,"plant":3269,"##ha":3270,"helped":3271,"except":3272,"studied":3273,"computer":3274,"figure":3275,"relationship":3276,"issue":3277,"significant":3278,"loss":3279,"die":3280,"smiled":3281,"gun":3282,"ago":3283,"highest":3284,"1972":3285,"##am":3286,"male":3287,"bring":3288,"goals":3289,"mexico":3290,"problem":3291,"distance":3292,"commercial":3293,"completely":3294,"location":3295,"annual":3296,"famous":3297,"drive":3298,"1976":3299,"neck":3300,"1978":3301,"surface":3302,"caused":3303,"italy":3304,"understand":3305,"greek":3306,"highway":3307,"wrong":3308,"hotel":3309,"comes":3310,"appearance":3311,"joseph":3312,"double":3313,"issues":3314,"musical":3315,"companies":3316,"castle":3317,"income":3318,"review":3319,"assembly":3320,"bass":3321,"initially":3322,"parliament":3323,"artists":3324,"experience":3325,"1974":3326,"particular":3327,"walk":3328,"foot":3329,"engineering":3330,"talking":3331,"window":3332,"dropped":3333,"##ter":3334,"miss":3335,"baby":3336,"boys":3337,"break":3338,"1975":3339,"stars":3340,"edge":3341,"remember":3342,"policy":3343,"carried":3344,"train":3345,"stadium":3346,"bar":3347,"sex":3348,"angeles":3349,"evidence":3350,"##ge":3351,"becoming":3352,"assistant":3353,"soviet":3354,"1977":3355,"upper":3356,"step":3357,"wing":3358,"1970":3359,"youth":3360,"financial":3361,"reach":3362,"##ll":3363,"actor":3364,"numerous":3365,"##se":3366,"##st":3367,"nodded":3368,"arrived":3369,"##ation":3370,"minute":3371,"##nt":3372,"believed":3373,"sorry":3374,"complex":3375,"beautiful":3376,"victory":3377,"associated":3378,"temple":3379,"1968":3380,"1973":3381,"chance":3382,"perhaps":3383,"metal":3384,"##son":3385,"1945":3386,"bishop":3387,"##et":3388,"lee":3389,"launched":3390,"particularly":3391,"tree":3392,"le":3393,"retired":3394,"subject":3395,"prize":3396,"contains":3397,"yeah":3398,"theory":3399,"empire":3400,"##ce":3401,"suddenly":3402,"waiting":3403,"trust":3404,"recording":3405,"##to":3406,"happy":3407,"terms":3408,"camp":3409,"champion":3410,"1971":3411,"religious":3412,"pass":3413,"zealand":3414,"names":3415,"2nd":3416,"port":3417,"ancient":3418,"tom":3419,"corner":3420,"represented":3421,"watch":3422,"legal":3423,"anti":3424,"justice":3425,"cause":3426,"watched":3427,"brothers":3428,"45":3429,"material":3430,"changes":3431,"simply":3432,"response":3433,"louis":3434,"fast":3435,"##ting":3436,"answer":3437,"60":3438,"historical":3439,"1969":3440,"stories":3441,"straight":3442,"create":3443,"feature":3444,"increased":3445,"rate":3446,"administration":3447,"virginia":3448,"el":3449,"activities":3450,"cultural":3451,"overall":3452,"winner":3453,"programs":3454,"basketball":3455,"legs":3456,"guard":3457,"beyond":3458,"cast":3459,"doctor":3460,"mm":3461,"flight":3462,"results":3463,"remains":3464,"cost":3465,"effect":3466,"winter":3467,"##ble":3468,"larger":3469,"islands":3470,"problems":3471,"chairman":3472,"grew":3473,"commander":3474,"isn":3475,"1967":3476,"pay":3477,"failed":3478,"selected":3479,"hurt":3480,"fort":3481,"box":3482,"regiment":3483,"majority":3484,"journal":3485,"35":3486,"edward":3487,"plans":3488,"##ke":3489,"##ni":3490,"shown":3491,"pretty":3492,"irish":3493,"characters":3494,"directly":3495,"scene":3496,"likely":3497,"operated":3498,"allow":3499,"spring":3500,"##j":3501,"junior":3502,"matches":3503,"looks":3504,"mike":3505,"houses":3506,"fellow":3507,"##tion":3508,"beach":3509,"marriage":3510,"##ham":3511,"##ive":3512,"rules":3513,"oil":3514,"65":3515,"florida":3516,"expected":3517,"nearby":3518,"congress":3519,"sam":3520,"peace":3521,"recent":3522,"iii":3523,"wait":3524,"subsequently":3525,"cell":3526,"##do":3527,"variety":3528,"serving":3529,"agreed":3530,"please":3531,"poor":3532,"joe":3533,"pacific":3534,"attempt":3535,"wood":3536,"democratic":3537,"piece":3538,"prime":3539,"##ca":3540,"rural":3541,"mile":3542,"touch":3543,"appears":3544,"township":3545,"1964":3546,"1966":3547,"soldiers":3548,"##men":3549,"##ized":3550,"1965":3551,"pennsylvania":3552,"closer":3553,"fighting":3554,"claimed":3555,"score":3556,"jones":3557,"physical":3558,"editor":3559,"##ous":3560,"filled":3561,"genus":3562,"specific":3563,"sitting":3564,"super":3565,"mom":3566,"##va":3567,"therefore":3568,"supported":3569,"status":3570,"fear":3571,"cases":3572,"store":3573,"meaning":3574,"wales":3575,"minor":3576,"spain":3577,"tower":3578,"focus":3579,"vice":3580,"frank":3581,"follow":3582,"parish":3583,"separate":3584,"golden":3585,"horse":3586,"fifth":3587,"remaining":3588,"branch":3589,"32":3590,"presented":3591,"stared":3592,"##id":3593,"uses":3594,"secret":3595,"forms":3596,"##co":3597,"baseball":3598,"exactly":3599,"##ck":3600,"choice":3601,"note":3602,"discovered":3603,"travel":3604,"composed":3605,"truth":3606,"russia":3607,"ball":3608,"color":3609,"kiss":3610,"dad":3611,"wind":3612,"continue":3613,"ring":3614,"referred":3615,"numbers":3616,"digital":3617,"greater":3618,"##ns":3619,"metres":3620,"slightly":3621,"direct":3622,"increase":3623,"1960":3624,"responsible":3625,"crew":3626,"rule":3627,"trees":3628,"troops":3629,"##no":3630,"broke":3631,"goes":3632,"individuals":3633,"hundred":3634,"weight":3635,"creek":3636,"sleep":3637,"memory":3638,"defense":3639,"provides":3640,"ordered":3641,"code":3642,"value":3643,"jewish":3644,"windows":3645,"1944":3646,"safe":3647,"judge":3648,"whatever":3649,"corps":3650,"realized":3651,"growing":3652,"pre":3653,"##ga":3654,"cities":3655,"alexander":3656,"gaze":3657,"lies":3658,"spread":3659,"scott":3660,"letter":3661,"showed":3662,"situation":3663,"mayor":3664,"transport":3665,"watching":3666,"workers":3667,"extended":3668,"##li":3669,"expression":3670,"normal":3671,"##ment":3672,"chart":3673,"multiple":3674,"border":3675,"##ba":3676,"host":3677,"##ner":3678,"daily":3679,"mrs":3680,"walls":3681,"piano":3682,"##ko":3683,"heat":3684,"cannot":3685,"##ate":3686,"earned":3687,"products":3688,"drama":3689,"era":3690,"authority":3691,"seasons":3692,"join":3693,"grade":3694,"##io":3695,"sign":3696,"difficult":3697,"machine":3698,"1963":3699,"territory":3700,"mainly":3701,"##wood":3702,"stations":3703,"squadron":3704,"1962":3705,"stepped":3706,"iron":3707,"19th":3708,"##led":3709,"serve":3710,"appear":3711,"sky":3712,"speak":3713,"broken":3714,"charge":3715,"knowledge":3716,"kilometres":3717,"removed":3718,"ships":3719,"article":3720,"campus":3721,"simple":3722,"##ty":3723,"pushed":3724,"britain":3725,"##ve":3726,"leaves":3727,"recently":3728,"cd":3729,"soft":3730,"boston":3731,"latter":3732,"easy":3733,"acquired":3734,"poland":3735,"##sa":3736,"quality":3737,"officers":3738,"presence":3739,"planned":3740,"nations":3741,"mass":3742,"broadcast":3743,"jean":3744,"share":3745,"image":3746,"influence":3747,"wild":3748,"offer":3749,"emperor":3750,"electric":3751,"reading":3752,"headed":3753,"ability":3754,"promoted":3755,"yellow":3756,"ministry":3757,"1942":3758,"throat":3759,"smaller":3760,"politician":3761,"##by":3762,"latin":3763,"spoke":3764,"cars":3765,"williams":3766,"males":3767,"lack":3768,"pop":3769,"80":3770,"##ier":3771,"acting":3772,"seeing":3773,"consists":3774,"##ti":3775,"estate":3776,"1961":3777,"pressure":3778,"johnson":3779,"newspaper":3780,"jr":3781,"chris":3782,"olympics":3783,"online":3784,"conditions":3785,"beat":3786,"elements":3787,"walking":3788,"vote":3789,"##field":3790,"needs":3791,"carolina":3792,"text":3793,"featuring":3794,"global":3795,"block":3796,"shirt":3797,"levels":3798,"francisco":3799,"purpose":3800,"females":3801,"et":3802,"dutch":3803,"duke":3804,"ahead":3805,"gas":3806,"twice":3807,"safety":3808,"serious":3809,"turning":3810,"highly":3811,"lieutenant":3812,"firm":3813,"maria":3814,"amount":3815,"mixed":3816,"daniel":3817,"proposed":3818,"perfect":3819,"agreement":3820,"affairs":3821,"3rd":3822,"seconds":3823,"contemporary":3824,"paid":3825,"1943":3826,"prison":3827,"save":3828,"kitchen":3829,"label":3830,"administrative":3831,"intended":3832,"constructed":3833,"academic":3834,"nice":3835,"teacher":3836,"races":3837,"1956":3838,"formerly":3839,"corporation":3840,"ben":3841,"nation":3842,"issued":3843,"shut":3844,"1958":3845,"drums":3846,"housing":3847,"victoria":3848,"seems":3849,"opera":3850,"1959":3851,"graduated":3852,"function":3853,"von":3854,"mentioned":3855,"picked":3856,"build":3857,"recognized":3858,"shortly":3859,"protection":3860,"picture":3861,"notable":3862,"exchange":3863,"elections":3864,"1980s":3865,"loved":3866,"percent":3867,"racing":3868,"fish":3869,"elizabeth":3870,"garden":3871,"volume":3872,"hockey":3873,"1941":3874,"beside":3875,"settled":3876,"##ford":3877,"1940":3878,"competed":3879,"replied":3880,"drew":3881,"1948":3882,"actress":3883,"marine":3884,"scotland":3885,"steel":3886,"glanced":3887,"farm":3888,"steve":3889,"1957":3890,"risk":3891,"tonight":3892,"positive":3893,"magic":3894,"singles":3895,"effects":3896,"gray":3897,"screen":3898,"dog":3899,"##ja":3900,"residents":3901,"bus":3902,"sides":3903,"none":3904,"secondary":3905,"literature":3906,"polish":3907,"destroyed":3908,"flying":3909,"founder":3910,"households":3911,"1939":3912,"lay":3913,"reserve":3914,"usa":3915,"gallery":3916,"##ler":3917,"1946":3918,"industrial":3919,"younger":3920,"approach":3921,"appearances":3922,"urban":3923,"ones":3924,"1950":3925,"finish":3926,"avenue":3927,"powerful":3928,"fully":3929,"growth":3930,"page":3931,"honor":3932,"jersey":3933,"projects":3934,"advanced":3935,"revealed":3936,"basic":3937,"90":3938,"infantry":3939,"pair":3940,"equipment":3941,"visit":3942,"33":3943,"evening":3944,"search":3945,"grant":3946,"effort":3947,"solo":3948,"treatment":3949,"buried":3950,"republican":3951,"primarily":3952,"bottom":3953,"owner":3954,"1970s":3955,"israel":3956,"gives":3957,"jim":3958,"dream":3959,"bob":3960,"remain":3961,"spot":3962,"70":3963,"notes":3964,"produce":3965,"champions":3966,"contact":3967,"ed":3968,"soul":3969,"accepted":3970,"ways":3971,"del":3972,"##ally":3973,"losing":3974,"split":3975,"price":3976,"capacity":3977,"basis":3978,"trial":3979,"questions":3980,"##ina":3981,"1955":3982,"20th":3983,"guess":3984,"officially":3985,"memorial":3986,"naval":3987,"initial":3988,"##ization":3989,"whispered":3990,"median":3991,"engineer":3992,"##ful":3993,"sydney":3994,"##go":3995,"columbia":3996,"strength":3997,"300":3998,"1952":3999,"tears":4000,"senate":4001,"00":4002,"card":4003,"asian":4004,"agent":4005,"1947":4006,"software":4007,"44":4008,"draw":4009,"warm":4010,"supposed":4011,"com":4012,"pro":4013,"##il":4014,"transferred":4015,"leaned":4016,"##at":4017,"candidate":4018,"escape":4019,"mountains":4020,"asia":4021,"potential":4022,"activity":4023,"entertainment":4024,"seem":4025,"traffic":4026,"jackson":4027,"murder":4028,"36":4029,"slow":4030,"product":4031,"orchestra":4032,"haven":4033,"agency":4034,"bbc":4035,"taught":4036,"website":4037,"comedy":4038,"unable":4039,"storm":4040,"planning":4041,"albums":4042,"rugby":4043,"environment":4044,"scientific":4045,"grabbed":4046,"protect":4047,"##hi":4048,"boat":4049,"typically":4050,"1954":4051,"1953":4052,"damage":4053,"principal":4054,"divided":4055,"dedicated":4056,"mount":4057,"ohio":4058,"##berg":4059,"pick":4060,"fought":4061,"driver":4062,"##der":4063,"empty":4064,"shoulders":4065,"sort":4066,"thank":4067,"berlin":4068,"prominent":4069,"account":4070,"freedom":4071,"necessary":4072,"efforts":4073,"alex":4074,"headquarters":4075,"follows":4076,"alongside":4077,"des":4078,"simon":4079,"andrew":4080,"suggested":4081,"operating":4082,"learning":4083,"steps":4084,"1949":4085,"sweet":4086,"technical":4087,"begin":4088,"easily":4089,"34":4090,"teeth":4091,"speaking":4092,"settlement":4093,"scale":4094,"##sh":4095,"renamed":4096,"ray":4097,"max":4098,"enemy":4099,"semi":4100,"joint":4101,"compared":4102,"##rd":4103,"scottish":4104,"leadership":4105,"analysis":4106,"offers":4107,"georgia":4108,"pieces":4109,"captured":4110,"animal":4111,"deputy":4112,"guest":4113,"organized":4114,"##lin":4115,"tony":4116,"combined":4117,"method":4118,"challenge":4119,"1960s":4120,"huge":4121,"wants":4122,"battalion":4123,"sons":4124,"rise":4125,"crime":4126,"types":4127,"facilities":4128,"telling":4129,"path":4130,"1951":4131,"platform":4132,"sit":4133,"1990s":4134,"##lo":4135,"tells":4136,"assigned":4137,"rich":4138,"pull":4139,"##ot":4140,"commonly":4141,"alive":4142,"##za":4143,"letters":4144,"concept":4145,"conducted":4146,"wearing":4147,"happen":4148,"bought":4149,"becomes":4150,"holy":4151,"gets":4152,"ocean":4153,"defeat":4154,"languages":4155,"purchased":4156,"coffee":4157,"occurred":4158,"titled":4159,"##q":4160,"declared":4161,"applied":4162,"sciences":4163,"concert":4164,"sounds":4165,"jazz":4166,"brain":4167,"##me":4168,"painting":4169,"fleet":4170,"tax":4171,"nick":4172,"##ius":4173,"michigan":4174,"count":4175,"animals":4176,"leaders":4177,"episodes":4178,"##line":4179,"content":4180,"##den":4181,"birth":4182,"##it":4183,"clubs":4184,"64":4185,"palace":4186,"critical":4187,"refused":4188,"fair":4189,"leg":4190,"laughed":4191,"returning":4192,"surrounding":4193,"participated":4194,"formation":4195,"lifted":4196,"pointed":4197,"connected":4198,"rome":4199,"medicine":4200,"laid":4201,"taylor":4202,"santa":4203,"powers":4204,"adam":4205,"tall":4206,"shared":4207,"focused":4208,"knowing":4209,"yards":4210,"entrance":4211,"falls":4212,"##wa":4213,"calling":4214,"##ad":4215,"sources":4216,"chosen":4217,"beneath":4218,"resources":4219,"yard":4220,"##ite":4221,"nominated":4222,"silence":4223,"zone":4224,"defined":4225,"##que":4226,"gained":4227,"thirty":4228,"38":4229,"bodies":4230,"moon":4231,"##ard":4232,"adopted":4233,"christmas":4234,"widely":4235,"register":4236,"apart":4237,"iran":4238,"premier":4239,"serves":4240,"du":4241,"unknown":4242,"parties":4243,"##les":4244,"generation":4245,"##ff":4246,"continues":4247,"quick":4248,"fields":4249,"brigade":4250,"quiet":4251,"teaching":4252,"clothes":4253,"impact":4254,"weapons":4255,"partner":4256,"flat":4257,"theater":4258,"supreme":4259,"1938":4260,"37":4261,"relations":4262,"##tor":4263,"plants":4264,"suffered":4265,"1936":4266,"wilson":4267,"kids":4268,"begins":4269,"##age":4270,"1918":4271,"seats":4272,"armed":4273,"internet":4274,"models":4275,"worth":4276,"laws":4277,"400":4278,"communities":4279,"classes":4280,"background":4281,"knows":4282,"thanks":4283,"quarter":4284,"reaching":4285,"humans":4286,"carry":4287,"killing":4288,"format":4289,"kong":4290,"hong":4291,"setting":4292,"75":4293,"architecture":4294,"disease":4295,"railroad":4296,"inc":4297,"possibly":4298,"wish":4299,"arthur":4300,"thoughts":4301,"harry":4302,"doors":4303,"density":4304,"##di":4305,"crowd":4306,"illinois":4307,"stomach":4308,"tone":4309,"unique":4310,"reports":4311,"anyway":4312,"##ir":4313,"liberal":4314,"der":4315,"vehicle":4316,"thick":4317,"dry":4318,"drug":4319,"faced":4320,"largely":4321,"facility":4322,"theme":4323,"holds":4324,"creation":4325,"strange":4326,"colonel":4327,"##mi":4328,"revolution":4329,"bell":4330,"politics":4331,"turns":4332,"silent":4333,"rail":4334,"relief":4335,"independence":4336,"combat":4337,"shape":4338,"write":4339,"determined":4340,"sales":4341,"learned":4342,"4th":4343,"finger":4344,"oxford":4345,"providing":4346,"1937":4347,"heritage":4348,"fiction":4349,"situated":4350,"designated":4351,"allowing":4352,"distribution":4353,"hosted":4354,"##est":4355,"sight":4356,"interview":4357,"estimated":4358,"reduced":4359,"##ria":4360,"toronto":4361,"footballer":4362,"keeping":4363,"guys":4364,"damn":4365,"claim":4366,"motion":4367,"sport":4368,"sixth":4369,"stayed":4370,"##ze":4371,"en":4372,"rear":4373,"receive":4374,"handed":4375,"twelve":4376,"dress":4377,"audience":4378,"granted":4379,"brazil":4380,"##well":4381,"spirit":4382,"##ated":4383,"noticed":4384,"etc":4385,"olympic":4386,"representative":4387,"eric":4388,"tight":4389,"trouble":4390,"reviews":4391,"drink":4392,"vampire":4393,"missing":4394,"roles":4395,"ranked":4396,"newly":4397,"household":4398,"finals":4399,"wave":4400,"critics":4401,"##ee":4402,"phase":4403,"massachusetts":4404,"pilot":4405,"unlike":4406,"philadelphia":4407,"bright":4408,"guns":4409,"crown":4410,"organizations":4411,"roof":4412,"42":4413,"respectively":4414,"clearly":4415,"tongue":4416,"marked":4417,"circle":4418,"fox":4419,"korea":4420,"bronze":4421,"brian":4422,"expanded":4423,"sexual":4424,"supply":4425,"yourself":4426,"inspired":4427,"labour":4428,"fc":4429,"##ah":4430,"reference":4431,"vision":4432,"draft":4433,"connection":4434,"brand":4435,"reasons":4436,"1935":4437,"classic":4438,"driving":4439,"trip":4440,"jesus":4441,"cells":4442,"entry":4443,"1920":4444,"neither":4445,"trail":4446,"claims":4447,"atlantic":4448,"orders":4449,"labor":4450,"nose":4451,"afraid":4452,"identified":4453,"intelligence":4454,"calls":4455,"cancer":4456,"attacked":4457,"passing":4458,"stephen":4459,"positions":4460,"imperial":4461,"grey":4462,"jason":4463,"39":4464,"sunday":4465,"48":4466,"swedish":4467,"avoid":4468,"extra":4469,"uncle":4470,"message":4471,"covers":4472,"allows":4473,"surprise":4474,"materials":4475,"fame":4476,"hunter":4477,"##ji":4478,"1930":4479,"citizens":4480,"figures":4481,"davis":4482,"environmental":4483,"confirmed":4484,"shit":4485,"titles":4486,"di":4487,"performing":4488,"difference":4489,"acts":4490,"attacks":4491,"##ov":4492,"existing":4493,"votes":4494,"opportunity":4495,"nor":4496,"shop":4497,"entirely":4498,"trains":4499,"opposite":4500,"pakistan":4501,"##pa":4502,"develop":4503,"resulted":4504,"representatives":4505,"actions":4506,"reality":4507,"pressed":4508,"##ish":4509,"barely":4510,"wine":4511,"conversation":4512,"faculty":4513,"northwest":4514,"ends":4515,"documentary":4516,"nuclear":4517,"stock":4518,"grace":4519,"sets":4520,"eat":4521,"alternative":4522,"##ps":4523,"bag":4524,"resulting":4525,"creating":4526,"surprised":4527,"cemetery":4528,"1919":4529,"drop":4530,"finding":4531,"sarah":4532,"cricket":4533,"streets":4534,"tradition":4535,"ride":4536,"1933":4537,"exhibition":4538,"target":4539,"ear":4540,"explained":4541,"rain":4542,"composer":4543,"injury":4544,"apartment":4545,"municipal":4546,"educational":4547,"occupied":4548,"netherlands":4549,"clean":4550,"billion":4551,"constitution":4552,"learn":4553,"1914":4554,"maximum":4555,"classical":4556,"francis":4557,"lose":4558,"opposition":4559,"jose":4560,"ontario":4561,"bear":4562,"core":4563,"hills":4564,"rolled":4565,"ending":4566,"drawn":4567,"permanent":4568,"fun":4569,"##tes":4570,"##lla":4571,"lewis":4572,"sites":4573,"chamber":4574,"ryan":4575,"##way":4576,"scoring":4577,"height":4578,"1934":4579,"##house":4580,"lyrics":4581,"staring":4582,"55":4583,"officials":4584,"1917":4585,"snow":4586,"oldest":4587,"##tic":4588,"orange":4589,"##ger":4590,"qualified":4591,"interior":4592,"apparently":4593,"succeeded":4594,"thousand":4595,"dinner":4596,"lights":4597,"existence":4598,"fans":4599,"heavily":4600,"41":4601,"greatest":4602,"conservative":4603,"send":4604,"bowl":4605,"plus":4606,"enter":4607,"catch":4608,"##un":4609,"economy":4610,"duty":4611,"1929":4612,"speech":4613,"authorities":4614,"princess":4615,"performances":4616,"versions":4617,"shall":4618,"graduate":4619,"pictures":4620,"effective":4621,"remembered":4622,"poetry":4623,"desk":4624,"crossed":4625,"starring":4626,"starts":4627,"passenger":4628,"sharp":4629,"##ant":4630,"acres":4631,"ass":4632,"weather":4633,"falling":4634,"rank":4635,"fund":4636,"supporting":4637,"check":4638,"adult":4639,"publishing":4640,"heads":4641,"cm":4642,"southeast":4643,"lane":4644,"##burg":4645,"application":4646,"bc":4647,"##ura":4648,"les":4649,"condition":4650,"transfer":4651,"prevent":4652,"display":4653,"ex":4654,"regions":4655,"earl":4656,"federation":4657,"cool":4658,"relatively":4659,"answered":4660,"besides":4661,"1928":4662,"obtained":4663,"portion":4664,"##town":4665,"mix":4666,"##ding":4667,"reaction":4668,"liked":4669,"dean":4670,"express":4671,"peak":4672,"1932":4673,"##tte":4674,"counter":4675,"religion":4676,"chain":4677,"rare":4678,"miller":4679,"convention":4680,"aid":4681,"lie":4682,"vehicles":4683,"mobile":4684,"perform":4685,"squad":4686,"wonder":4687,"lying":4688,"crazy":4689,"sword":4690,"##ping":4691,"attempted":4692,"centuries":4693,"weren":4694,"philosophy":4695,"category":4696,"##ize":4697,"anna":4698,"interested":4699,"47":4700,"sweden":4701,"wolf":4702,"frequently":4703,"abandoned":4704,"kg":4705,"literary":4706,"alliance":4707,"task":4708,"entitled":4709,"##ay":4710,"threw":4711,"promotion":4712,"factory":4713,"tiny":4714,"soccer":4715,"visited":4716,"matt":4717,"fm":4718,"achieved":4719,"52":4720,"defence":4721,"internal":4722,"persian":4723,"43":4724,"methods":4725,"##ging":4726,"arrested":4727,"otherwise":4728,"cambridge":4729,"programming":4730,"villages":4731,"elementary":4732,"districts":4733,"rooms":4734,"criminal":4735,"conflict":4736,"worry":4737,"trained":4738,"1931":4739,"attempts":4740,"waited":4741,"signal":4742,"bird":4743,"truck":4744,"subsequent":4745,"programme":4746,"##ol":4747,"ad":4748,"49":4749,"communist":4750,"details":4751,"faith":4752,"sector":4753,"patrick":4754,"carrying":4755,"laugh":4756,"##ss":4757,"controlled":4758,"korean":4759,"showing":4760,"origin":4761,"fuel":4762,"evil":4763,"1927":4764,"##ent":4765,"brief":4766,"identity":4767,"darkness":4768,"address":4769,"pool":4770,"missed":4771,"publication":4772,"web":4773,"planet":4774,"ian":4775,"anne":4776,"wings":4777,"invited":4778,"##tt":4779,"briefly":4780,"standards":4781,"kissed":4782,"##be":4783,"ideas":4784,"climate":4785,"causing":4786,"walter":4787,"worse":4788,"albert":4789,"articles":4790,"winners":4791,"desire":4792,"aged":4793,"northeast":4794,"dangerous":4795,"gate":4796,"doubt":4797,"1922":4798,"wooden":4799,"multi":4800,"##ky":4801,"poet":4802,"rising":4803,"funding":4804,"46":4805,"communications":4806,"communication":4807,"violence":4808,"copies":4809,"prepared":4810,"ford":4811,"investigation":4812,"skills":4813,"1924":4814,"pulling":4815,"electronic":4816,"##ak":4817,"##ial":4818,"##han":4819,"containing":4820,"ultimately":4821,"offices":4822,"singing":4823,"understanding":4824,"restaurant":4825,"tomorrow":4826,"fashion":4827,"christ":4828,"ward":4829,"da":4830,"pope":4831,"stands":4832,"5th":4833,"flow":4834,"studios":4835,"aired":4836,"commissioned":4837,"contained":4838,"exist":4839,"fresh":4840,"americans":4841,"##per":4842,"wrestling":4843,"approved":4844,"kid":4845,"employed":4846,"respect":4847,"suit":4848,"1925":4849,"angel":4850,"asking":4851,"increasing":4852,"frame":4853,"angry":4854,"selling":4855,"1950s":4856,"thin":4857,"finds":4858,"##nd":4859,"temperature":4860,"statement":4861,"ali":4862,"explain":4863,"inhabitants":4864,"towns":4865,"extensive":4866,"narrow":4867,"51":4868,"jane":4869,"flowers":4870,"images":4871,"promise":4872,"somewhere":4873,"object":4874,"fly":4875,"closely":4876,"##ls":4877,"1912":4878,"bureau":4879,"cape":4880,"1926":4881,"weekly":4882,"presidential":4883,"legislative":4884,"1921":4885,"##ai":4886,"##au":4887,"launch":4888,"founding":4889,"##ny":4890,"978":4891,"##ring":4892,"artillery":4893,"strike":4894,"un":4895,"institutions":4896,"roll":4897,"writers":4898,"landing":4899,"chose":4900,"kevin":4901,"anymore":4902,"pp":4903,"##ut":4904,"attorney":4905,"fit":4906,"dan":4907,"billboard":4908,"receiving":4909,"agricultural":4910,"breaking":4911,"sought":4912,"dave":4913,"admitted":4914,"lands":4915,"mexican":4916,"##bury":4917,"charlie":4918,"specifically":4919,"hole":4920,"iv":4921,"howard":4922,"credit":4923,"moscow":4924,"roads":4925,"accident":4926,"1923":4927,"proved":4928,"wear":4929,"struck":4930,"hey":4931,"guards":4932,"stuff":4933,"slid":4934,"expansion":4935,"1915":4936,"cat":4937,"anthony":4938,"##kin":4939,"melbourne":4940,"opposed":4941,"sub":4942,"southwest":4943,"architect":4944,"failure":4945,"plane":4946,"1916":4947,"##ron":4948,"map":4949,"camera":4950,"tank":4951,"listen":4952,"regarding":4953,"wet":4954,"introduction":4955,"metropolitan":4956,"link":4957,"ep":4958,"fighter":4959,"inch":4960,"grown":4961,"gene":4962,"anger":4963,"fixed":4964,"buy":4965,"dvd":4966,"khan":4967,"domestic":4968,"worldwide":4969,"chapel":4970,"mill":4971,"functions":4972,"examples":4973,"##head":4974,"developing":4975,"1910":4976,"turkey":4977,"hits":4978,"pocket":4979,"antonio":4980,"papers":4981,"grow":4982,"unless":4983,"circuit":4984,"18th":4985,"concerned":4986,"attached":4987,"journalist":4988,"selection":4989,"journey":4990,"converted":4991,"provincial":4992,"painted":4993,"hearing":4994,"aren":4995,"bands":4996,"negative":4997,"aside":4998,"wondered":4999}}}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "max_len": 512, "model_max_length": 512, "special_tokens_map_file": "/home/stas/.cache/huggingface/transformers/48c3f426580c1b3278dbebb8c8dd372ea1549792f092b4f6fae1e21881c2cbd9.dd8bd9bfd3664b530ea4e645105f557769387b3da9f79bdb55ed556bdd80611d", "name_or_path": "microsoft/layoutlm-base-uncased", "tokenizer_class": "LayoutLMTokenizer"}
|
vocab.txt
ADDED
|
@@ -0,0 +1,5000 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[PAD]
|
| 2 |
+
[unused0]
|
| 3 |
+
[unused1]
|
| 4 |
+
[unused2]
|
| 5 |
+
[unused3]
|
| 6 |
+
[unused4]
|
| 7 |
+
[unused5]
|
| 8 |
+
[unused6]
|
| 9 |
+
[unused7]
|
| 10 |
+
[unused8]
|
| 11 |
+
[unused9]
|
| 12 |
+
[unused10]
|
| 13 |
+
[unused11]
|
| 14 |
+
[unused12]
|
| 15 |
+
[unused13]
|
| 16 |
+
[unused14]
|
| 17 |
+
[unused15]
|
| 18 |
+
[unused16]
|
| 19 |
+
[unused17]
|
| 20 |
+
[unused18]
|
| 21 |
+
[unused19]
|
| 22 |
+
[unused20]
|
| 23 |
+
[unused21]
|
| 24 |
+
[unused22]
|
| 25 |
+
[unused23]
|
| 26 |
+
[unused24]
|
| 27 |
+
[unused25]
|
| 28 |
+
[unused26]
|
| 29 |
+
[unused27]
|
| 30 |
+
[unused28]
|
| 31 |
+
[unused29]
|
| 32 |
+
[unused30]
|
| 33 |
+
[unused31]
|
| 34 |
+
[unused32]
|
| 35 |
+
[unused33]
|
| 36 |
+
[unused34]
|
| 37 |
+
[unused35]
|
| 38 |
+
[unused36]
|
| 39 |
+
[unused37]
|
| 40 |
+
[unused38]
|
| 41 |
+
[unused39]
|
| 42 |
+
[unused40]
|
| 43 |
+
[unused41]
|
| 44 |
+
[unused42]
|
| 45 |
+
[unused43]
|
| 46 |
+
[unused44]
|
| 47 |
+
[unused45]
|
| 48 |
+
[unused46]
|
| 49 |
+
[unused47]
|
| 50 |
+
[unused48]
|
| 51 |
+
[unused49]
|
| 52 |
+
[unused50]
|
| 53 |
+
[unused51]
|
| 54 |
+
[unused52]
|
| 55 |
+
[unused53]
|
| 56 |
+
[unused54]
|
| 57 |
+
[unused55]
|
| 58 |
+
[unused56]
|
| 59 |
+
[unused57]
|
| 60 |
+
[unused58]
|
| 61 |
+
[unused59]
|
| 62 |
+
[unused60]
|
| 63 |
+
[unused61]
|
| 64 |
+
[unused62]
|
| 65 |
+
[unused63]
|
| 66 |
+
[unused64]
|
| 67 |
+
[unused65]
|
| 68 |
+
[unused66]
|
| 69 |
+
[unused67]
|
| 70 |
+
[unused68]
|
| 71 |
+
[unused69]
|
| 72 |
+
[unused70]
|
| 73 |
+
[unused71]
|
| 74 |
+
[unused72]
|
| 75 |
+
[unused73]
|
| 76 |
+
[unused74]
|
| 77 |
+
[unused75]
|
| 78 |
+
[unused76]
|
| 79 |
+
[unused77]
|
| 80 |
+
[unused78]
|
| 81 |
+
[unused79]
|
| 82 |
+
[unused80]
|
| 83 |
+
[unused81]
|
| 84 |
+
[unused82]
|
| 85 |
+
[unused83]
|
| 86 |
+
[unused84]
|
| 87 |
+
[unused85]
|
| 88 |
+
[unused86]
|
| 89 |
+
[unused87]
|
| 90 |
+
[unused88]
|
| 91 |
+
[unused89]
|
| 92 |
+
[unused90]
|
| 93 |
+
[unused91]
|
| 94 |
+
[unused92]
|
| 95 |
+
[unused93]
|
| 96 |
+
[unused94]
|
| 97 |
+
[unused95]
|
| 98 |
+
[unused96]
|
| 99 |
+
[unused97]
|
| 100 |
+
[unused98]
|
| 101 |
+
[UNK]
|
| 102 |
+
[CLS]
|
| 103 |
+
[SEP]
|
| 104 |
+
[MASK]
|
| 105 |
+
[unused99]
|
| 106 |
+
[unused100]
|
| 107 |
+
[unused101]
|
| 108 |
+
[unused102]
|
| 109 |
+
[unused103]
|
| 110 |
+
[unused104]
|
| 111 |
+
[unused105]
|
| 112 |
+
[unused106]
|
| 113 |
+
[unused107]
|
| 114 |
+
[unused108]
|
| 115 |
+
[unused109]
|
| 116 |
+
[unused110]
|
| 117 |
+
[unused111]
|
| 118 |
+
[unused112]
|
| 119 |
+
[unused113]
|
| 120 |
+
[unused114]
|
| 121 |
+
[unused115]
|
| 122 |
+
[unused116]
|
| 123 |
+
[unused117]
|
| 124 |
+
[unused118]
|
| 125 |
+
[unused119]
|
| 126 |
+
[unused120]
|
| 127 |
+
[unused121]
|
| 128 |
+
[unused122]
|
| 129 |
+
[unused123]
|
| 130 |
+
[unused124]
|
| 131 |
+
[unused125]
|
| 132 |
+
[unused126]
|
| 133 |
+
[unused127]
|
| 134 |
+
[unused128]
|
| 135 |
+
[unused129]
|
| 136 |
+
[unused130]
|
| 137 |
+
[unused131]
|
| 138 |
+
[unused132]
|
| 139 |
+
[unused133]
|
| 140 |
+
[unused134]
|
| 141 |
+
[unused135]
|
| 142 |
+
[unused136]
|
| 143 |
+
[unused137]
|
| 144 |
+
[unused138]
|
| 145 |
+
[unused139]
|
| 146 |
+
[unused140]
|
| 147 |
+
[unused141]
|
| 148 |
+
[unused142]
|
| 149 |
+
[unused143]
|
| 150 |
+
[unused144]
|
| 151 |
+
[unused145]
|
| 152 |
+
[unused146]
|
| 153 |
+
[unused147]
|
| 154 |
+
[unused148]
|
| 155 |
+
[unused149]
|
| 156 |
+
[unused150]
|
| 157 |
+
[unused151]
|
| 158 |
+
[unused152]
|
| 159 |
+
[unused153]
|
| 160 |
+
[unused154]
|
| 161 |
+
[unused155]
|
| 162 |
+
[unused156]
|
| 163 |
+
[unused157]
|
| 164 |
+
[unused158]
|
| 165 |
+
[unused159]
|
| 166 |
+
[unused160]
|
| 167 |
+
[unused161]
|
| 168 |
+
[unused162]
|
| 169 |
+
[unused163]
|
| 170 |
+
[unused164]
|
| 171 |
+
[unused165]
|
| 172 |
+
[unused166]
|
| 173 |
+
[unused167]
|
| 174 |
+
[unused168]
|
| 175 |
+
[unused169]
|
| 176 |
+
[unused170]
|
| 177 |
+
[unused171]
|
| 178 |
+
[unused172]
|
| 179 |
+
[unused173]
|
| 180 |
+
[unused174]
|
| 181 |
+
[unused175]
|
| 182 |
+
[unused176]
|
| 183 |
+
[unused177]
|
| 184 |
+
[unused178]
|
| 185 |
+
[unused179]
|
| 186 |
+
[unused180]
|
| 187 |
+
[unused181]
|
| 188 |
+
[unused182]
|
| 189 |
+
[unused183]
|
| 190 |
+
[unused184]
|
| 191 |
+
[unused185]
|
| 192 |
+
[unused186]
|
| 193 |
+
[unused187]
|
| 194 |
+
[unused188]
|
| 195 |
+
[unused189]
|
| 196 |
+
[unused190]
|
| 197 |
+
[unused191]
|
| 198 |
+
[unused192]
|
| 199 |
+
[unused193]
|
| 200 |
+
[unused194]
|
| 201 |
+
[unused195]
|
| 202 |
+
[unused196]
|
| 203 |
+
[unused197]
|
| 204 |
+
[unused198]
|
| 205 |
+
[unused199]
|
| 206 |
+
[unused200]
|
| 207 |
+
[unused201]
|
| 208 |
+
[unused202]
|
| 209 |
+
[unused203]
|
| 210 |
+
[unused204]
|
| 211 |
+
[unused205]
|
| 212 |
+
[unused206]
|
| 213 |
+
[unused207]
|
| 214 |
+
[unused208]
|
| 215 |
+
[unused209]
|
| 216 |
+
[unused210]
|
| 217 |
+
[unused211]
|
| 218 |
+
[unused212]
|
| 219 |
+
[unused213]
|
| 220 |
+
[unused214]
|
| 221 |
+
[unused215]
|
| 222 |
+
[unused216]
|
| 223 |
+
[unused217]
|
| 224 |
+
[unused218]
|
| 225 |
+
[unused219]
|
| 226 |
+
[unused220]
|
| 227 |
+
[unused221]
|
| 228 |
+
[unused222]
|
| 229 |
+
[unused223]
|
| 230 |
+
[unused224]
|
| 231 |
+
[unused225]
|
| 232 |
+
[unused226]
|
| 233 |
+
[unused227]
|
| 234 |
+
[unused228]
|
| 235 |
+
[unused229]
|
| 236 |
+
[unused230]
|
| 237 |
+
[unused231]
|
| 238 |
+
[unused232]
|
| 239 |
+
[unused233]
|
| 240 |
+
[unused234]
|
| 241 |
+
[unused235]
|
| 242 |
+
[unused236]
|
| 243 |
+
[unused237]
|
| 244 |
+
[unused238]
|
| 245 |
+
[unused239]
|
| 246 |
+
[unused240]
|
| 247 |
+
[unused241]
|
| 248 |
+
[unused242]
|
| 249 |
+
[unused243]
|
| 250 |
+
[unused244]
|
| 251 |
+
[unused245]
|
| 252 |
+
[unused246]
|
| 253 |
+
[unused247]
|
| 254 |
+
[unused248]
|
| 255 |
+
[unused249]
|
| 256 |
+
[unused250]
|
| 257 |
+
[unused251]
|
| 258 |
+
[unused252]
|
| 259 |
+
[unused253]
|
| 260 |
+
[unused254]
|
| 261 |
+
[unused255]
|
| 262 |
+
[unused256]
|
| 263 |
+
[unused257]
|
| 264 |
+
[unused258]
|
| 265 |
+
[unused259]
|
| 266 |
+
[unused260]
|
| 267 |
+
[unused261]
|
| 268 |
+
[unused262]
|
| 269 |
+
[unused263]
|
| 270 |
+
[unused264]
|
| 271 |
+
[unused265]
|
| 272 |
+
[unused266]
|
| 273 |
+
[unused267]
|
| 274 |
+
[unused268]
|
| 275 |
+
[unused269]
|
| 276 |
+
[unused270]
|
| 277 |
+
[unused271]
|
| 278 |
+
[unused272]
|
| 279 |
+
[unused273]
|
| 280 |
+
[unused274]
|
| 281 |
+
[unused275]
|
| 282 |
+
[unused276]
|
| 283 |
+
[unused277]
|
| 284 |
+
[unused278]
|
| 285 |
+
[unused279]
|
| 286 |
+
[unused280]
|
| 287 |
+
[unused281]
|
| 288 |
+
[unused282]
|
| 289 |
+
[unused283]
|
| 290 |
+
[unused284]
|
| 291 |
+
[unused285]
|
| 292 |
+
[unused286]
|
| 293 |
+
[unused287]
|
| 294 |
+
[unused288]
|
| 295 |
+
[unused289]
|
| 296 |
+
[unused290]
|
| 297 |
+
[unused291]
|
| 298 |
+
[unused292]
|
| 299 |
+
[unused293]
|
| 300 |
+
[unused294]
|
| 301 |
+
[unused295]
|
| 302 |
+
[unused296]
|
| 303 |
+
[unused297]
|
| 304 |
+
[unused298]
|
| 305 |
+
[unused299]
|
| 306 |
+
[unused300]
|
| 307 |
+
[unused301]
|
| 308 |
+
[unused302]
|
| 309 |
+
[unused303]
|
| 310 |
+
[unused304]
|
| 311 |
+
[unused305]
|
| 312 |
+
[unused306]
|
| 313 |
+
[unused307]
|
| 314 |
+
[unused308]
|
| 315 |
+
[unused309]
|
| 316 |
+
[unused310]
|
| 317 |
+
[unused311]
|
| 318 |
+
[unused312]
|
| 319 |
+
[unused313]
|
| 320 |
+
[unused314]
|
| 321 |
+
[unused315]
|
| 322 |
+
[unused316]
|
| 323 |
+
[unused317]
|
| 324 |
+
[unused318]
|
| 325 |
+
[unused319]
|
| 326 |
+
[unused320]
|
| 327 |
+
[unused321]
|
| 328 |
+
[unused322]
|
| 329 |
+
[unused323]
|
| 330 |
+
[unused324]
|
| 331 |
+
[unused325]
|
| 332 |
+
[unused326]
|
| 333 |
+
[unused327]
|
| 334 |
+
[unused328]
|
| 335 |
+
[unused329]
|
| 336 |
+
[unused330]
|
| 337 |
+
[unused331]
|
| 338 |
+
[unused332]
|
| 339 |
+
[unused333]
|
| 340 |
+
[unused334]
|
| 341 |
+
[unused335]
|
| 342 |
+
[unused336]
|
| 343 |
+
[unused337]
|
| 344 |
+
[unused338]
|
| 345 |
+
[unused339]
|
| 346 |
+
[unused340]
|
| 347 |
+
[unused341]
|
| 348 |
+
[unused342]
|
| 349 |
+
[unused343]
|
| 350 |
+
[unused344]
|
| 351 |
+
[unused345]
|
| 352 |
+
[unused346]
|
| 353 |
+
[unused347]
|
| 354 |
+
[unused348]
|
| 355 |
+
[unused349]
|
| 356 |
+
[unused350]
|
| 357 |
+
[unused351]
|
| 358 |
+
[unused352]
|
| 359 |
+
[unused353]
|
| 360 |
+
[unused354]
|
| 361 |
+
[unused355]
|
| 362 |
+
[unused356]
|
| 363 |
+
[unused357]
|
| 364 |
+
[unused358]
|
| 365 |
+
[unused359]
|
| 366 |
+
[unused360]
|
| 367 |
+
[unused361]
|
| 368 |
+
[unused362]
|
| 369 |
+
[unused363]
|
| 370 |
+
[unused364]
|
| 371 |
+
[unused365]
|
| 372 |
+
[unused366]
|
| 373 |
+
[unused367]
|
| 374 |
+
[unused368]
|
| 375 |
+
[unused369]
|
| 376 |
+
[unused370]
|
| 377 |
+
[unused371]
|
| 378 |
+
[unused372]
|
| 379 |
+
[unused373]
|
| 380 |
+
[unused374]
|
| 381 |
+
[unused375]
|
| 382 |
+
[unused376]
|
| 383 |
+
[unused377]
|
| 384 |
+
[unused378]
|
| 385 |
+
[unused379]
|
| 386 |
+
[unused380]
|
| 387 |
+
[unused381]
|
| 388 |
+
[unused382]
|
| 389 |
+
[unused383]
|
| 390 |
+
[unused384]
|
| 391 |
+
[unused385]
|
| 392 |
+
[unused386]
|
| 393 |
+
[unused387]
|
| 394 |
+
[unused388]
|
| 395 |
+
[unused389]
|
| 396 |
+
[unused390]
|
| 397 |
+
[unused391]
|
| 398 |
+
[unused392]
|
| 399 |
+
[unused393]
|
| 400 |
+
[unused394]
|
| 401 |
+
[unused395]
|
| 402 |
+
[unused396]
|
| 403 |
+
[unused397]
|
| 404 |
+
[unused398]
|
| 405 |
+
[unused399]
|
| 406 |
+
[unused400]
|
| 407 |
+
[unused401]
|
| 408 |
+
[unused402]
|
| 409 |
+
[unused403]
|
| 410 |
+
[unused404]
|
| 411 |
+
[unused405]
|
| 412 |
+
[unused406]
|
| 413 |
+
[unused407]
|
| 414 |
+
[unused408]
|
| 415 |
+
[unused409]
|
| 416 |
+
[unused410]
|
| 417 |
+
[unused411]
|
| 418 |
+
[unused412]
|
| 419 |
+
[unused413]
|
| 420 |
+
[unused414]
|
| 421 |
+
[unused415]
|
| 422 |
+
[unused416]
|
| 423 |
+
[unused417]
|
| 424 |
+
[unused418]
|
| 425 |
+
[unused419]
|
| 426 |
+
[unused420]
|
| 427 |
+
[unused421]
|
| 428 |
+
[unused422]
|
| 429 |
+
[unused423]
|
| 430 |
+
[unused424]
|
| 431 |
+
[unused425]
|
| 432 |
+
[unused426]
|
| 433 |
+
[unused427]
|
| 434 |
+
[unused428]
|
| 435 |
+
[unused429]
|
| 436 |
+
[unused430]
|
| 437 |
+
[unused431]
|
| 438 |
+
[unused432]
|
| 439 |
+
[unused433]
|
| 440 |
+
[unused434]
|
| 441 |
+
[unused435]
|
| 442 |
+
[unused436]
|
| 443 |
+
[unused437]
|
| 444 |
+
[unused438]
|
| 445 |
+
[unused439]
|
| 446 |
+
[unused440]
|
| 447 |
+
[unused441]
|
| 448 |
+
[unused442]
|
| 449 |
+
[unused443]
|
| 450 |
+
[unused444]
|
| 451 |
+
[unused445]
|
| 452 |
+
[unused446]
|
| 453 |
+
[unused447]
|
| 454 |
+
[unused448]
|
| 455 |
+
[unused449]
|
| 456 |
+
[unused450]
|
| 457 |
+
[unused451]
|
| 458 |
+
[unused452]
|
| 459 |
+
[unused453]
|
| 460 |
+
[unused454]
|
| 461 |
+
[unused455]
|
| 462 |
+
[unused456]
|
| 463 |
+
[unused457]
|
| 464 |
+
[unused458]
|
| 465 |
+
[unused459]
|
| 466 |
+
[unused460]
|
| 467 |
+
[unused461]
|
| 468 |
+
[unused462]
|
| 469 |
+
[unused463]
|
| 470 |
+
[unused464]
|
| 471 |
+
[unused465]
|
| 472 |
+
[unused466]
|
| 473 |
+
[unused467]
|
| 474 |
+
[unused468]
|
| 475 |
+
[unused469]
|
| 476 |
+
[unused470]
|
| 477 |
+
[unused471]
|
| 478 |
+
[unused472]
|
| 479 |
+
[unused473]
|
| 480 |
+
[unused474]
|
| 481 |
+
[unused475]
|
| 482 |
+
[unused476]
|
| 483 |
+
[unused477]
|
| 484 |
+
[unused478]
|
| 485 |
+
[unused479]
|
| 486 |
+
[unused480]
|
| 487 |
+
[unused481]
|
| 488 |
+
[unused482]
|
| 489 |
+
[unused483]
|
| 490 |
+
[unused484]
|
| 491 |
+
[unused485]
|
| 492 |
+
[unused486]
|
| 493 |
+
[unused487]
|
| 494 |
+
[unused488]
|
| 495 |
+
[unused489]
|
| 496 |
+
[unused490]
|
| 497 |
+
[unused491]
|
| 498 |
+
[unused492]
|
| 499 |
+
[unused493]
|
| 500 |
+
[unused494]
|
| 501 |
+
[unused495]
|
| 502 |
+
[unused496]
|
| 503 |
+
[unused497]
|
| 504 |
+
[unused498]
|
| 505 |
+
[unused499]
|
| 506 |
+
[unused500]
|
| 507 |
+
[unused501]
|
| 508 |
+
[unused502]
|
| 509 |
+
[unused503]
|
| 510 |
+
[unused504]
|
| 511 |
+
[unused505]
|
| 512 |
+
[unused506]
|
| 513 |
+
[unused507]
|
| 514 |
+
[unused508]
|
| 515 |
+
[unused509]
|
| 516 |
+
[unused510]
|
| 517 |
+
[unused511]
|
| 518 |
+
[unused512]
|
| 519 |
+
[unused513]
|
| 520 |
+
[unused514]
|
| 521 |
+
[unused515]
|
| 522 |
+
[unused516]
|
| 523 |
+
[unused517]
|
| 524 |
+
[unused518]
|
| 525 |
+
[unused519]
|
| 526 |
+
[unused520]
|
| 527 |
+
[unused521]
|
| 528 |
+
[unused522]
|
| 529 |
+
[unused523]
|
| 530 |
+
[unused524]
|
| 531 |
+
[unused525]
|
| 532 |
+
[unused526]
|
| 533 |
+
[unused527]
|
| 534 |
+
[unused528]
|
| 535 |
+
[unused529]
|
| 536 |
+
[unused530]
|
| 537 |
+
[unused531]
|
| 538 |
+
[unused532]
|
| 539 |
+
[unused533]
|
| 540 |
+
[unused534]
|
| 541 |
+
[unused535]
|
| 542 |
+
[unused536]
|
| 543 |
+
[unused537]
|
| 544 |
+
[unused538]
|
| 545 |
+
[unused539]
|
| 546 |
+
[unused540]
|
| 547 |
+
[unused541]
|
| 548 |
+
[unused542]
|
| 549 |
+
[unused543]
|
| 550 |
+
[unused544]
|
| 551 |
+
[unused545]
|
| 552 |
+
[unused546]
|
| 553 |
+
[unused547]
|
| 554 |
+
[unused548]
|
| 555 |
+
[unused549]
|
| 556 |
+
[unused550]
|
| 557 |
+
[unused551]
|
| 558 |
+
[unused552]
|
| 559 |
+
[unused553]
|
| 560 |
+
[unused554]
|
| 561 |
+
[unused555]
|
| 562 |
+
[unused556]
|
| 563 |
+
[unused557]
|
| 564 |
+
[unused558]
|
| 565 |
+
[unused559]
|
| 566 |
+
[unused560]
|
| 567 |
+
[unused561]
|
| 568 |
+
[unused562]
|
| 569 |
+
[unused563]
|
| 570 |
+
[unused564]
|
| 571 |
+
[unused565]
|
| 572 |
+
[unused566]
|
| 573 |
+
[unused567]
|
| 574 |
+
[unused568]
|
| 575 |
+
[unused569]
|
| 576 |
+
[unused570]
|
| 577 |
+
[unused571]
|
| 578 |
+
[unused572]
|
| 579 |
+
[unused573]
|
| 580 |
+
[unused574]
|
| 581 |
+
[unused575]
|
| 582 |
+
[unused576]
|
| 583 |
+
[unused577]
|
| 584 |
+
[unused578]
|
| 585 |
+
[unused579]
|
| 586 |
+
[unused580]
|
| 587 |
+
[unused581]
|
| 588 |
+
[unused582]
|
| 589 |
+
[unused583]
|
| 590 |
+
[unused584]
|
| 591 |
+
[unused585]
|
| 592 |
+
[unused586]
|
| 593 |
+
[unused587]
|
| 594 |
+
[unused588]
|
| 595 |
+
[unused589]
|
| 596 |
+
[unused590]
|
| 597 |
+
[unused591]
|
| 598 |
+
[unused592]
|
| 599 |
+
[unused593]
|
| 600 |
+
[unused594]
|
| 601 |
+
[unused595]
|
| 602 |
+
[unused596]
|
| 603 |
+
[unused597]
|
| 604 |
+
[unused598]
|
| 605 |
+
[unused599]
|
| 606 |
+
[unused600]
|
| 607 |
+
[unused601]
|
| 608 |
+
[unused602]
|
| 609 |
+
[unused603]
|
| 610 |
+
[unused604]
|
| 611 |
+
[unused605]
|
| 612 |
+
[unused606]
|
| 613 |
+
[unused607]
|
| 614 |
+
[unused608]
|
| 615 |
+
[unused609]
|
| 616 |
+
[unused610]
|
| 617 |
+
[unused611]
|
| 618 |
+
[unused612]
|
| 619 |
+
[unused613]
|
| 620 |
+
[unused614]
|
| 621 |
+
[unused615]
|
| 622 |
+
[unused616]
|
| 623 |
+
[unused617]
|
| 624 |
+
[unused618]
|
| 625 |
+
[unused619]
|
| 626 |
+
[unused620]
|
| 627 |
+
[unused621]
|
| 628 |
+
[unused622]
|
| 629 |
+
[unused623]
|
| 630 |
+
[unused624]
|
| 631 |
+
[unused625]
|
| 632 |
+
[unused626]
|
| 633 |
+
[unused627]
|
| 634 |
+
[unused628]
|
| 635 |
+
[unused629]
|
| 636 |
+
[unused630]
|
| 637 |
+
[unused631]
|
| 638 |
+
[unused632]
|
| 639 |
+
[unused633]
|
| 640 |
+
[unused634]
|
| 641 |
+
[unused635]
|
| 642 |
+
[unused636]
|
| 643 |
+
[unused637]
|
| 644 |
+
[unused638]
|
| 645 |
+
[unused639]
|
| 646 |
+
[unused640]
|
| 647 |
+
[unused641]
|
| 648 |
+
[unused642]
|
| 649 |
+
[unused643]
|
| 650 |
+
[unused644]
|
| 651 |
+
[unused645]
|
| 652 |
+
[unused646]
|
| 653 |
+
[unused647]
|
| 654 |
+
[unused648]
|
| 655 |
+
[unused649]
|
| 656 |
+
[unused650]
|
| 657 |
+
[unused651]
|
| 658 |
+
[unused652]
|
| 659 |
+
[unused653]
|
| 660 |
+
[unused654]
|
| 661 |
+
[unused655]
|
| 662 |
+
[unused656]
|
| 663 |
+
[unused657]
|
| 664 |
+
[unused658]
|
| 665 |
+
[unused659]
|
| 666 |
+
[unused660]
|
| 667 |
+
[unused661]
|
| 668 |
+
[unused662]
|
| 669 |
+
[unused663]
|
| 670 |
+
[unused664]
|
| 671 |
+
[unused665]
|
| 672 |
+
[unused666]
|
| 673 |
+
[unused667]
|
| 674 |
+
[unused668]
|
| 675 |
+
[unused669]
|
| 676 |
+
[unused670]
|
| 677 |
+
[unused671]
|
| 678 |
+
[unused672]
|
| 679 |
+
[unused673]
|
| 680 |
+
[unused674]
|
| 681 |
+
[unused675]
|
| 682 |
+
[unused676]
|
| 683 |
+
[unused677]
|
| 684 |
+
[unused678]
|
| 685 |
+
[unused679]
|
| 686 |
+
[unused680]
|
| 687 |
+
[unused681]
|
| 688 |
+
[unused682]
|
| 689 |
+
[unused683]
|
| 690 |
+
[unused684]
|
| 691 |
+
[unused685]
|
| 692 |
+
[unused686]
|
| 693 |
+
[unused687]
|
| 694 |
+
[unused688]
|
| 695 |
+
[unused689]
|
| 696 |
+
[unused690]
|
| 697 |
+
[unused691]
|
| 698 |
+
[unused692]
|
| 699 |
+
[unused693]
|
| 700 |
+
[unused694]
|
| 701 |
+
[unused695]
|
| 702 |
+
[unused696]
|
| 703 |
+
[unused697]
|
| 704 |
+
[unused698]
|
| 705 |
+
[unused699]
|
| 706 |
+
[unused700]
|
| 707 |
+
[unused701]
|
| 708 |
+
[unused702]
|
| 709 |
+
[unused703]
|
| 710 |
+
[unused704]
|
| 711 |
+
[unused705]
|
| 712 |
+
[unused706]
|
| 713 |
+
[unused707]
|
| 714 |
+
[unused708]
|
| 715 |
+
[unused709]
|
| 716 |
+
[unused710]
|
| 717 |
+
[unused711]
|
| 718 |
+
[unused712]
|
| 719 |
+
[unused713]
|
| 720 |
+
[unused714]
|
| 721 |
+
[unused715]
|
| 722 |
+
[unused716]
|
| 723 |
+
[unused717]
|
| 724 |
+
[unused718]
|
| 725 |
+
[unused719]
|
| 726 |
+
[unused720]
|
| 727 |
+
[unused721]
|
| 728 |
+
[unused722]
|
| 729 |
+
[unused723]
|
| 730 |
+
[unused724]
|
| 731 |
+
[unused725]
|
| 732 |
+
[unused726]
|
| 733 |
+
[unused727]
|
| 734 |
+
[unused728]
|
| 735 |
+
[unused729]
|
| 736 |
+
[unused730]
|
| 737 |
+
[unused731]
|
| 738 |
+
[unused732]
|
| 739 |
+
[unused733]
|
| 740 |
+
[unused734]
|
| 741 |
+
[unused735]
|
| 742 |
+
[unused736]
|
| 743 |
+
[unused737]
|
| 744 |
+
[unused738]
|
| 745 |
+
[unused739]
|
| 746 |
+
[unused740]
|
| 747 |
+
[unused741]
|
| 748 |
+
[unused742]
|
| 749 |
+
[unused743]
|
| 750 |
+
[unused744]
|
| 751 |
+
[unused745]
|
| 752 |
+
[unused746]
|
| 753 |
+
[unused747]
|
| 754 |
+
[unused748]
|
| 755 |
+
[unused749]
|
| 756 |
+
[unused750]
|
| 757 |
+
[unused751]
|
| 758 |
+
[unused752]
|
| 759 |
+
[unused753]
|
| 760 |
+
[unused754]
|
| 761 |
+
[unused755]
|
| 762 |
+
[unused756]
|
| 763 |
+
[unused757]
|
| 764 |
+
[unused758]
|
| 765 |
+
[unused759]
|
| 766 |
+
[unused760]
|
| 767 |
+
[unused761]
|
| 768 |
+
[unused762]
|
| 769 |
+
[unused763]
|
| 770 |
+
[unused764]
|
| 771 |
+
[unused765]
|
| 772 |
+
[unused766]
|
| 773 |
+
[unused767]
|
| 774 |
+
[unused768]
|
| 775 |
+
[unused769]
|
| 776 |
+
[unused770]
|
| 777 |
+
[unused771]
|
| 778 |
+
[unused772]
|
| 779 |
+
[unused773]
|
| 780 |
+
[unused774]
|
| 781 |
+
[unused775]
|
| 782 |
+
[unused776]
|
| 783 |
+
[unused777]
|
| 784 |
+
[unused778]
|
| 785 |
+
[unused779]
|
| 786 |
+
[unused780]
|
| 787 |
+
[unused781]
|
| 788 |
+
[unused782]
|
| 789 |
+
[unused783]
|
| 790 |
+
[unused784]
|
| 791 |
+
[unused785]
|
| 792 |
+
[unused786]
|
| 793 |
+
[unused787]
|
| 794 |
+
[unused788]
|
| 795 |
+
[unused789]
|
| 796 |
+
[unused790]
|
| 797 |
+
[unused791]
|
| 798 |
+
[unused792]
|
| 799 |
+
[unused793]
|
| 800 |
+
[unused794]
|
| 801 |
+
[unused795]
|
| 802 |
+
[unused796]
|
| 803 |
+
[unused797]
|
| 804 |
+
[unused798]
|
| 805 |
+
[unused799]
|
| 806 |
+
[unused800]
|
| 807 |
+
[unused801]
|
| 808 |
+
[unused802]
|
| 809 |
+
[unused803]
|
| 810 |
+
[unused804]
|
| 811 |
+
[unused805]
|
| 812 |
+
[unused806]
|
| 813 |
+
[unused807]
|
| 814 |
+
[unused808]
|
| 815 |
+
[unused809]
|
| 816 |
+
[unused810]
|
| 817 |
+
[unused811]
|
| 818 |
+
[unused812]
|
| 819 |
+
[unused813]
|
| 820 |
+
[unused814]
|
| 821 |
+
[unused815]
|
| 822 |
+
[unused816]
|
| 823 |
+
[unused817]
|
| 824 |
+
[unused818]
|
| 825 |
+
[unused819]
|
| 826 |
+
[unused820]
|
| 827 |
+
[unused821]
|
| 828 |
+
[unused822]
|
| 829 |
+
[unused823]
|
| 830 |
+
[unused824]
|
| 831 |
+
[unused825]
|
| 832 |
+
[unused826]
|
| 833 |
+
[unused827]
|
| 834 |
+
[unused828]
|
| 835 |
+
[unused829]
|
| 836 |
+
[unused830]
|
| 837 |
+
[unused831]
|
| 838 |
+
[unused832]
|
| 839 |
+
[unused833]
|
| 840 |
+
[unused834]
|
| 841 |
+
[unused835]
|
| 842 |
+
[unused836]
|
| 843 |
+
[unused837]
|
| 844 |
+
[unused838]
|
| 845 |
+
[unused839]
|
| 846 |
+
[unused840]
|
| 847 |
+
[unused841]
|
| 848 |
+
[unused842]
|
| 849 |
+
[unused843]
|
| 850 |
+
[unused844]
|
| 851 |
+
[unused845]
|
| 852 |
+
[unused846]
|
| 853 |
+
[unused847]
|
| 854 |
+
[unused848]
|
| 855 |
+
[unused849]
|
| 856 |
+
[unused850]
|
| 857 |
+
[unused851]
|
| 858 |
+
[unused852]
|
| 859 |
+
[unused853]
|
| 860 |
+
[unused854]
|
| 861 |
+
[unused855]
|
| 862 |
+
[unused856]
|
| 863 |
+
[unused857]
|
| 864 |
+
[unused858]
|
| 865 |
+
[unused859]
|
| 866 |
+
[unused860]
|
| 867 |
+
[unused861]
|
| 868 |
+
[unused862]
|
| 869 |
+
[unused863]
|
| 870 |
+
[unused864]
|
| 871 |
+
[unused865]
|
| 872 |
+
[unused866]
|
| 873 |
+
[unused867]
|
| 874 |
+
[unused868]
|
| 875 |
+
[unused869]
|
| 876 |
+
[unused870]
|
| 877 |
+
[unused871]
|
| 878 |
+
[unused872]
|
| 879 |
+
[unused873]
|
| 880 |
+
[unused874]
|
| 881 |
+
[unused875]
|
| 882 |
+
[unused876]
|
| 883 |
+
[unused877]
|
| 884 |
+
[unused878]
|
| 885 |
+
[unused879]
|
| 886 |
+
[unused880]
|
| 887 |
+
[unused881]
|
| 888 |
+
[unused882]
|
| 889 |
+
[unused883]
|
| 890 |
+
[unused884]
|
| 891 |
+
[unused885]
|
| 892 |
+
[unused886]
|
| 893 |
+
[unused887]
|
| 894 |
+
[unused888]
|
| 895 |
+
[unused889]
|
| 896 |
+
[unused890]
|
| 897 |
+
[unused891]
|
| 898 |
+
[unused892]
|
| 899 |
+
[unused893]
|
| 900 |
+
[unused894]
|
| 901 |
+
[unused895]
|
| 902 |
+
[unused896]
|
| 903 |
+
[unused897]
|
| 904 |
+
[unused898]
|
| 905 |
+
[unused899]
|
| 906 |
+
[unused900]
|
| 907 |
+
[unused901]
|
| 908 |
+
[unused902]
|
| 909 |
+
[unused903]
|
| 910 |
+
[unused904]
|
| 911 |
+
[unused905]
|
| 912 |
+
[unused906]
|
| 913 |
+
[unused907]
|
| 914 |
+
[unused908]
|
| 915 |
+
[unused909]
|
| 916 |
+
[unused910]
|
| 917 |
+
[unused911]
|
| 918 |
+
[unused912]
|
| 919 |
+
[unused913]
|
| 920 |
+
[unused914]
|
| 921 |
+
[unused915]
|
| 922 |
+
[unused916]
|
| 923 |
+
[unused917]
|
| 924 |
+
[unused918]
|
| 925 |
+
[unused919]
|
| 926 |
+
[unused920]
|
| 927 |
+
[unused921]
|
| 928 |
+
[unused922]
|
| 929 |
+
[unused923]
|
| 930 |
+
[unused924]
|
| 931 |
+
[unused925]
|
| 932 |
+
[unused926]
|
| 933 |
+
[unused927]
|
| 934 |
+
[unused928]
|
| 935 |
+
[unused929]
|
| 936 |
+
[unused930]
|
| 937 |
+
[unused931]
|
| 938 |
+
[unused932]
|
| 939 |
+
[unused933]
|
| 940 |
+
[unused934]
|
| 941 |
+
[unused935]
|
| 942 |
+
[unused936]
|
| 943 |
+
[unused937]
|
| 944 |
+
[unused938]
|
| 945 |
+
[unused939]
|
| 946 |
+
[unused940]
|
| 947 |
+
[unused941]
|
| 948 |
+
[unused942]
|
| 949 |
+
[unused943]
|
| 950 |
+
[unused944]
|
| 951 |
+
[unused945]
|
| 952 |
+
[unused946]
|
| 953 |
+
[unused947]
|
| 954 |
+
[unused948]
|
| 955 |
+
[unused949]
|
| 956 |
+
[unused950]
|
| 957 |
+
[unused951]
|
| 958 |
+
[unused952]
|
| 959 |
+
[unused953]
|
| 960 |
+
[unused954]
|
| 961 |
+
[unused955]
|
| 962 |
+
[unused956]
|
| 963 |
+
[unused957]
|
| 964 |
+
[unused958]
|
| 965 |
+
[unused959]
|
| 966 |
+
[unused960]
|
| 967 |
+
[unused961]
|
| 968 |
+
[unused962]
|
| 969 |
+
[unused963]
|
| 970 |
+
[unused964]
|
| 971 |
+
[unused965]
|
| 972 |
+
[unused966]
|
| 973 |
+
[unused967]
|
| 974 |
+
[unused968]
|
| 975 |
+
[unused969]
|
| 976 |
+
[unused970]
|
| 977 |
+
[unused971]
|
| 978 |
+
[unused972]
|
| 979 |
+
[unused973]
|
| 980 |
+
[unused974]
|
| 981 |
+
[unused975]
|
| 982 |
+
[unused976]
|
| 983 |
+
[unused977]
|
| 984 |
+
[unused978]
|
| 985 |
+
[unused979]
|
| 986 |
+
[unused980]
|
| 987 |
+
[unused981]
|
| 988 |
+
[unused982]
|
| 989 |
+
[unused983]
|
| 990 |
+
[unused984]
|
| 991 |
+
[unused985]
|
| 992 |
+
[unused986]
|
| 993 |
+
[unused987]
|
| 994 |
+
[unused988]
|
| 995 |
+
[unused989]
|
| 996 |
+
[unused990]
|
| 997 |
+
[unused991]
|
| 998 |
+
[unused992]
|
| 999 |
+
[unused993]
|
| 1000 |
+
!
|
| 1001 |
+
"
|
| 1002 |
+
#
|
| 1003 |
+
$
|
| 1004 |
+
%
|
| 1005 |
+
&
|
| 1006 |
+
'
|
| 1007 |
+
(
|
| 1008 |
+
)
|
| 1009 |
+
*
|
| 1010 |
+
+
|
| 1011 |
+
,
|
| 1012 |
+
-
|
| 1013 |
+
.
|
| 1014 |
+
/
|
| 1015 |
+
0
|
| 1016 |
+
1
|
| 1017 |
+
2
|
| 1018 |
+
3
|
| 1019 |
+
4
|
| 1020 |
+
5
|
| 1021 |
+
6
|
| 1022 |
+
7
|
| 1023 |
+
8
|
| 1024 |
+
9
|
| 1025 |
+
:
|
| 1026 |
+
;
|
| 1027 |
+
<
|
| 1028 |
+
=
|
| 1029 |
+
>
|
| 1030 |
+
?
|
| 1031 |
+
@
|
| 1032 |
+
[
|
| 1033 |
+
\
|
| 1034 |
+
]
|
| 1035 |
+
^
|
| 1036 |
+
_
|
| 1037 |
+
`
|
| 1038 |
+
a
|
| 1039 |
+
b
|
| 1040 |
+
c
|
| 1041 |
+
d
|
| 1042 |
+
e
|
| 1043 |
+
f
|
| 1044 |
+
g
|
| 1045 |
+
h
|
| 1046 |
+
i
|
| 1047 |
+
j
|
| 1048 |
+
k
|
| 1049 |
+
l
|
| 1050 |
+
m
|
| 1051 |
+
n
|
| 1052 |
+
o
|
| 1053 |
+
p
|
| 1054 |
+
q
|
| 1055 |
+
r
|
| 1056 |
+
s
|
| 1057 |
+
t
|
| 1058 |
+
u
|
| 1059 |
+
v
|
| 1060 |
+
w
|
| 1061 |
+
x
|
| 1062 |
+
y
|
| 1063 |
+
z
|
| 1064 |
+
{
|
| 1065 |
+
|
|
| 1066 |
+
}
|
| 1067 |
+
~
|
| 1068 |
+
¡
|
| 1069 |
+
¢
|
| 1070 |
+
£
|
| 1071 |
+
¤
|
| 1072 |
+
¥
|
| 1073 |
+
¦
|
| 1074 |
+
§
|
| 1075 |
+
¨
|
| 1076 |
+
©
|
| 1077 |
+
ª
|
| 1078 |
+
«
|
| 1079 |
+
¬
|
| 1080 |
+
®
|
| 1081 |
+
°
|
| 1082 |
+
±
|
| 1083 |
+
²
|
| 1084 |
+
³
|
| 1085 |
+
´
|
| 1086 |
+
µ
|
| 1087 |
+
¶
|
| 1088 |
+
·
|
| 1089 |
+
¹
|
| 1090 |
+
º
|
| 1091 |
+
»
|
| 1092 |
+
¼
|
| 1093 |
+
½
|
| 1094 |
+
¾
|
| 1095 |
+
¿
|
| 1096 |
+
×
|
| 1097 |
+
ß
|
| 1098 |
+
æ
|
| 1099 |
+
ð
|
| 1100 |
+
÷
|
| 1101 |
+
ø
|
| 1102 |
+
þ
|
| 1103 |
+
đ
|
| 1104 |
+
ħ
|
| 1105 |
+
ı
|
| 1106 |
+
ł
|
| 1107 |
+
ŋ
|
| 1108 |
+
œ
|
| 1109 |
+
ƒ
|
| 1110 |
+
ɐ
|
| 1111 |
+
ɑ
|
| 1112 |
+
ɒ
|
| 1113 |
+
ɔ
|
| 1114 |
+
ɕ
|
| 1115 |
+
ə
|
| 1116 |
+
ɛ
|
| 1117 |
+
ɡ
|
| 1118 |
+
ɣ
|
| 1119 |
+
ɨ
|
| 1120 |
+
ɪ
|
| 1121 |
+
ɫ
|
| 1122 |
+
ɬ
|
| 1123 |
+
ɯ
|
| 1124 |
+
ɲ
|
| 1125 |
+
ɴ
|
| 1126 |
+
ɹ
|
| 1127 |
+
ɾ
|
| 1128 |
+
ʀ
|
| 1129 |
+
ʁ
|
| 1130 |
+
ʂ
|
| 1131 |
+
ʃ
|
| 1132 |
+
ʉ
|
| 1133 |
+
ʊ
|
| 1134 |
+
ʋ
|
| 1135 |
+
ʌ
|
| 1136 |
+
ʎ
|
| 1137 |
+
ʐ
|
| 1138 |
+
ʑ
|
| 1139 |
+
ʒ
|
| 1140 |
+
ʔ
|
| 1141 |
+
ʰ
|
| 1142 |
+
ʲ
|
| 1143 |
+
ʳ
|
| 1144 |
+
ʷ
|
| 1145 |
+
ʸ
|
| 1146 |
+
ʻ
|
| 1147 |
+
ʼ
|
| 1148 |
+
ʾ
|
| 1149 |
+
ʿ
|
| 1150 |
+
ˈ
|
| 1151 |
+
ː
|
| 1152 |
+
ˡ
|
| 1153 |
+
ˢ
|
| 1154 |
+
ˣ
|
| 1155 |
+
ˤ
|
| 1156 |
+
α
|
| 1157 |
+
β
|
| 1158 |
+
γ
|
| 1159 |
+
δ
|
| 1160 |
+
ε
|
| 1161 |
+
ζ
|
| 1162 |
+
η
|
| 1163 |
+
θ
|
| 1164 |
+
ι
|
| 1165 |
+
κ
|
| 1166 |
+
λ
|
| 1167 |
+
μ
|
| 1168 |
+
ν
|
| 1169 |
+
ξ
|
| 1170 |
+
ο
|
| 1171 |
+
π
|
| 1172 |
+
ρ
|
| 1173 |
+
ς
|
| 1174 |
+
σ
|
| 1175 |
+
τ
|
| 1176 |
+
υ
|
| 1177 |
+
φ
|
| 1178 |
+
χ
|
| 1179 |
+
ψ
|
| 1180 |
+
ω
|
| 1181 |
+
а
|
| 1182 |
+
б
|
| 1183 |
+
в
|
| 1184 |
+
г
|
| 1185 |
+
д
|
| 1186 |
+
е
|
| 1187 |
+
ж
|
| 1188 |
+
з
|
| 1189 |
+
и
|
| 1190 |
+
к
|
| 1191 |
+
л
|
| 1192 |
+
м
|
| 1193 |
+
н
|
| 1194 |
+
о
|
| 1195 |
+
п
|
| 1196 |
+
р
|
| 1197 |
+
с
|
| 1198 |
+
т
|
| 1199 |
+
у
|
| 1200 |
+
ф
|
| 1201 |
+
х
|
| 1202 |
+
ц
|
| 1203 |
+
ч
|
| 1204 |
+
ш
|
| 1205 |
+
щ
|
| 1206 |
+
ъ
|
| 1207 |
+
ы
|
| 1208 |
+
ь
|
| 1209 |
+
э
|
| 1210 |
+
ю
|
| 1211 |
+
я
|
| 1212 |
+
ђ
|
| 1213 |
+
є
|
| 1214 |
+
і
|
| 1215 |
+
ј
|
| 1216 |
+
љ
|
| 1217 |
+
њ
|
| 1218 |
+
ћ
|
| 1219 |
+
ӏ
|
| 1220 |
+
ա
|
| 1221 |
+
բ
|
| 1222 |
+
գ
|
| 1223 |
+
դ
|
| 1224 |
+
ե
|
| 1225 |
+
թ
|
| 1226 |
+
ի
|
| 1227 |
+
լ
|
| 1228 |
+
կ
|
| 1229 |
+
հ
|
| 1230 |
+
մ
|
| 1231 |
+
յ
|
| 1232 |
+
ն
|
| 1233 |
+
ո
|
| 1234 |
+
պ
|
| 1235 |
+
ս
|
| 1236 |
+
վ
|
| 1237 |
+
տ
|
| 1238 |
+
ր
|
| 1239 |
+
ւ
|
| 1240 |
+
ք
|
| 1241 |
+
־
|
| 1242 |
+
א
|
| 1243 |
+
ב
|
| 1244 |
+
ג
|
| 1245 |
+
ד
|
| 1246 |
+
ה
|
| 1247 |
+
ו
|
| 1248 |
+
ז
|
| 1249 |
+
ח
|
| 1250 |
+
ט
|
| 1251 |
+
י
|
| 1252 |
+
ך
|
| 1253 |
+
כ
|
| 1254 |
+
ל
|
| 1255 |
+
ם
|
| 1256 |
+
מ
|
| 1257 |
+
ן
|
| 1258 |
+
נ
|
| 1259 |
+
ס
|
| 1260 |
+
ע
|
| 1261 |
+
ף
|
| 1262 |
+
פ
|
| 1263 |
+
ץ
|
| 1264 |
+
צ
|
| 1265 |
+
ק
|
| 1266 |
+
ר
|
| 1267 |
+
ש
|
| 1268 |
+
ת
|
| 1269 |
+
،
|
| 1270 |
+
ء
|
| 1271 |
+
ا
|
| 1272 |
+
ب
|
| 1273 |
+
ة
|
| 1274 |
+
ت
|
| 1275 |
+
ث
|
| 1276 |
+
ج
|
| 1277 |
+
ح
|
| 1278 |
+
خ
|
| 1279 |
+
د
|
| 1280 |
+
ذ
|
| 1281 |
+
ر
|
| 1282 |
+
ز
|
| 1283 |
+
س
|
| 1284 |
+
ش
|
| 1285 |
+
ص
|
| 1286 |
+
ض
|
| 1287 |
+
ط
|
| 1288 |
+
ظ
|
| 1289 |
+
ع
|
| 1290 |
+
غ
|
| 1291 |
+
ـ
|
| 1292 |
+
ف
|
| 1293 |
+
ق
|
| 1294 |
+
ك
|
| 1295 |
+
ل
|
| 1296 |
+
م
|
| 1297 |
+
ن
|
| 1298 |
+
ه
|
| 1299 |
+
و
|
| 1300 |
+
ى
|
| 1301 |
+
ي
|
| 1302 |
+
ٹ
|
| 1303 |
+
پ
|
| 1304 |
+
چ
|
| 1305 |
+
ک
|
| 1306 |
+
گ
|
| 1307 |
+
ں
|
| 1308 |
+
ھ
|
| 1309 |
+
ہ
|
| 1310 |
+
ی
|
| 1311 |
+
ے
|
| 1312 |
+
अ
|
| 1313 |
+
आ
|
| 1314 |
+
उ
|
| 1315 |
+
ए
|
| 1316 |
+
क
|
| 1317 |
+
ख
|
| 1318 |
+
ग
|
| 1319 |
+
च
|
| 1320 |
+
ज
|
| 1321 |
+
ट
|
| 1322 |
+
ड
|
| 1323 |
+
ण
|
| 1324 |
+
त
|
| 1325 |
+
थ
|
| 1326 |
+
द
|
| 1327 |
+
ध
|
| 1328 |
+
न
|
| 1329 |
+
प
|
| 1330 |
+
ब
|
| 1331 |
+
भ
|
| 1332 |
+
म
|
| 1333 |
+
य
|
| 1334 |
+
र
|
| 1335 |
+
ल
|
| 1336 |
+
व
|
| 1337 |
+
श
|
| 1338 |
+
ष
|
| 1339 |
+
स
|
| 1340 |
+
ह
|
| 1341 |
+
ा
|
| 1342 |
+
ि
|
| 1343 |
+
ी
|
| 1344 |
+
ो
|
| 1345 |
+
।
|
| 1346 |
+
॥
|
| 1347 |
+
ং
|
| 1348 |
+
অ
|
| 1349 |
+
আ
|
| 1350 |
+
ই
|
| 1351 |
+
উ
|
| 1352 |
+
এ
|
| 1353 |
+
ও
|
| 1354 |
+
ক
|
| 1355 |
+
খ
|
| 1356 |
+
গ
|
| 1357 |
+
চ
|
| 1358 |
+
ছ
|
| 1359 |
+
জ
|
| 1360 |
+
ট
|
| 1361 |
+
ড
|
| 1362 |
+
ণ
|
| 1363 |
+
ত
|
| 1364 |
+
থ
|
| 1365 |
+
দ
|
| 1366 |
+
ধ
|
| 1367 |
+
ন
|
| 1368 |
+
প
|
| 1369 |
+
ব
|
| 1370 |
+
ভ
|
| 1371 |
+
ম
|
| 1372 |
+
য
|
| 1373 |
+
র
|
| 1374 |
+
ল
|
| 1375 |
+
শ
|
| 1376 |
+
ষ
|
| 1377 |
+
স
|
| 1378 |
+
হ
|
| 1379 |
+
া
|
| 1380 |
+
ি
|
| 1381 |
+
ী
|
| 1382 |
+
ে
|
| 1383 |
+
க
|
| 1384 |
+
ச
|
| 1385 |
+
ட
|
| 1386 |
+
த
|
| 1387 |
+
ந
|
| 1388 |
+
ன
|
| 1389 |
+
ப
|
| 1390 |
+
ம
|
| 1391 |
+
ய
|
| 1392 |
+
ர
|
| 1393 |
+
ல
|
| 1394 |
+
ள
|
| 1395 |
+
வ
|
| 1396 |
+
ா
|
| 1397 |
+
ி
|
| 1398 |
+
ு
|
| 1399 |
+
ே
|
| 1400 |
+
ை
|
| 1401 |
+
ನ
|
| 1402 |
+
ರ
|
| 1403 |
+
ಾ
|
| 1404 |
+
ක
|
| 1405 |
+
ය
|
| 1406 |
+
ර
|
| 1407 |
+
ල
|
| 1408 |
+
ව
|
| 1409 |
+
ා
|
| 1410 |
+
ก
|
| 1411 |
+
ง
|
| 1412 |
+
ต
|
| 1413 |
+
ท
|
| 1414 |
+
น
|
| 1415 |
+
พ
|
| 1416 |
+
ม
|
| 1417 |
+
ย
|
| 1418 |
+
ร
|
| 1419 |
+
ล
|
| 1420 |
+
ว
|
| 1421 |
+
ส
|
| 1422 |
+
อ
|
| 1423 |
+
า
|
| 1424 |
+
เ
|
| 1425 |
+
་
|
| 1426 |
+
།
|
| 1427 |
+
ག
|
| 1428 |
+
ང
|
| 1429 |
+
ད
|
| 1430 |
+
ན
|
| 1431 |
+
པ
|
| 1432 |
+
བ
|
| 1433 |
+
མ
|
| 1434 |
+
འ
|
| 1435 |
+
ར
|
| 1436 |
+
ལ
|
| 1437 |
+
ས
|
| 1438 |
+
မ
|
| 1439 |
+
ა
|
| 1440 |
+
ბ
|
| 1441 |
+
გ
|
| 1442 |
+
დ
|
| 1443 |
+
ე
|
| 1444 |
+
ვ
|
| 1445 |
+
თ
|
| 1446 |
+
ი
|
| 1447 |
+
კ
|
| 1448 |
+
ლ
|
| 1449 |
+
მ
|
| 1450 |
+
ნ
|
| 1451 |
+
ო
|
| 1452 |
+
რ
|
| 1453 |
+
ს
|
| 1454 |
+
ტ
|
| 1455 |
+
უ
|
| 1456 |
+
ᄀ
|
| 1457 |
+
ᄂ
|
| 1458 |
+
ᄃ
|
| 1459 |
+
ᄅ
|
| 1460 |
+
ᄆ
|
| 1461 |
+
ᄇ
|
| 1462 |
+
ᄉ
|
| 1463 |
+
ᄊ
|
| 1464 |
+
ᄋ
|
| 1465 |
+
ᄌ
|
| 1466 |
+
ᄎ
|
| 1467 |
+
ᄏ
|
| 1468 |
+
ᄐ
|
| 1469 |
+
ᄑ
|
| 1470 |
+
ᄒ
|
| 1471 |
+
ᅡ
|
| 1472 |
+
ᅢ
|
| 1473 |
+
ᅥ
|
| 1474 |
+
ᅦ
|
| 1475 |
+
ᅧ
|
| 1476 |
+
ᅩ
|
| 1477 |
+
ᅪ
|
| 1478 |
+
ᅭ
|
| 1479 |
+
ᅮ
|
| 1480 |
+
ᅯ
|
| 1481 |
+
ᅲ
|
| 1482 |
+
ᅳ
|
| 1483 |
+
ᅴ
|
| 1484 |
+
ᅵ
|
| 1485 |
+
ᆨ
|
| 1486 |
+
ᆫ
|
| 1487 |
+
ᆯ
|
| 1488 |
+
ᆷ
|
| 1489 |
+
ᆸ
|
| 1490 |
+
ᆼ
|
| 1491 |
+
ᴬ
|
| 1492 |
+
ᴮ
|
| 1493 |
+
ᴰ
|
| 1494 |
+
ᴵ
|
| 1495 |
+
ᴺ
|
| 1496 |
+
ᵀ
|
| 1497 |
+
ᵃ
|
| 1498 |
+
ᵇ
|
| 1499 |
+
ᵈ
|
| 1500 |
+
ᵉ
|
| 1501 |
+
ᵍ
|
| 1502 |
+
ᵏ
|
| 1503 |
+
ᵐ
|
| 1504 |
+
ᵒ
|
| 1505 |
+
ᵖ
|
| 1506 |
+
ᵗ
|
| 1507 |
+
ᵘ
|
| 1508 |
+
ᵢ
|
| 1509 |
+
ᵣ
|
| 1510 |
+
ᵤ
|
| 1511 |
+
ᵥ
|
| 1512 |
+
ᶜ
|
| 1513 |
+
ᶠ
|
| 1514 |
+
‐
|
| 1515 |
+
‑
|
| 1516 |
+
‒
|
| 1517 |
+
–
|
| 1518 |
+
—
|
| 1519 |
+
―
|
| 1520 |
+
‖
|
| 1521 |
+
‘
|
| 1522 |
+
’
|
| 1523 |
+
‚
|
| 1524 |
+
“
|
| 1525 |
+
”
|
| 1526 |
+
„
|
| 1527 |
+
†
|
| 1528 |
+
‡
|
| 1529 |
+
•
|
| 1530 |
+
…
|
| 1531 |
+
‰
|
| 1532 |
+
′
|
| 1533 |
+
″
|
| 1534 |
+
›
|
| 1535 |
+
‿
|
| 1536 |
+
⁄
|
| 1537 |
+
⁰
|
| 1538 |
+
ⁱ
|
| 1539 |
+
⁴
|
| 1540 |
+
⁵
|
| 1541 |
+
⁶
|
| 1542 |
+
⁷
|
| 1543 |
+
⁸
|
| 1544 |
+
⁹
|
| 1545 |
+
⁺
|
| 1546 |
+
⁻
|
| 1547 |
+
ⁿ
|
| 1548 |
+
₀
|
| 1549 |
+
₁
|
| 1550 |
+
₂
|
| 1551 |
+
₃
|
| 1552 |
+
₄
|
| 1553 |
+
₅
|
| 1554 |
+
₆
|
| 1555 |
+
₇
|
| 1556 |
+
₈
|
| 1557 |
+
₉
|
| 1558 |
+
₊
|
| 1559 |
+
₍
|
| 1560 |
+
₎
|
| 1561 |
+
ₐ
|
| 1562 |
+
ₑ
|
| 1563 |
+
ₒ
|
| 1564 |
+
ₓ
|
| 1565 |
+
ₕ
|
| 1566 |
+
ₖ
|
| 1567 |
+
ₗ
|
| 1568 |
+
ₘ
|
| 1569 |
+
ₙ
|
| 1570 |
+
ₚ
|
| 1571 |
+
ₛ
|
| 1572 |
+
ₜ
|
| 1573 |
+
₤
|
| 1574 |
+
��
|
| 1575 |
+
€
|
| 1576 |
+
₱
|
| 1577 |
+
₹
|
| 1578 |
+
ℓ
|
| 1579 |
+
№
|
| 1580 |
+
ℝ
|
| 1581 |
+
™
|
| 1582 |
+
⅓
|
| 1583 |
+
⅔
|
| 1584 |
+
←
|
| 1585 |
+
↑
|
| 1586 |
+
→
|
| 1587 |
+
↓
|
| 1588 |
+
↔
|
| 1589 |
+
↦
|
| 1590 |
+
⇄
|
| 1591 |
+
⇌
|
| 1592 |
+
⇒
|
| 1593 |
+
∂
|
| 1594 |
+
∅
|
| 1595 |
+
∆
|
| 1596 |
+
∇
|
| 1597 |
+
∈
|
| 1598 |
+
−
|
| 1599 |
+
∗
|
| 1600 |
+
∘
|
| 1601 |
+
√
|
| 1602 |
+
∞
|
| 1603 |
+
∧
|
| 1604 |
+
∨
|
| 1605 |
+
∩
|
| 1606 |
+
∪
|
| 1607 |
+
≈
|
| 1608 |
+
≡
|
| 1609 |
+
≤
|
| 1610 |
+
≥
|
| 1611 |
+
⊂
|
| 1612 |
+
⊆
|
| 1613 |
+
⊕
|
| 1614 |
+
⊗
|
| 1615 |
+
⋅
|
| 1616 |
+
─
|
| 1617 |
+
│
|
| 1618 |
+
■
|
| 1619 |
+
▪
|
| 1620 |
+
●
|
| 1621 |
+
★
|
| 1622 |
+
☆
|
| 1623 |
+
☉
|
| 1624 |
+
♠
|
| 1625 |
+
♣
|
| 1626 |
+
♥
|
| 1627 |
+
♦
|
| 1628 |
+
♭
|
| 1629 |
+
♯
|
| 1630 |
+
⟨
|
| 1631 |
+
⟩
|
| 1632 |
+
ⱼ
|
| 1633 |
+
⺩
|
| 1634 |
+
⺼
|
| 1635 |
+
⽥
|
| 1636 |
+
、
|
| 1637 |
+
。
|
| 1638 |
+
〈
|
| 1639 |
+
〉
|
| 1640 |
+
《
|
| 1641 |
+
》
|
| 1642 |
+
「
|
| 1643 |
+
」
|
| 1644 |
+
『
|
| 1645 |
+
』
|
| 1646 |
+
〜
|
| 1647 |
+
あ
|
| 1648 |
+
い
|
| 1649 |
+
う
|
| 1650 |
+
え
|
| 1651 |
+
お
|
| 1652 |
+
か
|
| 1653 |
+
き
|
| 1654 |
+
く
|
| 1655 |
+
け
|
| 1656 |
+
こ
|
| 1657 |
+
さ
|
| 1658 |
+
し
|
| 1659 |
+
す
|
| 1660 |
+
せ
|
| 1661 |
+
そ
|
| 1662 |
+
た
|
| 1663 |
+
ち
|
| 1664 |
+
っ
|
| 1665 |
+
つ
|
| 1666 |
+
て
|
| 1667 |
+
と
|
| 1668 |
+
な
|
| 1669 |
+
に
|
| 1670 |
+
ぬ
|
| 1671 |
+
ね
|
| 1672 |
+
の
|
| 1673 |
+
は
|
| 1674 |
+
ひ
|
| 1675 |
+
ふ
|
| 1676 |
+
へ
|
| 1677 |
+
ほ
|
| 1678 |
+
ま
|
| 1679 |
+
み
|
| 1680 |
+
む
|
| 1681 |
+
め
|
| 1682 |
+
も
|
| 1683 |
+
や
|
| 1684 |
+
ゆ
|
| 1685 |
+
よ
|
| 1686 |
+
ら
|
| 1687 |
+
り
|
| 1688 |
+
る
|
| 1689 |
+
れ
|
| 1690 |
+
ろ
|
| 1691 |
+
を
|
| 1692 |
+
ん
|
| 1693 |
+
ァ
|
| 1694 |
+
ア
|
| 1695 |
+
ィ
|
| 1696 |
+
イ
|
| 1697 |
+
ウ
|
| 1698 |
+
ェ
|
| 1699 |
+
エ
|
| 1700 |
+
オ
|
| 1701 |
+
カ
|
| 1702 |
+
キ
|
| 1703 |
+
ク
|
| 1704 |
+
ケ
|
| 1705 |
+
コ
|
| 1706 |
+
サ
|
| 1707 |
+
シ
|
| 1708 |
+
ス
|
| 1709 |
+
セ
|
| 1710 |
+
タ
|
| 1711 |
+
チ
|
| 1712 |
+
ッ
|
| 1713 |
+
ツ
|
| 1714 |
+
テ
|
| 1715 |
+
ト
|
| 1716 |
+
ナ
|
| 1717 |
+
ニ
|
| 1718 |
+
ノ
|
| 1719 |
+
ハ
|
| 1720 |
+
ヒ
|
| 1721 |
+
フ
|
| 1722 |
+
ヘ
|
| 1723 |
+
ホ
|
| 1724 |
+
マ
|
| 1725 |
+
ミ
|
| 1726 |
+
ム
|
| 1727 |
+
メ
|
| 1728 |
+
モ
|
| 1729 |
+
ャ
|
| 1730 |
+
ュ
|
| 1731 |
+
ョ
|
| 1732 |
+
ラ
|
| 1733 |
+
リ
|
| 1734 |
+
ル
|
| 1735 |
+
レ
|
| 1736 |
+
ロ
|
| 1737 |
+
ワ
|
| 1738 |
+
ン
|
| 1739 |
+
・
|
| 1740 |
+
ー
|
| 1741 |
+
一
|
| 1742 |
+
三
|
| 1743 |
+
上
|
| 1744 |
+
下
|
| 1745 |
+
不
|
| 1746 |
+
世
|
| 1747 |
+
中
|
| 1748 |
+
主
|
| 1749 |
+
久
|
| 1750 |
+
之
|
| 1751 |
+
也
|
| 1752 |
+
事
|
| 1753 |
+
二
|
| 1754 |
+
五
|
| 1755 |
+
井
|
| 1756 |
+
京
|
| 1757 |
+
人
|
| 1758 |
+
亻
|
| 1759 |
+
仁
|
| 1760 |
+
介
|
| 1761 |
+
代
|
| 1762 |
+
仮
|
| 1763 |
+
伊
|
| 1764 |
+
会
|
| 1765 |
+
佐
|
| 1766 |
+
侍
|
| 1767 |
+
保
|
| 1768 |
+
信
|
| 1769 |
+
健
|
| 1770 |
+
元
|
| 1771 |
+
光
|
| 1772 |
+
八
|
| 1773 |
+
公
|
| 1774 |
+
内
|
| 1775 |
+
出
|
| 1776 |
+
分
|
| 1777 |
+
前
|
| 1778 |
+
劉
|
| 1779 |
+
力
|
| 1780 |
+
加
|
| 1781 |
+
勝
|
| 1782 |
+
北
|
| 1783 |
+
区
|
| 1784 |
+
十
|
| 1785 |
+
千
|
| 1786 |
+
南
|
| 1787 |
+
博
|
| 1788 |
+
原
|
| 1789 |
+
口
|
| 1790 |
+
古
|
| 1791 |
+
史
|
| 1792 |
+
司
|
| 1793 |
+
合
|
| 1794 |
+
吉
|
| 1795 |
+
同
|
| 1796 |
+
名
|
| 1797 |
+
和
|
| 1798 |
+
囗
|
| 1799 |
+
四
|
| 1800 |
+
国
|
| 1801 |
+
國
|
| 1802 |
+
土
|
| 1803 |
+
地
|
| 1804 |
+
坂
|
| 1805 |
+
城
|
| 1806 |
+
堂
|
| 1807 |
+
場
|
| 1808 |
+
士
|
| 1809 |
+
夏
|
| 1810 |
+
外
|
| 1811 |
+
大
|
| 1812 |
+
天
|
| 1813 |
+
太
|
| 1814 |
+
夫
|
| 1815 |
+
奈
|
| 1816 |
+
女
|
| 1817 |
+
子
|
| 1818 |
+
学
|
| 1819 |
+
宀
|
| 1820 |
+
宇
|
| 1821 |
+
安
|
| 1822 |
+
宗
|
| 1823 |
+
定
|
| 1824 |
+
宣
|
| 1825 |
+
宮
|
| 1826 |
+
家
|
| 1827 |
+
宿
|
| 1828 |
+
寺
|
| 1829 |
+
將
|
| 1830 |
+
小
|
| 1831 |
+
尚
|
| 1832 |
+
山
|
| 1833 |
+
岡
|
| 1834 |
+
島
|
| 1835 |
+
崎
|
| 1836 |
+
川
|
| 1837 |
+
州
|
| 1838 |
+
巿
|
| 1839 |
+
帝
|
| 1840 |
+
平
|
| 1841 |
+
年
|
| 1842 |
+
幸
|
| 1843 |
+
广
|
| 1844 |
+
弘
|
| 1845 |
+
張
|
| 1846 |
+
彳
|
| 1847 |
+
後
|
| 1848 |
+
御
|
| 1849 |
+
德
|
| 1850 |
+
心
|
| 1851 |
+
忄
|
| 1852 |
+
志
|
| 1853 |
+
忠
|
| 1854 |
+
愛
|
| 1855 |
+
成
|
| 1856 |
+
我
|
| 1857 |
+
戦
|
| 1858 |
+
戸
|
| 1859 |
+
手
|
| 1860 |
+
扌
|
| 1861 |
+
政
|
| 1862 |
+
文
|
| 1863 |
+
新
|
| 1864 |
+
方
|
| 1865 |
+
日
|
| 1866 |
+
明
|
| 1867 |
+
星
|
| 1868 |
+
春
|
| 1869 |
+
昭
|
| 1870 |
+
智
|
| 1871 |
+
曲
|
| 1872 |
+
書
|
| 1873 |
+
月
|
| 1874 |
+
有
|
| 1875 |
+
朝
|
| 1876 |
+
木
|
| 1877 |
+
本
|
| 1878 |
+
李
|
| 1879 |
+
村
|
| 1880 |
+
東
|
| 1881 |
+
松
|
| 1882 |
+
林
|
| 1883 |
+
森
|
| 1884 |
+
楊
|
| 1885 |
+
樹
|
| 1886 |
+
橋
|
| 1887 |
+
歌
|
| 1888 |
+
止
|
| 1889 |
+
正
|
| 1890 |
+
武
|
| 1891 |
+
比
|
| 1892 |
+
氏
|
| 1893 |
+
民
|
| 1894 |
+
水
|
| 1895 |
+
氵
|
| 1896 |
+
氷
|
| 1897 |
+
永
|
| 1898 |
+
江
|
| 1899 |
+
沢
|
| 1900 |
+
河
|
| 1901 |
+
治
|
| 1902 |
+
法
|
| 1903 |
+
海
|
| 1904 |
+
清
|
| 1905 |
+
漢
|
| 1906 |
+
瀬
|
| 1907 |
+
火
|
| 1908 |
+
版
|
| 1909 |
+
犬
|
| 1910 |
+
王
|
| 1911 |
+
生
|
| 1912 |
+
田
|
| 1913 |
+
男
|
| 1914 |
+
疒
|
| 1915 |
+
発
|
| 1916 |
+
白
|
| 1917 |
+
的
|
| 1918 |
+
皇
|
| 1919 |
+
目
|
| 1920 |
+
相
|
| 1921 |
+
省
|
| 1922 |
+
真
|
| 1923 |
+
石
|
| 1924 |
+
示
|
| 1925 |
+
社
|
| 1926 |
+
神
|
| 1927 |
+
福
|
| 1928 |
+
禾
|
| 1929 |
+
秀
|
| 1930 |
+
秋
|
| 1931 |
+
空
|
| 1932 |
+
立
|
| 1933 |
+
章
|
| 1934 |
+
竹
|
| 1935 |
+
糹
|
| 1936 |
+
美
|
| 1937 |
+
義
|
| 1938 |
+
耳
|
| 1939 |
+
良
|
| 1940 |
+
艹
|
| 1941 |
+
花
|
| 1942 |
+
英
|
| 1943 |
+
華
|
| 1944 |
+
葉
|
| 1945 |
+
藤
|
| 1946 |
+
行
|
| 1947 |
+
街
|
| 1948 |
+
西
|
| 1949 |
+
見
|
| 1950 |
+
訁
|
| 1951 |
+
語
|
| 1952 |
+
谷
|
| 1953 |
+
貝
|
| 1954 |
+
貴
|
| 1955 |
+
車
|
| 1956 |
+
軍
|
| 1957 |
+
辶
|
| 1958 |
+
道
|
| 1959 |
+
郎
|
| 1960 |
+
郡
|
| 1961 |
+
部
|
| 1962 |
+
都
|
| 1963 |
+
里
|
| 1964 |
+
野
|
| 1965 |
+
金
|
| 1966 |
+
鈴
|
| 1967 |
+
镇
|
| 1968 |
+
長
|
| 1969 |
+
門
|
| 1970 |
+
間
|
| 1971 |
+
阝
|
| 1972 |
+
阿
|
| 1973 |
+
陳
|
| 1974 |
+
陽
|
| 1975 |
+
雄
|
| 1976 |
+
青
|
| 1977 |
+
面
|
| 1978 |
+
風
|
| 1979 |
+
食
|
| 1980 |
+
香
|
| 1981 |
+
馬
|
| 1982 |
+
高
|
| 1983 |
+
龍
|
| 1984 |
+
龸
|
| 1985 |
+
fi
|
| 1986 |
+
fl
|
| 1987 |
+
!
|
| 1988 |
+
(
|
| 1989 |
+
)
|
| 1990 |
+
,
|
| 1991 |
+
-
|
| 1992 |
+
.
|
| 1993 |
+
/
|
| 1994 |
+
:
|
| 1995 |
+
?
|
| 1996 |
+
~
|
| 1997 |
+
the
|
| 1998 |
+
of
|
| 1999 |
+
and
|
| 2000 |
+
in
|
| 2001 |
+
to
|
| 2002 |
+
was
|
| 2003 |
+
he
|
| 2004 |
+
is
|
| 2005 |
+
as
|
| 2006 |
+
for
|
| 2007 |
+
on
|
| 2008 |
+
with
|
| 2009 |
+
that
|
| 2010 |
+
it
|
| 2011 |
+
his
|
| 2012 |
+
by
|
| 2013 |
+
at
|
| 2014 |
+
from
|
| 2015 |
+
her
|
| 2016 |
+
##s
|
| 2017 |
+
she
|
| 2018 |
+
you
|
| 2019 |
+
had
|
| 2020 |
+
an
|
| 2021 |
+
were
|
| 2022 |
+
but
|
| 2023 |
+
be
|
| 2024 |
+
this
|
| 2025 |
+
are
|
| 2026 |
+
not
|
| 2027 |
+
my
|
| 2028 |
+
they
|
| 2029 |
+
one
|
| 2030 |
+
which
|
| 2031 |
+
or
|
| 2032 |
+
have
|
| 2033 |
+
him
|
| 2034 |
+
me
|
| 2035 |
+
first
|
| 2036 |
+
all
|
| 2037 |
+
also
|
| 2038 |
+
their
|
| 2039 |
+
has
|
| 2040 |
+
up
|
| 2041 |
+
who
|
| 2042 |
+
out
|
| 2043 |
+
been
|
| 2044 |
+
when
|
| 2045 |
+
after
|
| 2046 |
+
there
|
| 2047 |
+
into
|
| 2048 |
+
new
|
| 2049 |
+
two
|
| 2050 |
+
its
|
| 2051 |
+
##a
|
| 2052 |
+
time
|
| 2053 |
+
would
|
| 2054 |
+
no
|
| 2055 |
+
what
|
| 2056 |
+
about
|
| 2057 |
+
said
|
| 2058 |
+
we
|
| 2059 |
+
over
|
| 2060 |
+
then
|
| 2061 |
+
other
|
| 2062 |
+
so
|
| 2063 |
+
more
|
| 2064 |
+
##e
|
| 2065 |
+
can
|
| 2066 |
+
if
|
| 2067 |
+
like
|
| 2068 |
+
back
|
| 2069 |
+
them
|
| 2070 |
+
only
|
| 2071 |
+
some
|
| 2072 |
+
could
|
| 2073 |
+
##i
|
| 2074 |
+
where
|
| 2075 |
+
just
|
| 2076 |
+
##ing
|
| 2077 |
+
during
|
| 2078 |
+
before
|
| 2079 |
+
##n
|
| 2080 |
+
do
|
| 2081 |
+
##o
|
| 2082 |
+
made
|
| 2083 |
+
school
|
| 2084 |
+
through
|
| 2085 |
+
than
|
| 2086 |
+
now
|
| 2087 |
+
years
|
| 2088 |
+
most
|
| 2089 |
+
world
|
| 2090 |
+
may
|
| 2091 |
+
between
|
| 2092 |
+
down
|
| 2093 |
+
well
|
| 2094 |
+
three
|
| 2095 |
+
##d
|
| 2096 |
+
year
|
| 2097 |
+
while
|
| 2098 |
+
will
|
| 2099 |
+
##ed
|
| 2100 |
+
##r
|
| 2101 |
+
##y
|
| 2102 |
+
later
|
| 2103 |
+
##t
|
| 2104 |
+
city
|
| 2105 |
+
under
|
| 2106 |
+
around
|
| 2107 |
+
did
|
| 2108 |
+
such
|
| 2109 |
+
being
|
| 2110 |
+
used
|
| 2111 |
+
state
|
| 2112 |
+
people
|
| 2113 |
+
part
|
| 2114 |
+
know
|
| 2115 |
+
against
|
| 2116 |
+
your
|
| 2117 |
+
many
|
| 2118 |
+
second
|
| 2119 |
+
university
|
| 2120 |
+
both
|
| 2121 |
+
national
|
| 2122 |
+
##er
|
| 2123 |
+
these
|
| 2124 |
+
don
|
| 2125 |
+
known
|
| 2126 |
+
off
|
| 2127 |
+
way
|
| 2128 |
+
until
|
| 2129 |
+
re
|
| 2130 |
+
how
|
| 2131 |
+
even
|
| 2132 |
+
get
|
| 2133 |
+
head
|
| 2134 |
+
...
|
| 2135 |
+
didn
|
| 2136 |
+
##ly
|
| 2137 |
+
team
|
| 2138 |
+
american
|
| 2139 |
+
because
|
| 2140 |
+
de
|
| 2141 |
+
##l
|
| 2142 |
+
born
|
| 2143 |
+
united
|
| 2144 |
+
film
|
| 2145 |
+
since
|
| 2146 |
+
still
|
| 2147 |
+
long
|
| 2148 |
+
work
|
| 2149 |
+
south
|
| 2150 |
+
us
|
| 2151 |
+
became
|
| 2152 |
+
any
|
| 2153 |
+
high
|
| 2154 |
+
again
|
| 2155 |
+
day
|
| 2156 |
+
family
|
| 2157 |
+
see
|
| 2158 |
+
right
|
| 2159 |
+
man
|
| 2160 |
+
eyes
|
| 2161 |
+
house
|
| 2162 |
+
season
|
| 2163 |
+
war
|
| 2164 |
+
states
|
| 2165 |
+
including
|
| 2166 |
+
took
|
| 2167 |
+
life
|
| 2168 |
+
north
|
| 2169 |
+
same
|
| 2170 |
+
each
|
| 2171 |
+
called
|
| 2172 |
+
name
|
| 2173 |
+
much
|
| 2174 |
+
place
|
| 2175 |
+
however
|
| 2176 |
+
go
|
| 2177 |
+
four
|
| 2178 |
+
group
|
| 2179 |
+
another
|
| 2180 |
+
found
|
| 2181 |
+
won
|
| 2182 |
+
area
|
| 2183 |
+
here
|
| 2184 |
+
going
|
| 2185 |
+
10
|
| 2186 |
+
away
|
| 2187 |
+
series
|
| 2188 |
+
left
|
| 2189 |
+
home
|
| 2190 |
+
music
|
| 2191 |
+
best
|
| 2192 |
+
make
|
| 2193 |
+
hand
|
| 2194 |
+
number
|
| 2195 |
+
company
|
| 2196 |
+
several
|
| 2197 |
+
never
|
| 2198 |
+
last
|
| 2199 |
+
john
|
| 2200 |
+
000
|
| 2201 |
+
very
|
| 2202 |
+
album
|
| 2203 |
+
take
|
| 2204 |
+
end
|
| 2205 |
+
good
|
| 2206 |
+
too
|
| 2207 |
+
following
|
| 2208 |
+
released
|
| 2209 |
+
game
|
| 2210 |
+
played
|
| 2211 |
+
little
|
| 2212 |
+
began
|
| 2213 |
+
district
|
| 2214 |
+
##m
|
| 2215 |
+
old
|
| 2216 |
+
want
|
| 2217 |
+
those
|
| 2218 |
+
side
|
| 2219 |
+
held
|
| 2220 |
+
own
|
| 2221 |
+
early
|
| 2222 |
+
county
|
| 2223 |
+
ll
|
| 2224 |
+
league
|
| 2225 |
+
use
|
| 2226 |
+
west
|
| 2227 |
+
##u
|
| 2228 |
+
face
|
| 2229 |
+
think
|
| 2230 |
+
##es
|
| 2231 |
+
2010
|
| 2232 |
+
government
|
| 2233 |
+
##h
|
| 2234 |
+
march
|
| 2235 |
+
came
|
| 2236 |
+
small
|
| 2237 |
+
general
|
| 2238 |
+
town
|
| 2239 |
+
june
|
| 2240 |
+
##on
|
| 2241 |
+
line
|
| 2242 |
+
based
|
| 2243 |
+
something
|
| 2244 |
+
##k
|
| 2245 |
+
september
|
| 2246 |
+
thought
|
| 2247 |
+
looked
|
| 2248 |
+
along
|
| 2249 |
+
international
|
| 2250 |
+
2011
|
| 2251 |
+
air
|
| 2252 |
+
july
|
| 2253 |
+
club
|
| 2254 |
+
went
|
| 2255 |
+
january
|
| 2256 |
+
october
|
| 2257 |
+
our
|
| 2258 |
+
august
|
| 2259 |
+
april
|
| 2260 |
+
york
|
| 2261 |
+
12
|
| 2262 |
+
few
|
| 2263 |
+
2012
|
| 2264 |
+
2008
|
| 2265 |
+
east
|
| 2266 |
+
show
|
| 2267 |
+
member
|
| 2268 |
+
college
|
| 2269 |
+
2009
|
| 2270 |
+
father
|
| 2271 |
+
public
|
| 2272 |
+
##us
|
| 2273 |
+
come
|
| 2274 |
+
men
|
| 2275 |
+
five
|
| 2276 |
+
set
|
| 2277 |
+
station
|
| 2278 |
+
church
|
| 2279 |
+
##c
|
| 2280 |
+
next
|
| 2281 |
+
former
|
| 2282 |
+
november
|
| 2283 |
+
room
|
| 2284 |
+
party
|
| 2285 |
+
located
|
| 2286 |
+
december
|
| 2287 |
+
2013
|
| 2288 |
+
age
|
| 2289 |
+
got
|
| 2290 |
+
2007
|
| 2291 |
+
##g
|
| 2292 |
+
system
|
| 2293 |
+
let
|
| 2294 |
+
love
|
| 2295 |
+
2006
|
| 2296 |
+
though
|
| 2297 |
+
every
|
| 2298 |
+
2014
|
| 2299 |
+
look
|
| 2300 |
+
song
|
| 2301 |
+
water
|
| 2302 |
+
century
|
| 2303 |
+
without
|
| 2304 |
+
body
|
| 2305 |
+
black
|
| 2306 |
+
night
|
| 2307 |
+
within
|
| 2308 |
+
great
|
| 2309 |
+
women
|
| 2310 |
+
single
|
| 2311 |
+
ve
|
| 2312 |
+
building
|
| 2313 |
+
large
|
| 2314 |
+
population
|
| 2315 |
+
river
|
| 2316 |
+
named
|
| 2317 |
+
band
|
| 2318 |
+
white
|
| 2319 |
+
started
|
| 2320 |
+
##an
|
| 2321 |
+
once
|
| 2322 |
+
15
|
| 2323 |
+
20
|
| 2324 |
+
should
|
| 2325 |
+
18
|
| 2326 |
+
2015
|
| 2327 |
+
service
|
| 2328 |
+
top
|
| 2329 |
+
built
|
| 2330 |
+
british
|
| 2331 |
+
open
|
| 2332 |
+
death
|
| 2333 |
+
king
|
| 2334 |
+
moved
|
| 2335 |
+
local
|
| 2336 |
+
times
|
| 2337 |
+
children
|
| 2338 |
+
february
|
| 2339 |
+
book
|
| 2340 |
+
why
|
| 2341 |
+
11
|
| 2342 |
+
door
|
| 2343 |
+
need
|
| 2344 |
+
president
|
| 2345 |
+
order
|
| 2346 |
+
final
|
| 2347 |
+
road
|
| 2348 |
+
wasn
|
| 2349 |
+
although
|
| 2350 |
+
due
|
| 2351 |
+
major
|
| 2352 |
+
died
|
| 2353 |
+
village
|
| 2354 |
+
third
|
| 2355 |
+
knew
|
| 2356 |
+
2016
|
| 2357 |
+
asked
|
| 2358 |
+
turned
|
| 2359 |
+
st
|
| 2360 |
+
wanted
|
| 2361 |
+
say
|
| 2362 |
+
##p
|
| 2363 |
+
together
|
| 2364 |
+
received
|
| 2365 |
+
main
|
| 2366 |
+
son
|
| 2367 |
+
served
|
| 2368 |
+
different
|
| 2369 |
+
##en
|
| 2370 |
+
behind
|
| 2371 |
+
himself
|
| 2372 |
+
felt
|
| 2373 |
+
members
|
| 2374 |
+
power
|
| 2375 |
+
football
|
| 2376 |
+
law
|
| 2377 |
+
voice
|
| 2378 |
+
play
|
| 2379 |
+
##in
|
| 2380 |
+
near
|
| 2381 |
+
park
|
| 2382 |
+
history
|
| 2383 |
+
30
|
| 2384 |
+
having
|
| 2385 |
+
2005
|
| 2386 |
+
16
|
| 2387 |
+
##man
|
| 2388 |
+
saw
|
| 2389 |
+
mother
|
| 2390 |
+
##al
|
| 2391 |
+
army
|
| 2392 |
+
point
|
| 2393 |
+
front
|
| 2394 |
+
help
|
| 2395 |
+
english
|
| 2396 |
+
street
|
| 2397 |
+
art
|
| 2398 |
+
late
|
| 2399 |
+
hands
|
| 2400 |
+
games
|
| 2401 |
+
award
|
| 2402 |
+
##ia
|
| 2403 |
+
young
|
| 2404 |
+
14
|
| 2405 |
+
put
|
| 2406 |
+
published
|
| 2407 |
+
country
|
| 2408 |
+
division
|
| 2409 |
+
across
|
| 2410 |
+
told
|
| 2411 |
+
13
|
| 2412 |
+
often
|
| 2413 |
+
ever
|
| 2414 |
+
french
|
| 2415 |
+
london
|
| 2416 |
+
center
|
| 2417 |
+
six
|
| 2418 |
+
red
|
| 2419 |
+
2017
|
| 2420 |
+
led
|
| 2421 |
+
days
|
| 2422 |
+
include
|
| 2423 |
+
light
|
| 2424 |
+
25
|
| 2425 |
+
find
|
| 2426 |
+
tell
|
| 2427 |
+
among
|
| 2428 |
+
species
|
| 2429 |
+
really
|
| 2430 |
+
according
|
| 2431 |
+
central
|
| 2432 |
+
half
|
| 2433 |
+
2004
|
| 2434 |
+
form
|
| 2435 |
+
original
|
| 2436 |
+
gave
|
| 2437 |
+
office
|
| 2438 |
+
making
|
| 2439 |
+
enough
|
| 2440 |
+
lost
|
| 2441 |
+
full
|
| 2442 |
+
opened
|
| 2443 |
+
must
|
| 2444 |
+
included
|
| 2445 |
+
live
|
| 2446 |
+
given
|
| 2447 |
+
german
|
| 2448 |
+
player
|
| 2449 |
+
run
|
| 2450 |
+
business
|
| 2451 |
+
woman
|
| 2452 |
+
community
|
| 2453 |
+
cup
|
| 2454 |
+
might
|
| 2455 |
+
million
|
| 2456 |
+
land
|
| 2457 |
+
2000
|
| 2458 |
+
court
|
| 2459 |
+
development
|
| 2460 |
+
17
|
| 2461 |
+
short
|
| 2462 |
+
round
|
| 2463 |
+
ii
|
| 2464 |
+
km
|
| 2465 |
+
seen
|
| 2466 |
+
class
|
| 2467 |
+
story
|
| 2468 |
+
always
|
| 2469 |
+
become
|
| 2470 |
+
sure
|
| 2471 |
+
research
|
| 2472 |
+
almost
|
| 2473 |
+
director
|
| 2474 |
+
council
|
| 2475 |
+
la
|
| 2476 |
+
##2
|
| 2477 |
+
career
|
| 2478 |
+
things
|
| 2479 |
+
using
|
| 2480 |
+
island
|
| 2481 |
+
##z
|
| 2482 |
+
couldn
|
| 2483 |
+
car
|
| 2484 |
+
##is
|
| 2485 |
+
24
|
| 2486 |
+
close
|
| 2487 |
+
force
|
| 2488 |
+
##1
|
| 2489 |
+
better
|
| 2490 |
+
free
|
| 2491 |
+
support
|
| 2492 |
+
control
|
| 2493 |
+
field
|
| 2494 |
+
students
|
| 2495 |
+
2003
|
| 2496 |
+
education
|
| 2497 |
+
married
|
| 2498 |
+
##b
|
| 2499 |
+
nothing
|
| 2500 |
+
worked
|
| 2501 |
+
others
|
| 2502 |
+
record
|
| 2503 |
+
big
|
| 2504 |
+
inside
|
| 2505 |
+
level
|
| 2506 |
+
anything
|
| 2507 |
+
continued
|
| 2508 |
+
give
|
| 2509 |
+
james
|
| 2510 |
+
##3
|
| 2511 |
+
military
|
| 2512 |
+
established
|
| 2513 |
+
non
|
| 2514 |
+
returned
|
| 2515 |
+
feel
|
| 2516 |
+
does
|
| 2517 |
+
title
|
| 2518 |
+
written
|
| 2519 |
+
thing
|
| 2520 |
+
feet
|
| 2521 |
+
william
|
| 2522 |
+
far
|
| 2523 |
+
co
|
| 2524 |
+
association
|
| 2525 |
+
hard
|
| 2526 |
+
already
|
| 2527 |
+
2002
|
| 2528 |
+
##ra
|
| 2529 |
+
championship
|
| 2530 |
+
human
|
| 2531 |
+
western
|
| 2532 |
+
100
|
| 2533 |
+
##na
|
| 2534 |
+
department
|
| 2535 |
+
hall
|
| 2536 |
+
role
|
| 2537 |
+
various
|
| 2538 |
+
production
|
| 2539 |
+
21
|
| 2540 |
+
19
|
| 2541 |
+
heart
|
| 2542 |
+
2001
|
| 2543 |
+
living
|
| 2544 |
+
fire
|
| 2545 |
+
version
|
| 2546 |
+
##ers
|
| 2547 |
+
##f
|
| 2548 |
+
television
|
| 2549 |
+
royal
|
| 2550 |
+
##4
|
| 2551 |
+
produced
|
| 2552 |
+
working
|
| 2553 |
+
act
|
| 2554 |
+
case
|
| 2555 |
+
society
|
| 2556 |
+
region
|
| 2557 |
+
present
|
| 2558 |
+
radio
|
| 2559 |
+
period
|
| 2560 |
+
looking
|
| 2561 |
+
least
|
| 2562 |
+
total
|
| 2563 |
+
keep
|
| 2564 |
+
england
|
| 2565 |
+
wife
|
| 2566 |
+
program
|
| 2567 |
+
per
|
| 2568 |
+
brother
|
| 2569 |
+
mind
|
| 2570 |
+
special
|
| 2571 |
+
22
|
| 2572 |
+
##le
|
| 2573 |
+
am
|
| 2574 |
+
works
|
| 2575 |
+
soon
|
| 2576 |
+
##6
|
| 2577 |
+
political
|
| 2578 |
+
george
|
| 2579 |
+
services
|
| 2580 |
+
taken
|
| 2581 |
+
created
|
| 2582 |
+
##7
|
| 2583 |
+
further
|
| 2584 |
+
able
|
| 2585 |
+
reached
|
| 2586 |
+
david
|
| 2587 |
+
union
|
| 2588 |
+
joined
|
| 2589 |
+
upon
|
| 2590 |
+
done
|
| 2591 |
+
important
|
| 2592 |
+
social
|
| 2593 |
+
information
|
| 2594 |
+
either
|
| 2595 |
+
##ic
|
| 2596 |
+
##x
|
| 2597 |
+
appeared
|
| 2598 |
+
position
|
| 2599 |
+
ground
|
| 2600 |
+
lead
|
| 2601 |
+
rock
|
| 2602 |
+
dark
|
| 2603 |
+
election
|
| 2604 |
+
23
|
| 2605 |
+
board
|
| 2606 |
+
france
|
| 2607 |
+
hair
|
| 2608 |
+
course
|
| 2609 |
+
arms
|
| 2610 |
+
site
|
| 2611 |
+
police
|
| 2612 |
+
girl
|
| 2613 |
+
instead
|
| 2614 |
+
real
|
| 2615 |
+
sound
|
| 2616 |
+
##v
|
| 2617 |
+
words
|
| 2618 |
+
moment
|
| 2619 |
+
##te
|
| 2620 |
+
someone
|
| 2621 |
+
##8
|
| 2622 |
+
summer
|
| 2623 |
+
project
|
| 2624 |
+
announced
|
| 2625 |
+
san
|
| 2626 |
+
less
|
| 2627 |
+
wrote
|
| 2628 |
+
past
|
| 2629 |
+
followed
|
| 2630 |
+
##5
|
| 2631 |
+
blue
|
| 2632 |
+
founded
|
| 2633 |
+
al
|
| 2634 |
+
finally
|
| 2635 |
+
india
|
| 2636 |
+
taking
|
| 2637 |
+
records
|
| 2638 |
+
america
|
| 2639 |
+
##ne
|
| 2640 |
+
1999
|
| 2641 |
+
design
|
| 2642 |
+
considered
|
| 2643 |
+
northern
|
| 2644 |
+
god
|
| 2645 |
+
stop
|
| 2646 |
+
battle
|
| 2647 |
+
toward
|
| 2648 |
+
european
|
| 2649 |
+
outside
|
| 2650 |
+
described
|
| 2651 |
+
track
|
| 2652 |
+
today
|
| 2653 |
+
playing
|
| 2654 |
+
language
|
| 2655 |
+
28
|
| 2656 |
+
call
|
| 2657 |
+
26
|
| 2658 |
+
heard
|
| 2659 |
+
professional
|
| 2660 |
+
low
|
| 2661 |
+
australia
|
| 2662 |
+
miles
|
| 2663 |
+
california
|
| 2664 |
+
win
|
| 2665 |
+
yet
|
| 2666 |
+
green
|
| 2667 |
+
##ie
|
| 2668 |
+
trying
|
| 2669 |
+
blood
|
| 2670 |
+
##ton
|
| 2671 |
+
southern
|
| 2672 |
+
science
|
| 2673 |
+
maybe
|
| 2674 |
+
everything
|
| 2675 |
+
match
|
| 2676 |
+
square
|
| 2677 |
+
27
|
| 2678 |
+
mouth
|
| 2679 |
+
video
|
| 2680 |
+
race
|
| 2681 |
+
recorded
|
| 2682 |
+
leave
|
| 2683 |
+
above
|
| 2684 |
+
##9
|
| 2685 |
+
daughter
|
| 2686 |
+
points
|
| 2687 |
+
space
|
| 2688 |
+
1998
|
| 2689 |
+
museum
|
| 2690 |
+
change
|
| 2691 |
+
middle
|
| 2692 |
+
common
|
| 2693 |
+
##0
|
| 2694 |
+
move
|
| 2695 |
+
tv
|
| 2696 |
+
post
|
| 2697 |
+
##ta
|
| 2698 |
+
lake
|
| 2699 |
+
seven
|
| 2700 |
+
tried
|
| 2701 |
+
elected
|
| 2702 |
+
closed
|
| 2703 |
+
ten
|
| 2704 |
+
paul
|
| 2705 |
+
minister
|
| 2706 |
+
##th
|
| 2707 |
+
months
|
| 2708 |
+
start
|
| 2709 |
+
chief
|
| 2710 |
+
return
|
| 2711 |
+
canada
|
| 2712 |
+
person
|
| 2713 |
+
sea
|
| 2714 |
+
release
|
| 2715 |
+
similar
|
| 2716 |
+
modern
|
| 2717 |
+
brought
|
| 2718 |
+
rest
|
| 2719 |
+
hit
|
| 2720 |
+
formed
|
| 2721 |
+
mr
|
| 2722 |
+
##la
|
| 2723 |
+
1997
|
| 2724 |
+
floor
|
| 2725 |
+
event
|
| 2726 |
+
doing
|
| 2727 |
+
thomas
|
| 2728 |
+
1996
|
| 2729 |
+
robert
|
| 2730 |
+
care
|
| 2731 |
+
killed
|
| 2732 |
+
training
|
| 2733 |
+
star
|
| 2734 |
+
week
|
| 2735 |
+
needed
|
| 2736 |
+
turn
|
| 2737 |
+
finished
|
| 2738 |
+
railway
|
| 2739 |
+
rather
|
| 2740 |
+
news
|
| 2741 |
+
health
|
| 2742 |
+
sent
|
| 2743 |
+
example
|
| 2744 |
+
ran
|
| 2745 |
+
term
|
| 2746 |
+
michael
|
| 2747 |
+
coming
|
| 2748 |
+
currently
|
| 2749 |
+
yes
|
| 2750 |
+
forces
|
| 2751 |
+
despite
|
| 2752 |
+
gold
|
| 2753 |
+
areas
|
| 2754 |
+
50
|
| 2755 |
+
stage
|
| 2756 |
+
fact
|
| 2757 |
+
29
|
| 2758 |
+
dead
|
| 2759 |
+
says
|
| 2760 |
+
popular
|
| 2761 |
+
2018
|
| 2762 |
+
originally
|
| 2763 |
+
germany
|
| 2764 |
+
probably
|
| 2765 |
+
developed
|
| 2766 |
+
result
|
| 2767 |
+
pulled
|
| 2768 |
+
friend
|
| 2769 |
+
stood
|
| 2770 |
+
money
|
| 2771 |
+
running
|
| 2772 |
+
mi
|
| 2773 |
+
signed
|
| 2774 |
+
word
|
| 2775 |
+
songs
|
| 2776 |
+
child
|
| 2777 |
+
eventually
|
| 2778 |
+
met
|
| 2779 |
+
tour
|
| 2780 |
+
average
|
| 2781 |
+
teams
|
| 2782 |
+
minutes
|
| 2783 |
+
festival
|
| 2784 |
+
current
|
| 2785 |
+
deep
|
| 2786 |
+
kind
|
| 2787 |
+
1995
|
| 2788 |
+
decided
|
| 2789 |
+
usually
|
| 2790 |
+
eastern
|
| 2791 |
+
seemed
|
| 2792 |
+
##ness
|
| 2793 |
+
episode
|
| 2794 |
+
bed
|
| 2795 |
+
added
|
| 2796 |
+
table
|
| 2797 |
+
indian
|
| 2798 |
+
private
|
| 2799 |
+
charles
|
| 2800 |
+
route
|
| 2801 |
+
available
|
| 2802 |
+
idea
|
| 2803 |
+
throughout
|
| 2804 |
+
centre
|
| 2805 |
+
addition
|
| 2806 |
+
appointed
|
| 2807 |
+
style
|
| 2808 |
+
1994
|
| 2809 |
+
books
|
| 2810 |
+
eight
|
| 2811 |
+
construction
|
| 2812 |
+
press
|
| 2813 |
+
mean
|
| 2814 |
+
wall
|
| 2815 |
+
friends
|
| 2816 |
+
remained
|
| 2817 |
+
schools
|
| 2818 |
+
study
|
| 2819 |
+
##ch
|
| 2820 |
+
##um
|
| 2821 |
+
institute
|
| 2822 |
+
oh
|
| 2823 |
+
chinese
|
| 2824 |
+
sometimes
|
| 2825 |
+
events
|
| 2826 |
+
possible
|
| 2827 |
+
1992
|
| 2828 |
+
australian
|
| 2829 |
+
type
|
| 2830 |
+
brown
|
| 2831 |
+
forward
|
| 2832 |
+
talk
|
| 2833 |
+
process
|
| 2834 |
+
food
|
| 2835 |
+
debut
|
| 2836 |
+
seat
|
| 2837 |
+
performance
|
| 2838 |
+
committee
|
| 2839 |
+
features
|
| 2840 |
+
character
|
| 2841 |
+
arts
|
| 2842 |
+
herself
|
| 2843 |
+
else
|
| 2844 |
+
lot
|
| 2845 |
+
strong
|
| 2846 |
+
russian
|
| 2847 |
+
range
|
| 2848 |
+
hours
|
| 2849 |
+
peter
|
| 2850 |
+
arm
|
| 2851 |
+
##da
|
| 2852 |
+
morning
|
| 2853 |
+
dr
|
| 2854 |
+
sold
|
| 2855 |
+
##ry
|
| 2856 |
+
quickly
|
| 2857 |
+
directed
|
| 2858 |
+
1993
|
| 2859 |
+
guitar
|
| 2860 |
+
china
|
| 2861 |
+
##w
|
| 2862 |
+
31
|
| 2863 |
+
list
|
| 2864 |
+
##ma
|
| 2865 |
+
performed
|
| 2866 |
+
media
|
| 2867 |
+
uk
|
| 2868 |
+
players
|
| 2869 |
+
smile
|
| 2870 |
+
##rs
|
| 2871 |
+
myself
|
| 2872 |
+
40
|
| 2873 |
+
placed
|
| 2874 |
+
coach
|
| 2875 |
+
province
|
| 2876 |
+
towards
|
| 2877 |
+
wouldn
|
| 2878 |
+
leading
|
| 2879 |
+
whole
|
| 2880 |
+
boy
|
| 2881 |
+
official
|
| 2882 |
+
designed
|
| 2883 |
+
grand
|
| 2884 |
+
census
|
| 2885 |
+
##el
|
| 2886 |
+
europe
|
| 2887 |
+
attack
|
| 2888 |
+
japanese
|
| 2889 |
+
henry
|
| 2890 |
+
1991
|
| 2891 |
+
##re
|
| 2892 |
+
##os
|
| 2893 |
+
cross
|
| 2894 |
+
getting
|
| 2895 |
+
alone
|
| 2896 |
+
action
|
| 2897 |
+
lower
|
| 2898 |
+
network
|
| 2899 |
+
wide
|
| 2900 |
+
washington
|
| 2901 |
+
japan
|
| 2902 |
+
1990
|
| 2903 |
+
hospital
|
| 2904 |
+
believe
|
| 2905 |
+
changed
|
| 2906 |
+
sister
|
| 2907 |
+
##ar
|
| 2908 |
+
hold
|
| 2909 |
+
gone
|
| 2910 |
+
sir
|
| 2911 |
+
hadn
|
| 2912 |
+
ship
|
| 2913 |
+
##ka
|
| 2914 |
+
studies
|
| 2915 |
+
academy
|
| 2916 |
+
shot
|
| 2917 |
+
rights
|
| 2918 |
+
below
|
| 2919 |
+
base
|
| 2920 |
+
bad
|
| 2921 |
+
involved
|
| 2922 |
+
kept
|
| 2923 |
+
largest
|
| 2924 |
+
##ist
|
| 2925 |
+
bank
|
| 2926 |
+
future
|
| 2927 |
+
especially
|
| 2928 |
+
beginning
|
| 2929 |
+
mark
|
| 2930 |
+
movement
|
| 2931 |
+
section
|
| 2932 |
+
female
|
| 2933 |
+
magazine
|
| 2934 |
+
plan
|
| 2935 |
+
professor
|
| 2936 |
+
lord
|
| 2937 |
+
longer
|
| 2938 |
+
##ian
|
| 2939 |
+
sat
|
| 2940 |
+
walked
|
| 2941 |
+
hill
|
| 2942 |
+
actually
|
| 2943 |
+
civil
|
| 2944 |
+
energy
|
| 2945 |
+
model
|
| 2946 |
+
families
|
| 2947 |
+
size
|
| 2948 |
+
thus
|
| 2949 |
+
aircraft
|
| 2950 |
+
completed
|
| 2951 |
+
includes
|
| 2952 |
+
data
|
| 2953 |
+
captain
|
| 2954 |
+
##or
|
| 2955 |
+
fight
|
| 2956 |
+
vocals
|
| 2957 |
+
featured
|
| 2958 |
+
richard
|
| 2959 |
+
bridge
|
| 2960 |
+
fourth
|
| 2961 |
+
1989
|
| 2962 |
+
officer
|
| 2963 |
+
stone
|
| 2964 |
+
hear
|
| 2965 |
+
##ism
|
| 2966 |
+
means
|
| 2967 |
+
medical
|
| 2968 |
+
groups
|
| 2969 |
+
management
|
| 2970 |
+
self
|
| 2971 |
+
lips
|
| 2972 |
+
competition
|
| 2973 |
+
entire
|
| 2974 |
+
lived
|
| 2975 |
+
technology
|
| 2976 |
+
leaving
|
| 2977 |
+
federal
|
| 2978 |
+
tournament
|
| 2979 |
+
bit
|
| 2980 |
+
passed
|
| 2981 |
+
hot
|
| 2982 |
+
independent
|
| 2983 |
+
awards
|
| 2984 |
+
kingdom
|
| 2985 |
+
mary
|
| 2986 |
+
spent
|
| 2987 |
+
fine
|
| 2988 |
+
doesn
|
| 2989 |
+
reported
|
| 2990 |
+
##ling
|
| 2991 |
+
jack
|
| 2992 |
+
fall
|
| 2993 |
+
raised
|
| 2994 |
+
itself
|
| 2995 |
+
stay
|
| 2996 |
+
true
|
| 2997 |
+
studio
|
| 2998 |
+
1988
|
| 2999 |
+
sports
|
| 3000 |
+
replaced
|
| 3001 |
+
paris
|
| 3002 |
+
systems
|
| 3003 |
+
saint
|
| 3004 |
+
leader
|
| 3005 |
+
theatre
|
| 3006 |
+
whose
|
| 3007 |
+
market
|
| 3008 |
+
capital
|
| 3009 |
+
parents
|
| 3010 |
+
spanish
|
| 3011 |
+
canadian
|
| 3012 |
+
earth
|
| 3013 |
+
##ity
|
| 3014 |
+
cut
|
| 3015 |
+
degree
|
| 3016 |
+
writing
|
| 3017 |
+
bay
|
| 3018 |
+
christian
|
| 3019 |
+
awarded
|
| 3020 |
+
natural
|
| 3021 |
+
higher
|
| 3022 |
+
bill
|
| 3023 |
+
##as
|
| 3024 |
+
coast
|
| 3025 |
+
provided
|
| 3026 |
+
previous
|
| 3027 |
+
senior
|
| 3028 |
+
ft
|
| 3029 |
+
valley
|
| 3030 |
+
organization
|
| 3031 |
+
stopped
|
| 3032 |
+
onto
|
| 3033 |
+
countries
|
| 3034 |
+
parts
|
| 3035 |
+
conference
|
| 3036 |
+
queen
|
| 3037 |
+
security
|
| 3038 |
+
interest
|
| 3039 |
+
saying
|
| 3040 |
+
allowed
|
| 3041 |
+
master
|
| 3042 |
+
earlier
|
| 3043 |
+
phone
|
| 3044 |
+
matter
|
| 3045 |
+
smith
|
| 3046 |
+
winning
|
| 3047 |
+
try
|
| 3048 |
+
happened
|
| 3049 |
+
moving
|
| 3050 |
+
campaign
|
| 3051 |
+
los
|
| 3052 |
+
##ley
|
| 3053 |
+
breath
|
| 3054 |
+
nearly
|
| 3055 |
+
mid
|
| 3056 |
+
1987
|
| 3057 |
+
certain
|
| 3058 |
+
girls
|
| 3059 |
+
date
|
| 3060 |
+
italian
|
| 3061 |
+
african
|
| 3062 |
+
standing
|
| 3063 |
+
fell
|
| 3064 |
+
artist
|
| 3065 |
+
##ted
|
| 3066 |
+
shows
|
| 3067 |
+
deal
|
| 3068 |
+
mine
|
| 3069 |
+
industry
|
| 3070 |
+
1986
|
| 3071 |
+
##ng
|
| 3072 |
+
everyone
|
| 3073 |
+
republic
|
| 3074 |
+
provide
|
| 3075 |
+
collection
|
| 3076 |
+
library
|
| 3077 |
+
student
|
| 3078 |
+
##ville
|
| 3079 |
+
primary
|
| 3080 |
+
owned
|
| 3081 |
+
older
|
| 3082 |
+
via
|
| 3083 |
+
heavy
|
| 3084 |
+
1st
|
| 3085 |
+
makes
|
| 3086 |
+
##able
|
| 3087 |
+
attention
|
| 3088 |
+
anyone
|
| 3089 |
+
africa
|
| 3090 |
+
##ri
|
| 3091 |
+
stated
|
| 3092 |
+
length
|
| 3093 |
+
ended
|
| 3094 |
+
fingers
|
| 3095 |
+
command
|
| 3096 |
+
staff
|
| 3097 |
+
skin
|
| 3098 |
+
foreign
|
| 3099 |
+
opening
|
| 3100 |
+
governor
|
| 3101 |
+
okay
|
| 3102 |
+
medal
|
| 3103 |
+
kill
|
| 3104 |
+
sun
|
| 3105 |
+
cover
|
| 3106 |
+
job
|
| 3107 |
+
1985
|
| 3108 |
+
introduced
|
| 3109 |
+
chest
|
| 3110 |
+
hell
|
| 3111 |
+
feeling
|
| 3112 |
+
##ies
|
| 3113 |
+
success
|
| 3114 |
+
meet
|
| 3115 |
+
reason
|
| 3116 |
+
standard
|
| 3117 |
+
meeting
|
| 3118 |
+
novel
|
| 3119 |
+
1984
|
| 3120 |
+
trade
|
| 3121 |
+
source
|
| 3122 |
+
buildings
|
| 3123 |
+
##land
|
| 3124 |
+
rose
|
| 3125 |
+
guy
|
| 3126 |
+
goal
|
| 3127 |
+
##ur
|
| 3128 |
+
chapter
|
| 3129 |
+
native
|
| 3130 |
+
husband
|
| 3131 |
+
previously
|
| 3132 |
+
unit
|
| 3133 |
+
limited
|
| 3134 |
+
entered
|
| 3135 |
+
weeks
|
| 3136 |
+
producer
|
| 3137 |
+
operations
|
| 3138 |
+
mountain
|
| 3139 |
+
takes
|
| 3140 |
+
covered
|
| 3141 |
+
forced
|
| 3142 |
+
related
|
| 3143 |
+
roman
|
| 3144 |
+
complete
|
| 3145 |
+
successful
|
| 3146 |
+
key
|
| 3147 |
+
texas
|
| 3148 |
+
cold
|
| 3149 |
+
##ya
|
| 3150 |
+
channel
|
| 3151 |
+
1980
|
| 3152 |
+
traditional
|
| 3153 |
+
films
|
| 3154 |
+
dance
|
| 3155 |
+
clear
|
| 3156 |
+
approximately
|
| 3157 |
+
500
|
| 3158 |
+
nine
|
| 3159 |
+
van
|
| 3160 |
+
prince
|
| 3161 |
+
question
|
| 3162 |
+
active
|
| 3163 |
+
tracks
|
| 3164 |
+
ireland
|
| 3165 |
+
regional
|
| 3166 |
+
silver
|
| 3167 |
+
author
|
| 3168 |
+
personal
|
| 3169 |
+
sense
|
| 3170 |
+
operation
|
| 3171 |
+
##ine
|
| 3172 |
+
economic
|
| 3173 |
+
1983
|
| 3174 |
+
holding
|
| 3175 |
+
twenty
|
| 3176 |
+
isbn
|
| 3177 |
+
additional
|
| 3178 |
+
speed
|
| 3179 |
+
hour
|
| 3180 |
+
edition
|
| 3181 |
+
regular
|
| 3182 |
+
historic
|
| 3183 |
+
places
|
| 3184 |
+
whom
|
| 3185 |
+
shook
|
| 3186 |
+
movie
|
| 3187 |
+
km²
|
| 3188 |
+
secretary
|
| 3189 |
+
prior
|
| 3190 |
+
report
|
| 3191 |
+
chicago
|
| 3192 |
+
read
|
| 3193 |
+
foundation
|
| 3194 |
+
view
|
| 3195 |
+
engine
|
| 3196 |
+
scored
|
| 3197 |
+
1982
|
| 3198 |
+
units
|
| 3199 |
+
ask
|
| 3200 |
+
airport
|
| 3201 |
+
property
|
| 3202 |
+
ready
|
| 3203 |
+
immediately
|
| 3204 |
+
lady
|
| 3205 |
+
month
|
| 3206 |
+
listed
|
| 3207 |
+
contract
|
| 3208 |
+
##de
|
| 3209 |
+
manager
|
| 3210 |
+
themselves
|
| 3211 |
+
lines
|
| 3212 |
+
##ki
|
| 3213 |
+
navy
|
| 3214 |
+
writer
|
| 3215 |
+
meant
|
| 3216 |
+
##ts
|
| 3217 |
+
runs
|
| 3218 |
+
##ro
|
| 3219 |
+
practice
|
| 3220 |
+
championships
|
| 3221 |
+
singer
|
| 3222 |
+
glass
|
| 3223 |
+
commission
|
| 3224 |
+
required
|
| 3225 |
+
forest
|
| 3226 |
+
starting
|
| 3227 |
+
culture
|
| 3228 |
+
generally
|
| 3229 |
+
giving
|
| 3230 |
+
access
|
| 3231 |
+
attended
|
| 3232 |
+
test
|
| 3233 |
+
couple
|
| 3234 |
+
stand
|
| 3235 |
+
catholic
|
| 3236 |
+
martin
|
| 3237 |
+
caught
|
| 3238 |
+
executive
|
| 3239 |
+
##less
|
| 3240 |
+
eye
|
| 3241 |
+
##ey
|
| 3242 |
+
thinking
|
| 3243 |
+
chair
|
| 3244 |
+
quite
|
| 3245 |
+
shoulder
|
| 3246 |
+
1979
|
| 3247 |
+
hope
|
| 3248 |
+
decision
|
| 3249 |
+
plays
|
| 3250 |
+
defeated
|
| 3251 |
+
municipality
|
| 3252 |
+
whether
|
| 3253 |
+
structure
|
| 3254 |
+
offered
|
| 3255 |
+
slowly
|
| 3256 |
+
pain
|
| 3257 |
+
ice
|
| 3258 |
+
direction
|
| 3259 |
+
##ion
|
| 3260 |
+
paper
|
| 3261 |
+
mission
|
| 3262 |
+
1981
|
| 3263 |
+
mostly
|
| 3264 |
+
200
|
| 3265 |
+
noted
|
| 3266 |
+
individual
|
| 3267 |
+
managed
|
| 3268 |
+
nature
|
| 3269 |
+
lives
|
| 3270 |
+
plant
|
| 3271 |
+
##ha
|
| 3272 |
+
helped
|
| 3273 |
+
except
|
| 3274 |
+
studied
|
| 3275 |
+
computer
|
| 3276 |
+
figure
|
| 3277 |
+
relationship
|
| 3278 |
+
issue
|
| 3279 |
+
significant
|
| 3280 |
+
loss
|
| 3281 |
+
die
|
| 3282 |
+
smiled
|
| 3283 |
+
gun
|
| 3284 |
+
ago
|
| 3285 |
+
highest
|
| 3286 |
+
1972
|
| 3287 |
+
##am
|
| 3288 |
+
male
|
| 3289 |
+
bring
|
| 3290 |
+
goals
|
| 3291 |
+
mexico
|
| 3292 |
+
problem
|
| 3293 |
+
distance
|
| 3294 |
+
commercial
|
| 3295 |
+
completely
|
| 3296 |
+
location
|
| 3297 |
+
annual
|
| 3298 |
+
famous
|
| 3299 |
+
drive
|
| 3300 |
+
1976
|
| 3301 |
+
neck
|
| 3302 |
+
1978
|
| 3303 |
+
surface
|
| 3304 |
+
caused
|
| 3305 |
+
italy
|
| 3306 |
+
understand
|
| 3307 |
+
greek
|
| 3308 |
+
highway
|
| 3309 |
+
wrong
|
| 3310 |
+
hotel
|
| 3311 |
+
comes
|
| 3312 |
+
appearance
|
| 3313 |
+
joseph
|
| 3314 |
+
double
|
| 3315 |
+
issues
|
| 3316 |
+
musical
|
| 3317 |
+
companies
|
| 3318 |
+
castle
|
| 3319 |
+
income
|
| 3320 |
+
review
|
| 3321 |
+
assembly
|
| 3322 |
+
bass
|
| 3323 |
+
initially
|
| 3324 |
+
parliament
|
| 3325 |
+
artists
|
| 3326 |
+
experience
|
| 3327 |
+
1974
|
| 3328 |
+
particular
|
| 3329 |
+
walk
|
| 3330 |
+
foot
|
| 3331 |
+
engineering
|
| 3332 |
+
talking
|
| 3333 |
+
window
|
| 3334 |
+
dropped
|
| 3335 |
+
##ter
|
| 3336 |
+
miss
|
| 3337 |
+
baby
|
| 3338 |
+
boys
|
| 3339 |
+
break
|
| 3340 |
+
1975
|
| 3341 |
+
stars
|
| 3342 |
+
edge
|
| 3343 |
+
remember
|
| 3344 |
+
policy
|
| 3345 |
+
carried
|
| 3346 |
+
train
|
| 3347 |
+
stadium
|
| 3348 |
+
bar
|
| 3349 |
+
sex
|
| 3350 |
+
angeles
|
| 3351 |
+
evidence
|
| 3352 |
+
##ge
|
| 3353 |
+
becoming
|
| 3354 |
+
assistant
|
| 3355 |
+
soviet
|
| 3356 |
+
1977
|
| 3357 |
+
upper
|
| 3358 |
+
step
|
| 3359 |
+
wing
|
| 3360 |
+
1970
|
| 3361 |
+
youth
|
| 3362 |
+
financial
|
| 3363 |
+
reach
|
| 3364 |
+
##ll
|
| 3365 |
+
actor
|
| 3366 |
+
numerous
|
| 3367 |
+
##se
|
| 3368 |
+
##st
|
| 3369 |
+
nodded
|
| 3370 |
+
arrived
|
| 3371 |
+
##ation
|
| 3372 |
+
minute
|
| 3373 |
+
##nt
|
| 3374 |
+
believed
|
| 3375 |
+
sorry
|
| 3376 |
+
complex
|
| 3377 |
+
beautiful
|
| 3378 |
+
victory
|
| 3379 |
+
associated
|
| 3380 |
+
temple
|
| 3381 |
+
1968
|
| 3382 |
+
1973
|
| 3383 |
+
chance
|
| 3384 |
+
perhaps
|
| 3385 |
+
metal
|
| 3386 |
+
##son
|
| 3387 |
+
1945
|
| 3388 |
+
bishop
|
| 3389 |
+
##et
|
| 3390 |
+
lee
|
| 3391 |
+
launched
|
| 3392 |
+
particularly
|
| 3393 |
+
tree
|
| 3394 |
+
le
|
| 3395 |
+
retired
|
| 3396 |
+
subject
|
| 3397 |
+
prize
|
| 3398 |
+
contains
|
| 3399 |
+
yeah
|
| 3400 |
+
theory
|
| 3401 |
+
empire
|
| 3402 |
+
##ce
|
| 3403 |
+
suddenly
|
| 3404 |
+
waiting
|
| 3405 |
+
trust
|
| 3406 |
+
recording
|
| 3407 |
+
##to
|
| 3408 |
+
happy
|
| 3409 |
+
terms
|
| 3410 |
+
camp
|
| 3411 |
+
champion
|
| 3412 |
+
1971
|
| 3413 |
+
religious
|
| 3414 |
+
pass
|
| 3415 |
+
zealand
|
| 3416 |
+
names
|
| 3417 |
+
2nd
|
| 3418 |
+
port
|
| 3419 |
+
ancient
|
| 3420 |
+
tom
|
| 3421 |
+
corner
|
| 3422 |
+
represented
|
| 3423 |
+
watch
|
| 3424 |
+
legal
|
| 3425 |
+
anti
|
| 3426 |
+
justice
|
| 3427 |
+
cause
|
| 3428 |
+
watched
|
| 3429 |
+
brothers
|
| 3430 |
+
45
|
| 3431 |
+
material
|
| 3432 |
+
changes
|
| 3433 |
+
simply
|
| 3434 |
+
response
|
| 3435 |
+
louis
|
| 3436 |
+
fast
|
| 3437 |
+
##ting
|
| 3438 |
+
answer
|
| 3439 |
+
60
|
| 3440 |
+
historical
|
| 3441 |
+
1969
|
| 3442 |
+
stories
|
| 3443 |
+
straight
|
| 3444 |
+
create
|
| 3445 |
+
feature
|
| 3446 |
+
increased
|
| 3447 |
+
rate
|
| 3448 |
+
administration
|
| 3449 |
+
virginia
|
| 3450 |
+
el
|
| 3451 |
+
activities
|
| 3452 |
+
cultural
|
| 3453 |
+
overall
|
| 3454 |
+
winner
|
| 3455 |
+
programs
|
| 3456 |
+
basketball
|
| 3457 |
+
legs
|
| 3458 |
+
guard
|
| 3459 |
+
beyond
|
| 3460 |
+
cast
|
| 3461 |
+
doctor
|
| 3462 |
+
mm
|
| 3463 |
+
flight
|
| 3464 |
+
results
|
| 3465 |
+
remains
|
| 3466 |
+
cost
|
| 3467 |
+
effect
|
| 3468 |
+
winter
|
| 3469 |
+
##ble
|
| 3470 |
+
larger
|
| 3471 |
+
islands
|
| 3472 |
+
problems
|
| 3473 |
+
chairman
|
| 3474 |
+
grew
|
| 3475 |
+
commander
|
| 3476 |
+
isn
|
| 3477 |
+
1967
|
| 3478 |
+
pay
|
| 3479 |
+
failed
|
| 3480 |
+
selected
|
| 3481 |
+
hurt
|
| 3482 |
+
fort
|
| 3483 |
+
box
|
| 3484 |
+
regiment
|
| 3485 |
+
majority
|
| 3486 |
+
journal
|
| 3487 |
+
35
|
| 3488 |
+
edward
|
| 3489 |
+
plans
|
| 3490 |
+
##ke
|
| 3491 |
+
##ni
|
| 3492 |
+
shown
|
| 3493 |
+
pretty
|
| 3494 |
+
irish
|
| 3495 |
+
characters
|
| 3496 |
+
directly
|
| 3497 |
+
scene
|
| 3498 |
+
likely
|
| 3499 |
+
operated
|
| 3500 |
+
allow
|
| 3501 |
+
spring
|
| 3502 |
+
##j
|
| 3503 |
+
junior
|
| 3504 |
+
matches
|
| 3505 |
+
looks
|
| 3506 |
+
mike
|
| 3507 |
+
houses
|
| 3508 |
+
fellow
|
| 3509 |
+
##tion
|
| 3510 |
+
beach
|
| 3511 |
+
marriage
|
| 3512 |
+
##ham
|
| 3513 |
+
##ive
|
| 3514 |
+
rules
|
| 3515 |
+
oil
|
| 3516 |
+
65
|
| 3517 |
+
florida
|
| 3518 |
+
expected
|
| 3519 |
+
nearby
|
| 3520 |
+
congress
|
| 3521 |
+
sam
|
| 3522 |
+
peace
|
| 3523 |
+
recent
|
| 3524 |
+
iii
|
| 3525 |
+
wait
|
| 3526 |
+
subsequently
|
| 3527 |
+
cell
|
| 3528 |
+
##do
|
| 3529 |
+
variety
|
| 3530 |
+
serving
|
| 3531 |
+
agreed
|
| 3532 |
+
please
|
| 3533 |
+
poor
|
| 3534 |
+
joe
|
| 3535 |
+
pacific
|
| 3536 |
+
attempt
|
| 3537 |
+
wood
|
| 3538 |
+
democratic
|
| 3539 |
+
piece
|
| 3540 |
+
prime
|
| 3541 |
+
##ca
|
| 3542 |
+
rural
|
| 3543 |
+
mile
|
| 3544 |
+
touch
|
| 3545 |
+
appears
|
| 3546 |
+
township
|
| 3547 |
+
1964
|
| 3548 |
+
1966
|
| 3549 |
+
soldiers
|
| 3550 |
+
##men
|
| 3551 |
+
##ized
|
| 3552 |
+
1965
|
| 3553 |
+
pennsylvania
|
| 3554 |
+
closer
|
| 3555 |
+
fighting
|
| 3556 |
+
claimed
|
| 3557 |
+
score
|
| 3558 |
+
jones
|
| 3559 |
+
physical
|
| 3560 |
+
editor
|
| 3561 |
+
##ous
|
| 3562 |
+
filled
|
| 3563 |
+
genus
|
| 3564 |
+
specific
|
| 3565 |
+
sitting
|
| 3566 |
+
super
|
| 3567 |
+
mom
|
| 3568 |
+
##va
|
| 3569 |
+
therefore
|
| 3570 |
+
supported
|
| 3571 |
+
status
|
| 3572 |
+
fear
|
| 3573 |
+
cases
|
| 3574 |
+
store
|
| 3575 |
+
meaning
|
| 3576 |
+
wales
|
| 3577 |
+
minor
|
| 3578 |
+
spain
|
| 3579 |
+
tower
|
| 3580 |
+
focus
|
| 3581 |
+
vice
|
| 3582 |
+
frank
|
| 3583 |
+
follow
|
| 3584 |
+
parish
|
| 3585 |
+
separate
|
| 3586 |
+
golden
|
| 3587 |
+
horse
|
| 3588 |
+
fifth
|
| 3589 |
+
remaining
|
| 3590 |
+
branch
|
| 3591 |
+
32
|
| 3592 |
+
presented
|
| 3593 |
+
stared
|
| 3594 |
+
##id
|
| 3595 |
+
uses
|
| 3596 |
+
secret
|
| 3597 |
+
forms
|
| 3598 |
+
##co
|
| 3599 |
+
baseball
|
| 3600 |
+
exactly
|
| 3601 |
+
##ck
|
| 3602 |
+
choice
|
| 3603 |
+
note
|
| 3604 |
+
discovered
|
| 3605 |
+
travel
|
| 3606 |
+
composed
|
| 3607 |
+
truth
|
| 3608 |
+
russia
|
| 3609 |
+
ball
|
| 3610 |
+
color
|
| 3611 |
+
kiss
|
| 3612 |
+
dad
|
| 3613 |
+
wind
|
| 3614 |
+
continue
|
| 3615 |
+
ring
|
| 3616 |
+
referred
|
| 3617 |
+
numbers
|
| 3618 |
+
digital
|
| 3619 |
+
greater
|
| 3620 |
+
##ns
|
| 3621 |
+
metres
|
| 3622 |
+
slightly
|
| 3623 |
+
direct
|
| 3624 |
+
increase
|
| 3625 |
+
1960
|
| 3626 |
+
responsible
|
| 3627 |
+
crew
|
| 3628 |
+
rule
|
| 3629 |
+
trees
|
| 3630 |
+
troops
|
| 3631 |
+
##no
|
| 3632 |
+
broke
|
| 3633 |
+
goes
|
| 3634 |
+
individuals
|
| 3635 |
+
hundred
|
| 3636 |
+
weight
|
| 3637 |
+
creek
|
| 3638 |
+
sleep
|
| 3639 |
+
memory
|
| 3640 |
+
defense
|
| 3641 |
+
provides
|
| 3642 |
+
ordered
|
| 3643 |
+
code
|
| 3644 |
+
value
|
| 3645 |
+
jewish
|
| 3646 |
+
windows
|
| 3647 |
+
1944
|
| 3648 |
+
safe
|
| 3649 |
+
judge
|
| 3650 |
+
whatever
|
| 3651 |
+
corps
|
| 3652 |
+
realized
|
| 3653 |
+
growing
|
| 3654 |
+
pre
|
| 3655 |
+
##ga
|
| 3656 |
+
cities
|
| 3657 |
+
alexander
|
| 3658 |
+
gaze
|
| 3659 |
+
lies
|
| 3660 |
+
spread
|
| 3661 |
+
scott
|
| 3662 |
+
letter
|
| 3663 |
+
showed
|
| 3664 |
+
situation
|
| 3665 |
+
mayor
|
| 3666 |
+
transport
|
| 3667 |
+
watching
|
| 3668 |
+
workers
|
| 3669 |
+
extended
|
| 3670 |
+
##li
|
| 3671 |
+
expression
|
| 3672 |
+
normal
|
| 3673 |
+
##ment
|
| 3674 |
+
chart
|
| 3675 |
+
multiple
|
| 3676 |
+
border
|
| 3677 |
+
##ba
|
| 3678 |
+
host
|
| 3679 |
+
##ner
|
| 3680 |
+
daily
|
| 3681 |
+
mrs
|
| 3682 |
+
walls
|
| 3683 |
+
piano
|
| 3684 |
+
##ko
|
| 3685 |
+
heat
|
| 3686 |
+
cannot
|
| 3687 |
+
##ate
|
| 3688 |
+
earned
|
| 3689 |
+
products
|
| 3690 |
+
drama
|
| 3691 |
+
era
|
| 3692 |
+
authority
|
| 3693 |
+
seasons
|
| 3694 |
+
join
|
| 3695 |
+
grade
|
| 3696 |
+
##io
|
| 3697 |
+
sign
|
| 3698 |
+
difficult
|
| 3699 |
+
machine
|
| 3700 |
+
1963
|
| 3701 |
+
territory
|
| 3702 |
+
mainly
|
| 3703 |
+
##wood
|
| 3704 |
+
stations
|
| 3705 |
+
squadron
|
| 3706 |
+
1962
|
| 3707 |
+
stepped
|
| 3708 |
+
iron
|
| 3709 |
+
19th
|
| 3710 |
+
##led
|
| 3711 |
+
serve
|
| 3712 |
+
appear
|
| 3713 |
+
sky
|
| 3714 |
+
speak
|
| 3715 |
+
broken
|
| 3716 |
+
charge
|
| 3717 |
+
knowledge
|
| 3718 |
+
kilometres
|
| 3719 |
+
removed
|
| 3720 |
+
ships
|
| 3721 |
+
article
|
| 3722 |
+
campus
|
| 3723 |
+
simple
|
| 3724 |
+
##ty
|
| 3725 |
+
pushed
|
| 3726 |
+
britain
|
| 3727 |
+
##ve
|
| 3728 |
+
leaves
|
| 3729 |
+
recently
|
| 3730 |
+
cd
|
| 3731 |
+
soft
|
| 3732 |
+
boston
|
| 3733 |
+
latter
|
| 3734 |
+
easy
|
| 3735 |
+
acquired
|
| 3736 |
+
poland
|
| 3737 |
+
##sa
|
| 3738 |
+
quality
|
| 3739 |
+
officers
|
| 3740 |
+
presence
|
| 3741 |
+
planned
|
| 3742 |
+
nations
|
| 3743 |
+
mass
|
| 3744 |
+
broadcast
|
| 3745 |
+
jean
|
| 3746 |
+
share
|
| 3747 |
+
image
|
| 3748 |
+
influence
|
| 3749 |
+
wild
|
| 3750 |
+
offer
|
| 3751 |
+
emperor
|
| 3752 |
+
electric
|
| 3753 |
+
reading
|
| 3754 |
+
headed
|
| 3755 |
+
ability
|
| 3756 |
+
promoted
|
| 3757 |
+
yellow
|
| 3758 |
+
ministry
|
| 3759 |
+
1942
|
| 3760 |
+
throat
|
| 3761 |
+
smaller
|
| 3762 |
+
politician
|
| 3763 |
+
##by
|
| 3764 |
+
latin
|
| 3765 |
+
spoke
|
| 3766 |
+
cars
|
| 3767 |
+
williams
|
| 3768 |
+
males
|
| 3769 |
+
lack
|
| 3770 |
+
pop
|
| 3771 |
+
80
|
| 3772 |
+
##ier
|
| 3773 |
+
acting
|
| 3774 |
+
seeing
|
| 3775 |
+
consists
|
| 3776 |
+
##ti
|
| 3777 |
+
estate
|
| 3778 |
+
1961
|
| 3779 |
+
pressure
|
| 3780 |
+
johnson
|
| 3781 |
+
newspaper
|
| 3782 |
+
jr
|
| 3783 |
+
chris
|
| 3784 |
+
olympics
|
| 3785 |
+
online
|
| 3786 |
+
conditions
|
| 3787 |
+
beat
|
| 3788 |
+
elements
|
| 3789 |
+
walking
|
| 3790 |
+
vote
|
| 3791 |
+
##field
|
| 3792 |
+
needs
|
| 3793 |
+
carolina
|
| 3794 |
+
text
|
| 3795 |
+
featuring
|
| 3796 |
+
global
|
| 3797 |
+
block
|
| 3798 |
+
shirt
|
| 3799 |
+
levels
|
| 3800 |
+
francisco
|
| 3801 |
+
purpose
|
| 3802 |
+
females
|
| 3803 |
+
et
|
| 3804 |
+
dutch
|
| 3805 |
+
duke
|
| 3806 |
+
ahead
|
| 3807 |
+
gas
|
| 3808 |
+
twice
|
| 3809 |
+
safety
|
| 3810 |
+
serious
|
| 3811 |
+
turning
|
| 3812 |
+
highly
|
| 3813 |
+
lieutenant
|
| 3814 |
+
firm
|
| 3815 |
+
maria
|
| 3816 |
+
amount
|
| 3817 |
+
mixed
|
| 3818 |
+
daniel
|
| 3819 |
+
proposed
|
| 3820 |
+
perfect
|
| 3821 |
+
agreement
|
| 3822 |
+
affairs
|
| 3823 |
+
3rd
|
| 3824 |
+
seconds
|
| 3825 |
+
contemporary
|
| 3826 |
+
paid
|
| 3827 |
+
1943
|
| 3828 |
+
prison
|
| 3829 |
+
save
|
| 3830 |
+
kitchen
|
| 3831 |
+
label
|
| 3832 |
+
administrative
|
| 3833 |
+
intended
|
| 3834 |
+
constructed
|
| 3835 |
+
academic
|
| 3836 |
+
nice
|
| 3837 |
+
teacher
|
| 3838 |
+
races
|
| 3839 |
+
1956
|
| 3840 |
+
formerly
|
| 3841 |
+
corporation
|
| 3842 |
+
ben
|
| 3843 |
+
nation
|
| 3844 |
+
issued
|
| 3845 |
+
shut
|
| 3846 |
+
1958
|
| 3847 |
+
drums
|
| 3848 |
+
housing
|
| 3849 |
+
victoria
|
| 3850 |
+
seems
|
| 3851 |
+
opera
|
| 3852 |
+
1959
|
| 3853 |
+
graduated
|
| 3854 |
+
function
|
| 3855 |
+
von
|
| 3856 |
+
mentioned
|
| 3857 |
+
picked
|
| 3858 |
+
build
|
| 3859 |
+
recognized
|
| 3860 |
+
shortly
|
| 3861 |
+
protection
|
| 3862 |
+
picture
|
| 3863 |
+
notable
|
| 3864 |
+
exchange
|
| 3865 |
+
elections
|
| 3866 |
+
1980s
|
| 3867 |
+
loved
|
| 3868 |
+
percent
|
| 3869 |
+
racing
|
| 3870 |
+
fish
|
| 3871 |
+
elizabeth
|
| 3872 |
+
garden
|
| 3873 |
+
volume
|
| 3874 |
+
hockey
|
| 3875 |
+
1941
|
| 3876 |
+
beside
|
| 3877 |
+
settled
|
| 3878 |
+
##ford
|
| 3879 |
+
1940
|
| 3880 |
+
competed
|
| 3881 |
+
replied
|
| 3882 |
+
drew
|
| 3883 |
+
1948
|
| 3884 |
+
actress
|
| 3885 |
+
marine
|
| 3886 |
+
scotland
|
| 3887 |
+
steel
|
| 3888 |
+
glanced
|
| 3889 |
+
farm
|
| 3890 |
+
steve
|
| 3891 |
+
1957
|
| 3892 |
+
risk
|
| 3893 |
+
tonight
|
| 3894 |
+
positive
|
| 3895 |
+
magic
|
| 3896 |
+
singles
|
| 3897 |
+
effects
|
| 3898 |
+
gray
|
| 3899 |
+
screen
|
| 3900 |
+
dog
|
| 3901 |
+
##ja
|
| 3902 |
+
residents
|
| 3903 |
+
bus
|
| 3904 |
+
sides
|
| 3905 |
+
none
|
| 3906 |
+
secondary
|
| 3907 |
+
literature
|
| 3908 |
+
polish
|
| 3909 |
+
destroyed
|
| 3910 |
+
flying
|
| 3911 |
+
founder
|
| 3912 |
+
households
|
| 3913 |
+
1939
|
| 3914 |
+
lay
|
| 3915 |
+
reserve
|
| 3916 |
+
usa
|
| 3917 |
+
gallery
|
| 3918 |
+
##ler
|
| 3919 |
+
1946
|
| 3920 |
+
industrial
|
| 3921 |
+
younger
|
| 3922 |
+
approach
|
| 3923 |
+
appearances
|
| 3924 |
+
urban
|
| 3925 |
+
ones
|
| 3926 |
+
1950
|
| 3927 |
+
finish
|
| 3928 |
+
avenue
|
| 3929 |
+
powerful
|
| 3930 |
+
fully
|
| 3931 |
+
growth
|
| 3932 |
+
page
|
| 3933 |
+
honor
|
| 3934 |
+
jersey
|
| 3935 |
+
projects
|
| 3936 |
+
advanced
|
| 3937 |
+
revealed
|
| 3938 |
+
basic
|
| 3939 |
+
90
|
| 3940 |
+
infantry
|
| 3941 |
+
pair
|
| 3942 |
+
equipment
|
| 3943 |
+
visit
|
| 3944 |
+
33
|
| 3945 |
+
evening
|
| 3946 |
+
search
|
| 3947 |
+
grant
|
| 3948 |
+
effort
|
| 3949 |
+
solo
|
| 3950 |
+
treatment
|
| 3951 |
+
buried
|
| 3952 |
+
republican
|
| 3953 |
+
primarily
|
| 3954 |
+
bottom
|
| 3955 |
+
owner
|
| 3956 |
+
1970s
|
| 3957 |
+
israel
|
| 3958 |
+
gives
|
| 3959 |
+
jim
|
| 3960 |
+
dream
|
| 3961 |
+
bob
|
| 3962 |
+
remain
|
| 3963 |
+
spot
|
| 3964 |
+
70
|
| 3965 |
+
notes
|
| 3966 |
+
produce
|
| 3967 |
+
champions
|
| 3968 |
+
contact
|
| 3969 |
+
ed
|
| 3970 |
+
soul
|
| 3971 |
+
accepted
|
| 3972 |
+
ways
|
| 3973 |
+
del
|
| 3974 |
+
##ally
|
| 3975 |
+
losing
|
| 3976 |
+
split
|
| 3977 |
+
price
|
| 3978 |
+
capacity
|
| 3979 |
+
basis
|
| 3980 |
+
trial
|
| 3981 |
+
questions
|
| 3982 |
+
##ina
|
| 3983 |
+
1955
|
| 3984 |
+
20th
|
| 3985 |
+
guess
|
| 3986 |
+
officially
|
| 3987 |
+
memorial
|
| 3988 |
+
naval
|
| 3989 |
+
initial
|
| 3990 |
+
##ization
|
| 3991 |
+
whispered
|
| 3992 |
+
median
|
| 3993 |
+
engineer
|
| 3994 |
+
##ful
|
| 3995 |
+
sydney
|
| 3996 |
+
##go
|
| 3997 |
+
columbia
|
| 3998 |
+
strength
|
| 3999 |
+
300
|
| 4000 |
+
1952
|
| 4001 |
+
tears
|
| 4002 |
+
senate
|
| 4003 |
+
00
|
| 4004 |
+
card
|
| 4005 |
+
asian
|
| 4006 |
+
agent
|
| 4007 |
+
1947
|
| 4008 |
+
software
|
| 4009 |
+
44
|
| 4010 |
+
draw
|
| 4011 |
+
warm
|
| 4012 |
+
supposed
|
| 4013 |
+
com
|
| 4014 |
+
pro
|
| 4015 |
+
##il
|
| 4016 |
+
transferred
|
| 4017 |
+
leaned
|
| 4018 |
+
##at
|
| 4019 |
+
candidate
|
| 4020 |
+
escape
|
| 4021 |
+
mountains
|
| 4022 |
+
asia
|
| 4023 |
+
potential
|
| 4024 |
+
activity
|
| 4025 |
+
entertainment
|
| 4026 |
+
seem
|
| 4027 |
+
traffic
|
| 4028 |
+
jackson
|
| 4029 |
+
murder
|
| 4030 |
+
36
|
| 4031 |
+
slow
|
| 4032 |
+
product
|
| 4033 |
+
orchestra
|
| 4034 |
+
haven
|
| 4035 |
+
agency
|
| 4036 |
+
bbc
|
| 4037 |
+
taught
|
| 4038 |
+
website
|
| 4039 |
+
comedy
|
| 4040 |
+
unable
|
| 4041 |
+
storm
|
| 4042 |
+
planning
|
| 4043 |
+
albums
|
| 4044 |
+
rugby
|
| 4045 |
+
environment
|
| 4046 |
+
scientific
|
| 4047 |
+
grabbed
|
| 4048 |
+
protect
|
| 4049 |
+
##hi
|
| 4050 |
+
boat
|
| 4051 |
+
typically
|
| 4052 |
+
1954
|
| 4053 |
+
1953
|
| 4054 |
+
damage
|
| 4055 |
+
principal
|
| 4056 |
+
divided
|
| 4057 |
+
dedicated
|
| 4058 |
+
mount
|
| 4059 |
+
ohio
|
| 4060 |
+
##berg
|
| 4061 |
+
pick
|
| 4062 |
+
fought
|
| 4063 |
+
driver
|
| 4064 |
+
##der
|
| 4065 |
+
empty
|
| 4066 |
+
shoulders
|
| 4067 |
+
sort
|
| 4068 |
+
thank
|
| 4069 |
+
berlin
|
| 4070 |
+
prominent
|
| 4071 |
+
account
|
| 4072 |
+
freedom
|
| 4073 |
+
necessary
|
| 4074 |
+
efforts
|
| 4075 |
+
alex
|
| 4076 |
+
headquarters
|
| 4077 |
+
follows
|
| 4078 |
+
alongside
|
| 4079 |
+
des
|
| 4080 |
+
simon
|
| 4081 |
+
andrew
|
| 4082 |
+
suggested
|
| 4083 |
+
operating
|
| 4084 |
+
learning
|
| 4085 |
+
steps
|
| 4086 |
+
1949
|
| 4087 |
+
sweet
|
| 4088 |
+
technical
|
| 4089 |
+
begin
|
| 4090 |
+
easily
|
| 4091 |
+
34
|
| 4092 |
+
teeth
|
| 4093 |
+
speaking
|
| 4094 |
+
settlement
|
| 4095 |
+
scale
|
| 4096 |
+
##sh
|
| 4097 |
+
renamed
|
| 4098 |
+
ray
|
| 4099 |
+
max
|
| 4100 |
+
enemy
|
| 4101 |
+
semi
|
| 4102 |
+
joint
|
| 4103 |
+
compared
|
| 4104 |
+
##rd
|
| 4105 |
+
scottish
|
| 4106 |
+
leadership
|
| 4107 |
+
analysis
|
| 4108 |
+
offers
|
| 4109 |
+
georgia
|
| 4110 |
+
pieces
|
| 4111 |
+
captured
|
| 4112 |
+
animal
|
| 4113 |
+
deputy
|
| 4114 |
+
guest
|
| 4115 |
+
organized
|
| 4116 |
+
##lin
|
| 4117 |
+
tony
|
| 4118 |
+
combined
|
| 4119 |
+
method
|
| 4120 |
+
challenge
|
| 4121 |
+
1960s
|
| 4122 |
+
huge
|
| 4123 |
+
wants
|
| 4124 |
+
battalion
|
| 4125 |
+
sons
|
| 4126 |
+
rise
|
| 4127 |
+
crime
|
| 4128 |
+
types
|
| 4129 |
+
facilities
|
| 4130 |
+
telling
|
| 4131 |
+
path
|
| 4132 |
+
1951
|
| 4133 |
+
platform
|
| 4134 |
+
sit
|
| 4135 |
+
1990s
|
| 4136 |
+
##lo
|
| 4137 |
+
tells
|
| 4138 |
+
assigned
|
| 4139 |
+
rich
|
| 4140 |
+
pull
|
| 4141 |
+
##ot
|
| 4142 |
+
commonly
|
| 4143 |
+
alive
|
| 4144 |
+
##za
|
| 4145 |
+
letters
|
| 4146 |
+
concept
|
| 4147 |
+
conducted
|
| 4148 |
+
wearing
|
| 4149 |
+
happen
|
| 4150 |
+
bought
|
| 4151 |
+
becomes
|
| 4152 |
+
holy
|
| 4153 |
+
gets
|
| 4154 |
+
ocean
|
| 4155 |
+
defeat
|
| 4156 |
+
languages
|
| 4157 |
+
purchased
|
| 4158 |
+
coffee
|
| 4159 |
+
occurred
|
| 4160 |
+
titled
|
| 4161 |
+
##q
|
| 4162 |
+
declared
|
| 4163 |
+
applied
|
| 4164 |
+
sciences
|
| 4165 |
+
concert
|
| 4166 |
+
sounds
|
| 4167 |
+
jazz
|
| 4168 |
+
brain
|
| 4169 |
+
##me
|
| 4170 |
+
painting
|
| 4171 |
+
fleet
|
| 4172 |
+
tax
|
| 4173 |
+
nick
|
| 4174 |
+
##ius
|
| 4175 |
+
michigan
|
| 4176 |
+
count
|
| 4177 |
+
animals
|
| 4178 |
+
leaders
|
| 4179 |
+
episodes
|
| 4180 |
+
##line
|
| 4181 |
+
content
|
| 4182 |
+
##den
|
| 4183 |
+
birth
|
| 4184 |
+
##it
|
| 4185 |
+
clubs
|
| 4186 |
+
64
|
| 4187 |
+
palace
|
| 4188 |
+
critical
|
| 4189 |
+
refused
|
| 4190 |
+
fair
|
| 4191 |
+
leg
|
| 4192 |
+
laughed
|
| 4193 |
+
returning
|
| 4194 |
+
surrounding
|
| 4195 |
+
participated
|
| 4196 |
+
formation
|
| 4197 |
+
lifted
|
| 4198 |
+
pointed
|
| 4199 |
+
connected
|
| 4200 |
+
rome
|
| 4201 |
+
medicine
|
| 4202 |
+
laid
|
| 4203 |
+
taylor
|
| 4204 |
+
santa
|
| 4205 |
+
powers
|
| 4206 |
+
adam
|
| 4207 |
+
tall
|
| 4208 |
+
shared
|
| 4209 |
+
focused
|
| 4210 |
+
knowing
|
| 4211 |
+
yards
|
| 4212 |
+
entrance
|
| 4213 |
+
falls
|
| 4214 |
+
##wa
|
| 4215 |
+
calling
|
| 4216 |
+
##ad
|
| 4217 |
+
sources
|
| 4218 |
+
chosen
|
| 4219 |
+
beneath
|
| 4220 |
+
resources
|
| 4221 |
+
yard
|
| 4222 |
+
##ite
|
| 4223 |
+
nominated
|
| 4224 |
+
silence
|
| 4225 |
+
zone
|
| 4226 |
+
defined
|
| 4227 |
+
##que
|
| 4228 |
+
gained
|
| 4229 |
+
thirty
|
| 4230 |
+
38
|
| 4231 |
+
bodies
|
| 4232 |
+
moon
|
| 4233 |
+
##ard
|
| 4234 |
+
adopted
|
| 4235 |
+
christmas
|
| 4236 |
+
widely
|
| 4237 |
+
register
|
| 4238 |
+
apart
|
| 4239 |
+
iran
|
| 4240 |
+
premier
|
| 4241 |
+
serves
|
| 4242 |
+
du
|
| 4243 |
+
unknown
|
| 4244 |
+
parties
|
| 4245 |
+
##les
|
| 4246 |
+
generation
|
| 4247 |
+
##ff
|
| 4248 |
+
continues
|
| 4249 |
+
quick
|
| 4250 |
+
fields
|
| 4251 |
+
brigade
|
| 4252 |
+
quiet
|
| 4253 |
+
teaching
|
| 4254 |
+
clothes
|
| 4255 |
+
impact
|
| 4256 |
+
weapons
|
| 4257 |
+
partner
|
| 4258 |
+
flat
|
| 4259 |
+
theater
|
| 4260 |
+
supreme
|
| 4261 |
+
1938
|
| 4262 |
+
37
|
| 4263 |
+
relations
|
| 4264 |
+
##tor
|
| 4265 |
+
plants
|
| 4266 |
+
suffered
|
| 4267 |
+
1936
|
| 4268 |
+
wilson
|
| 4269 |
+
kids
|
| 4270 |
+
begins
|
| 4271 |
+
##age
|
| 4272 |
+
1918
|
| 4273 |
+
seats
|
| 4274 |
+
armed
|
| 4275 |
+
internet
|
| 4276 |
+
models
|
| 4277 |
+
worth
|
| 4278 |
+
laws
|
| 4279 |
+
400
|
| 4280 |
+
communities
|
| 4281 |
+
classes
|
| 4282 |
+
background
|
| 4283 |
+
knows
|
| 4284 |
+
thanks
|
| 4285 |
+
quarter
|
| 4286 |
+
reaching
|
| 4287 |
+
humans
|
| 4288 |
+
carry
|
| 4289 |
+
killing
|
| 4290 |
+
format
|
| 4291 |
+
kong
|
| 4292 |
+
hong
|
| 4293 |
+
setting
|
| 4294 |
+
75
|
| 4295 |
+
architecture
|
| 4296 |
+
disease
|
| 4297 |
+
railroad
|
| 4298 |
+
inc
|
| 4299 |
+
possibly
|
| 4300 |
+
wish
|
| 4301 |
+
arthur
|
| 4302 |
+
thoughts
|
| 4303 |
+
harry
|
| 4304 |
+
doors
|
| 4305 |
+
density
|
| 4306 |
+
##di
|
| 4307 |
+
crowd
|
| 4308 |
+
illinois
|
| 4309 |
+
stomach
|
| 4310 |
+
tone
|
| 4311 |
+
unique
|
| 4312 |
+
reports
|
| 4313 |
+
anyway
|
| 4314 |
+
##ir
|
| 4315 |
+
liberal
|
| 4316 |
+
der
|
| 4317 |
+
vehicle
|
| 4318 |
+
thick
|
| 4319 |
+
dry
|
| 4320 |
+
drug
|
| 4321 |
+
faced
|
| 4322 |
+
largely
|
| 4323 |
+
facility
|
| 4324 |
+
theme
|
| 4325 |
+
holds
|
| 4326 |
+
creation
|
| 4327 |
+
strange
|
| 4328 |
+
colonel
|
| 4329 |
+
##mi
|
| 4330 |
+
revolution
|
| 4331 |
+
bell
|
| 4332 |
+
politics
|
| 4333 |
+
turns
|
| 4334 |
+
silent
|
| 4335 |
+
rail
|
| 4336 |
+
relief
|
| 4337 |
+
independence
|
| 4338 |
+
combat
|
| 4339 |
+
shape
|
| 4340 |
+
write
|
| 4341 |
+
determined
|
| 4342 |
+
sales
|
| 4343 |
+
learned
|
| 4344 |
+
4th
|
| 4345 |
+
finger
|
| 4346 |
+
oxford
|
| 4347 |
+
providing
|
| 4348 |
+
1937
|
| 4349 |
+
heritage
|
| 4350 |
+
fiction
|
| 4351 |
+
situated
|
| 4352 |
+
designated
|
| 4353 |
+
allowing
|
| 4354 |
+
distribution
|
| 4355 |
+
hosted
|
| 4356 |
+
##est
|
| 4357 |
+
sight
|
| 4358 |
+
interview
|
| 4359 |
+
estimated
|
| 4360 |
+
reduced
|
| 4361 |
+
##ria
|
| 4362 |
+
toronto
|
| 4363 |
+
footballer
|
| 4364 |
+
keeping
|
| 4365 |
+
guys
|
| 4366 |
+
damn
|
| 4367 |
+
claim
|
| 4368 |
+
motion
|
| 4369 |
+
sport
|
| 4370 |
+
sixth
|
| 4371 |
+
stayed
|
| 4372 |
+
##ze
|
| 4373 |
+
en
|
| 4374 |
+
rear
|
| 4375 |
+
receive
|
| 4376 |
+
handed
|
| 4377 |
+
twelve
|
| 4378 |
+
dress
|
| 4379 |
+
audience
|
| 4380 |
+
granted
|
| 4381 |
+
brazil
|
| 4382 |
+
##well
|
| 4383 |
+
spirit
|
| 4384 |
+
##ated
|
| 4385 |
+
noticed
|
| 4386 |
+
etc
|
| 4387 |
+
olympic
|
| 4388 |
+
representative
|
| 4389 |
+
eric
|
| 4390 |
+
tight
|
| 4391 |
+
trouble
|
| 4392 |
+
reviews
|
| 4393 |
+
drink
|
| 4394 |
+
vampire
|
| 4395 |
+
missing
|
| 4396 |
+
roles
|
| 4397 |
+
ranked
|
| 4398 |
+
newly
|
| 4399 |
+
household
|
| 4400 |
+
finals
|
| 4401 |
+
wave
|
| 4402 |
+
critics
|
| 4403 |
+
##ee
|
| 4404 |
+
phase
|
| 4405 |
+
massachusetts
|
| 4406 |
+
pilot
|
| 4407 |
+
unlike
|
| 4408 |
+
philadelphia
|
| 4409 |
+
bright
|
| 4410 |
+
guns
|
| 4411 |
+
crown
|
| 4412 |
+
organizations
|
| 4413 |
+
roof
|
| 4414 |
+
42
|
| 4415 |
+
respectively
|
| 4416 |
+
clearly
|
| 4417 |
+
tongue
|
| 4418 |
+
marked
|
| 4419 |
+
circle
|
| 4420 |
+
fox
|
| 4421 |
+
korea
|
| 4422 |
+
bronze
|
| 4423 |
+
brian
|
| 4424 |
+
expanded
|
| 4425 |
+
sexual
|
| 4426 |
+
supply
|
| 4427 |
+
yourself
|
| 4428 |
+
inspired
|
| 4429 |
+
labour
|
| 4430 |
+
fc
|
| 4431 |
+
##ah
|
| 4432 |
+
reference
|
| 4433 |
+
vision
|
| 4434 |
+
draft
|
| 4435 |
+
connection
|
| 4436 |
+
brand
|
| 4437 |
+
reasons
|
| 4438 |
+
1935
|
| 4439 |
+
classic
|
| 4440 |
+
driving
|
| 4441 |
+
trip
|
| 4442 |
+
jesus
|
| 4443 |
+
cells
|
| 4444 |
+
entry
|
| 4445 |
+
1920
|
| 4446 |
+
neither
|
| 4447 |
+
trail
|
| 4448 |
+
claims
|
| 4449 |
+
atlantic
|
| 4450 |
+
orders
|
| 4451 |
+
labor
|
| 4452 |
+
nose
|
| 4453 |
+
afraid
|
| 4454 |
+
identified
|
| 4455 |
+
intelligence
|
| 4456 |
+
calls
|
| 4457 |
+
cancer
|
| 4458 |
+
attacked
|
| 4459 |
+
passing
|
| 4460 |
+
stephen
|
| 4461 |
+
positions
|
| 4462 |
+
imperial
|
| 4463 |
+
grey
|
| 4464 |
+
jason
|
| 4465 |
+
39
|
| 4466 |
+
sunday
|
| 4467 |
+
48
|
| 4468 |
+
swedish
|
| 4469 |
+
avoid
|
| 4470 |
+
extra
|
| 4471 |
+
uncle
|
| 4472 |
+
message
|
| 4473 |
+
covers
|
| 4474 |
+
allows
|
| 4475 |
+
surprise
|
| 4476 |
+
materials
|
| 4477 |
+
fame
|
| 4478 |
+
hunter
|
| 4479 |
+
##ji
|
| 4480 |
+
1930
|
| 4481 |
+
citizens
|
| 4482 |
+
figures
|
| 4483 |
+
davis
|
| 4484 |
+
environmental
|
| 4485 |
+
confirmed
|
| 4486 |
+
shit
|
| 4487 |
+
titles
|
| 4488 |
+
di
|
| 4489 |
+
performing
|
| 4490 |
+
difference
|
| 4491 |
+
acts
|
| 4492 |
+
attacks
|
| 4493 |
+
##ov
|
| 4494 |
+
existing
|
| 4495 |
+
votes
|
| 4496 |
+
opportunity
|
| 4497 |
+
nor
|
| 4498 |
+
shop
|
| 4499 |
+
entirely
|
| 4500 |
+
trains
|
| 4501 |
+
opposite
|
| 4502 |
+
pakistan
|
| 4503 |
+
##pa
|
| 4504 |
+
develop
|
| 4505 |
+
resulted
|
| 4506 |
+
representatives
|
| 4507 |
+
actions
|
| 4508 |
+
reality
|
| 4509 |
+
pressed
|
| 4510 |
+
##ish
|
| 4511 |
+
barely
|
| 4512 |
+
wine
|
| 4513 |
+
conversation
|
| 4514 |
+
faculty
|
| 4515 |
+
northwest
|
| 4516 |
+
ends
|
| 4517 |
+
documentary
|
| 4518 |
+
nuclear
|
| 4519 |
+
stock
|
| 4520 |
+
grace
|
| 4521 |
+
sets
|
| 4522 |
+
eat
|
| 4523 |
+
alternative
|
| 4524 |
+
##ps
|
| 4525 |
+
bag
|
| 4526 |
+
resulting
|
| 4527 |
+
creating
|
| 4528 |
+
surprised
|
| 4529 |
+
cemetery
|
| 4530 |
+
1919
|
| 4531 |
+
drop
|
| 4532 |
+
finding
|
| 4533 |
+
sarah
|
| 4534 |
+
cricket
|
| 4535 |
+
streets
|
| 4536 |
+
tradition
|
| 4537 |
+
ride
|
| 4538 |
+
1933
|
| 4539 |
+
exhibition
|
| 4540 |
+
target
|
| 4541 |
+
ear
|
| 4542 |
+
explained
|
| 4543 |
+
rain
|
| 4544 |
+
composer
|
| 4545 |
+
injury
|
| 4546 |
+
apartment
|
| 4547 |
+
municipal
|
| 4548 |
+
educational
|
| 4549 |
+
occupied
|
| 4550 |
+
netherlands
|
| 4551 |
+
clean
|
| 4552 |
+
billion
|
| 4553 |
+
constitution
|
| 4554 |
+
learn
|
| 4555 |
+
1914
|
| 4556 |
+
maximum
|
| 4557 |
+
classical
|
| 4558 |
+
francis
|
| 4559 |
+
lose
|
| 4560 |
+
opposition
|
| 4561 |
+
jose
|
| 4562 |
+
ontario
|
| 4563 |
+
bear
|
| 4564 |
+
core
|
| 4565 |
+
hills
|
| 4566 |
+
rolled
|
| 4567 |
+
ending
|
| 4568 |
+
drawn
|
| 4569 |
+
permanent
|
| 4570 |
+
fun
|
| 4571 |
+
##tes
|
| 4572 |
+
##lla
|
| 4573 |
+
lewis
|
| 4574 |
+
sites
|
| 4575 |
+
chamber
|
| 4576 |
+
ryan
|
| 4577 |
+
##way
|
| 4578 |
+
scoring
|
| 4579 |
+
height
|
| 4580 |
+
1934
|
| 4581 |
+
##house
|
| 4582 |
+
lyrics
|
| 4583 |
+
staring
|
| 4584 |
+
55
|
| 4585 |
+
officials
|
| 4586 |
+
1917
|
| 4587 |
+
snow
|
| 4588 |
+
oldest
|
| 4589 |
+
##tic
|
| 4590 |
+
orange
|
| 4591 |
+
##ger
|
| 4592 |
+
qualified
|
| 4593 |
+
interior
|
| 4594 |
+
apparently
|
| 4595 |
+
succeeded
|
| 4596 |
+
thousand
|
| 4597 |
+
dinner
|
| 4598 |
+
lights
|
| 4599 |
+
existence
|
| 4600 |
+
fans
|
| 4601 |
+
heavily
|
| 4602 |
+
41
|
| 4603 |
+
greatest
|
| 4604 |
+
conservative
|
| 4605 |
+
send
|
| 4606 |
+
bowl
|
| 4607 |
+
plus
|
| 4608 |
+
enter
|
| 4609 |
+
catch
|
| 4610 |
+
##un
|
| 4611 |
+
economy
|
| 4612 |
+
duty
|
| 4613 |
+
1929
|
| 4614 |
+
speech
|
| 4615 |
+
authorities
|
| 4616 |
+
princess
|
| 4617 |
+
performances
|
| 4618 |
+
versions
|
| 4619 |
+
shall
|
| 4620 |
+
graduate
|
| 4621 |
+
pictures
|
| 4622 |
+
effective
|
| 4623 |
+
remembered
|
| 4624 |
+
poetry
|
| 4625 |
+
desk
|
| 4626 |
+
crossed
|
| 4627 |
+
starring
|
| 4628 |
+
starts
|
| 4629 |
+
passenger
|
| 4630 |
+
sharp
|
| 4631 |
+
##ant
|
| 4632 |
+
acres
|
| 4633 |
+
ass
|
| 4634 |
+
weather
|
| 4635 |
+
falling
|
| 4636 |
+
rank
|
| 4637 |
+
fund
|
| 4638 |
+
supporting
|
| 4639 |
+
check
|
| 4640 |
+
adult
|
| 4641 |
+
publishing
|
| 4642 |
+
heads
|
| 4643 |
+
cm
|
| 4644 |
+
southeast
|
| 4645 |
+
lane
|
| 4646 |
+
##burg
|
| 4647 |
+
application
|
| 4648 |
+
bc
|
| 4649 |
+
##ura
|
| 4650 |
+
les
|
| 4651 |
+
condition
|
| 4652 |
+
transfer
|
| 4653 |
+
prevent
|
| 4654 |
+
display
|
| 4655 |
+
ex
|
| 4656 |
+
regions
|
| 4657 |
+
earl
|
| 4658 |
+
federation
|
| 4659 |
+
cool
|
| 4660 |
+
relatively
|
| 4661 |
+
answered
|
| 4662 |
+
besides
|
| 4663 |
+
1928
|
| 4664 |
+
obtained
|
| 4665 |
+
portion
|
| 4666 |
+
##town
|
| 4667 |
+
mix
|
| 4668 |
+
##ding
|
| 4669 |
+
reaction
|
| 4670 |
+
liked
|
| 4671 |
+
dean
|
| 4672 |
+
express
|
| 4673 |
+
peak
|
| 4674 |
+
1932
|
| 4675 |
+
##tte
|
| 4676 |
+
counter
|
| 4677 |
+
religion
|
| 4678 |
+
chain
|
| 4679 |
+
rare
|
| 4680 |
+
miller
|
| 4681 |
+
convention
|
| 4682 |
+
aid
|
| 4683 |
+
lie
|
| 4684 |
+
vehicles
|
| 4685 |
+
mobile
|
| 4686 |
+
perform
|
| 4687 |
+
squad
|
| 4688 |
+
wonder
|
| 4689 |
+
lying
|
| 4690 |
+
crazy
|
| 4691 |
+
sword
|
| 4692 |
+
##ping
|
| 4693 |
+
attempted
|
| 4694 |
+
centuries
|
| 4695 |
+
weren
|
| 4696 |
+
philosophy
|
| 4697 |
+
category
|
| 4698 |
+
##ize
|
| 4699 |
+
anna
|
| 4700 |
+
interested
|
| 4701 |
+
47
|
| 4702 |
+
sweden
|
| 4703 |
+
wolf
|
| 4704 |
+
frequently
|
| 4705 |
+
abandoned
|
| 4706 |
+
kg
|
| 4707 |
+
literary
|
| 4708 |
+
alliance
|
| 4709 |
+
task
|
| 4710 |
+
entitled
|
| 4711 |
+
##ay
|
| 4712 |
+
threw
|
| 4713 |
+
promotion
|
| 4714 |
+
factory
|
| 4715 |
+
tiny
|
| 4716 |
+
soccer
|
| 4717 |
+
visited
|
| 4718 |
+
matt
|
| 4719 |
+
fm
|
| 4720 |
+
achieved
|
| 4721 |
+
52
|
| 4722 |
+
defence
|
| 4723 |
+
internal
|
| 4724 |
+
persian
|
| 4725 |
+
43
|
| 4726 |
+
methods
|
| 4727 |
+
##ging
|
| 4728 |
+
arrested
|
| 4729 |
+
otherwise
|
| 4730 |
+
cambridge
|
| 4731 |
+
programming
|
| 4732 |
+
villages
|
| 4733 |
+
elementary
|
| 4734 |
+
districts
|
| 4735 |
+
rooms
|
| 4736 |
+
criminal
|
| 4737 |
+
conflict
|
| 4738 |
+
worry
|
| 4739 |
+
trained
|
| 4740 |
+
1931
|
| 4741 |
+
attempts
|
| 4742 |
+
waited
|
| 4743 |
+
signal
|
| 4744 |
+
bird
|
| 4745 |
+
truck
|
| 4746 |
+
subsequent
|
| 4747 |
+
programme
|
| 4748 |
+
##ol
|
| 4749 |
+
ad
|
| 4750 |
+
49
|
| 4751 |
+
communist
|
| 4752 |
+
details
|
| 4753 |
+
faith
|
| 4754 |
+
sector
|
| 4755 |
+
patrick
|
| 4756 |
+
carrying
|
| 4757 |
+
laugh
|
| 4758 |
+
##ss
|
| 4759 |
+
controlled
|
| 4760 |
+
korean
|
| 4761 |
+
showing
|
| 4762 |
+
origin
|
| 4763 |
+
fuel
|
| 4764 |
+
evil
|
| 4765 |
+
1927
|
| 4766 |
+
##ent
|
| 4767 |
+
brief
|
| 4768 |
+
identity
|
| 4769 |
+
darkness
|
| 4770 |
+
address
|
| 4771 |
+
pool
|
| 4772 |
+
missed
|
| 4773 |
+
publication
|
| 4774 |
+
web
|
| 4775 |
+
planet
|
| 4776 |
+
ian
|
| 4777 |
+
anne
|
| 4778 |
+
wings
|
| 4779 |
+
invited
|
| 4780 |
+
##tt
|
| 4781 |
+
briefly
|
| 4782 |
+
standards
|
| 4783 |
+
kissed
|
| 4784 |
+
##be
|
| 4785 |
+
ideas
|
| 4786 |
+
climate
|
| 4787 |
+
causing
|
| 4788 |
+
walter
|
| 4789 |
+
worse
|
| 4790 |
+
albert
|
| 4791 |
+
articles
|
| 4792 |
+
winners
|
| 4793 |
+
desire
|
| 4794 |
+
aged
|
| 4795 |
+
northeast
|
| 4796 |
+
dangerous
|
| 4797 |
+
gate
|
| 4798 |
+
doubt
|
| 4799 |
+
1922
|
| 4800 |
+
wooden
|
| 4801 |
+
multi
|
| 4802 |
+
##ky
|
| 4803 |
+
poet
|
| 4804 |
+
rising
|
| 4805 |
+
funding
|
| 4806 |
+
46
|
| 4807 |
+
communications
|
| 4808 |
+
communication
|
| 4809 |
+
violence
|
| 4810 |
+
copies
|
| 4811 |
+
prepared
|
| 4812 |
+
ford
|
| 4813 |
+
investigation
|
| 4814 |
+
skills
|
| 4815 |
+
1924
|
| 4816 |
+
pulling
|
| 4817 |
+
electronic
|
| 4818 |
+
##ak
|
| 4819 |
+
##ial
|
| 4820 |
+
##han
|
| 4821 |
+
containing
|
| 4822 |
+
ultimately
|
| 4823 |
+
offices
|
| 4824 |
+
singing
|
| 4825 |
+
understanding
|
| 4826 |
+
restaurant
|
| 4827 |
+
tomorrow
|
| 4828 |
+
fashion
|
| 4829 |
+
christ
|
| 4830 |
+
ward
|
| 4831 |
+
da
|
| 4832 |
+
pope
|
| 4833 |
+
stands
|
| 4834 |
+
5th
|
| 4835 |
+
flow
|
| 4836 |
+
studios
|
| 4837 |
+
aired
|
| 4838 |
+
commissioned
|
| 4839 |
+
contained
|
| 4840 |
+
exist
|
| 4841 |
+
fresh
|
| 4842 |
+
americans
|
| 4843 |
+
##per
|
| 4844 |
+
wrestling
|
| 4845 |
+
approved
|
| 4846 |
+
kid
|
| 4847 |
+
employed
|
| 4848 |
+
respect
|
| 4849 |
+
suit
|
| 4850 |
+
1925
|
| 4851 |
+
angel
|
| 4852 |
+
asking
|
| 4853 |
+
increasing
|
| 4854 |
+
frame
|
| 4855 |
+
angry
|
| 4856 |
+
selling
|
| 4857 |
+
1950s
|
| 4858 |
+
thin
|
| 4859 |
+
finds
|
| 4860 |
+
##nd
|
| 4861 |
+
temperature
|
| 4862 |
+
statement
|
| 4863 |
+
ali
|
| 4864 |
+
explain
|
| 4865 |
+
inhabitants
|
| 4866 |
+
towns
|
| 4867 |
+
extensive
|
| 4868 |
+
narrow
|
| 4869 |
+
51
|
| 4870 |
+
jane
|
| 4871 |
+
flowers
|
| 4872 |
+
images
|
| 4873 |
+
promise
|
| 4874 |
+
somewhere
|
| 4875 |
+
object
|
| 4876 |
+
fly
|
| 4877 |
+
closely
|
| 4878 |
+
##ls
|
| 4879 |
+
1912
|
| 4880 |
+
bureau
|
| 4881 |
+
cape
|
| 4882 |
+
1926
|
| 4883 |
+
weekly
|
| 4884 |
+
presidential
|
| 4885 |
+
legislative
|
| 4886 |
+
1921
|
| 4887 |
+
##ai
|
| 4888 |
+
##au
|
| 4889 |
+
launch
|
| 4890 |
+
founding
|
| 4891 |
+
##ny
|
| 4892 |
+
978
|
| 4893 |
+
##ring
|
| 4894 |
+
artillery
|
| 4895 |
+
strike
|
| 4896 |
+
un
|
| 4897 |
+
institutions
|
| 4898 |
+
roll
|
| 4899 |
+
writers
|
| 4900 |
+
landing
|
| 4901 |
+
chose
|
| 4902 |
+
kevin
|
| 4903 |
+
anymore
|
| 4904 |
+
pp
|
| 4905 |
+
##ut
|
| 4906 |
+
attorney
|
| 4907 |
+
fit
|
| 4908 |
+
dan
|
| 4909 |
+
billboard
|
| 4910 |
+
receiving
|
| 4911 |
+
agricultural
|
| 4912 |
+
breaking
|
| 4913 |
+
sought
|
| 4914 |
+
dave
|
| 4915 |
+
admitted
|
| 4916 |
+
lands
|
| 4917 |
+
mexican
|
| 4918 |
+
##bury
|
| 4919 |
+
charlie
|
| 4920 |
+
specifically
|
| 4921 |
+
hole
|
| 4922 |
+
iv
|
| 4923 |
+
howard
|
| 4924 |
+
credit
|
| 4925 |
+
moscow
|
| 4926 |
+
roads
|
| 4927 |
+
accident
|
| 4928 |
+
1923
|
| 4929 |
+
proved
|
| 4930 |
+
wear
|
| 4931 |
+
struck
|
| 4932 |
+
hey
|
| 4933 |
+
guards
|
| 4934 |
+
stuff
|
| 4935 |
+
slid
|
| 4936 |
+
expansion
|
| 4937 |
+
1915
|
| 4938 |
+
cat
|
| 4939 |
+
anthony
|
| 4940 |
+
##kin
|
| 4941 |
+
melbourne
|
| 4942 |
+
opposed
|
| 4943 |
+
sub
|
| 4944 |
+
southwest
|
| 4945 |
+
architect
|
| 4946 |
+
failure
|
| 4947 |
+
plane
|
| 4948 |
+
1916
|
| 4949 |
+
##ron
|
| 4950 |
+
map
|
| 4951 |
+
camera
|
| 4952 |
+
tank
|
| 4953 |
+
listen
|
| 4954 |
+
regarding
|
| 4955 |
+
wet
|
| 4956 |
+
introduction
|
| 4957 |
+
metropolitan
|
| 4958 |
+
link
|
| 4959 |
+
ep
|
| 4960 |
+
fighter
|
| 4961 |
+
inch
|
| 4962 |
+
grown
|
| 4963 |
+
gene
|
| 4964 |
+
anger
|
| 4965 |
+
fixed
|
| 4966 |
+
buy
|
| 4967 |
+
dvd
|
| 4968 |
+
khan
|
| 4969 |
+
domestic
|
| 4970 |
+
worldwide
|
| 4971 |
+
chapel
|
| 4972 |
+
mill
|
| 4973 |
+
functions
|
| 4974 |
+
examples
|
| 4975 |
+
##head
|
| 4976 |
+
developing
|
| 4977 |
+
1910
|
| 4978 |
+
turkey
|
| 4979 |
+
hits
|
| 4980 |
+
pocket
|
| 4981 |
+
antonio
|
| 4982 |
+
papers
|
| 4983 |
+
grow
|
| 4984 |
+
unless
|
| 4985 |
+
circuit
|
| 4986 |
+
18th
|
| 4987 |
+
concerned
|
| 4988 |
+
attached
|
| 4989 |
+
journalist
|
| 4990 |
+
selection
|
| 4991 |
+
journey
|
| 4992 |
+
converted
|
| 4993 |
+
provincial
|
| 4994 |
+
painted
|
| 4995 |
+
hearing
|
| 4996 |
+
aren
|
| 4997 |
+
bands
|
| 4998 |
+
negative
|
| 4999 |
+
aside
|
| 5000 |
+
wondered
|