File size: 10,234 Bytes
c8ef0a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 |
[PAD] 0
[UNK] 0
[CLS] 0
[SEP] 0
[MASK] 0
▁a -0
▁t -1
he -2
in -3
▁o -4
er -5
▁the -6
on -7
is -8
re -9
an -10
at -11
▁of -12
en -13
▁s -14
▁c -15
al -16
▁an -17
or -18
es -19
it -20
ic -21
ed -22
▁in -23
ar -24
▁w -25
▁and -26
▁p -27
▁f -28
▁b -29
ion -30
▁m -31
ro -32
as -33
ing -34
▁is -35
▁d -36
le -37
▁A -38
ent -39
om -40
▁to -41
us -42
▁( -43
▁T -44
ly -45
▁h -46
ct -47
un -48
▁e -49
▁l -50
▁1 -51
▁I -52
▁re -53
ol -54
st -55
▁C -56
ation -57
ur -58
▁n -59
il -60
ut -61
am -62
el -63
et -64
▁as -65
▁S -66
▁The -67
iv -68
ce -69
▁or -70
ch -71
▁th -72
▁g -73
ist -74
▁M -75
ul -76
im -77
ig -78
id -79
▁B -80
▁for -81
ra -82
em -83
th -84
▁was -85
▁on -86
ter -87
▁H -88
ow -89
▁E -90
ir -91
▁by -92
▁G -93
ith -94
▁con -95
ers -96
and -97
op -98
▁st -99
her -100
▁com -101
▁be -102
▁19 -103
▁al -104
os -105
est -106
ay -107
▁P -108
▁F -109
▁wh -110
ad -111
▁with -112
▁L -113
▁pro -114
ci -115
um -116
ot -117
ical -118
▁are -119
▁D -120
od -121
rom -122
ag -123
ian -124
▁it -125
ity -126
ver -127
oun -128
▁R -129
▁J -130
pe -131
▁de -132
▁that -133
▁N -134
ies -135
▁from -136
▁In -137
▁v -138
▁It -139
▁2 -140
ia -141
res -142
ate -143
ber -144
ive -145
og -146
ain -147
ud -148
if -149
so -150
▁k -151
▁su -152
av -153
▁mo -154
ich -155
▁W -156
ab -157
▁ex -158
ated -159
ran -160
▁" -161
qu -162
all -163
ess -164
ri -165
ug -166
), -167
▁us -168
ment -169
ary -170
ort -171
art -172
ac -173
▁se -174
ant -175
▁K -176
▁comp -177
ish -178
▁U -179
oc -180
ally -181
▁he -182
▁which -183
ap -184
▁un -185
ous -186
out -187
rit -188
mer -189
ast -190
ine -191
cl -192
ure -193
own -194
ard -195
▁at -196
ell -197
ame -198
ord -199
▁O -200
igh -201
up -202
▁also -203
ry -204
▁kn -205
ak -206
se -207
ction -208
end -209
ge -210
fer -211
ong -212
ub -213
▁his -214
iz -215
per -216
▁ch -217
00 -218
tern -219
▁Ch -220
ther -221
▁pl -222
▁its -223
pt -224
▁known -225
pl -226
land -227
erm -228
ount -229
ugh -230
ill -231
ence -232
▁ar -233
▁has -234
▁He -235
ld -236
ial -237
▁one -238
ect -239
ations -240
ican -241
▁r -242
▁le -243
ph -244
▁sy -245
ition -246
ory -247
▁Un -248
ip -249
ult -250
ates -251
ire -252
ust -253
▁St -254
ide -255
ov -256
olog -257
▁cont -258
clud -259
con -260
▁wor -261
our -262
ree -263
du -264
ang -265
). -266
ore -267
▁part -268
ign -269
▁int -270
age -271
ass -272
ics -273
▁other -274
cc -275
der -276
ew -277
▁Amer -278
▁form -279
▁te -280
▁includ -281
▁most -282
act -283
▁comm -284
ib -285
irst -286
ational -287
▁18 -288
ome -289
▁cl -290
ight -291
▁sp -292
ited -293
▁ab -294
▁An -295
ave -296
▁pop -297
over -298
ren -299
▁ele -300
ru -301
ten -302
▁ph -303
ism -304
stem -305
▁used -306
▁– -307
▁en -308
▁popul -309
ep -310
ater -311
ubl -312
orm -313
ound -314
▁ser -315
ear -316
ron -317
▁first -318
vel -319
▁who -320
ok -321
any -322
hem -323
▁sh -324
▁cons -325
▁American -326
port -327
▁cent -328
▁count -329
▁rel -330
▁En -331
▁bo -332
▁dis -333
▁gen -334
red -335
▁ro -336
ember -337
▁20 -338
▁ap -339
rad -340
▁ad -341
ie -342
▁may -343
ric -344
▁im -345
▁can -346
ace -347
▁tw -348
▁gro -349
▁system -350
ces -351
etw -352
ff -353
ime -354
ue -355
▁spe -356
▁Al -357
ative -358
▁have -359
▁whe -360
▁me -361
▁not -362
▁lar -363
▁des -364
▁refer -365
orn -366
und -367
ost -368
▁such -369
ari -370
▁reg -371
ens -372
ile -373
les -374
▁per -375
ose -376
▁so -377
▁all -378
rans -379
ks -380
angu -381
ions -382
▁, -383
ys -384
ach -385
▁Eng -386
een -387
uro -388
▁two -389
▁United -390
▁pr -391
gan -392
▁(; -393
▁inf -394
alled -395
rib -396
▁V -397
▁y -398
▁co -399
▁Th -400
▁res -401
ice -402
hed -403
▁Se -404
▁3 -405
▁ind -406
ts -407
▁langu -408
▁(1 -409
ents -410
ance -411
▁been -412
aw -413
orth -414
▁their -415
▁called -416
ere -417
ral -418
are -419
oll -420
ced -421
ology -422
▁sub -423
▁writ -424
te -425
▁but -426
fter -427
ke -428
ase -429
reat -430
ict -431
able -432
ased -433
uring -434
▁hist -435
▁; -436
▁act -437
ual -438
▁trans -439
ram -440
etween -441
ury -442
olit -443
▁po -444
▁group -445
▁j -446
outh -447
velop -448
▁Euro -449
ack -450
ilm -451
lish -452
▁num -453
gest -454
▁mod -455
▁Ar -456
▁between -457
overn -458
▁produ -459
▁were -460
▁into -461
ern -462
eg -463
ans -464
ically -465
ors -466
ress -467
▁199 -468
▁bec -469
fic -470
▁speci -471
▁met -472
rough -473
ob -474
arch -475
▁Europe -476
ublic -477
ath -478
▁world -479
▁over -480
▁city -481
uc -482
ough -483
▁more -484
▁play -485
▁rec -486
li -487
▁mat -488
▁Com -489
ft -490
▁As -491
▁term -492
▁develop -493
▁serv -494
▁States -495
▁) -496
▁Is -497
ons -498
igin -499
▁film -500
iss -501
▁name -502
eral -503
▁inter -504
ular -505
ied -506
ood -507
▁ag -508
ered -509
▁def -510
conom -511
▁De -512
▁common -513
▁Germ -514
pro -515
▁population -516
ject -517
▁mus -518
ite -519
ince -520
▁ear -521
▁after -522
▁English -523
the -524
▁elect -525
ident -526
▁year -527
ars -528
ution -529
▁sci -530
ific -531
wn -532
cess -533
▁state -534
ural -535
ower -536
▁am -537
one -538
▁col -539
ized -540
▁pre -541
▁comput -542
▁fl -543
▁ev -544
ple -545
▁em -546
▁ty -547
▁dist -548
▁198 -549
▁govern -550
▁country -551
ings -552
▁through -553
ix -554
▁under -555
▁origin -556
▁ac -557
eop -558
▁char -559
ital -560
▁Ind -561
ures -562
oh -563
ished -564
ually -565
▁200 -566
resent -567
ists -568
▁often -569
▁econom -570
▁than -571
▁aut -572
▁loc -573
ark -574
▁Af -575
▁organ -576
▁cap -577
▁dif -578
▁about -579
als -580
▁many -581
omet -582
▁ob -583
▁Gree -584
▁polit -585
▁language -586
rist -587
▁trad -588
▁including -589
▁art -590
ities -591
atic -592
ward -593
ivers -594
int -595
▁during -596
old -597
▁sc -598
▁acc -599
ond -600
hern -601
▁main -602
io -603
▁ra -604
aj -605
▁rep -606
▁set -607
▁17 -608
▁some -609
raph -610
ann -611
ating -612
▁ne -613
imes -614
▁Y -615
ines -616
▁only -617
▁area -618
eb -619
ision -620
ork -621
▁found -622
ily -623
ve -624
▁century -625
form -626
▁Brit -627
▁201 -628
▁well -629
iel -630
▁197 -631
▁inv -632
▁both -633
▁time -634
▁largest -635
cond -636
cy -637
aus -638
ages -639
emb -640
lands -641
cial -642
▁196 -643
▁fam -644
▁inst -645
ind -646
ec -647
▁5 -648
▁Christ -649
hes -650
▁vari -651
ature -652
▁prov -653
ium -654
eople -655
▁Ap -656
▁this -657
▁use -658
▁4 -659
ined -660
ternational -661
▁() -662
anu -663
▁government -664
pos -665
▁work -666
inist -667
ional -668
", -669
▁mathem -670
▁(19 -671
▁mon -672
▁differ -673
▁This -674
▁qu -675
ade -676
". -677
oman -678
round -679
▁when -680
▁number -681
▁const -682
▁Fran -683
ement -684
▁Le -685
ible -686
▁New -687
▁Greek -688
▁sim -689
ail -690
▁sm -691
▁where -692
ruct -693
▁hum -694
ert -695
com -696
▁charact -697
ajor -698
▁desc -699
▁element -700
ne -701
cept -702
▁partic -703
ames -704
▁phys -705
▁class -706
▁music -707
ious -708
▁att -709
irect -710
▁German -711
▁194 -712
unic -713
ah -714
▁prog -715
ife -716
ield -717
▁out -718
ins -719
▁16 -720
chn -721
hip -722
▁est -723
▁For -724
▁tele -725
▁three -726
ays -727
lect -728
erson -729
ctions -730
▁consid -731
▁process -732
▁chem -733
▁design -734
▁include -735
man -736
▁(, -737
▁north -738
▁years -739
lu -740
▁they -741
▁word -742
▁cre -743
▁fun -744
▁King -745
▁history -746
til -747
▁15 -748
▁6 -749
▁8 -750
ived -751
ake -752
ise -753
▁south -754
ros -755
ved -756
▁stud -757
hor -758
oy -759
ries -760
▁sur -761
▁second -762
ract -763
▁people -764
▁Em -765
▁car -766
estern -767
▁any -768
cre -769
▁fe -770
rench -771
ica -772
ild -773
▁pos -774
▁gener -775
rop -776
▁ed -777
▁oper -778
▁modern -779
20 -780
▁up -781
▁law -782
its -783
ball -784
ym -785
▁air -786
illion -787
ex -788
une -789
omin -790
▁Rep -791
▁British -792
▁Con -793
▁computer -794
▁cult -795
▁phil -796
▁do -797
amed -798
▁sign -799
ograph -800
lex -801
▁small -802
▁cur -803
▁ext -804
ather -805
▁long -806
osop -807
▁French -808
uch -809
▁four -810
az -811
ollow -812
▁member -813
▁series -814
iter -815
▁med -816
▁sing -817
ae -818
▁leg -819
ament -820
▁Lat -821
▁had -822
▁based -823
ization -824
▁tradition -825
▁early -826
▁until -827
iqu -828
orld -829
iver -830
▁program -831
ick -832
iod -833
▁Joh -834
▁different -835
▁major -836
air -837
els -838
hen -839
ock -840
▁195 -841
▁ent -842
▁occ -843
▁philosop -844
ants -845
▁land -846
▁op -847
▁Can -848
▁relig -849
▁Comm -850
▁large -851
▁sup -852
▁within -853
▁usually -854
▁being -855
ax -856
yl -857
▁War -858
▁book -859
uss -860
rent -861
▁rem -862
▁direct -863
ted -864
ains -865
▁ran -866
▁mathemat -867
▁power -868
▁character -869
soci -870
▁lead -871
▁became -872
▁end -873
rol -874
tic -875
▁His -876
ility -877
▁ref -878
▁ -879
e -880
a -881
t -882
i -883
n -884
o -885
r -886
s -887
l -888
h -889
d -890
c -891
m -892
u -893
f -894
p -895
g -896
y -897
, -898
b -899
w -900
. -901
v -902
k -903
A -904
1 -905
T -906
( -907
) -908
I -909
C -910
S -911
9 -912
0 -913
M -914
- -915
B -916
x -917
2 -918
E -919
" -920
H -921
G -922
P -923
F -924
D -925
L -926
8 -927
N -928
z -929
R -930
J -931
5 -932
7 -933
' -934
3 -935
6 -936
4 -937
W -938
; -939
q -940
U -941
j -942
K -943
O -944
– -945
: -946
V -947
Y -948
/ -949
% -950
é -951
— -952
Z -953
Q -954
X -955
ā -956
ö -957
á -958
í -959
ō -960
ü -961
$ -962
= -963
& -964
ó -965
α -966
ī -967
[ -968
] -969
ς -970
ο -971
+ -972
° -973
ē -974
ν -975
ρ -976
’ -977
μ -978
É -979
{ -980
ä -981
è -982
ç -983
τ -984
σ -985
ι -986
λ -987
− -988
ū -989
ا -990
Æ -991
κ -992
ل -993
! -994
|