diff --git a/.gitignore b/.gitignore index c654cc9f4d1..4f80d16d25a 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,10 @@ GSYMS /src/kaldi.mk.tmp /src/kaldi.mk.bak +# Idlak python wrapper +/src/pyIdlak/pyIdlak.py +/src/pyIdlak/pyIdlak_wrap.cc + # /egs/ & /idlak-egs/ /egs/*/s*/mfcc /egs/*/s*/plp diff --git a/.travis.yml b/.travis.yml index c9f488b1ed8..4d48b3689ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,7 @@ addons: - liblapack-dev - clang-3.8 - csh + - swig branches: only: @@ -40,8 +41,12 @@ before_script: - ccache --zero-stats --max-size=3G env: - - CI_TARGETS="all ext" # Job1: Build everything. - - CI_TARGETS="test" # Job2: Test libraries. #### ext_test? adds 5min compile, runs 1 test. + - CI_TARGETS="depend" # Job1: Build main programs. + - CI_TARGETS="all" # Job2: Build main programs. + - CI_TARGETS="ext_depend" # Job3: Build extra programs + - CI_TARGETS="ext" # Job4: Build extra programs + - CI_TARGETS="test" # Job5: Test libraries. + #### ext_test? adds 5min compile, runs 1 test. script: # See http://petereisentraut.blogspot.com/2011/05/ccache-and-clang.html and diff --git a/README.md b/README.md index a27e5ad427d..7e4fb7b7b88 100644 --- a/README.md +++ b/README.md @@ -66,13 +66,13 @@ Development pattern for contributors ------------------------------------ 1. [Create a personal fork](https://help.github.com/articles/fork-a-repo/) - of the [main Kaldi repository](https://github.com/kaldi-asr/kaldi) in GitHub. + of the [main Idlak repository](https://github.com/Idlak/idlak) in GitHub. 2. Make your changes in a named branch different from `master`, e.g. you create a branch `my-awesome-feature`. 3. [Generate a pull request](https://help.github.com/articles/creating-a-pull-request/) through the Web interface of GitHub. 4. As a general rule, please follow [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html). - There are a [few exceptions in Kaldi](http://kaldi-asr.org/doc/style.html). + There are a [few exceptions in Kaldi & Idlak](http://kaldi-asr.org/doc/style.html). You can use the [Google's cpplint.py](https://raw.githubusercontent.com/google/styleguide/gh-pages/cpplint/cpplint.py) to verify that your code is free of basic mistakes. diff --git a/egs/aishell2/README.txt b/egs/aishell2/README.txt new file mode 100644 index 00000000000..e8b4260f2bb --- /dev/null +++ b/egs/aishell2/README.txt @@ -0,0 +1,50 @@ +# AISHELL-2 + +AISHELL-2 is by far the largest free speech corpus available for Mandarin ASR research. +## 1. DATA +### training data +* 1000 hours of speech data (around 1 million utterances) +* 1991 speakers (845 male and 1146 female) +* clean recording environment(studio or quiet living room) +* read speech +* reading prompts from various domain: entertainment, finance, technology, sports, control command, place of interest etc. +* near field recording via 3 parallel channels(iOS, Android, Microphone). +* iOS data is free for non-commercial research and education use (e.g. universities and colleges) + +### evaluation data: +Currently we release AISHELL2-2018A-EVAL, containing: +* dev: 2500 utterances from 5 speaker +* test: 5000 utterances from 10 speakers + +you can download above evaluation set from: +http://www.aishelltech.com/aishell_eval + +we may update and release other evaluation sets on the website later, targeting on different applications and senarios. + +## 2. RECIPE +Based on Kaldi standard system, AISHELL-2 provides a self-contained Mandarin ASR recipe, with: +* a word segmentation module, which is a must-have component for Chinese ASR systems +* an open-sourced Mandarin lexicon(DaCiDian) +* a simplified GMM training recipe +* acoustic channel adaptation recipe(AM fine-tuning) + +# CONTACT +AISHELL foundation is a non-profit online organization, with members from speech industry and research institutes. + +We hope AISHELL-2 corpus and recipe could be beneficial to the entire speech community. + +Depends on your location and internet speed, we distribute the corpus in two ways: +* hard-disk delivery +* cloud-disk downloading + +To apply for AISHELL-2 corpus for free, you need to fill in a very simple application form, confirming that: +* university department / education institute info +* only for non-commercial research / education use + +AISHELL-foundation covers all data distribution fees (including the corpus, hard-disk cost etc) + +Data re-distribution inside your university department is OK for convenience. However, users are not supposed to re-distribute AISHELL-2 to other universities or education institutes. + +To get the application form, or you come across any problem with the recipe, contact us via: + +aishell.foundation@gmail.com diff --git a/egs/aishell2/s5/RESULTS b/egs/aishell2/s5/RESULTS new file mode 100644 index 00000000000..67a8ad6a937 --- /dev/null +++ b/egs/aishell2/s5/RESULTS @@ -0,0 +1,6 @@ +%WER 44.78 [ 22176 / 49527, 370 ins, 2179 del, 19627 sub ] exp/mono/decode_test/cer_9_0.0 +%WER 24.78 [ 12271 / 49527, 394 ins, 815 del, 11062 sub ] exp/tri1/decode_test/cer_11_0.0 +%WER 22.54 [ 11165 / 49527, 390 ins, 665 del, 10110 sub ] exp/tri2/decode_test/cer_11_0.0 +%WER 19.78 [ 9795 / 49527, 313 ins, 684 del, 8798 sub ] exp/tri3/decode_test/cer_13_0.0 + +# (Chain model results are at the beginning of corresponding scripts) diff --git a/egs/aishell2/s5/cmd.sh b/egs/aishell2/s5/cmd.sh new file mode 100755 index 00000000000..71dd849a93b --- /dev/null +++ b/egs/aishell2/s5/cmd.sh @@ -0,0 +1,15 @@ +# you can change cmd.sh depending on what type of queue you are using. +# If you have no queueing system and want to run on a local machine, you +# can change all instances 'queue.pl' to run.pl (but be careful and run +# commands one by one: most recipes will exhaust the memory on your +# machine). queue.pl works with GridEngine (qsub). slurm.pl works +# with slurm. Different queues are configured differently, with different +# queue names and different ways of specifying things like memory; +# to account for these differences you can create and edit the file +# conf/queue.conf to match your queue's configuration. Search for +# conf/queue.conf in http://kaldi-asr.org/doc/queue.html for more information, +# or search for the string 'default_config' in utils/queue.pl or utils/slurm.pl. + +export train_cmd="queue.pl --mem 2G" +export decode_cmd="queue.pl --mem 4G" +export mkgraph_cmd="queue.pl --mem 8G" diff --git a/egs/aishell2/s5/conf/decode.conf b/egs/aishell2/s5/conf/decode.conf new file mode 100644 index 00000000000..c8a0ece58bf --- /dev/null +++ b/egs/aishell2/s5/conf/decode.conf @@ -0,0 +1,3 @@ +beam=11.0 # beam for decoding. Was 13.0 in the scripts. +first_beam=8.0 # beam for 1st-pass decoding in SAT. + diff --git a/egs/aishell2/s5/conf/mfcc.conf b/egs/aishell2/s5/conf/mfcc.conf new file mode 100644 index 00000000000..32988403b00 --- /dev/null +++ b/egs/aishell2/s5/conf/mfcc.conf @@ -0,0 +1,2 @@ +--use-energy=false +--sample-frequency=16000 diff --git a/egs/aishell2/s5/conf/mfcc_hires.conf b/egs/aishell2/s5/conf/mfcc_hires.conf new file mode 100644 index 00000000000..137d00add94 --- /dev/null +++ b/egs/aishell2/s5/conf/mfcc_hires.conf @@ -0,0 +1,10 @@ +# config for high-resolution MFCC features, intended for neural network training. +# Note: we keep all cepstra, so it has the same info as filterbank features, +# but MFCC is more easily compressible (because less correlated) which is why +# we prefer this method. +--use-energy=false # use average of log energy, not energy. +--sample-frequency=16000 # AISHELL-2 is sampled at 16kHz +--num-mel-bins=40 # similar to Google's setup. +--num-ceps=40 # there is no dimensionality reduction. +--low-freq=20 # low cutoff frequency for mel bins +--high-freq=-400 # high cutoff frequency, relative to Nyquist of 8000 (=7600) diff --git a/egs/aishell2/s5/conf/pitch.conf b/egs/aishell2/s5/conf/pitch.conf new file mode 100644 index 00000000000..e959a19d5b8 --- /dev/null +++ b/egs/aishell2/s5/conf/pitch.conf @@ -0,0 +1 @@ +--sample-frequency=16000 diff --git a/egs/aishell2/s5/local/chain/compare_wer.sh b/egs/aishell2/s5/local/chain/compare_wer.sh new file mode 100755 index 00000000000..c66a861c3f3 --- /dev/null +++ b/egs/aishell2/s5/local/chain/compare_wer.sh @@ -0,0 +1,80 @@ +#!/bin/bash + +# Copyright 2018 Emotech LTD (Author: Xuechen LIU) +# Apache 2.0 + +# compare wer between diff. models in aishell2 chain directory + +set -e +. ./cmd.sh +. ./path.sh + +if [ $# == 0 ]; then + echo "Usage: $0: [ ... ]" + echo "e.g.: $0 exp/chain/tdnn_7h_sp" + exit 1 +fi + +echo "# $0 $*" + +set_names() { + if [ $# != 1 ]; then + echo "compare_wer_general.sh: internal error" + exit 1 # exit the program + fi + dirname=$(echo $1 | cut -d: -f1) +} + +# print model names +echo -n "# Model " +for x in $*; do + printf "% 10s" " $(basename $x)" +done +echo + +# print number of parameters +echo -n "# Num. of params " +for x in $*; do + set_names $x + params=$(steps/info/chain_dir_info.pl "$x" | grep -o 'num-params=[0-9]*\.[0-9]*M' | cut -d'=' -f2-) + printf "% 10s\n" $params +done + +# print decode WER results +echo -n "# WER(%) " +for x in $*; do + set_names $x + wer=$([ -d $x ] && grep WER $x/decode_test/cer_* | utils/best_wer.sh | awk '{print $2}') + printf "% 10s" $wer +done +echo + +# print final log prob for train & validation +echo -n "# Final train prob " +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_train.final.log | grep -v xent | awk '{printf($8)}' | cut -c1-7) + printf "% 10s" $prob +done +echo + +echo -n "# Final valid prob " +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_valid.final.log | grep -v xent | awk '{printf($8)}' | cut -c1-7) + printf "% 10s" $prob +done +echo + +# do the same for xent objective +echo -n "# Final train prob (xent)" +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_train.final.log | grep -w xent | awk '{printf("%.4f", $8)}') + printf "% 10s" $prob +done +echo + +echo -n "# Final valid prob (xent)" +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_valid.final.log | grep -w xent | awk '{printf("%.4f", $8)}') + printf "% 10s" $prob +done +echo diff --git a/egs/aishell2/s5/local/chain/run_tdnn.sh b/egs/aishell2/s5/local/chain/run_tdnn.sh new file mode 120000 index 00000000000..61f8f499182 --- /dev/null +++ b/egs/aishell2/s5/local/chain/run_tdnn.sh @@ -0,0 +1 @@ +tuning/run_tdnn_1b.sh \ No newline at end of file diff --git a/egs/aishell2/s5/local/chain/tuning/run_tdnn_1a.sh b/egs/aishell2/s5/local/chain/tuning/run_tdnn_1a.sh new file mode 100755 index 00000000000..459bd64eeb5 --- /dev/null +++ b/egs/aishell2/s5/local/chain/tuning/run_tdnn_1a.sh @@ -0,0 +1,204 @@ +#!/bin/bash + +# this is the original baseline scripts, which is supposed to be deprecated. + +# results +# local/chain/compare_wer.sh exp/chain/tdnn_1a_sp/ +# Model tdnn_1a_sp +# WER(%) 9.89 +# Final train prob -0.0653 +# Final valid prob -0.0765 +# Final train prob (xent) -0.7340 +# Final valid prob (xent) -0.8030 + +set -e + +# configs for 'chain' +affix= +stage=10 +train_stage=-10 +get_egs_stage=-10 +dir=exp/chain/tdnn_1a # Note: _sp will get added to this +decode_iter= + +# training options +num_epochs=4 +initial_effective_lrate=0.001 +final_effective_lrate=0.0001 +max_param_change=2.0 +final_layer_normalize_target=0.5 +num_jobs_initial=2 +num_jobs_final=4 +nj=10 +minibatch_size=128 +frames_per_eg=150,110,90 +remove_egs=true +common_egs_dir= +xent_regularize=0.1 + +# End configuration section. +echo "$0 $@" # Print the command line for logging + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +if ! cuda-compiled; then + cat <$lang/topo +fi + +if [ $stage -le 9 ]; then + # Build a tree using our new topology. This is the critically different + # step compared with other recipes. + steps/nnet3/chain/build_tree.sh --frame-subsampling-factor 3 \ + --context-opts "--context-width=2 --central-position=1" \ + --cmd "$train_cmd" 5000 data/$train_set $lang $ali_dir $treedir +fi + +if [ $stage -le 10 ]; then + echo "$0: creating neural net configs using the xconfig parser"; + num_targets=$(tree-info $treedir/tree | grep num-pdfs | awk '{print $2}') + learning_rate_factor=$(echo "print 0.5/$xent_regularize" | python) + opts="l2-regularize=0.002" + linear_opts="orthonormal-constraint=1.0" + output_opts="l2-regularize=0.0005 bottleneck-dim=256" + + mkdir -p $dir/configs + cat < $dir/configs/network.xconfig + input dim=40 name=input + + # please note that it is important to have input layer with the name=input + # as the layer immediately preceding the fixed-affine-layer to enable + # the use of short notation for the descriptor + fixed-affine-layer name=lda input=Append(-2,-1,0,1,2) affine-transform-file=$dir/configs/lda.mat + + # the first splicing is moved before the lda layer, so no splicing here + relu-batchnorm-layer name=tdnn1 $opts dim=1280 + linear-component name=tdnn2l dim=256 $linear_opts input=Append(-1,0) + relu-batchnorm-layer name=tdnn2 $opts input=Append(0,1) dim=1280 + linear-component name=tdnn3l dim=256 $linear_opts + relu-batchnorm-layer name=tdnn3 $opts dim=1280 + linear-component name=tdnn4l dim=256 $linear_opts input=Append(-1,0) + relu-batchnorm-layer name=tdnn4 $opts input=Append(0,1) dim=1280 + linear-component name=tdnn5l dim=256 $linear_opts + relu-batchnorm-layer name=tdnn5 $opts dim=1280 input=Append(tdnn5l, tdnn3l) + linear-component name=tdnn6l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn6 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn7l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn7 $opts input=Append(0,3,tdnn6l,tdnn4l,tdnn2l) dim=1280 + linear-component name=tdnn8l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn8 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn9l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn9 $opts input=Append(0,3,tdnn8l,tdnn6l,tdnn4l) dim=1280 + linear-component name=tdnn10l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn10 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn11l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-layer name=tdnn11 $opts input=Append(0,3,tdnn10l,tdnn8l,tdnn6l) dim=1280 + linear-component name=prefinal-l dim=256 $linear_opts + + relu-batchnorm-layer name=prefinal-chain input=prefinal-l $opts dim=1280 + output-layer name=output include-log-softmax=false dim=$num_targets $output_opts + + relu-batchnorm-layer name=prefinal-xent input=prefinal-l $opts dim=1280 + output-layer name=output-xent dim=$num_targets learning-rate-factor=$learning_rate_factor $output_opts + +EOF + steps/nnet3/xconfig_to_configs.py --xconfig-file $dir/configs/network.xconfig --config-dir $dir/configs/ +fi + +if [ $stage -le 11 ]; then + #if [[ $(hostname -f) == *.clsp.jhu.edu ]] && [ ! -d $dir/egs/storage ]; then + # utils/create_split_dir.pl \ + # /export/b0{5,6,7,8}/$USER/kaldi-data/egs/aishell-$(date +'%m_%d_%H_%M')/s5c/$dir/egs/storage $dir/egs/storage + #fi + + steps/nnet3/chain/train.py --stage $train_stage \ + --cmd "$decode_cmd" \ + --feat.cmvn-opts "--norm-means=false --norm-vars=false" \ + --chain.xent-regularize $xent_regularize \ + --chain.leaky-hmm-coefficient 0.1 \ + --chain.l2-regularize 0.00005 \ + --chain.apply-deriv-weights false \ + --chain.lm-opts="--num-extra-lm-states=2000" \ + --egs.dir "$common_egs_dir" \ + --egs.stage $get_egs_stage \ + --egs.opts "--frames-overlap-per-eg 0" \ + --egs.chunk-width $frames_per_eg \ + --trainer.num-chunk-per-minibatch $minibatch_size \ + --trainer.frames-per-iter 1500000 \ + --trainer.num-epochs $num_epochs \ + --trainer.optimization.num-jobs-initial $num_jobs_initial \ + --trainer.optimization.num-jobs-final $num_jobs_final \ + --trainer.optimization.initial-effective-lrate $initial_effective_lrate \ + --trainer.optimization.final-effective-lrate $final_effective_lrate \ + --trainer.max-param-change $max_param_change \ + --cleanup.remove-egs $remove_egs \ + --feat-dir data/${train_set}_hires \ + --tree-dir $treedir \ + --lat-dir exp/tri4_sp_lats \ + --dir $dir || exit 1; +fi + +if [ $stage -le 12 ]; then + # Note: it might appear that this $lang directory is mismatched, and it is as + # far as the 'topo' is concerned, but this script doesn't read the 'topo' from + # the lang directory. + utils/mkgraph.sh --self-loop-scale 1.0 data/lang_test $dir $dir/graph +fi + +graph_dir=$dir/graph +if [ $stage -le 13 ]; then + for test_set in $test_sets; do + steps/nnet3/decode.sh --acwt 1.0 --post-decode-acwt 10.0 \ + --nj 10 --cmd "$decode_cmd" \ + $graph_dir data/${test_set}_hires $dir/decode_${test_set} || exit 1; + done +fi + +echo "local/chain/run_tdnn.sh succeeded" +exit 0; diff --git a/egs/aishell2/s5/local/chain/tuning/run_tdnn_1b.sh b/egs/aishell2/s5/local/chain/tuning/run_tdnn_1b.sh new file mode 100755 index 00000000000..30a19293181 --- /dev/null +++ b/egs/aishell2/s5/local/chain/tuning/run_tdnn_1b.sh @@ -0,0 +1,258 @@ +#!/bin/bash + +# _1b is as _1a, but with pitch feats, i-vector and dropout schedule added, referenced from wsj + +# basic info: +# steps/info/chain_dir_info.pl exp/chain/tdnn_1b_all_sp/ +# exp/chain/tdnn_1b_all_sp/: num-iters=1446 nj=2..2 num-params=19.3M dim=43+100->4456 combine=-0.079->-0.075 (over 9) xent:train/valid[962,1445,final]=(-0.922,-0.795,-0.746/-0.960,-0.840,-0.785) logprob:train/valid[962,1445,final]=(-0.084,-0.072,-0.070/-0.085,-0.075,-0.071) + +# results: +# local/chain/compare_wer.sh exp/chain/tdnn_1d_all_sp/ +# Model tdnn_1d_all_sp +# Num. of params 19.3M +# WER(%) 8.84 +# Final train prob -0.0696 +# Final valid prob -0.0714 +# Final train prob (xent) -0.7458 +# Final valid prob (xent) -0.7854 + +set -e + +# configs for 'chain' +affix=all +stage=0 +train_stage=-10 +get_egs_stage=-10 +dir=exp/chain/tdnn_1b # Note: _sp will get added to this +decode_iter= + +# training options +num_epochs=4 +initial_effective_lrate=0.001 +final_effective_lrate=0.0001 +max_param_change=2.0 +final_layer_normalize_target=0.5 +num_jobs_initial=2 +num_jobs_final=4 +nj=15 +minibatch_size=128 +dropout_schedule='0,0@0.20,0.3@0.50,0' +frames_per_eg=150,110,90 +remove_egs=true +common_egs_dir= +xent_regularize=0.1 + +# End configuration section. +echo "$0 $@" # Print the command line for logging + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +if ! cuda-compiled; then + cat <$lang/topo +fi + +if [ $stage -le 9 ]; then + # Build a tree using our new topology. This is the critically different + # step compared with other recipes. + steps/nnet3/chain/build_tree.sh --frame-subsampling-factor 3 \ + --context-opts "--context-width=2 --central-position=1" \ + --cmd "$train_cmd" 5000 data/$train_set $lang $ali_dir $treedir +fi + +if [ $stage -le 10 ]; then + echo "$0: creating neural net configs using the xconfig parser"; + feat_dim=$(feat-to-dim scp:data/${train_set}_hires/feats.scp -) + num_targets=$(tree-info $treedir/tree | grep num-pdfs | awk '{print $2}') + learning_rate_factor=$(echo "print 0.5/$xent_regularize" | python) + opts="l2-regularize=0.002" + linear_opts="orthonormal-constraint=1.0" + output_opts="l2-regularize=0.0005 bottleneck-dim=256" + + mkdir -p $dir/configs + cat < $dir/configs/network.xconfig + input dim=100 name=ivector + input dim=$feat_dim name=input + + # please note that it is important to have input layer with the name=input + # as the layer immediately preceding the fixed-affine-layer to enable + # the use of short notation for the descriptor + fixed-affine-layer name=lda input=Append(-1,0,1,ReplaceIndex(ivector, t, 0)) affine-transform-file=$dir/configs/lda.mat + + # the first splicing is moved before the lda layer, so no splicing here + relu-batchnorm-dropout-layer name=tdnn1 $opts dim=1280 + linear-component name=tdnn2l dim=256 $linear_opts input=Append(-1,0) + relu-batchnorm-dropout-layer name=tdnn2 $opts input=Append(0,1) dim=1280 + linear-component name=tdnn3l dim=256 $linear_opts + relu-batchnorm-dropout-layer name=tdnn3 $opts dim=1280 + linear-component name=tdnn4l dim=256 $linear_opts input=Append(-1,0) + relu-batchnorm-dropout-layer name=tdnn4 $opts input=Append(0,1) dim=1280 + linear-component name=tdnn5l dim=256 $linear_opts + relu-batchnorm-dropout-layer name=tdnn5 $opts dim=1280 input=Append(tdnn5l, tdnn3l) + linear-component name=tdnn6l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn6 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn7l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn7 $opts input=Append(0,3,tdnn6l,tdnn4l,tdnn2l) dim=1280 + linear-component name=tdnn8l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn8 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn9l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn9 $opts input=Append(0,3,tdnn8l,tdnn6l,tdnn4l) dim=1280 + linear-component name=tdnn10l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn10 $opts input=Append(0,3) dim=1280 + linear-component name=tdnn11l dim=256 $linear_opts input=Append(-3,0) + relu-batchnorm-dropout-layer name=tdnn11 $opts input=Append(0,3,tdnn10l,tdnn8l,tdnn6l) dim=1280 + linear-component name=prefinal-l dim=256 $linear_opts + + relu-batchnorm-layer name=prefinal-chain input=prefinal-l $opts dim=1280 + output-layer name=output include-log-softmax=false dim=$num_targets $output_opts + + relu-batchnorm-layer name=prefinal-xent input=prefinal-l $opts dim=1280 + output-layer name=output-xent dim=$num_targets learning-rate-factor=$learning_rate_factor $output_opts + +EOF + steps/nnet3/xconfig_to_configs.py --xconfig-file $dir/configs/network.xconfig --config-dir $dir/configs/ +fi + +if [ $stage -le 11 ]; then + #if [[ $(hostname -f) == *.clsp.jhu.edu ]] && [ ! -d $dir/egs/storage ]; then + # utils/create_split_dir.pl \ + # /export/b0{5,6,7,8}/$USER/kaldi-data/egs/aishell-$(date +'%m_%d_%H_%M')/s5c/$dir/egs/storage $dir/egs/storage + #fi + + steps/nnet3/chain/train.py --stage $train_stage \ + --cmd "$decode_cmd" \ + --feat.online-ivector-dir exp/chain/ivectors_${train_set}_${affix} \ + --feat.cmvn-opts "--norm-means=false --norm-vars=false" \ + --chain.xent-regularize $xent_regularize \ + --chain.leaky-hmm-coefficient 0.1 \ + --chain.l2-regularize 0.00005 \ + --chain.apply-deriv-weights false \ + --chain.lm-opts="--num-extra-lm-states=2000" \ + --egs.dir "$common_egs_dir" \ + --egs.stage $get_egs_stage \ + --egs.opts "--frames-overlap-per-eg 0" \ + --egs.chunk-width $frames_per_eg \ + --trainer.dropout-schedule $dropout_schedule \ + --trainer.num-chunk-per-minibatch $minibatch_size \ + --trainer.frames-per-iter 1500000 \ + --trainer.num-epochs $num_epochs \ + --trainer.optimization.num-jobs-initial $num_jobs_initial \ + --trainer.optimization.num-jobs-final $num_jobs_final \ + --trainer.optimization.initial-effective-lrate $initial_effective_lrate \ + --trainer.optimization.final-effective-lrate $final_effective_lrate \ + --trainer.max-param-change $max_param_change \ + --cleanup.remove-egs $remove_egs \ + --feat-dir data/${train_set}_hires \ + --tree-dir $treedir \ + --lat-dir exp/tri4_sp_lats \ + --dir $dir || exit 1; +fi + +if [ $stage -le 12 ]; then + # Note: it might appear that this $lang directory is mismatched, and it is as + # far as the 'topo' is concerned, but this script doesn't read the 'topo' from + # the lang directory. + utils/mkgraph.sh --self-loop-scale 1.0 data/lang_test $dir $dir/graph +fi + +graph_dir=$dir/graph +if [ $stage -le 13 ]; then + for test_set in $test_sets; do + nj=$(wc -l data/${test_set}_hires/spk2utt | awk '{print $1}') + steps/nnet3/decode.sh --acwt 1.0 --post-decode-acwt 10.0 \ + --nj $nj --cmd "$decode_cmd" \ + --online-ivector-dir exp/chain/ivectors_${test_set}_${affix} \ + $graph_dir data/${test_set}_hires $dir/decode_${test_set} || exit 1; + done +fi + +echo "local/chain/run_tdnn.sh succeeded" +exit 0; diff --git a/egs/aishell2/s5/local/nnet3/compare_wer.sh b/egs/aishell2/s5/local/nnet3/compare_wer.sh new file mode 100755 index 00000000000..84dda2fda14 --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/compare_wer.sh @@ -0,0 +1,57 @@ +#!/bin/bash + +# Copyright 2018 Emotech LTD (Author: Xuechen LIU) +# Apache 2.0 + +# compare wer between diff. models in aishell2 nnet3 directory + +set -e +. ./cmd.sh +. ./path.sh + +if [ $# == 0 ]; then + echo "Usage: $0: [ ... ]" + echo "e.g.: $0 exp/nnet3/tdnn_sp exp/nnet3/tdnn_sp_pr" + exit 1 +fi + +echo "# $0 $*" + +set_names() { + if [ $# != 1 ]; then + echo "compare_wer_general.sh: internal error" + exit 1 # exit the program + fi + dirname=$(echo $1 | cut -d: -f1) +} + +# print model names +echo -n "# Model " +for x in $*; do + printf "% 10s" " $(basename $x)" +done +echo + +# print decode WER results +echo -n "# WER(%) " +for x in $*; do + set_names $x + wer=$([ -d $x ] && grep WER $x/decode_test/cer_* | utils/best_wer.sh | awk '{print $2}') + printf "% 10s" $wer +done +echo + +# print log for train & validation +echo -n "# Final train prob " +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_train.combined.log | grep log-like | awk '{printf($8)}' | cut -c1-7) + printf "% 10s" $prob +done +echo + +echo -n "# Final valid prob " +for x in $*; do + prob=$(grep Overall $x/log/compute_prob_valid.combined.log | grep log-like | awk '{printf($8)}' | cut -c1-7) + printf "% 10s" $prob +done +echo diff --git a/egs/aishell2/s5/local/nnet3/finetune_tdnn.sh b/egs/aishell2/s5/local/nnet3/finetune_tdnn.sh new file mode 120000 index 00000000000..e05db4f91f4 --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/finetune_tdnn.sh @@ -0,0 +1 @@ +tuning/finetune_tdnn_1a.sh \ No newline at end of file diff --git a/egs/aishell2/s5/local/nnet3/run_tdnn.sh b/egs/aishell2/s5/local/nnet3/run_tdnn.sh new file mode 120000 index 00000000000..34499362831 --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/run_tdnn.sh @@ -0,0 +1 @@ +tuning/run_tdnn_1a.sh \ No newline at end of file diff --git a/egs/aishell2/s5/local/nnet3/tuning/finetune_tdnn_1a.sh b/egs/aishell2/s5/local/nnet3/tuning/finetune_tdnn_1a.sh new file mode 100755 index 00000000000..050d8f9d4fc --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/tuning/finetune_tdnn_1a.sh @@ -0,0 +1,64 @@ +# !/bin/bash + +# This script uses weight transfer as a transfer learning method to transfer +# already trained neural net model on aishell2 to a finetune data set. +. ./path.sh +. ./cmd.sh + +data_set=finetune +data_dir=data/${data_set} +ali_dir=exp/${data_set}_ali +src_dir=exp/nnet3/tdnn_sp +dir=${src_dir}_${data_set} + +num_jobs_initial=1 +num_jobs_final=1 +num_epochs=5 +initial_effective_lrate=0.0005 +final_effective_lrate=0.00002 +minibatch_size=1024 + +stage=1 +train_stage=-10 +nj=4 + +if [ $stage -le 1 ]; then + # align new data(finetune set) with GMM, we probably replace GMM with NN later + steps/make_mfcc.sh \ + --cmd "$train_cmd" --nj $nj --mfcc-config conf/mfcc.conf \ + ${data_dir} exp/make_mfcc/${data_set} mfcc + steps/compute_cmvn_stats.sh ${data_dir} exp/make_mfcc/${data_set} mfcc || exit 1; + + utils/fix_data_dir.sh ${data_dir} || exit 1; + steps/align_si.sh --cmd "$train_cmd" --nj ${nj} ${data_dir} data/lang exp/tri3 ${ali_dir} + + # extract mfcc_hires for AM finetuning + utils/copy_data_dir.sh ${data_dir} ${data_dir}_hires + rm -f ${data_dir}_hires/{cmvn.scp,feats.scp} + #utils/data/perturb_data_dir_volume.sh ${data_dir}_hires || exit 1; + steps/make_mfcc.sh \ + --cmd "$train_cmd" --nj $nj --mfcc-config conf/mfcc_hires.conf \ + ${data_dir}_hires exp/make_mfcc/${data_set}_hires mfcc_hires + steps/compute_cmvn_stats.sh ${data_dir}_hires exp/make_mfcc/${data_set}_hires mfcc_hires +fi + +if [ $stage -le 2 ]; then + $train_cmd $dir/log/generate_input_model.log \ + nnet3-am-copy --raw=true $src_dir/final.mdl $dir/input.raw + +if [ $stage -le 3 ]; then + steps/nnet3/train_dnn.py --stage=$train_stage \ + --cmd="$decode_cmd" \ + --feat.cmvn-opts="--norm-means=false --norm-vars=false" \ + --trainer.input-model $dir/input.raw \ + --trainer.num-epochs $num_epochs \ + --trainer.optimization.num-jobs-initial $num_jobs_initial \ + --trainer.optimization.num-jobs-final $num_jobs_final \ + --trainer.optimization.initial-effective-lrate $initial_effective_lrate \ + --trainer.optimization.final-effective-lrate $final_effective_lrate \ + --trainer.optimization.minibatch-size $minibatch_size \ + --feat-dir ${data_dir}_hires \ + --lang data/lang \ + --ali-dir ${ali_dir} \ + --dir $dir || exit 1; +fi diff --git a/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1a.sh b/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1a.sh new file mode 100755 index 00000000000..34ca1f0f224 --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1a.sh @@ -0,0 +1,135 @@ +#!/bin/bash + +# This script is based on swbd/s5c/local/nnet3/run_tdnn.sh + +# this is the standard "tdnn" system, built in nnet3; it's what we use to +# call multi-splice. + +# At this script level we don't support not running on GPU, as it would be painfully slow. +# If you want to run without GPU you'd have to call train_tdnn.sh with --gpu false, +# --num-threads 16 and --minibatch-size 128. + +# results +# local/nnet3/compare_wer.sh exp/nnet3/tdnn_sp/ +# Model tdnn_sp +# WER(%) 11.20 +# Final train prob -0.9601 +# Final valid prob -1.0819 + +set -e + +stage=0 +train_stage=-10 +affix= +common_egs_dir= + +# training options +initial_effective_lrate=0.0015 +final_effective_lrate=0.00015 +num_epochs=4 +num_jobs_initial=2 +num_jobs_final=6 +nj=30 +remove_egs=true + +# feature options +use_ivectors=false + +# End configuration section. + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +if ! cuda-compiled; then + cat < $dir/configs/network.xconfig + input dim=40 name=input + + # please note that it is important to have input layer with the name=input + # as the layer immediately preceding the fixed-affine-layer to enable + # the use of short notation for the descriptor + fixed-affine-layer name=lda input=Append(-2,-1,0,1,2) affine-transform-file=$dir/configs/lda.mat + + # the first splicing is moved before the lda layer, so no splicing here + relu-batchnorm-layer name=tdnn1 dim=850 + relu-batchnorm-layer name=tdnn2 dim=850 input=Append(-1,0,2) + relu-batchnorm-layer name=tdnn3 dim=850 input=Append(-3,0,3) + relu-batchnorm-layer name=tdnn4 dim=850 input=Append(-7,0,2) + relu-batchnorm-layer name=tdnn5 dim=850 input=Append(-3,0,3) + relu-batchnorm-layer name=tdnn6 dim=850 + output-layer name=output input=tdnn6 dim=$num_targets max-change=1.5 +EOF + steps/nnet3/xconfig_to_configs.py --xconfig-file $dir/configs/network.xconfig --config-dir $dir/configs/ +fi + +if [ $stage -le 8 ]; then + #if [[ $(hostname -f) == *.clsp.jhu.edu ]] && [ ! -d $dir/egs/storage ]; then + # utils/create_split_dir.pl \ + # /export/b0{5,6,7,8}/$USER/kaldi-data/egs/aishell-$(date +'%m_%d_%H_%M')/s5/$dir/egs/storage $dir/egs/storage + #fi + + steps/nnet3/train_dnn.py --stage=$train_stage \ + --cmd="$decode_cmd" \ + --feat.cmvn-opts="--norm-means=false --norm-vars=false" \ + --trainer.num-epochs $num_epochs \ + --trainer.optimization.num-jobs-initial $num_jobs_initial \ + --trainer.optimization.num-jobs-final $num_jobs_final \ + --trainer.optimization.initial-effective-lrate $initial_effective_lrate \ + --trainer.optimization.final-effective-lrate $final_effective_lrate \ + --egs.dir "$common_egs_dir" \ + --cleanup.remove-egs $remove_egs \ + --cleanup.preserve-model-interval 500 \ + --use-gpu true \ + --feat-dir=data/${train_set}_hires \ + --ali-dir $ali_dir \ + --lang data/lang \ + --reporting.email="$reporting_email" \ + --dir=$dir || exit 1; +fi + +if [ $stage -le 9 ]; then + for decode_set in $test_sets; do + # this version of the decoding treats each utterance separately + # without carrying forward speaker information. + num_jobs=`cat data/${decode_set}_hires/utt2spk|cut -d' ' -f2|sort -u|wc -l` + decode_dir=${dir}/decode_$decode_set + steps/nnet3/decode.sh --nj $num_jobs --cmd "$decode_cmd" \ + $graph_dir data/${decode_set}_hires $decode_dir || exit 1; + done +fi + +wait; +echo "local/nnet3/run_tdnn.sh succeeded" +exit 0; diff --git a/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1b.sh b/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1b.sh new file mode 100755 index 00000000000..ea3a59e90ee --- /dev/null +++ b/egs/aishell2/s5/local/nnet3/tuning/run_tdnn_1b.sh @@ -0,0 +1,137 @@ +#!/bin/bash + +# This script is based on run_tdnn_1a.sh, but with pitch features applied + +# this is the standard "tdnn" system, built in nnet3; it's what we use to +# call multi-splice. + +# At this script level we don't support not running on GPU, as it would be painfully slow. +# If you want to run without GPU you'd have to call train_tdnn.sh with --gpu false, +# --num-threads 16 and --minibatch-size 128. + +# results +# local/nnet3/compare_wer.sh exp/nnet3/tdnn_sp/ +# Model tdnn_sp +# WER(%) 11.02 +# Final train prob -1.1265 +# Final valid prob -1.2600 + +set -e + +stage=0 +train_stage=-10 +affix= +common_egs_dir= + +# training options +initial_effective_lrate=0.0015 +final_effective_lrate=0.00015 +num_epochs=4 +num_jobs_initial=2 +num_jobs_final=12 +nj=30 +remove_egs=true + +# feature options +use_ivectors=false + +# End configuration section. + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +if ! cuda-compiled; then + cat < $dir/configs/network.xconfig + input dim=$input_dim name=input + + # please note that it is important to have input layer with the name=input + # as the layer immediately preceding the fixed-affine-layer to enable + # the use of short notation for the descriptor + fixed-affine-layer name=lda input=Append(-2,-1,0,1,2) affine-transform-file=$dir/configs/lda.mat + + # the first splicing is moved before the lda layer, so no splicing here + relu-batchnorm-layer name=tdnn1 dim=850 + relu-batchnorm-layer name=tdnn2 dim=850 input=Append(-1,0,2) + relu-batchnorm-layer name=tdnn3 dim=850 input=Append(-3,0,3) + relu-batchnorm-layer name=tdnn4 dim=850 input=Append(-7,0,2) + relu-batchnorm-layer name=tdnn5 dim=850 input=Append(-3,0,3) + relu-batchnorm-layer name=tdnn6 dim=850 + output-layer name=output input=tdnn6 dim=$num_targets max-change=1.5 +EOF + steps/nnet3/xconfig_to_configs.py --xconfig-file $dir/configs/network.xconfig --config-dir $dir/configs/ +fi + +if [ $stage -le 8 ]; then + #if [[ $(hostname -f) == *.clsp.jhu.edu ]] && [ ! -d $dir/egs/storage ]; then + # utils/create_split_dir.pl \ + # /export/b0{5,6,7,8}/$USER/kaldi-data/egs/aishell-$(date +'%m_%d_%H_%M')/s5/$dir/egs/storage $dir/egs/storage + #fi + + steps/nnet3/train_dnn.py --stage=$train_stage \ + --cmd="$decode_cmd" \ + --feat.cmvn-opts="--norm-means=false --norm-vars=false" \ + --trainer.num-epochs $num_epochs \ + --trainer.optimization.num-jobs-initial $num_jobs_initial \ + --trainer.optimization.num-jobs-final $num_jobs_final \ + --trainer.optimization.initial-effective-lrate $initial_effective_lrate \ + --trainer.optimization.final-effective-lrate $final_effective_lrate \ + --egs.dir "$common_egs_dir" \ + --cleanup.remove-egs $remove_egs \ + --cleanup.preserve-model-interval 500 \ + --use-gpu true \ + --feat-dir=data/${train_set}_hires \ + --ali-dir $ali_dir \ + --lang data/lang \ + --reporting.email="$reporting_email" \ + --dir=$dir || exit 1; +fi + +if [ $stage -le 9 ]; then + for decode_set in $test_sets; do + # this version of the decoding treats each utterance separately + # without carrying forward speaker information. + num_jobs=`cat data/${decode_set}_hires/utt2spk|cut -d' ' -f2|sort -u|wc -l` + decode_dir=${dir}/decode_$decode_set + steps/nnet3/decode.sh --nj $num_jobs --cmd "$decode_cmd" \ + $graph_dir data/${decode_set}_hires $decode_dir || exit 1; + done +fi + +wait; +echo "local/nnet3/run_tdnn.sh succeeded" +exit 0; diff --git a/egs/aishell2/s5/local/prepare_all.sh b/egs/aishell2/s5/local/prepare_all.sh new file mode 100755 index 00000000000..3928eb95ca3 --- /dev/null +++ b/egs/aishell2/s5/local/prepare_all.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# 2018 Emotech LTD (Author: Xuechen LIU) +# Apache 2.0 + +trn_set= +dev_set= +tst_set= + +stage=1 + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +if [ $# -ne 3 ]; then + echo "prepare_all.sh " + echo " e.g prepare_all.sh /data/AISHELL-2/iOS/train /data/AISHELL-2/iOS/dev /data/AISHELL-2/iOS/test" + exit 1; +fi + +trn_set=$1 +dev_set=$2 +tst_set=$3 + +# download DaCiDian raw resources, convert to Kaldi lexicon format +if [ $stage -le 1 ]; then + local/prepare_dict.sh data/local/dict || exit 1; +fi + +# wav.scp, text(word-segmented), utt2spk, spk2utt +if [ $stage -le 2 ]; then + local/prepare_data.sh ${trn_set} data/local/dict data/local/train data/train || exit 1; + local/prepare_data.sh ${dev_set} data/local/dict data/local/dev data/dev || exit 1; + local/prepare_data.sh ${tst_set} data/local/dict data/local/test data/test || exit 1; +fi + +# L +if [ $stage -le 3 ]; then + utils/prepare_lang.sh --position-dependent-phones false \ + data/local/dict "" data/local/lang data/lang || exit 1; +fi + +# arpa LM +if [ $stage -le 4 ]; then + local/train_lms.sh \ + data/local/dict/lexicon.txt \ + data/local/train/text \ + data/local/lm || exit 1; +fi + +# G compilation, check LG composition +if [ $stage -le 5 ]; then + utils/format_lm.sh data/lang data/local/lm/3gram-mincount/lm_unpruned.gz \ + data/local/dict/lexicon.txt data/lang_test || exit 1; +fi + +echo "local/prepare_all.sh succeeded" +exit 0; + diff --git a/egs/aishell2/s5/local/prepare_data.sh b/egs/aishell2/s5/local/prepare_data.sh new file mode 100755 index 00000000000..419d8eddfd1 --- /dev/null +++ b/egs/aishell2/s5/local/prepare_data.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# Apache 2.0 + +# transform raw AISHELL-2 data to kaldi format + +. ./path.sh || exit 1; + +tmp= +dir= + +if [ $# != 4 ]; then + echo "Usage: $0 " + echo " $0 /export/AISHELL-2/iOS/train data/local/dict data/local/train data/train" + exit 1; +fi + +corpus=$1 +dict_dir=$2 +tmp=$3 +dir=$4 + +echo "prepare_data.sh: Preparing data in $corpus" + +mkdir -p $tmp +mkdir -p $dir + +# corpus check +if [ ! -d $corpus ] || [ ! -f $corpus/wav.scp ] || [ ! -f $corpus/trans.txt ]; then + echo "Error: $0 requires wav.scp and trans.txt under $corpus directory." + exit 1; +fi + +# validate utt-key list +awk '{print $1}' $corpus/wav.scp > $tmp/wav_utt.list +awk '{print $1}' $corpus/trans.txt > $tmp/trans_utt.list +utils/filter_scp.pl -f 1 $tmp/wav_utt.list $tmp/trans_utt.list > $tmp/utt.list + +# wav.scp +awk -F'\t' -v path_prefix=$corpus '{printf("%s\t%s/%s\n",$1,path_prefix,$2)}' $corpus/wav.scp > $tmp/tmp_wav.scp +utils/filter_scp.pl -f 1 $tmp/utt.list $tmp/tmp_wav.scp | sort -k 1 | uniq > $tmp/wav.scp + +# text +python -c "import jieba" 2>/dev/null || \ + (echo "jieba is not found. Use tools/extra/install_jieba.sh to install it." && exit 1;) +utils/filter_scp.pl -f 1 $tmp/utt.list $corpus/trans.txt | sort -k 1 | uniq > $tmp/trans.txt +awk '{print $1}' $dict_dir/lexicon.txt | sort | uniq | awk 'BEGIN{idx=0}{print $1,idx++}'> $tmp/vocab.txt +python local/word_segmentation.py $tmp/vocab.txt $tmp/trans.txt > $tmp/text + +# utt2spk & spk2utt +awk -F'\t' '{print $2}' $tmp/wav.scp > $tmp/wav.list +sed -e 's:\.wav::g' $tmp/wav.list | \ + awk -F'/' '{i=NF-1;printf("%s\t%s\n",$NF,$i)}' > $tmp/tmp_utt2spk +utils/filter_scp.pl -f 1 $tmp/utt.list $tmp/tmp_utt2spk | sort -k 1 | uniq > $tmp/utt2spk +utils/utt2spk_to_spk2utt.pl $tmp/utt2spk | sort -k 1 | uniq > $tmp/spk2utt + +# copy prepared resources from tmp_dir to target dir +mkdir -p $dir +for f in wav.scp text spk2utt utt2spk; do + cp $tmp/$f $dir/$f || exit 1; +done + +echo "local/prepare_data.sh succeeded" +exit 0; diff --git a/egs/aishell2/s5/local/prepare_dict.sh b/egs/aishell2/s5/local/prepare_dict.sh new file mode 100755 index 00000000000..d59585273a7 --- /dev/null +++ b/egs/aishell2/s5/local/prepare_dict.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# Apache 2.0 + +# This is a shell script, and it download and process DaCiDian for Mandarin ASR. + +. ./path.sh + +download_dir=data/local/DaCiDian +dir=data/local/dict + +if [ $# -ne 1 ]; then + echo "Usage: $0 "; + exit 1; +fi + +dir=$1 + +# download the DaCiDian from github +git clone https://github.com/aishell-foundation/DaCiDian.git $download_dir + +# here we map to the phone spn(spoken noise) +mkdir -p $dir +python $download_dir/DaCiDian.py $download_dir/word_to_pinyin.txt $download_dir/pinyin_to_phone.txt > $dir/lexicon.txt +echo -e "\tspn" >> $dir/lexicon.txt + +# prepare silence_phones.txt, nonsilence_phones.txt, optional_silence.txt, extra_questions.txt +cat $dir/lexicon.txt | awk '{ for(n=2;n<=NF;n++){ phones[$n] = 1; }} END{for (p in phones) print p;}'| \ + sort -u |\ + perl -e ' + my %ph_cl; + while () { + $phone = $_; + chomp($phone); + chomp($_); + $phone = $_; + next if ($phone eq "sil"); + if (exists $ph_cl{$phone}) { push(@{$ph_cl{$phone}}, $_) } + else { $ph_cl{$phone} = [$_]; } + } + foreach $key ( keys %ph_cl ) { + print "@{ $ph_cl{$key} }\n" + } + ' | sort -k1 > $dir/nonsilence_phones.txt || exit 1; + +echo sil > $dir/silence_phones.txt +echo sil > $dir/optional_silence.txt + +cat $dir/silence_phones.txt | awk '{printf("%s ", $1);} END{printf "\n";}' > $dir/extra_questions.txt || exit 1; +cat $dir/nonsilence_phones.txt | perl -e 'while(<>){ foreach $p (split(" ", $_)) { + $p =~ m:^([^\d]+)(\d*)$: || die "Bad phone $_"; $q{$2} .= "$p "; } } foreach $l (values %q) {print "$l\n";}' \ + >> $dir/extra_questions.txt || exit 1; + +echo "local/prepare_dict.sh succeeded" +exit 0; + diff --git a/egs/aishell2/s5/local/run_gmm.sh b/egs/aishell2/s5/local/run_gmm.sh new file mode 100755 index 00000000000..569e5ab570a --- /dev/null +++ b/egs/aishell2/s5/local/run_gmm.sh @@ -0,0 +1,115 @@ +#!/bin/bash +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# 2018 Emotech LTD (Author: Xuechen LIU) +# Apache 2.0 + +set -e + +# number of jobs +nj=20 +stage=1 + +. ./cmd.sh +[ -f ./path.sh ] && . ./path.sh; +. ./utils/parse_options.sh + +# nj for dev and test +dev_nj=$(wc -l data/dev/spk2utt | awk '{print $1}' || exit 1;) +test_nj=$(wc -l data/test/spk2utt | awk '{print $1}' || exit 1;) + +# Now make MFCC features. +if [ $stage -le 1 ]; then + # mfccdir should be some place with a largish disk where you + # want to store MFCC features. + for x in train dev test; do + steps/make_mfcc_pitch.sh --pitch-config conf/pitch.conf --cmd "$train_cmd" --nj $nj \ + data/$x exp/make_mfcc/$x mfcc || exit 1; + steps/compute_cmvn_stats.sh data/$x exp/make_mfcc/$x mfcc || exit 1; + utils/fix_data_dir.sh data/$x || exit 1; + done + + # subset the training data for fast startup + for x in 100 300; do + utils/subset_data_dir.sh data/train ${x}000 data/train_${x}k + done +fi + +# mono +if [ $stage -le 2 ]; then + # training + steps/train_mono.sh --cmd "$train_cmd" --nj $nj \ + data/train_100k data/lang exp/mono || exit 1; + + # decoding + utils/mkgraph.sh data/lang_test exp/mono exp/mono/graph || exit 1; + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${dev_nj} \ + exp/mono/graph data/dev exp/mono/decode_dev + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${test_nj} \ + exp/mono/graph data/test exp/mono/decode_test + + # alignment + steps/align_si.sh --cmd "$train_cmd" --nj $nj \ + data/train_300k data/lang exp/mono exp/mono_ali || exit 1; +fi + +# tri1 +if [ $stage -le 3 ]; then + # training + steps/train_deltas.sh --cmd "$train_cmd" \ + 4000 32000 data/train_300k data/lang exp/mono_ali exp/tri1 || exit 1; + + # decoding + utils/mkgraph.sh data/lang_test exp/tri1 exp/tri1/graph || exit 1; + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${dev_nj} \ + exp/tri1/graph data/dev exp/tri1/decode_dev + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${test_nj} \ + exp/tri1/graph data/test exp/tri1/decode_test + + # alignment + steps/align_si.sh --cmd "$train_cmd" --nj $nj \ + data/train data/lang exp/tri1 exp/tri1_ali || exit 1; +fi + +# tri2 +if [ $stage -le 4 ]; then + # training + steps/train_deltas.sh --cmd "$train_cmd" \ + 7000 56000 data/train data/lang exp/tri1_ali exp/tri2 || exit 1; + + # decoding + utils/mkgraph.sh data/lang_test exp/tri2 exp/tri2/graph + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${dev_nj} \ + exp/tri2/graph data/dev exp/tri2/decode_dev + steps/decode.sh --cmd "$decode_cmd" --config conf/decode.conf --nj ${test_nj} \ + exp/tri2/graph data/test exp/tri2/decode_test + + # alignment + steps/align_si.sh --cmd "$train_cmd" --nj $nj \ + data/train data/lang exp/tri2 exp/tri2_ali || exit 1; +fi + +# tri3 +if [ $stage -le 5 ]; then + # training [LDA+MLLT] + steps/train_lda_mllt.sh --cmd "$train_cmd" \ + 10000 80000 data/train data/lang exp/tri2_ali exp/tri3 || exit 1; + + # decoding + utils/mkgraph.sh data/lang_test exp/tri3 exp/tri3/graph || exit 1; + steps/decode.sh --cmd "$decode_cmd" --nj ${dev_nj} --config conf/decode.conf \ + exp/tri3/graph data/dev exp/tri3/decode_dev + steps/decode.sh --cmd "$decode_cmd" --nj ${test_nj} --config conf/decode.conf \ + exp/tri3/graph data/test exp/tri3/decode_test + + # alignment + steps/align_si.sh --cmd "$train_cmd" --nj $nj \ + data/train data/lang exp/tri3 exp/tri3_ali || exit 1; + + steps/align_si.sh --cmd "$train_cmd" --nj ${nj} \ + data/dev data/lang exp/tri3 exp/tri3_ali_dev || exit 1; +fi + +echo "local/run_gmm.sh succeeded" +exit 0; + diff --git a/egs/aishell2/s5/local/score.sh b/egs/aishell2/s5/local/score.sh new file mode 100755 index 00000000000..a9786169973 --- /dev/null +++ b/egs/aishell2/s5/local/score.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e -o pipefail +set -x +steps/score_kaldi.sh "$@" +steps/scoring/score_kaldi_cer.sh --stage 2 "$@" + +echo "$0: Done" diff --git a/egs/aishell2/s5/local/show_results.sh b/egs/aishell2/s5/local/show_results.sh new file mode 100644 index 00000000000..714cb0f4358 --- /dev/null +++ b/egs/aishell2/s5/local/show_results.sh @@ -0,0 +1,2 @@ +# !/bin/bash +for x in exp/*/decode_test; do [ -d $x ] && grep WER $x/cer_* | utils/best_wer.sh; done 2>/dev/null diff --git a/egs/aishell2/s5/local/train_lms.sh b/egs/aishell2/s5/local/train_lms.sh new file mode 100755 index 00000000000..fbe95d898a1 --- /dev/null +++ b/egs/aishell2/s5/local/train_lms.sh @@ -0,0 +1,91 @@ +#!/bin/bash +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# Apache 2.0 + +. ./path.sh +. ./utils/parse_options.sh + +if [ $# -ne 3 ]; then + echo "train_lms.sh " + echo " e.g train_lms.sh data/local/dict/lexicon.txt data/local/train/text data/local/lm" + exit 1; +fi + +lexicon=$1 +text=$2 +dir=$3 + +for f in "$text" "$lexicon"; do + [ ! -f $x ] && echo "$0: No such file $f" && exit 1; +done + +kaldi_lm=`which train_lm.sh` +if [ -z $kaldi_lm ]; then + echo "$0: train_lm.sh is not found. That might mean it's not installed" + echo "$0: or it is not added to PATH" + echo "$0: Use the script tools/extra/install_kaldi_lm.sh to install it" + exit 1 +fi + +mkdir -p $dir +cleantext=$dir/text.no_oov + +cat $text | awk -v lex=$lexicon 'BEGIN{while((getline0){ seen[$1]=1; } } + {for(n=1; n<=NF;n++) { if (seen[$n]) { printf("%s ", $n); } else {printf(" ");} } printf("\n");}' \ + > $cleantext || exit 1; + +cat $cleantext | awk '{for(n=2;n<=NF;n++) print $n; }' | sort | uniq -c | \ + sort -nr > $dir/word.counts || exit 1; + +# Get counts from acoustic training transcripts, and add one-count +# for each word in the lexicon (but not silence, we don't want it +# in the LM-- we'll add it optionally later). +cat $cleantext | awk '{for(n=2;n<=NF;n++) print $n; }' | \ + cat - <(grep -w -v '!SIL' $lexicon | awk '{print $1}') | \ + sort | uniq -c | sort -nr > $dir/unigram.counts || exit 1; + +# note: we probably won't really make use of as there aren't any OOVs +cat $dir/unigram.counts | awk '{print $2}' | get_word_map.pl "" "" "" > $dir/word_map \ + || exit 1; + +# note: ignore 1st field of train.txt, it's the utterance-id. +cat $cleantext | awk -v wmap=$dir/word_map 'BEGIN{while((getline0)map[$1]=$2;} + { for(n=2;n<=NF;n++) { printf map[$n]; if(n$dir/train.gz \ + || exit 1; + +train_lm.sh --arpa --lmtype 3gram-mincount $dir || exit 1; + +# note: output is +# data/local/lm/3gram-mincount/lm_unpruned.gz + +echo "local/train_lms.sh succeeded" +exit 0 + + +# From here is some commands to do a baseline with SRILM (assuming +# you have it installed). +heldout_sent=10000 # Don't change this if you want result to be comparable with + # kaldi_lm results +sdir=$dir/srilm # in case we want to use SRILM to double-check perplexities. +mkdir -p $sdir +cat $cleantext | awk '{for(n=2;n<=NF;n++){ printf $n; if(n $sdir/heldout +cat $cleantext | awk '{for(n=2;n<=NF;n++){ printf $n; if(n $sdir/train + +cat $dir/word_map | awk '{print $1}' | cat - <(echo ""; echo "" ) > $sdir/wordlist + + +ngram-count -text $sdir/train -order 3 -limit-vocab -vocab $sdir/wordlist -unk \ + -map-unk "" -kndiscount -interpolate -lm $sdir/srilm.o3g.kn.gz +ngram -lm $sdir/srilm.o3g.kn.gz -ppl $sdir/heldout +# 0 zeroprobs, logprob= -250954 ppl= 90.5091 ppl1= 132.482 + +# Note: perplexity SRILM gives to Kaldi-LM model is same as kaldi-lm reports above. +# Difference in WSJ must have been due to different treatment of . +ngram -lm $dir/3gram-mincount/lm_unpruned.gz -ppl $sdir/heldout +# 0 zeroprobs, logprob= -250913 ppl= 90.4439 ppl1= 132.379 + +echo "local/train_lms.sh succeeded" +exit 0 diff --git a/egs/aishell2/s5/local/wer_hyp_filter b/egs/aishell2/s5/local/wer_hyp_filter new file mode 100755 index 00000000000..c6660e4efe1 --- /dev/null +++ b/egs/aishell2/s5/local/wer_hyp_filter @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +@filters=('',''); + +foreach $w (@filters) { + $bad{$w} = 1; +} + +while() { + @A = split(" ", $_); + $id = shift @A; + print "$id "; + foreach $a (@A) { + if (!defined $bad{$a}) { + print "$a "; + } + } + print "\n"; +} diff --git a/egs/aishell2/s5/local/wer_output_filter b/egs/aishell2/s5/local/wer_output_filter new file mode 100755 index 00000000000..aceeeec41b4 --- /dev/null +++ b/egs/aishell2/s5/local/wer_output_filter @@ -0,0 +1,25 @@ +#!/usr/bin/env perl +# Copyright 2012-2014 Johns Hopkins University (Author: Yenda Trmal) +# Apache 2.0 +use utf8; + +use open qw(:encoding(utf8)); +binmode STDIN, ":utf8"; +binmode STDOUT, ":utf8"; +binmode STDERR, ":utf8"; + +while (<>) { + @F = split " "; + print $F[0] . " "; + foreach $s (@F[1..$#F]) { + if (($s =~ /\[.*\]/) || ($s =~ /\<.*\>/) || ($s =~ "!SIL")) { + print ""; + } else { + print "$s" + } + print " "; + } + print "\n"; +} + + diff --git a/egs/aishell2/s5/local/wer_ref_filter b/egs/aishell2/s5/local/wer_ref_filter new file mode 100755 index 00000000000..c6660e4efe1 --- /dev/null +++ b/egs/aishell2/s5/local/wer_ref_filter @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +@filters=('',''); + +foreach $w (@filters) { + $bad{$w} = 1; +} + +while() { + @A = split(" ", $_); + $id = shift @A; + print "$id "; + foreach $a (@A) { + if (!defined $bad{$a}) { + print "$a "; + } + } + print "\n"; +} diff --git a/egs/aishell2/s5/local/word_segmentation.py b/egs/aishell2/s5/local/word_segmentation.py new file mode 100644 index 00000000000..1cb2c1e7350 --- /dev/null +++ b/egs/aishell2/s5/local/word_segmentation.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# encoding=utf-8 +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# Apache 2.0 + +import sys +import jieba +reload(sys) +sys.setdefaultencoding('utf-8') + +if len(sys.argv) < 3: + sys.stderr.write("word_segmentation.py > \n") + exit(1) + +vocab_file=sys.argv[1] +trans_file=sys.argv[2] + +jieba.set_dictionary(vocab_file) +for line in open(trans_file): + key,trans = line.strip().split('\t',1) + words = jieba.cut(trans) + new_line = key + '\t' + " ".join(words) + print(new_line) diff --git a/egs/aishell2/s5/path.sh b/egs/aishell2/s5/path.sh new file mode 100755 index 00000000000..2d17b17a84a --- /dev/null +++ b/egs/aishell2/s5/path.sh @@ -0,0 +1,6 @@ +export KALDI_ROOT=`pwd`/../../.. +[ -f $KALDI_ROOT/tools/env.sh ] && . $KALDI_ROOT/tools/env.sh +export PATH=$PWD/utils/:$KALDI_ROOT/tools/openfst/bin:$PWD:$PATH +[ ! -f $KALDI_ROOT/tools/config/common_path.sh ] && echo >&2 "The standard file $KALDI_ROOT/tools/config/common_path.sh is not present -> Exit!" && exit 1 +. $KALDI_ROOT/tools/config/common_path.sh +export LC_ALL=C diff --git a/egs/aishell2/s5/run.sh b/egs/aishell2/s5/run.sh new file mode 100755 index 00000000000..8afdd3ed310 --- /dev/null +++ b/egs/aishell2/s5/run.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +# Copyright 2018 AIShell-Foundation(Authors:Jiayu DU, Xingyu NA, Bengu WU, Hao ZHENG) +# 2018 Beijing Shell Shell Tech. Co. Ltd. (Author: Hui BU) +# Apache 2.0 + +# AISHELL-2 provides: +# * a Mandarin speech corpus (~1000hrs), free for non-commercial research/education use +# * a baseline recipe setup for large scale Mandarin ASR system +# For more details, read $KALDI_ROOT/egs/aishell2/README.txt + +# modify this to your AISHELL-2 training data path +# e.g: +# trn_set=/disk10/data/AISHELL-2/iOS/data +# dev_set=/disk10/data/AISHELL-2/iOS/dev +# tst_set=/disk10/data/AISHELL-2/iOS/test +trn_set= +dev_set= +tst_set= + +nj=20 +stage=1 +gmm_stage=1 + +. ./cmd.sh +. ./path.sh +. ./utils/parse_options.sh + +# prepare trn/dev/tst data, lexicon, lang etc +if [ $stage -le 1 ]; then + local/prepare_all.sh ${trn_set} ${dev_set} ${tst_set} || exit 1; +fi + +# GMM +if [ $stage -le 2 ]; then + local/run_gmm.sh --nj $nj --stage $gmm_stage +fi + +# chain +if [ $stage -le 3 ]; then + local/chain/run_tdnn.sh --nj $nj +fi + +local/show_results.sh + +exit 0; diff --git a/egs/aishell2/s5/steps b/egs/aishell2/s5/steps new file mode 120000 index 00000000000..6e99bf5b5ad --- /dev/null +++ b/egs/aishell2/s5/steps @@ -0,0 +1 @@ +../../wsj/s5/steps \ No newline at end of file diff --git a/egs/aishell2/s5/utils b/egs/aishell2/s5/utils new file mode 120000 index 00000000000..b240885218f --- /dev/null +++ b/egs/aishell2/s5/utils @@ -0,0 +1 @@ +../../wsj/s5/utils \ No newline at end of file diff --git a/idlak-data/en/abbrev-default.xml b/idlak-data/en/abbrev-default.xml index afd39827912..55796fee983 100644 --- a/idlak-data/en/abbrev-default.xml +++ b/idlak-data/en/abbrev-default.xml @@ -16,4 +16,13 @@ u s u s a wide smiley +f m +b b c one +b b c two +seven seven +seven seven +nine eleven +b a +b s t +g m t \ No newline at end of file diff --git a/idlak-data/en/nrules-default.xml b/idlak-data/en/nrules-default.xml index 7fafe93a529..7ad5f344dd1 100644 --- a/idlak-data/en/nrules-default.xml +++ b/idlak-data/en/nrules-default.xml @@ -4,8 +4,8 @@ - Overide default to regard hypens as wspace until norm rules added - to deal with hypenation. + Used by the tokeniser. + Whitespace characters. @@ -14,25 +14,45 @@ - Important: DO NOT REMOVE It is used by the tokeniser to tokenise these characters separately - + - Important: Do not delete this regex, as it is used by the normaliser - internally. - Also, extend it with the language-specific letters. + Used by the tokeniser. + Also, extend it with the language-specific letters as required. + + + Used by the tokeniser. + Strip punctuation of the front and back and leave the rest as a token. + + + + + + + + + Important: Do not delete this table, as it is used by the normaliser diff --git a/idlak-data/ga/abbrev-default.xml b/idlak-data/ga/abbrev-default.xml new file mode 100644 index 00000000000..2fcbbc39830 --- /dev/null +++ b/idlak-data/ga/abbrev-default.xml @@ -0,0 +1,18 @@ + + + dochtúir + dochtúir + an tuasal + an tuasal + bean uí + bean uí + bean uasal + bean uasal + nasa + u s + miongháire + diff --git a/idlak-data/ga/ie/lexicon-default.xml b/idlak-data/ga/ie/lexicon-default.xml new file mode 100644 index 00000000000..5f46de2ce37 --- /dev/null +++ b/idlak-data/ga/ie/lexicon-default.xml @@ -0,0 +1,1459 @@ + + +a +a +ab +abdeslam +abair +abhaile +abhainn +acadaimh +ach +acht +acu +adeir +adhlactha +admhaím +aer +aeir +ag +agaibh +againn +againne +agam +agamsa +agat +aghaidh +agus +aibreán +aici +aidhm +aige +aigne +aighnis +aimsir +aimsire +aimsiú +ainm +ainneoin +air +aird +airde +aire +airgead +airgeadais +airgid +airteagal +ais +aisíocadh +aistriú +aithint +aithne +alt +altóir +alzheimer +am +ama +amach +amadán +amhail +amharc +amhlaidh +amhras +amhrán +amháin +amuigh +amárach +an +anam +aniar +ann +anocht +anois +anonn +ansan +anseo +ansin +anuas +anuraidh +aníos +aodh +aodháin +aodhán +aogán +aoine +aois +aon +aonair +aontais +aontaithe +aontaím +aontas +ar +arainn +arann +araon +ard +ardphrionsa +ardú +ariamh +arizona +arm +arna +arsa +arán +aréir +arís +arú +as +astu +atha +athair +athbhreith +athrú +atá +automatic +b +b'fhaide +ba +baile +baill +baineadh +baineann +bainisteoir +baint +bainte +ball +ballstáit +baol +barr +beachóg +beag +beaga +beagnach +beagán +bealach +bealaigh +bealtaine +bean +bearta +beatha +beathach +beidh +beirt +beo +bhaile +bharr +bhealach +bheith +bheo +bhfaca +bhfear +bhfuair +bhfuil +bhliantúil +bhrabús +bhuachaill +bhuan +bhunachar +bhás +bhásaigh +bhéal +bhí +bhíodh +bhíonn +bia +bith +bliain +bliana +blianta +bloom +bocht +bonn +bord +bothán +bpeil +bpobal +bpáirc +bpósfadh +brath +breandán +breataine +breathnú +breis +breise +breith +breithiúnas +breá +brian +briseadh +bróga +brú +bua +buachaill +buailte +bualadh +bun +bunaithe +bunaíodh +bunú +bus +buí +bád +bán +bás +básaithe +báthadh +béal +béarla + +bídh +bíonn +bóthar +c +cabhair +cad +caidé +cailín +caillte +caint +cainte +caite +caitheadh +caitheamh +caithfear +caithfidh +canney +caoirigh +caorach +casadh +casey +cathrach +cead +ceal +ceann +ceannais +ceantair +ceantar +ceapadh +ceart +cearta +ceathar +ceist +ceisteanna +ceithre +ceoil +ceol +chailleach +cheana +cheann +chearta +chloig +chodlaigh +choimisinéara +choirp +chol +chomh +chomharthaí +chomhlíona +chomhphobail +chonaic +chonradh +chonspóid +chosúil +chraoladh +chreid +chrochadh +chromadh +chruinnigh +chuaigh +chugainn +chugam +chuid +chuidiú +chuige +chuile +chuir +chultúir +chun +chártaí +chéad +chéasta +chéile +chéim +chúis +ciallaíonn +cibé +cill +cille +cineál +cinn +cinneadh +cinniúnach +cinnte +cion +cionn +ciontach +ciúin +clann +cliath +cluiche +cluichí +clár +cogadh +coille +coimisinéir +coimisiún +coinníollacha +cois +coiste +coitianta +colm +coláiste +comhairle +comhaontú +comhlacht +comhlachta +comhrá +comáin +comóradh +comórtas +conas +conchúir +conradh +contae +corp +cosúil +cosúlacht +cothrom +creidim +croí +crua +cruinn +cruinniú +cruthaíonn +críocha +cuairt +cuid +cuideachta +cuidiú +cuimhin +cuir +cuireadh +cuireann +cuirfear +cuirfidh +cuirtear +cuma +cumann +cumas +cuntas +cur +curtha +cuí + +cáinte +cáipéis +cánach +cártaí +cás + +céad +céanna +céard +céidigh +céim +cén +cóir +cóiste +cónaí +córas + +cúig +cúirte +cúis +cúise +cúisithe +cúl +cúnamh +cúpla +cúram +cúrsa +cúrsaí +d +d'aois +d'fhan +d'fhiafraigh +d'iarr +d'imigh +d'oileán +daingean +damhsa +daoine +daonna +dar +dara +dath +de +dearbhaíonn +deacair +deara +dearcadh +dearg +dearmad +deas +deich +deimhin +deimhníodh +deir +deireadh +deireanach +deiridh +deirtear +deis +deisceart +den +deo +deoch +dhiaidh +dhoire +dhraíocht +dhroimse +dhéanamh +dhíobh +dhíol +dhún +di +dia +diabhal +dlí +do +dobhair +dochar +docht +dochtúir +doireann +dom +domhain +domhan +domhanda +domhnach +domhnaigh +don +dona +doras +dramhaíola +dreach +dream +drugaí +dráma +dréacht +dtabharfadh +dtagraítear +dteannta +dtitim +dtoll +dtriomódh +dtí +duais +dubh +duibhe +duine +duit +dul + +dáil +dáiríre +dála +dán +dár +dáta + +déag +déan +déanamh +déanann +déanaí +déanfaidh +déanfar +déanta +déantar +déarfá +déirce +dídean +díobh +díofa +díol +díot +díreach + +dócha +dóibh +dóigh +dúchais +dúil +dúinn +dúirt +dún +dúnmharaithe +dúnta +dúradh +e +ea +each +eacnamaíochta +eadránaí +eagla +eaglais +eagraíocht +ealaíne +ealaíon +eanáir +earraí +eascairt +easpa +easpórtáiltear +eatarthu +eich +eicínt +eile +eo +eoin +eol +eolais +eolas +eoraip +eorpach +eorpaigh +euro +f +facebook +fad +fada +fadhb +fadhbanna +fadó +faide +faighte +faire +fanacht +faoi +faoin +faoina +farraige +fear +fearr +feasta +feiceáil +feidhm +feidhme +feidhmeann +feirmeoirí +feirste +fhaca +fhearr +fhoghlaim +fhorbairt +fhreagairt +fhág +fháil +fhánada +fhéin +fiafraíodh +fianaise +fianna +fiche +fichiú +figiúirí +file +filleadh +fionn +fios +fiosróidh +fiosrúchán +fir +fiú +focail +focal +fochomhlacht +foghlaim +foilsíodh +foinse +foireann +foirfe +foirne +fola +fonn +forbairt +forbartha +formhór +forálacha +fosta +fostaíocht +freagra +freastal +freisin +fuair +fuar +fuarthas + +fágtha +fáil +fáilte +fán +fás +fáth + +féach +féachaint +féadfaidh +féasóg +féidir +féile +féin +féir +féitheog +fíor +fíorbhuíoch +fíorealaíonta +fíorphraiticiúil +fírinne +fógra +fóill +fómhair +fós +fúthu +g +gabh +gabháil +gach +gaeil +gaeilge +gael +gaeltachta +gaillimh +gaillimhe +gairid +gaiscíoch +galar +gan +gar +gasúr +gaza +gcairéal +gcaiteachas +gcaitheamh +gcaithfí +gceist +gcineál +gcluiche +gclár +gcoincheap +gcoinneodh +gcomhghuallaíocht +gcuid +gcéad +gcónaí +gcóras +geal +geansaí +gearr +gearrtha +gearán +gearóid +ghaeilge +ghaeltacht +ghaeltachta +ghairdín +ghlacáin +ghluaisteán +ginearálta +giota +glacadh +glan +glaoch +glas +gluaiseach +gníomhaíochtaí +gníomhú +gnó +go +gortaíodh +greim +grá +gráin +gréine +grúpa +gur +gurb +gurbh + +gáire +géar +h +haerfoirt +haghaidh +halla +halmhain +haois +haon +healaíontóirí +heorpa +himirt +hiomlán +hionsaithe +hiopnóis +hocht +hoifigiúil +hoíche +hospidéal +huachtair +huaire +háirithe +háit +háite +hárainn + +héileacaptar +héireann +i +i +iad +iarr +iarracht +iarraidh +iarratais +iarratas +iarrfas +iarrtar +iarscoile +iarthar +iarthuaisceart +idir +idirnáisiúnta +im +imeacht +imeachta +imeachtaí +imigh +imirt +imithe +imní +imoibreoirí +imreofar +imreoidh +in +ina +inar +innealtóir +inné +infheistíochta +inis +iniúchadh +inniu +ins +insint +institiúid +inti +intinn +inár +iníon +iodáil +iomaí +iomchuí +iomlán +iompar +iompair +ionad +ionaid +ionadh +ionann +ionas +ionsaí +iontach +iontas +iontu +is +ise +isteach +istigh +ithe +iúil +iúl +j +jack +john +k +karaczyn +karen +kenneally +kenny +l +labhair +labhairt +lae +laethanta +laghad +laghdú +laighean +laistigh +lasmuigh +le +leaba +leabhair +leabhar +leag +leagan +leagtha +lean +leanas +leanaí +leanbh +leanúint +learpholl +leas +leasa +leasú +leat +leath +leathan +leathanach +leathmhilliún +leathuair +leibhéal +leictreach +leigheas +leighis +leis +leith +leithéid +lena +leo +leofa +leor +liam +lig +ligean +linn +linne +liom +liombó +liomsa +liosta +litir +litríocht +loch +londain +long +lorg +luach +luaithe +lua +luas +luath +lucht +luchóg +luí + +láidir +láimh +láimhe +láithreach +lámh +lámha +lán +lár +láthair +léamh +léi +léim +léinn +léir +léirigh +léiriú +léiríonn +líne +líon + +lúnasa +m +mac +maidin +maidir +maith +mall +maloney +mar +mara +marbh +marino +maróg +mbaile +mban +mbaol +mbeidh +mbeirt +mbith +mbliana +meas +measa +measc +meiningítis +meiriceá +meitheamh +meon +meáin +meán +mhaoiniú +mharú +mhilliún +mhéar +mhór +mhórchónaí +mian +mic +micheál +milliún +minic +mise +mná +mo +moladh +moltaí +muid +muintir +muna +mura + +máire +máirtín +máithreachais +márta +más +máthair + +méadú +méid + +mícheál +míle +mínádúr +mír +míreanna +míshásamh + +mór +móra +mórán +múinteoir +múinteoirí +n +na +nach +naoi +naomh +natalia +ndéanfaidh +ndóigh +ndún +ndúnta +neamhbhuartha +neamhspleá +neamhspleách +neamhspleáigh +neart +ngach +ngaeltacht +ngaillimh +ngairdín +ngall +nic +nithe +nollag +nollaig +nua +nuacht +nuair + +nádúr +nádúrtha +náisiúnta +nár +nárbh +néaróg + +níl +níor +níorbh +níos + +nócha +nóiméad +nós +o +o'neill +obair +ochtó +oibre +oideachais +oideachas +oidhreacht +oifig +oifigeach +oifigiúil +oileáin +oileán +oiread +oirthuaisceart +oirthuaiscirt +ollscoil +onóir +orainn +ordóg +ordú +orgánaigh +orlaí +orm +ort +orthu +os +oscail +oscailt +oscailte +ospidéal +oíche +p +padraig +parlaimint +peadar +pearsanta +peile +phingin +phleananna +phleanáil +phléadáil +phoenix +phoiblí +phortiuncula +phunta +pingin +plandaí +plean +pleanála +plé +pléisiúir +pobail +pobal +poiblí +poist +polainnis +polaitíochta +polasaí +ponc +post +potaí +príosúin +putóg +pádraig +páidín +páirt +páirteach +páirtithe +páirtí +páiste +páistí + +píosa +pól +pósfaidh +pósta +q +r +rabh +rachaidh +radharc +raibh +raidió +rang +rannó +reachtaíocht +reatha +riachtanach +riachtanais +rialacha +rialta +rialtais +rialtas +riamh +rinne +rinneadh +rith +rogha +roghnaigh +roimh +roimhe +roinn +roinnt +ros +rothaíochta +rua +rud +rudaí +rug +rugadh + +ráite +ráiteas + +réamhbhabhta +réamhscoile +réidh +réigiún +réimse +réir +réiteach + +ról +rún +s +sa +sagart +saghas +saighdiúir +salah +salisbury +samhradh +sampla +san +saoire +saoirse +saol +saor +saothar +sasana +scairt +scannán +scannánaíochta +scaoil +scaoileadh +scileanna +scioból +scoil +scoile +scoileanna +scoróg +scríbhneoir +scríobh +scríobhadh +scríofa +scrúdú +scéal +scéalta +scéil +scéim +scór +sea +seabhac +seachas +seacht +seachtain +seachtaine +seal +seanbhuataisí +seans +seasamh +seilbh +seirbhís +seirbhíse +seirbhísí +seisean +seo +seoladh +seolfar +seolta +seomra +seán +shamhna +shay +sheas +sheol +shin +shiúil +shligigh +shliocht +sholáthar +shrathair +shuigh +shóisearaigh +sháith +shíl +siad +siamsaíocht +siar +sibh +sin +sinn +siopa +sise +sióga +siúd +siúil +siúl +slua +sláinte +slán +slí +smacht +smaoineamh +smaointe +sna +so +socrú +soiléir +solas +soláthar +son +sonraí +speisialta +spreagadh +spéir +spéis +spóirt +sraith +sráid +stad +staidéar +stair +stiúrthóir +stop +stráicí +stáisiún +stáit +stát +suas +suim +suite +sula +sular +suí +suíochán +suíomh +sásta + +séamas +séamus + +síle +sílim +síne +síníodh +síochána +síos +sóisialta +sórt +súil +súile +t +tabhair +tabhairt +tabharfaidh +tacair +tacaíocht +tacht +tada +tadhg +tae +tagairt +tagann +tagtha +taighde +taire +taispeánta +taithí +talaimh +talamh +talún +tamaill +tamall +tanaí +taobh +tarraingt +tarraingteach +teach +teacht +teaghlach +teaghlaigh +teanga +teastais +teastáil +teideal +teilifíse +teoranta +tharla +theastaíonn +thiocfadh +thit +thoir +thoraí +thrí +thug +tháinig +thóg +tiarna +tigh +timpeall +timpeallacht +tine +tionchar +tionóisc +tithe +titim +tiubh +toisc +tom +tomás +toradh +torthaí +tosaigh +tosú +traidisiún +trasna +treoir +triúr +troid +trua +trá +trácht +tráth +tráthnóna +tréimhse +trí +tríd +tríocha +trína +tríú +tsaoil +tseirbhís +tsneachta +tsúil +tuairim +tuairisc +tuaisceart +tuaithe +tuarascáil +tuath +tugadh +tugann +tugtar +tugtha +tuilleadh +tuiscint +tuismitheoir +turas +tusa +tuí + +tábhacht +tábhachtach +táim +táimid +tástáil + +téann +téarma + +tíortha +tír +tíre +tógadh + +tús +u +uachtar +uachtarlann +uachtarán +uaidh +uaim +uair +uaireanta +uait +uaithi +uafás +uasal +uathu +uile +uilig +uimhir +uirthi +uisce +uladh +ullmhú +ultaise +um + +v +w +x +y +z +zopitar +zuckerberg +á +á +ábalta +ábhair +ábhar +áfach +áireamh +áirithe +áit +áiteanna +áitiúil +áitiúla +álainn +ár +átha +é +é +éagsúla +éigean +éigeandála +éigin +éileamh +éineacht +éinne +éire +éireann +éireannach +éirigh +éirinn +éirí +éiríonn +éisteacht +í +í +íoc +íochtair +íochtar +ó +ó +ócáid +óg +óga +óige +óir +ól +ón +óna +ós +ú +úd +údar +údaráis +údarás +úinéir +úr +úrscéal +úsáid +úsáidtear + diff --git a/idlak-data/ga/ie/sylmax-default.xml b/idlak-data/ga/ie/sylmax-default.xml new file mode 100644 index 00000000000..a87c3ec9710 --- /dev/null +++ b/idlak-data/ga/ie/sylmax-default.xml @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/idlak-data/ga/nrules-default.xml b/idlak-data/ga/nrules-default.xml new file mode 100644 index 00000000000..a09b09fac04 --- /dev/null +++ b/idlak-data/ga/nrules-default.xml @@ -0,0 +1,83 @@ + + + + + + Overide default to regard hypens as wspace until norm rules added + to deal with hypenation. + + + + + + + + + Important: DO NOT REMOVE + It is used by the tokeniser to tokenise these characters separately + + + + + + + + + Important: Do not delete this regex, as it is used by the normaliser + internally. + Also, extend it with the language-specific letters. + + + + + + + + + Important: Do not delete this table, as it is used by the normaliser + internally. + Also, extend it with the language-specific letters. + + + + + + + + + Important: Do not delete this table, as it is used by the normaliser internally. + + + + + + + + + Important: Do not delete this table, as it is used by the normaliser + internally. + + + + + + + + This is used for 'H:asdigits'. + + + + + + + + + Important, do not delete: Used by the hard-coded rule "H:aschars" + + + ":"níos mó ná", "=":"cothrom le", "&":"amparsan", "+":"móide", "÷": "roinnte ar", "¢": "cent", ":":"idirstad", "/":"slais", ",":"camóg", "°":"céim", "?":"comhartha ceiste", "!":"comhartha uaillbhreasa", "½":"leath", "¼":"ceathrú", "¾":"trí cheathrú", "©":"cóipcheart", "²":"cearnaithe", "³":"ciúbach", "×":"iolraithe faoi", "·":"ponc", "√":"fréamh cearnach"}]]> + + + + diff --git a/idlak-misc/script_gen/script_tool.py b/idlak-misc/script_gen/script_tool.py new file mode 100755 index 00000000000..852da34962b --- /dev/null +++ b/idlak-misc/script_gen/script_tool.py @@ -0,0 +1,231 @@ +#!/usr/bin/env python +# +# Copyright 2018 author: Alex Brouwer +# Cereproc Ltd. (author: David A. Braude) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +# WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +# MERCHANTABLITY OR NON-INFRINGEMENT. +# See the Apache 2 License for the specific language governing permissions and +# limitations under the License. + +# NOTE This script is under development and should not be used yet + +""" +Minimum Viable Product - In order +""" + +# TODO : Split into 3 scripts: +# 1. Generating text statistics into XML from text database +# 2. Converting statistics and text database into recording scripts +# 3. Create Wikipedia text database this script should be in +# https://github.com/Idlak/idlak_resources repo + +# TODO : Use argparse module for terminal inputs and outputs + +# TODO : Input for scripts should be list of files (Kaldi format) + +# TODO : Replace Festival with IDLAK normaliser + +# TODO : Save script as XML + +""" +General TODOs - No particular order +""" +# TODO : Needs to run in Windows 10 Python 2.7 (Urgent) +# TODO : Use logging module for tracking progress +# TODO : Docstrings +# TODO : Ensure works with Python 2 and 3 +# TODO : Follow PEP-8 format (pylinter) +# TODO : Add to CI tests +# TODO : pip requirements +# TODO : option to use Binary JSONs for speed https://pypi.org/project/bson/ + +import os +import re +import json +import operator +import itertools as it +from nltk.tokenize import sent_tokenize +import subprocess +import wikipedia + + +def wiki_extract(pagelist): + """ + + :param pagelist: + :return: + """ + with open('unilex.json') as json_data: + lexicon = json.load(json_data) + count = 0 + sentences = [] + sentence_list = [] + for l, p in enumerate(pagelist): + print(l, "sentences from '{}'".format(p).upper()) + try: + sentence_list = sent_tokenize(wikipedia.page(p).content) + except Exception as e: + print(e) + sentence_list = [s for s in sentence_list if '\n' not in s] + sentence_list = [s.replace('"', '') for s in sentence_list] + for sentence in sentence_list: + clean_list = re.sub(r'[\.\,\?\!\"]', '', sentence.lower()).split() + print(clean_list) + if set(clean_list).issubset(lexicon) and len(clean_list) in range(4, 15): + count += 1 + sentences.append(sentence) + print("THE NUMBER OF SENTENCES FOR SELECTION IS:", sentences) + with open('corpus.json', 'w') as outfile: + json.dump(sentences, outfile) + return(sentences) + + + +### open json file with all sentences ### +with open('corpus.json') as json_data_2: + sentence_init = json.load(json_data_2) + sentences=[] + for x in sentence_init: + if x not in sentences: + sentences.append(x) + print(len(sentences)) + + +### create utts.data file for festival ### +def make_sentence_dict(sentence_list): + try: + os.remove("sequences.txt") + os.remove("utts.data") + except OSError: + pass + count2 = 0 + sentences_dict = {} + with open("utts.data", 'a') as output_file: + for n, sentence in enumerate(sentence_list): + sentences_dict["*/irnbros_"+str(count2).zfill(5)] = sentence + count2 += 1 + string = "" + string += "( irnbros_"+str(count2).zfill(5)+' "' + string += sentence + string += '" )\n' + output_file.write(string) + return sentences_dict + +def get_diphones_festival(): + sentence_diphone_dict = {} + ### get phone sequences through festival and convert to diphone sequences ### + count_irn=0 + print("open festival...") + cmd = ['./festival.sh', '--arg', 'value'] # creates utts.mlf + subprocess.Popen(cmd, stdout=True).wait() + + with open("utts.mlf", 'r') as f, open("sequences.txt", 'a') as sequences: + for key,group in it.groupby(f,lambda line: line.startswith('#!MLF!#')): + if not key: + group = list(group) + x = [s.strip('\n') for s in group] + x = [s for s in x if '_cl' not in s] + x = [s for s in x if 'sp' not in s] + key = "*/irnbros_" + str(count_irn).zfill(5) + count_irn += 1 + value = x[1:-1] + diphone_value = ['_'.join(value[i:i + 2]) for i in range(len(value) - 1)] + sentence_diphone_dict[key] = diphone_value + sequences.write(str(key)+str(diphone_value)+'\n') + return sentence_diphone_dict + +def get_diphone_wishlist(sentence_diphone_dict): + """ + get a wishlist of diphones in dictionary with diphone as key and number of occurrences as value + :param sentence_diphone_dict: a dictionary with sentence key and diphones in that sentence + :return: diphone_wishlist + """ + diphone_wishlist = {} # dictionary with diphones + for k, v in sentence_diphone_dict.items(): + for type in v: # making the wishlist for diphones + if type in diphone_wishlist: + diphone_wishlist[type] += 1 + else: + diphone_wishlist[type] = 1 + return diphone_wishlist + +try: + os.remove("wishlist.txt") + os.remove("wishlist_diphones.txt") + os.remove("rank_dict.json") + os.remove("rank_dict_rev.json") + os.remove("figure_1.pdf") + os.remove("figure_2.pdf") +except OSError: + pass + +triphones_together = [] + + + +def script_generator(sentences_dict, sentence_diphone_dict, diphone_wishlist): + diphone_inventory={} + dict_final={} + try: + os.remove("script_2.txt") + except OSError: + pass + with open("script_2.txt","a") as script: + for n in range(55): + score_dict = {} + discores = {} + for k, v in sentence_diphone_dict.items(): + discores[k] = [] + score = 0 + for i, diphone in enumerate(v): + try: + score += 1 / diphone_wishlist[diphone] + individual_score = 1 / diphone_wishlist[diphone] + except: + pass + score2 = score / len(v) + score_dict[k] = score2 + best = max(score_dict.items(), key=operator.itemgetter(1))[0] # finding max value in dict + best_sentence = sentences_dict[best] # actual sentence + print(n+1, best_sentence) + script.write(best_sentence+" ("+str(score_dict[best])+")"+"\n"+str(discores[best])+"\n") # write to file script + print('phones left: ', len(diphone_wishlist)) + for diphone in sentence_diphone_dict[best]: + try: + diphone_wishlist.pop(diphone) + except: + pass + dict_final[best] = best_sentence + sentence_diphone_dict.pop(best) + return dict_final + + + +if __name__ == "__main__": + pagelist = wikipedia.search("cheese", results=5, suggestion=False) + print(pagelist) + sentences = wiki_extract(pagelist) + sentences_dict = make_sentence_dict(sentences) + sentence_diphone_dict = get_diphones_festival() + diphone_wishlist = get_diphone_wishlist(sentence_diphone_dict) + dict_final = script_generator(sentences_dict, sentence_diphone_dict, diphone_wishlist) + + try: + os.remove("utts.data") + except OSError: + pass + + with open("utts1.data", 'w') as final_inventory: + for k, v in dict_final.items(): + string = v + '\n' + final_inventory.write(string) + diff --git a/idlak-server/README.md b/idlak-server/README.md new file mode 100644 index 00000000000..6ef569a1884 --- /dev/null +++ b/idlak-server/README.md @@ -0,0 +1,148 @@ +# Idlak Speech Synthesis Server + +This server runs an RESTful API based on Python Flask. + +When setting up the server a single user with Admin permissions is created. + + + +## API + +Functions that get only be run by the admin users have been indicated as such. + +Every request must have the authentication header, ```bearer``` for password, and ```awt``` for web authentication tokens. + +### Authentication + +**Retrieve an authentication token** +``` +GET /awt +``` + +*Response* +``` +{ + 'awt': ... +} +``` + +**Expire the authentication token** +``` +DELETE /awt +``` + +### Users + +**Retrieve a list of currently registered users.** +``` +(ADMIN) GET /users +``` + +*Response* +``` +{ + 'users' : [ + { + 'uid' : ... , + 'admin' : (true|false) + }, + ... + ] +} +``` + +**Create a new user account (with or without admin privileges), or change an existing account's admin status.** +``` +(ADMIN) POST /users +{ + (optional) 'admin' : (true|false), + (optional) 'uid' : ... +} +``` + +*Response* +``` +{ + 'uid' : ... , + 'password' : ... +} +``` + +**Reset a password** +``` +(ADMIN) POST /users//password +``` + +*Response* +``` +{ + 'password' : ... +} +``` + +**Delete a user** +``` +(ADMIN) DELETE /users/ +``` + +*Response* +``` +{ + 'success' : (true|false) +} +``` + +### Voices + +**Get available voices** +``` +GET /voices +``` +Options will filter results +``` +language : language (ISO 2 letter code) +accent : 2 letter accent code +gender : male|female +``` + +*Response* +``` +{ + 'Voices' : [ + , + ... + ] +} +``` + +**Get voice details** +``` +GET /voices/ +``` + +*Response* +``` +{ + 'language' : ... , + 'accent' : ... , + 'gender' : ... , +} +``` + +### Speech Synthesis + +**Synthesise speech** +``` +POST /speech +{ + "voice" : , + (optional default=false) "streaming" : (true|false), + (optional default=wav) "audio format" : (wav|ogg|mp3), + "text" : ... +} +``` + +*Response* +``` +TBD +``` \ No newline at end of file diff --git a/src/Doxyfile b/src/Doxyfile index a6c0b434ff2..b3b79a9e7ea 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -457,7 +457,8 @@ INPUT = doc itf \ fstext hmm lm decoder lat cudamatrix nnet \ bin fstbin gmmbin fgmmbin featbin \ nnetbin latbin sgmm2 sgmm2bin nnet2 nnet2bin nnet3 nnet3bin \ - kwsbin ivector ivectorbin + kwsbin ivector ivectorbin \ + idlaktxp idlaktxpbin idlakfeat idlakbin # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff --git a/src/Makefile b/src/Makefile index c759b27bbd3..dab1e690b17 100644 --- a/src/Makefile +++ b/src/Makefile @@ -25,7 +25,7 @@ SUBDIRS_LIB = $(filter-out %bin, $(SUBDIRS)) KALDI_SONAME ?= libkaldi.so # Optional subdirectories -EXT_SUBDIRS = online onlinebin # python-kaldi-decoding +EXT_SUBDIRS = online onlinebin pyIdlak # python-kaldi-decoding EXT_SUBDIRS_LIB = $(filter-out %bin, $(EXT_SUBDIRS)) include kaldi.mk @@ -135,6 +135,7 @@ depend: $(addsuffix /depend, $(SUBDIRS)) ext_depend: check_portaudio + $(MAKE) -C pyIdlak wrapper -for x in $(EXT_SUBDIRS); do $(MAKE) -C $$x depend; done @@ -183,3 +184,5 @@ online2: decoder gmm transform feat matrix util base lat hmm tree ivector cudama kws: base util hmm tree matrix lat idlaktxp: base util matrix idlakfeat: base util hmm feat transform +pyIdlak: base util matrix idlaktxp + diff --git a/src/configure b/src/configure index b58cc90e765..30bb924d492 100755 --- a/src/configure +++ b/src/configure @@ -88,13 +88,15 @@ Configuration options: --speex-incdir=DIR SPEEX include directory --host=HOST Host triple in the format 'cpu-vendor-os' If provided, it is prepended to all toolchain programs. - --android-incdir=DIR Andraid include directory + --android-incdir=DIR Android include directory + --pydev-incdir=DIR Python development library include directory [default=/usr/include/python2.7] Following environment variables can be used to override the default toolchain. CXX C++ compiler [default=g++] AR Archive maintenance utility [default=ar] AS Assembler [default=as] RANLIB Archive indexing utility [default=ranlib] + SWIG Python wrapper generation tool [default=swig] If a host triple is provided, it is prepended to CXX, AR, AS and RANLIB. @@ -832,6 +834,7 @@ CXX=${CXX:-g++} AR=${AR:-ar} AS=${AS:-as} RANLIB=${RANLIB:-ranlib} +SWIG=${SWIG:-swig} # These environment variables can be used to provide additional flags to the # compiler/linker. We want these flags to override the flags determined by the @@ -861,6 +864,8 @@ EXPATROOT=`rel2abs ../tools/expat-2.1.0/` PCREROOT=`rel2abs ../tools/pcre-8.20/` PUJIXMLROOT=`rel2abs ../tools/pugixml-1.2/` +PYTHONDEVINC=/usr/include/python2.7 + # Save the command line to include in kaldi.mk cmd_line="$0 $@" @@ -1000,6 +1005,9 @@ do MATHLIB='OPENBLAS'; ANDROIDINC=`read_dirname $1`; shift;; + --pydev-incdir=*) + PYTHONDEVINC=`read_dirname $1`; + shift;; *) echo "Unknown argument: $1, exiting"; usage; exit 1 ;; esac done @@ -1069,6 +1077,7 @@ echo "CXX = $CXX" >> kaldi.mk echo "AR = $AR" >> kaldi.mk echo "AS = $AS" >> kaldi.mk echo "RANLIB = $RANLIB" >> kaldi.mk +echo "SWIG = $SWIG" >> kaldi.mk echo >> kaldi.mk echo "Checking compiler $CXX ..." @@ -1107,7 +1116,7 @@ echo IDLAK = true >> kaldi.mk echo PCREROOT = $PCREROOT >> kaldi.mk echo EXPATROOT = $EXPATROOT >> kaldi.mk echo PUJIXMLROOT = $PUJIXMLROOT >> kaldi.mk - +echo PYTHONDEVINC = $PYTHONDEVINC >> kaldi.mk echo "Checking OpenFst library in $FSTROOT ..." if [ ! -f $FSTROOT/include/fst/fst.h ]; then diff --git a/src/doc/idlak-voice-build.dia b/src/doc/idlak-voice-build.dia new file mode 100644 index 00000000000..d414f56a140 Binary files /dev/null and b/src/doc/idlak-voice-build.dia differ diff --git a/src/doc/idlak-voice-build.png b/src/doc/idlak-voice-build.png new file mode 100644 index 00000000000..1e80b6bfb1a Binary files /dev/null and b/src/doc/idlak-voice-build.png differ diff --git a/src/doc/idlak.dox b/src/doc/idlak.dox new file mode 100644 index 00000000000..610dd30cd79 --- /dev/null +++ b/src/doc/idlak.dox @@ -0,0 +1,44 @@ +// doc/idlak.dox + +// Copyright 2012 CereProc Ltd. + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at + +// http://www.apache.org/licenses/LICENSE-2.0 + +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. + + + +/** + \page idlak About the Idlak system + + @section idlak_what What is Idlak? + + Idlak is a toolkit for generating speech synthesis using the Kaldi + toolkit together with the following proposed components: + + - A text processing front end (idlaktxp) + - Context extraction (idlakpcex) + - Voice building system + + It is currently under construction. + + The end result of the process is a HMM set of models and question + trees that can be used by a standard HTS engine to produce speech synthesis. + + @section idlak_install Installation + + Follow the kaldi install instructions but in addtion to running make + in tools you also need to run tools/install_idlak.sh to download + third party libraries that Idlak dpends on (pujixml, pcre, + expat). Then go to src and run ./configure - make + +*/ diff --git a/src/doc/idlakcex.dox b/src/doc/idlakcex.dox new file mode 100644 index 00000000000..05156fda8d8 --- /dev/null +++ b/src/doc/idlakcex.dox @@ -0,0 +1,506 @@ +// doc/idlakcex.dox + +// Copyright 2013 University of Edinburgh + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at + +// http://www.apache.org/licenses/LICENSE-2.0 + +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. + +/** + \page idlakcex The Idlak context extraction system + + @section idlakcex_intro Introduction + +In order to train our speech synthesiser, we need to extract information about the +context in which each phone exists. For example, desirable information might be the +phones in proximity to it, its position within the segment or syllabic stress. The +role of idlakcex is to take the idlaktxp output and perform this extraction. + +It outputs a string for each phone, which consists of values separated +by unique delimiters, indicating which context the subsequent +value pertains to. These full context models are very similar to +model names used in HTS/HTK but with some regularisation. + +For example here is a full contect model name in HTS/HTK + +\verbatim +ae^l-ax+s=w@2_2/A:1_1_1/B:0-0-3@2-1&2-21 +#1-12$1-3!1-1;1-7|ax/C:1+0+3/D:0_0 +/E:content+2@1+15&1+7#0+2/F:aux_1 +/G:0_0/H:22=15^1=1|NONE/I:0=0/J:22+15-1 +\endverbatim + +The delimiters shift on each field to allow a regular expression to +uniquely extract a field. This follows the initial HTK style of naming +triphones and quinphones for ASR. In the above we have phone contexts +in the first 5 fields: + + + + + + + + +
contextleft delimitervalueright delimiter
left left phone contextae^
left phone context^l-
phone context-ax+
right phone context+s=
right right phone context=w\@
+ +Idlak continues to use the HTK style phone delimiters, but as standard replaces +all other delimiters with the string /XX: where XX is a two digit +field number. This makes the models a little longer but easier to +intepret. + +For example: + +\verbatim +^pau~ae-l+ah=s/00:0/01:2/02:1/03:0/04:1/05:PAU +/06:NN/07:VBD/08:1/09:3/10:3/11:0/12:2/13:1 +/14:15/17:LL +\endverbatim + +Field values can be integers or strings as in HTS/HTK. + +These string names are an intermediate form in Kaldi. In the standard +Kaldi system phone names are replaced by integer values. This is not +possible with the full context models used in synthesis because the +large number of contexts leads to trillions of different possible +phone names. Thus internally in Kladi Idlak phone names are coded as a +vector of integers. Each position on the vector refers to a context +and each integer to a vlaue, either a direct integer value, or an +index into a lookup table to represent a string value. + +A key requirement for current parametric synthesis systems is to be +able to query a phone name for a context value, and build a tree of +models in order to automatically group the very sparse set of full +context models to a less sparse set of leaf models. + +The question set is a list where each question has the form given this +context are any of these values present. + +In HTK such questions are written as follows: +\verbatim +QS "LL-Stop" {^b~*,^d~*,^g~*,^k~*,^p~*,^t~*} +\endverbatim +whereas in Kladi Idlak they would have the form +\verbatim +5 ? 7 9 15 20 27 31 +\endverbatim + +The context index is the first value and matches our context fields in +our phone name with an offset of 5. This is for compatibility reasons +with Kaldi where, given a context width of 5 and a central position of +3 (i.e. --central-position=2 --context-width=5 in tree building +options), the first five contexts are repeated quinphone contexts +where questions may be generated automatically. + +Unlike HTS where the questions are set in advance and not altered, in +Kaldi Idlak they are generated from a superset, making it easier to +alter, add, and remove contexts and context values while ensuring the +questions remain synchonised with the with the context extraction. + +In the next two sections we give more detail on how context extraction is +configured, and how the question sets are generated. + +@section idlakcex_archi Context Architecture + +The system's primary mode of action is to run each of the context extraction functions. +The developer writes the function bodies, adhering to a function naming convention to be +explained later, whilst the header file and a macro for calling them all are automatically +generated by a Python script. + +The functions themselves must also be described in an XML file, including the following +information: + + - \b delim: The delimiter to be used in the output string, ahead of this feature's value. + + - \b htsname: The name by which the feature is referred to in HTS. + + - \b desc: A short description of the feature's purpose. + + - \b name: The name of the feature. This is used as part of the function name in the C++ +file, so should conform to those standards. + + - \b min (optional): The minimum acceptable value for this feature. + + - \b max (optional): The maximum acceptable value for this feature. + + - \b set (optional): If this feature is to have non-integer values, the set from which +possible values should be drawn. + + - \b pauctx (optional): Whether or not context should continue (as opposed to being blocked) +when meeting two consecutive pauses. + +If the 'set' attribute is used, a set element must be defined, using the same name, which +enumerates all possible values for the set. + +Below is an example of such an XML file: + + \verbatim + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +\endverbatim + +Function names in the C++ should contain the following components in the following order: + + - \b CexFunc + - \b String or \b Int: depending on the feature's value type. + - The contents of the 'name' field in the XML file. + +For example, given the previously-mentioned XML file, the following +would be legitimate function names; \e +CexFuncStringBackwardBackwardPhone, \e CexFuncIntWordNumSyls, \e +CexFuncStringPhraseTobiEndTone. + +@section idlaxcex_extraction Context Extraction + +idlakcex takes output from the front end processor idlaktxp as input, +queries the XMl structures within the input and adds the full context +model names. It also adds a header to the XMl which describes the +context extraction functions used. This helps track errors and is also +used to encode full context models into kaldi style integer vectors. + +An example of running the idlakcex on input generated by the idlak +test system is shown below. + +\verbatim +cd src/idlaktxp +make test +cd ../idlaktxpbin +./idlakcex --pretty --cex-arch=hts --tpdb=../../idlak-data/en/ga ../idlaktxp/test_data/mod-syllabify-out002.xml - +\endverbatim + +The switch --pretty adds whitespace to the XMl to make it human +readable, --cex-arch argument can be used to switch between different +setups. In this example it is set to hts which produces context models +names with the delimeters described above, which matches the hts style +question file (see \ref idlakcex_qarchi). This output was used together with this +question file to test the front end against festival using HTS (see \ref idlakhtstest). + +the first few lines of the output are as follows: +\verbatim + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ^sil~sil-pau+hh=ah/00:0/01:0/02:0/03:0/04:0/05:PAU/06:PAU/07:NN/08:0/09:0/10:2/11:0/12:0/13:2/14:2/17:LL + + + + + Hello + + + ^sil~pau-hh+ah=l/00:0/01:1/02:0/03:0/04:1/05:PAU/06:NN/07:EX/08:0/09:2/10:2/11:0/12:2/13:1/14:2/17:LL + ^pau~hh-ah+l=ow/00:1/01:0/02:0/03:0/04:1/05:PAU/06:NN/07:EX/08:0/09:2/10:2/11:0/12:2/13:1/14:2/17:LL + + + ^hh~ah-l+ow=dh/00:0/01:1/02:0/03:1/04:1/05:PAU/06:NN/07:EX/08:2/09:2/10:3/11:0/12:2/13:1/14:2/17:LL + ^ah~l-ow+dh=eh/00:1/01:0/02:0/03:1/04:1/05:PAU/06:NN/07:EX/08:2/09:2/10:3/11:0/12:2/13:1/14:2/17:LL + + +... +\endverbatim + +If we run the program with the switch altered to --cex-arch=kaldi the +model names are altered replacing delimeters between all non phone +contexts with whitespace. + +\verbatim +... +^0~0-0+hh=ah 0 0 0 0 0 PAU PAU NN 0 0 2 0 0 2 2 LL +... +^0~0-hh+ah=l 0 1 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LL +... etc. +\endverbatim + +The --cex-arch switch causes the program to load different setup files +from the tpdb (text processing database) in these examples either +../../idlak-data/en/ga/cex-hts.xml or +../../idlak-data/en/ga/cex-kaldi.xml + +See voicebuilding documentation for more detail (\ref idlakvoicebuild). + +@section idlakcex_qarchi Question Architecture + +The front end procesing and the context extraction associated with it +can be used standalone within Kaldi Idlak in order to generate +linguistic analysis or for other backend TTS systems. + +The question architecture is part of the Idlak voice build system but +is closely linked to the context extraction system. This is because, +within parametric TTS systems questions are used to help take the very +sparse full context models and group them into combined models. It is +vital that the context extraction matches such question files. If they +do not the voice training behavior becomes unspecified, often without +being able to detect errors and mismatches, and producing very hard to +detect output errors. + +The Idlak Question Architecture is designed to: + +-# Minimise the chance of mismatches between questions and contexts. + +-# Produce warnings for unusual context extraction results (e.g. no variation, unusual values) + +-# To make it easy to choose contexts and questions from a superset + allowing experimentation and development of optimal sets. + +A question set based on the HTS question set distributed with the HTS +DEMO is included in the system. Selecting a subset of these questions +and contexts is a simple process, adding new questions and new context +extraction is more complex requiring a careful march between cex +configuration code, the question set, and C++ context extraction +functions (see \ref idlakcex_addcex and \ref idlakcex_addqst). + +The default question set used in voice building is +../../idlak-data/en/ga/qset-default.xml in order to allow cross +development between HTKHTS and Kaldi Idlak names familiar to HTS users +are used as well as Idlak context function names. + +In HTK such questions are written as follows: +\verbatim +QS "LL-Stop" {^b~*,^d~*,^g~*,^k~*,^p~*,^t~*} +\endverbatim +whereas in Kladi Idlak they would have the form +\verbatim +5 ? 7 9 15 20 27 31 +\endverbatim + +In HTS, the delimeters identify the context, in Kaldi the index of the +context is used. HTS question style names are used within Kaldi to +help make warnings and error output easier to understand. + +Below is an example of the XML specification of a question: +\verbatim + + + ... + + + 0 + + + 1 + + +... + +\endverbatim + +The questions qs are stored by the context they are tied with. The +context is identified by an HTS name for convnenience and by the +context extraction function name (as per the cex configuration file) +WHICH MUST EXACTLY MATCH THE CONTEXT EXTRACTION FUNCTION WRITTEN IN +C++. During voice building only questions matching the contexts which +are selected for that voice build are used. The valid values for a yes +reponse are space delimited and must match the context type (string or +integer). + +The process for encoding questions in Kaldi format in the voice +building system is as follows: + +-# Create a lookup table for all string contexts which map an integer + onto the string value. 0 is reserved for a NULL value (defined in + the cex configuration which is typically '0'. + +-# The frequency of all features values and appropriate lookup tables + are stored by the context index based on the header output from + cex. For exampl cex000_freq.txt and cex000_lkp.txt relate to the + function BackwardBackwardPhone. + +-# The index of the context is incremented by 5 to deal with the + automatically generated questions based on a quinphone model. + +-# In kaldi built trees the context -1 is the state number of the + model within the phone. This differes from HTK where a seperate + tree is built for each state + +@section idlakcex_addcex Adding Context Extraction Functions + +IN PREPARATION + +@section idlakcex_addqst Adding Context Questions + +IN PREPARATION + +*/ diff --git a/src/doc/idlakhtstest.dox b/src/doc/idlakhtstest.dox new file mode 100644 index 00000000000..adf9caa4ae2 --- /dev/null +++ b/src/doc/idlakhtstest.dox @@ -0,0 +1,206 @@ +// doc/idlaktxp.dox + +// Copyright 2014 CereProc Ltd. + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at + +// http://www.apache.org/licenses/LICENSE-2.0 + +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. + + + +/** + \page idlakhtstest Testing the Idlak Front End with HTS + + @section idlaktxp_intro Introduction + + HTS (H triple S - Hidden Markov Speech Synthesis System) is the + leading open source parametric speech synthesis. As different parts of + Idlak are added it is useful to feed information from them into HTS to + see how these new modules are performing. In this document we outline + the steps required to carry out these tests. + + When possible these tests are automated, but as they rely on + substantial third party releases it is quite possible the automatic + scripts will fail dues to future changes in other releases. The + automatic scripts intend to also act as a transparent sequence of + commands, so if there is a problem you will need to refer back to + these and determine which step has failed. + + Currently these tests are carried out on: + + http://hts.sp.nitech.ac.jp/archives/2.3alpha/HTS-demo_CMU-ARCTIC-SLT.tar.bz2 + + Using hts_engine output. This is not the best output you can achieve + from HTS see http://hts.sp.nitech.ac.jp/ for details of what's + available and recent work on HTS. + + The first test uses the Kaldi front end to drive the HTS system, + other tests will follow as additional modules are added to Idlak. It + is assumed you have already downloaded and built the Idlak branch + from Kaldi. + + @section idlaktxp_downloadhts Downloading HTS + + All tests require downloading and building the HTS-demo. In order to + do this you must register to get a userid and password to allow you + to download HTK at http://htk.eng.cam.ac.uk/register.shtml once you + have the userid and password you are ready to download the + HTS-demo. Using the script install_HTS_demo.sh: + +\verbatim +cd idlak-voice-build/utils +./install_HTS_demo.sh STRAIGHT +\endverbatim +or +\verbatim +./install_HTS_demo.sh NOSTRAIGHT +\endverbatim + + Avoid installing HTS within an AFS directory unless you understand how + to generate long life tokens. Initially we recommend an install + location on a local scratch drive and avoiding installing within the + Kaldi directory structure. + + For testing with the STRAIGHT demo you will need to arrange access to + the MATLAB STRAIGHT code distributed by Professor Kawahara. The + latest release (STRAIGHTV40_007d) does not currently produce correct + output synthesis but (STRAIGHTV40_005b) has been tested with this + setup. + + Reported results are based on Idlak version r3764 with non-STRAIGHT + HTS-demo. + + To test the HTS download: + +\verbatim +cd /HTS-demo_CMU-ARCTIC-SLT +source config.txt +make +\endverbatim + +config.txt has the appropriate configuration set by the install_HTS_demo.sh script. + +make will run data extraction and train models (which can take 24 hours). + + @section idlaktxp_arcticstl Downloading Arctic STL data + + The HTS demo we are using here used the stl arctic corpus. (see + http://festvox.org/cmu_arctic). In order to build the front end to + produce Kaldi generated context model we need to install this corpus + into Kaldi. + +\verbatim +cd idlak-voice-build/utils +python prepare_arctic_slt.py +\endverbatim + + This will install arctic stl corpus into idlak-data/en/ga/stl. + + @section idlaktxp_buikldcex Building Full Context Models + + A full context model in Kaldi is a series of integers, in HTK it is + a long string with delimited values. To build these models we need + to carry out linguistic and pronunciation analysis on the stl + corpus. + +\verbatim +cd idlak-voice-build +python modules/alignsetup_def.py --buildid= --spkconf=speaker_conf/slt.xml +python modules/align_def.py --buildid= --spkconf=speaker_conf/slt.xml +python modules/cex_def.py --buildid= --spkconf=speaker_conf/slt.xml --hts +\endverbatim + + Where the build id is used to allow multiple builds and is typically + and ISO date in the form YYYMMDD. + + This will automatically run alignment using Kaldi, aligning CMU + lexicon style phone names and determine pause positions. + + By default output from this process will be stored in: +\verbatim + idlak-voice-build/idlak-scratch/en/ga/slt/cex_def//output/ +\endverbatim + + + The system generates full context models for each pause separated + chunk of speech in the corpus (htslab), and an hts question file for + building the decision trees (questions-kaldi-en-ga.hed) in HTK and + the start and end times of each pause separated chunk of speech in + the original corpus waveforms (spt_times.dat). + + @section idlaktxp_htsintegration Integrating KALDI CEX output with HTS + + In contrast to HTS which defaults to using whole utterances for + building models Idlak uses silence delimited chunks of + speech. Therefore we need to replace the original raw wavfiles in the + HTS-demo with wave files cut up appropriately, as well as replacing + the model label files and question file with those generated from + Idlak. + + HTS defaults to using 48khz input wav files and the arctic corpus + that is available to download is 16Khz. Therefore we need to cut up + the HTS-demo wavs appropriately rather than the wavs downloaded to + build the alignment and context models. + +\verbatim +cd idlak-voice-build +python modules/hts_test.py --buildid= --spkconf=speaker_conf/slt.xml --htsdemodir= +\endverbatim + + @section idlaktxp_htsgeneration Creating Models for Speech Generation + + The hts engine that will synthesis output also requires full context + models. These need to be generated using the Kaldi front end from XML + text. The HTS demo uses the opening text from Alice in Wonderland + although the actual text and the edition used is not specified. To + directly compare output you can use the same text downloaded from + librivox (http://www.gutenberg.org/etext/11) + +\verbatim +mv /HTS-demo_CMU-ARCTIC-SLT/data/labels/gen /HTS-demo_CMU-ARCTIC-SLT/data/labels/gen.orig +mkdir /HTS-demo_CMU-ARCTIC-SLT/data/labels/gen +cd idlak-voice-build/utils +cat ../../idlak-data/en/testdata/alice.xml | \ +../../src/idlaktxpbin/idlaktxp --pretty --tpdb=../../idlak-data/en/ga/slt - - | \ +../../src/idlaktxpbin/idlakcex --pretty --cex-arch=hts --tpdb=../../idlak-data/en/ga/slt - - |\ +python output_hts_test_labs.py /HTS-demo_CMU-ARCTIC-SLT/data/labels/gen alice +\endverbatim + + If you would like to generate different output replace alice.xml. + + + @section idlaktxp_htstraining HTS training + + You are now ready to train models based on Kaldi output in HTS. TO do + this you need to bypass the usual HTS demo stage of label generation + and need to make the system as follows: + +\verbatim +cd /HTS-demo_CMU-ARCTIC-SLT/data +make analysis +make mlf list scp +cd .. +make voice +\endverbatim + +Output from the Kaldi based HTS system will be generated into: +\verbatim +/gen/qst001/ver1/hts_engine +\endverbatim + +In order to run HTS-demo with paths set to the tools you have +downloaded you will need to run make within the HTS-demo directory +configured appropriately. The download script has added a file +config.txt to this directory which has an example of the appropriate +settings. + +*/ \ No newline at end of file diff --git a/src/doc/idlaktxp.dia b/src/doc/idlaktxp.dia new file mode 100644 index 00000000000..288908a4c22 Binary files /dev/null and b/src/doc/idlaktxp.dia differ diff --git a/src/doc/idlaktxp.dox b/src/doc/idlaktxp.dox new file mode 100644 index 00000000000..f69fd2abdc4 --- /dev/null +++ b/src/doc/idlaktxp.dox @@ -0,0 +1,416 @@ +// doc/idlaktxp.dox + +// Copyright 2012 CereProc Ltd. + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at + +// http://www.apache.org/licenses/LICENSE-2.0 + +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. + + + +/** + \page idlaktxp The Idlak text processing system + + @section idlaktxp_intro Introduction + + In order to generate speech synthesis we start with text input. This + input is typically unnormalised text. For example it may contain + tokens such as "£10", "12/10/98", "IBM" which need to be expanded + into words that we can look up in a dictionary. Furthermore, there + may be further issues with this look up process, the word may not me + in the lexicon, it may have several pronunciations depending on + context. Finally the system needs to decide how to phrase and + structure the sounds it will produce. For example how long a pause + should be inserted between sentences, what sort of syllabification + and word boundaries should be used. + + The Idlak text processing front end (idlaktxp) looks after this + process, normalising tokens into words, assigning part of speech tags + to help disambiguate word pronunciations, adding pauses and phrase + structure, assigning pronunciation to words and adding syllable + structure. + + The system comprises of a set of modules. Each module takes a well + formed XML input and outputs a well formed XML output. A set of XML + files which contain data that controls the process can be read in by + each module and used to control processing. The final output is a + marked up XML document which can be used as an input to the Idlak + feature extraction system, or could format the basis of a 3rd part + feature extraction system. + + @section idlaktxp_archi Architecture + + The system is comprised of a set of modules. Each module takes an XML + input, may contain some data objects which are built from XML input + data, and outputs an XML marked up version of the input. + + Three 3rd party libraries are used to help with the text + processing. PCRE compiled with unicode support, which is used to + handle regular expression matching controlled through the text + normalisation object (nrules). Pujixml which is used to access and + iterate across XML input generally using xpath, expat which is used + to read in XML voice data used by data objects (voice data). Expat is + used in addition to pujixml because voice data files can be large + (e.g. 200k lines in an input lexicon), and thus an event driven XML + parser is more efficient for loading this data. In addition the + structure of voice data is normally quite simple and an event driven + parser is reasonable easy to use. Both pcre and expat are wrapped + into a C++ object within idlaktxp. + + A set of utilities are also used across the system (at present a very + thinned down set of utf8 functions). + + Currently data objects are loaded more than once if used by more than + one module. This means it is easy to write a command line application + which carries out only one module's function, although currently only + a single monolithic system is available (in idlakxpbin). See below for + a schematic of the system. + + @image html idlaktxp.png + + @section idlaktxp_voice_data Voice Data + + Example XML files are available for English General American + accent. These are currently located in idlak-data. More files for + more languages and accents can be added in future. Although some data + is general across speakers the data is currently held by speaker id + - where spkid is a three letter lower case ascii + name. The first test voice will be arctic bdl. + + Some of the voice data is hand created, such as the lexicon, others + are automatically created using machine learning algorithms, such as + CART based lts based on wagon). + + Scripts to create data for new voices will be released at a future point. + + @section idlaktxp_XML_tagset XML tagset + + The modules have expectations for the tags used to markup input + text. These tags are kept short for readability but this means they + could clash with XML marked up input. + + The core tags are as follows: + + - \b fileid: This can be used to break large texts into proposed output + output files with the stem set based on the attribute id. This tag + plays an important role in voice building by allowing input audio data + to be matched up with normalisation output. + + - \b utt: This is a series of spurts (see below) and equates to a sentence. + + - \b spt: This is a spurt of speech.This is speech bounded by silences, + and equates to a phrase. + + - \b ws: Whitespace. Characters which have + been processed as whitespace such as spaces, tabs, line breaks. + + - \b tk: Tokens. The input text is split up into tokens. Often a token + is a word but it can also be a series of symbols. For languages + such as Mandarin a token can be part of a word. The pronunciation + of the token is available as plain phones (pron), with syllable + structure (spron) and also as sub tags (syl, phon). altpron atribute + lists all possible prons for that word. if attribute lts = true then pron + was generated using letter to sound rules. + + - \b break: This tag represents a phrase break an has both a strength + and a time associates with it. Often a break will be generated from + punctuation. + + - \b syl: This tag represents a syllable within a pronounced token. + + - \b phon: This tag represents a sound unit in language. + + Break tags can be manually added to the input text and override the + effect of punctuation. A spurt (spt) has by definition a break at its + beginning and its end. + + In addition other markup will effect the processing of the text and + more importantly be retained to potentially control synthesis in + later modules. Within idlaktxp the tag \b lex can allow the manual + override of word pronunciation. + + Below is an example of some text and the pretty printed resulting XML + from idlaktxp. + + \verbatim + +Hello there, 1 2 3. + +\endverbatim + \verbatim + + + + + + + + + Hello + + + + + + + + + + + + there, + + + + + + + + + + + + + 1 + + + + + + + + + 2 + + + + + + + + 3. + + + + + + + + + + + + + + \endverbatim + + @section idlaktxp_description_modules Description of Modules + + @subsection idlaktxp_token Tokenisation + + Tokenisation is the basis for all following text processing. For + English this is carried out by splitting text by whitespace, and by + regarding some symbols as individual tokens (such as '\'). The choice + of what symbols to split on is optional but once decided it will + strongly affect the normalisation rules. Therefore it is strongly + recommended to choose a tokenisation that produces the 'best' + normalisation without normalisation rules and to avoid changing it. + + Tokenisation also performs some default normalisation, such as + replacing foreign characters with characters valid for the languages + lexicon and downcasing characters. The old token is retained as text + in the tk tag the normalised version added as an attribute. + + The processing also adds attributes to record the case/symbol + characteristics of the token. + + Valid punctuation symbols are stripped from the tokens and added as + pre and post (pst) punctuation attributes as appropriate. An attempt + is made to disambiguate apostrophes from single quotes. + + White space is also tokenised and the column location of a line + break is recorded to deal with issues such as soft hyphenation. + + @subsection idlaktxp_norm Normalisation + + This module is still under construction. It is possible to fully + test idlak with pre-normalised text so the details of normalisation + have been left until after a full end to end prototype is in + place. However the architecture of the normalisation has been + designed. We briefly describe this intended design here. + + The first thing this module does its to replace + abbreviations. Abbreviations are very greedy catch alls that can be + used for elements which have no ambiguity. For example these can't + be used to replace 'Dr' with Doctor as this can be confused with + 'Dr' as Drive. However it is the easiest user based normalisation + to produce and for many users, although an abbreviation may be + ambiguous over many texts, may not be for a specific user's text. + + Abbreviations can have a context and can add XML values. The match + process is very simple and requires case matching. i.e. IBM -> i b + m, :-) -> smiley. + + Normalisation then applies a group of rules in sequential order. Each + rule within the group is greedy in that if it fires the group + completes. In effect: + + Group1(rule1 | rule2 | rule3 etc) & Group2(rule1 | rule2 | rule3 etc) & etc + + Thus a group will typically represent a series of mutually exclusive + actions on a token such as 'date formats'. Furthermore, because a + group will change tokens, actions that require the most context, and + are best defined, need to be before more general action. + + Rules have a match and a replace section. The matches need to be true + to fire the rule, and will record elements that have been + matched. If the match is successful the replace will reformat the + token and potentially other tokens around the target token. + + Below is an example of a rules to detect tokens like '7th Flr.' in US addresses. + +\verbatim + + + Cover cases the '7th', as in '7th Flr.'. + + + + + + + + + + + + + + +\endverbatim + + The match is made of a series of commands (com tags) which apply a + regular expression to a token indexed from the current token + e.g. 't-00' is the current token, t+01 is the next token, t-01 is the + previous token. + + In this rule the token (t-00) is first matched as an ordinal number + "R:snumber_er_m", the following token is then matched against a set of + US abbreviations "R:american_address_misc". If these both match, the + ordinal number regex returns four match groups (although only one is + ever filled). If none match it appends nothing, else it will append + the matching group converted into words (i.e. seventh), using a hard + coded number to words rule "H:number". Finally it will transform the + following token into an unabbreviated form (i.e. floor). + + Rules can interact by setting XML values in the token. However care + is required to avoid unintended consequences from such + interactions. Every added rule should have an example sentence in + a regression test that is processed by the rule. + + @subsection idlaktxp_pause_insertion Pause Insertion + + Once normalisation and part of speech has been determined + punctuation can then be used to decide on pause insertion. Each + punctuation character is connected with. Breaks override each other + in magnitude so a break 4 in the same position as a break 2 will + result in a break 4. Pre marked up breaks will override any break + caused by punctuation. + + @subsection idlaktxp_pos Part of Speech Tagging + + Part of speech tagging for synthesis has a different function than + from more general language processing. In general part of speech + information is only required if it can help determine + pronunciation. For this reason the POS tagger incorporated into idlak + is very simple and by no means as accurate as many state of the art + taggers. + + It relies on a four level process: + + -# Give every word the most likely tag name. + -# Apply a series of regular expressions that can change this tag to + another more likely tag name based on prefixes and suffixes. + -# Look up common words that will alter the tag to the most likely + tag for this word. + -# look up the previous tag and this word that will alter the tag to + the most likely tag for this word. + + The system is very fast and easy to train from tagged data. A + dynamic programming algorithm would, however, be superior. In + addition the current system ignores pre-normalised information, + e.g. '12' is clearly a cardinal number, 'Top Gun' is probably a name + because of capitalisation. + + In addition the system is not properly taking pauses into + consideration as indications of punctuation. + + @subsection idlaktxp_phrase Phrasing + + This module restructures the XML by putting ws and tk tokens in spt + tags. This has an effect on markup already present in the + text. Currently a tag is copied if it crosses an spt boundary. fileid + tags are maintained at a top level and force utterance breaks at + their beginning and end. + + Although not implemented as yet, it is possible to guess breaks in + long unpunctuated series of tokens using part of speech. + + @subsection idlaktxp_pron Pronunciation + + idlaktxp is a word based system. By the time we get to the + pronunciation module we should have a series of word tokens together + with some symbols. The pronunciation system has the following means + of converting these words into a series of phones representing the + pronunciation of each word or symbol. + + -# The pronunciation of a word can be over ridden by specifying it + using a \b lex tag and a \b pron attribute with a space separated + series of valid phone symbols. Syllabic liaison can also be + specified here (\sa idlaktxp_syl) + -# If the word contains non lexical symbols, read them out character + by character. Or if the attribute + -# Look the word up in a series of lexicons. In the prototype there + is only one lexicon, but in a final system we can imagine a + cascade of lexicons. A user lexicon for unusual user specific + words, a system lexicon for standard lookup, and potentially + alternative lexicons for technical terms or alternative languages + to support a bilingual system. A word may have more than one + pronunciation so the lexicon lookup will also support multiple + entries. In a final system the entry type could be chosen based + on context and POS. Alternatively it could be overridden using + markup in the input. + -# If the word is not in the lexicon apply letter to sound rules to + the letters to produce a pronunciation. The LTS system is built + offline using wagon from University of Edinburgh speech_tools + together with the lexicon. + + In future releases modules to deal with changes in pronunciation + caused by phrase structure (such as whether to choose full or + reduced forms of a word) can be added. Also an archiphone rule + system which allows phones to be elided, inserted and altered based + on word context will be required. + + + @subsection idlaktxp_syll Syllabification + + Maximal onset syllabification is used to syllabify input words. This + algorithm works by finding nuclei, potentially multiple phones with + specific stress patterns which are the nucleus of syllables. A set + of valid onsets are then applied to the phones before the nucleus to + decide where the syllable boundary should be. Material from a + previous word can be liaised to a subsequent word if the last phone + is followed by a '+' symbol. + + In future release syllabification can be over ridden by the lexicon. + +*/ diff --git a/src/doc/idlaktxp.png b/src/doc/idlaktxp.png new file mode 100644 index 00000000000..02656f1ea11 Binary files /dev/null and b/src/doc/idlaktxp.png differ diff --git a/src/doc/idlakwalkthru.dox b/src/doc/idlakwalkthru.dox new file mode 100644 index 00000000000..5efccc8728f --- /dev/null +++ b/src/doc/idlakwalkthru.dox @@ -0,0 +1,96 @@ +// doc/idlakwalkthru.dox + +// Copyright 2013 CereProc Ltd. + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at + +// http://www.apache.org/licenses/LICENSE-2.0 + +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. + + + +/** + \page idlakwalkthru A Walk through the Idlak System + + @section idlakwalkthru_intro Introduction + + Idlak is currently under construction. As elements become completed + they are added here with a brief description of their functionality + and an example of running the module or executable on some example + data. + + @section idlakwalkthru_idlaktxp Idlak Text Processing Front End + + An alpha version of this module is now available for General American + English Accent based on the CMU lexicon. A idlaktxp 'voice' is + checked in to idlak-data that convert graphemes to phonemes as well + as marking up syllable and phrase structure. Although tokenisation is + complete no normalisation rules, nor the rule interpreter has + currently been implemented. + + To try the front end: + \verbatim + src/idlaktxpbin/idlaktxp -h + \endverbatim + Will print out the options. + \verbatim + src/idlaktxpbin/idlaktxp --pretty --tpdb=idlak-data/en/ga src/idlaktxp/test_data/mod-test002.xml - + \endverbatim + Will process the text below to standard output + \verbatim + +Hello there, 1 2 3. + + \endverbatim + + See \ref idlaktxp for more information. + + @section idlakwalkthru_idlakcex Idlak Full Context Extraction + + Current approaches to parametric TTS are based on full context phone + models. These are models which do not just take into account phone + context (such as triphones and quinphones) but also take into account + many more linguistic features scuh as syllable stress, position in + phrase, part of speech etc. + + idlakcex takes input from idlaktxp and generates full context model + names for each phone in the style of those uesed in HTS. To try the + context extraction: + + \verbatim + src/idlaktxpbin/idlakcex -h + \endverbatim + + Will print out the options. + + \verbatim +src/idlaktxpbin/idlaktxp --pretty --tpdb=idlak-data/en/ga src/idlaktxp/test_data/mod-test002.xml - | src/idlaktxpbin/idlakcex --pretty --tpdb=idlak-data/en/ga - - + \endverbatim + + Will process the text below through idlaktxp and then idlakcex to + standard output + + \verbatim + +Hello there, 1 2 3. + + \endverbatim + + Full context models are added as text items for each tag. An + XML parser can be used to extract these models say for use with + HTS. For more details see \ref idlakcex and the cex definition file + used in this example idlak-data/en/ga/cex-default.xml + + @section idlakwalkthru_vbalign Voice Building: Aligner + + Coming Soon! + +*/ diff --git a/src/idlaktxp/idlak-common.h b/src/idlaktxp/idlak-common.h index 6e68243a4a4..4834e0f78e8 100644 --- a/src/idlaktxp/idlak-common.h +++ b/src/idlaktxp/idlak-common.h @@ -27,6 +27,8 @@ #include #include +#include "base/kaldi-common.h" + namespace kaldi { #define NO_INDEX -1 diff --git a/src/idlaktxp/mod-tokenise.cc b/src/idlaktxp/mod-tokenise.cc index bcfcb6e2268..1ef934411ea 100644 --- a/src/idlaktxp/mod-tokenise.cc +++ b/src/idlaktxp/mod-tokenise.cc @@ -95,7 +95,7 @@ bool TxpTokenise::Process(pugi::xml_document* input) { } if (wspace.length()) { if (token.length()) - ws = tkroot.append_child("ws"); + ws = tk.parent().insert_child_after("ws", tk); else ws = node.parent().insert_child_before("ws", node); ntxt = ws.append_child(pugi::node_pcdata); diff --git a/src/idlaktxp/test_data/mod-cex-out000.xml b/src/idlaktxp/test_data/mod-cex-out000.xml index c94bf8db53c..5fab98b34bc 100644 --- a/src/idlaktxp/test_data/mod-cex-out000.xml +++ b/src/idlaktxp/test_data/mod-cex-out000.xml @@ -1,9 +1,9 @@ -^0~0-pau+k=ae 0 0 0 0 0 PAU PAU NN 0 0 0 0 0 0 2 LLK an +^0~0-pau+k=ae 0 0 0 0 0 PAU PAU NN 0 0 0 0 0 0 2 LLK an^0~pau-k+ae=n 0 2 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^pau~k-ae+n=pau 1 1 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^k~ae-n+pau=pau 2 0 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^ae~n-pau+pau=0 0 0 1 0 0 DT PAU PAU 3 0 0 1 0 0 2 LL^0~pau-pau+ah=pau 0 0 0 0 0 PAU PAU DT 0 0 1 0 0 1 1 LL -^0~pau-k+ae=n 0 2 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^pau~k-ae+n=pau 1 1 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^k~ae-n+pau=pau 2 0 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL^ae~n-pau+pau=0 0 0 1 0 0 DT PAU PAU 3 0 0 1 0 0 2 LL^0~pau-pau+ah=pau 0 0 0 0 0 PAU PAU DT 0 0 1 0 0 1 1 LLa -^pau~pau-ah+pau=pau 0 0 0 0 0 PAU DT PAU 0 1 0 0 1 0 1 LL^pau~ah-pau+pau=0 0 0 0 0 0 DT PAU PAU 1 0 0 1 0 0 1 LL^0~pau-pau+hh=t 0 0 0 0 0 PAU PAU NN 0 0 3 0 0 1 1 LHhttp:^pau~pau-hh+t=p 0 2 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^pau~hh-t+p=pau 1 1 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^hh~t-p+pau=pau 2 0 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^t~p-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 1 0 0 1 LH^0~pau-pau+s=l 0 0 0 0 1 PAU PAU NN 0 0 4 0 0 1 1 LL/^pau~pau-s+l=ae 0 3 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^pau~s-l+ae=sh 1 2 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^s~l-ae+sh=pau 2 1 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^l~ae-sh+pau=pau 3 0 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^ae~sh-pau+pau=0 0 0 1 0 0 NN PAU PAU 4 0 0 1 0 0 1 LL^0~pau-pau+s=l 0 0 0 0 1 PAU PAU NN 0 0 4 0 0 1 1 LL/^pau~pau-s+l=ae 0 3 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^pau~s-l+ae=sh 1 2 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^s~l-ae+sh=pau 2 1 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^l~ae-sh+pau=pau 3 0 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^ae~sh-pau+pau=0 0 0 1 0 0 NN PAU PAU 4 0 0 1 0 0 1 LL^0~pau-pau+w=w 0 0 0 0 0 PAU PAU NN 0 0 3 0 0 1 1 LLwww.big.site ^pau~pau-w+w=w 0 2 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL^pau~w-w+w=pau 1 1 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL^w~w-w+pau=pau 2 0 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL^w~w-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 1 0 0 1 LL^0~pau-pau+b=ih 0 0 0 0 1 PAU PAU JJ 0 0 3 0 0 1 1 LL^pau~pau-b+ih=g 0 2 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL^pau~b-ih+g=pau 1 1 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL^b~ih-g+pau=pau 2 0 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL^ih~g-pau+pau=0 0 0 1 0 0 JJ PAU PAU 3 0 0 1 0 0 1 LL^0~pau-pau+s=ay 0 0 0 0 1 PAU PAU NN 0 0 3 0 0 1 7 LH^pau~pau-s+ay=t 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH^pau~s-ay+t=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH^s~ay-t+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH2^ay~t-t+uw=iy 0 1 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH^t~t-uw+iy=k 1 0 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH=^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 2 7 LH^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH4-2 ^l~z-f+ao=r 0 2 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH^z~f-ao+r=t 1 1 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH^f~ao-r+t=uw 2 0 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LH^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LHFULL ^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LHPower ^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 7 LHcafé ^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 7 LH^0~pau-pau+ow=k 0 0 0 0 1 PAU PAU NN 0 0 1 0 0 2 1 LH“okay” +a^pau~pau-ah+pau=pau 0 0 0 0 0 PAU DT PAU 0 1 0 0 1 0 1 LL^pau~ah-pau+pau=0 0 0 0 0 0 DT PAU PAU 1 0 0 1 0 0 1 LL^0~pau-pau+hh=t 0 0 0 0 0 PAU PAU NN 0 0 3 0 0 1 1 LH +http:^pau~pau-hh+t=p 0 2 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^pau~hh-t+p=pau 1 1 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^hh~t-p+pau=pau 2 0 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LH^t~p-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 1 0 0 1 LH^0~pau-pau+s=l 0 0 0 0 1 PAU PAU NN 0 0 4 0 0 1 1 LL/^pau~pau-s+l=ae 0 3 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^pau~s-l+ae=sh 1 2 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^s~l-ae+sh=pau 2 1 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^l~ae-sh+pau=pau 3 0 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^ae~sh-pau+pau=0 0 0 1 0 0 NN PAU PAU 4 0 0 1 0 0 1 LL^0~pau-pau+s=l 0 0 0 0 1 PAU PAU NN 0 0 4 0 0 1 1 LL/^pau~pau-s+l=ae 0 3 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^pau~s-l+ae=sh 1 2 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^s~l-ae+sh=pau 2 1 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^l~ae-sh+pau=pau 3 0 0 1 0 PAU NN PAU 0 4 0 0 1 0 1 LL^ae~sh-pau+pau=0 0 0 1 0 0 NN PAU PAU 4 0 0 1 0 0 1 LL^0~pau-pau+d=ah 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 7 9 LHwww.big.site^pau~pau-d+ah=b 0 1 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH^pau~d-ah+b=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH^l~y-uw+d=aa 1 0 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH^y~uw-d+aa=t 0 2 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH^uw~d-aa+t=b 1 1 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH^d~aa-t+b=iy 2 0 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH^aa~t-b+iy=ay 0 1 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH^t~b-iy+ay=jh 1 0 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH^b~iy-ay+jh=iy 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH^iy~ay-jh+iy=d 0 1 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH^ay~jh-iy+d=aa 1 0 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH^jh~iy-d+aa=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^iy~d-aa+t=eh 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^d~aa-t+eh=s 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^aa~t-eh+s=ay 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^t~eh-s+ay=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^eh~s-ay+t=iy 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH^s~ay-t+iy=iy 0 1 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH^ay~t-iy+iy=t 1 0 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH^t~iy-iy+t=uw 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH 2^iy~iy-t+uw=iy 0 1 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH^iy~t-uw+iy=k 1 0 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH=^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 1 9 LH^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH4^l~z-f+ao=r 0 2 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH^z~f-ao+r=t 1 1 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH^f~ao-r+t=uw 2 0 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH-2^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH FULL^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH Power^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 9 LH café^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 9 LH^0~pau-pau+ow=k 0 0 0 0 1 PAU PAU NN 0 0 1 0 0 2 1 LH “okay”^pau~pau-ow+k=ey 0 0 0 1 1 PAU NN PAU 0 1 2 0 2 0 1 LH^pau~ow-k+ey=pau 0 1 1 1 0 PAU NN PAU 1 2 0 0 2 0 1 LH^ow~k-ey+pau=pau 1 0 1 1 0 PAU NN PAU 1 2 0 0 2 0 1 LH^k~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 1 LH^0~pau-pau+ah=n 0 0 0 0 0 PAU PAU CC 0 0 3 0 0 1 3 LL -^pau~pau-ow+k=ey 0 0 0 1 1 PAU NN PAU 0 1 2 0 2 0 1 LH^pau~ow-k+ey=pau 0 1 1 1 0 PAU NN PAU 1 2 0 0 2 0 1 LH^ow~k-ey+pau=pau 1 0 1 1 0 PAU NN PAU 1 2 0 0 2 0 1 LH^k~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 1 LH^0~pau-pau+ah=n 0 0 0 0 0 PAU PAU CC 0 0 3 0 0 1 3 LLAnd ^pau~pau-ah+n=d 0 2 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL^pau~ah-n+d=ah 1 1 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL^ah~n-d+ah=n 2 0 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LLanother ^n~d-ah+n=ah 0 0 0 0 1 CC DT NN 3 1 2 1 3 2 3 LL^d~ah-n+ah=dh 0 1 0 1 0 CC DT NN 1 2 2 1 3 2 3 LL^ah~n-ah+dh=er 1 0 0 1 0 CC DT NN 1 2 2 1 3 2 3 LL^n~ah-dh+er=s 0 1 1 0 1 CC DT NN 2 2 3 1 3 2 3 LL^ah~dh-er+s=eh 1 0 1 0 1 CC DT NN 2 2 3 1 3 2 3 LLsentence. +And^pau~pau-ah+n=d 0 2 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL^pau~ah-n+d=ah 1 1 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL^ah~n-d+ah=n 2 0 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL another^n~d-ah+n=ah 0 0 0 0 1 CC DT NN 3 1 2 1 3 2 3 LL^d~ah-n+ah=dh 0 1 0 1 0 CC DT NN 1 2 2 1 3 2 3 LL^ah~n-ah+dh=er 1 0 0 1 0 CC DT NN 1 2 2 1 3 2 3 LL^n~ah-dh+er=s 0 1 1 0 1 CC DT NN 2 2 3 1 3 2 3 LL^ah~dh-er+s=eh 1 0 1 0 1 CC DT NN 2 2 3 1 3 2 3 LL sentence.^dh~er-s+eh=n 0 2 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^er~s-eh+n=t 1 1 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^s~eh-n+t=ah 2 0 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^eh~n-t+ah=n 0 3 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^n~t-ah+n=s 1 2 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^t~ah-n+s=pau 2 1 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^ah~n-s+pau=0 3 0 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^n~s-pau+0=0 0 0 0 0 0 NN PAU PAU 4 0 0 2 0 0 3 LL -^dh~er-s+eh=n 0 2 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^er~s-eh+n=t 1 1 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^s~eh-n+t=ah 2 0 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL^eh~n-t+ah=n 0 3 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^n~t-ah+n=s 1 2 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^t~ah-n+s=pau 2 1 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^ah~n-s+pau=0 3 0 1 0 0 DT NN PAU 3 4 0 3 2 0 3 LL^n~s-pau+0=0 0 0 0 0 0 NN PAU PAU 4 0 0 2 0 0 3 LL \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-cex-out001.xml b/src/idlaktxp/test_data/mod-cex-out001.xml index adc2f544041..15a41812819 100644 --- a/src/idlaktxp/test_data/mod-cex-out001.xml +++ b/src/idlaktxp/test_data/mod-cex-out001.xml @@ -1,22 +1,22 @@ -^0~0-pau+hh=eh 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 2 8 LLHelen ^0~pau-hh+eh=l 0 1 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL^pau~hh-eh+l=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL^hh~eh-l+ah=n 0 2 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL^eh~l-ah+n=d 1 1 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL^l~ah-n+d=ah 2 0 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LLDuncan ^ah~n-d+ah=ng 0 2 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^n~d-ah+ng=k 1 1 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL^ng~k-ah+n=w 1 1 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL^k~ah-n+w=aa 2 0 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LLwas ^ah~n-w+aa=z 0 2 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL^n~w-aa+z=t 1 1 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL^w~aa-z+t=r 2 0 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LLtried ^aa~z-t+r=ay 0 3 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^z~t-r+ay=d 1 2 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^t~r-ay+d=ah 2 1 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^r~ay-d+ah=n 3 0 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LLunder ^ay~d-ah+n=d 0 1 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL^d~ah-n+d=er 1 0 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL^ah~n-d+er=dh 0 1 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LL^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LLthe ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 8 LLWitchcraft ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 8 LLAct -^f~t-ae+k=t 0 2 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^t~ae-k+t=pau 1 1 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^ae~k-t+pau=pau 2 0 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^k~t-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 8 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 29 LLThe ^pau~pau-dh+ah=f 0 1 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL^pau~dh-ah+f=ae 1 0 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LLfamily ^dh~ah-f+ae=m 0 1 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL^ah~f-ae+m=ah 1 0 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL^f~ae-m+ah=l 0 1 1 0 0 DT RB IN 2 2 2 1 3 1 29 LL^ae~m-ah+l=iy 1 0 1 0 0 DT RB IN 2 2 2 1 3 1 29 LL^m~ah-l+iy=ah 0 1 0 0 1 DT RB IN 2 2 2 1 3 1 29 LL^ah~l-iy+ah=v 1 0 0 0 1 DT RB IN 2 2 2 1 3 1 29 LLof ^l~iy-ah+v=dh 0 1 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL^iy~ah-v+dh=ah 1 0 0 1 0 RB IN DT 2 2 2 3 1 1 29 LLthe ^ah~v-dh+ah=l 0 1 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL^v~dh-ah+l=ae 1 0 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LLlast ^dh~ah-l+ae=s 0 3 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^ah~l-ae+s=t 1 2 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^l~ae-s+t=p 2 1 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^ae~s-t+p=er 3 0 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LLperson ^s~t-p+er=s 0 1 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL^t~p-er+s=ah 1 0 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL^p~er-s+ah=n 0 2 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL^er~s-ah+n=ih 1 1 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL^s~ah-n+ih=n 2 0 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LLin ^ah~n-ih+n=dh 0 1 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL^n~ih-n+dh=ah 1 0 0 0 0 NN IN DT 3 2 2 2 1 1 29 LLthe ^ih~n-dh+ah=uw 0 1 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL^n~dh-ah+uw=k 1 0 0 0 0 IN DT NN 2 2 2 1 1 1 29 LLUK ^dh~ah-uw+k=t 0 1 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL^ah~uw-k+t=uw 1 0 0 0 1 DT NN TO 2 2 2 1 1 1 29 LLto ^uw~k-t+uw=b 0 1 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL^k~t-uw+b=iy 1 0 0 1 1 NN TO VB 2 2 2 1 1 1 29 LLbe ^t~uw-b+iy=p 0 1 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL^uw~b-iy+p=r 1 0 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LLprosecuted ^b~iy-p+r=aa 0 2 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^iy~p-r+aa=s 1 1 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^p~r-aa+s=ih 2 0 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^r~aa-s+ih=k 0 1 1 0 1 VB VVN IN 3 2 3 1 4 2 29 LL^aa~s-ih+k=y 1 0 1 0 1 VB VVN IN 3 2 3 1 4 2 29 LL^s~ih-k+y=uw 0 2 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^ih~k-y+uw=t 1 1 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^k~y-uw+t=ih 2 0 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^y~uw-t+ih=d 0 2 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL^uw~t-ih+d=ah 1 1 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL^t~ih-d+ah=n 2 0 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LLunder ^ih~d-ah+n=d 0 1 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL^d~ah-n+d=er 1 0 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL^ah~n-d+er=dh 0 1 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LL^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LLthe ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 29 LLWitchcraft ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 29 LLAct ^f~t-ae+k=t 0 2 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL^t~ae-k+t=w 1 1 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL^ae~k-t+w=ih 2 0 1 1 1 NN NN MD 5 3 3 2 1 1 29 LLwill ^k~t-w+ih=l 0 2 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL^t~w-ih+l=m 1 1 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL^w~ih-l+m=aa 2 0 1 1 1 NN MD NN 3 3 4 1 1 1 29 LLmark ^ih~l-m+aa=r 0 3 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^l~m-aa+r=k 1 2 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^m~aa-r+k=dh 2 1 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^aa~r-k+dh=ah 3 0 1 1 0 MD NN DT 3 4 2 1 1 1 29 LLthe ^r~k-dh+ah=f 0 1 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL^k~dh-ah+f=ay 1 0 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL50th ^dh~ah-f+ay=v 0 1 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ah~f-ay+v=ow 1 0 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL^f~ay-v+ow=t 0 1 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ay~v-ow+t=iy 1 0 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^v~ow-t+iy=ey 0 1 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ow~t-iy+ey=ch 1 0 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^t~iy-ey+ch=ae 0 1 1 1 1 DT NN NN 2 2 1 1 4 5 29 LL^iy~ey-ch+ae=n 1 0 1 1 1 DT NN NN 2 2 1 1 4 5 29 LLanniversary ^ey~ch-ae+n=ah 0 0 1 1 0 NN NN IN 2 1 2 4 5 1 29 LL^ch~ae-n+ah=v 0 1 1 0 1 NN NN IN 1 2 2 4 5 1 29 LL^ae~n-ah+v=er 1 0 1 0 1 NN NN IN 1 2 2 4 5 1 29 LL^n~ah-v+er=s 0 1 0 1 0 NN NN IN 2 2 2 4 5 1 29 LL^ah~v-er+s=er 1 0 0 1 0 NN NN IN 2 2 2 4 5 1 29 LL^v~er-s+er=iy 0 1 1 0 0 NN NN IN 2 2 1 4 5 1 29 LL^er~s-er+iy=ah 1 0 1 0 0 NN NN IN 2 2 1 4 5 1 29 LL^s~er-iy+ah=v 0 0 0 0 1 NN NN IN 2 1 2 4 5 1 29 LLof ^er~iy-ah+v=hh 0 1 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL^iy~ah-v+hh=er 1 0 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LLher ^ah~v-hh+er=d 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL^v~hh-er+d=eh 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LLdeath ^hh~er-d+eh=th 0 2 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL^er~d-eh+th=b 1 1 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL^d~eh-th+b=ay 2 0 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LLby ^eh~th-b+ay=k 0 1 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL^th~b-ay+k=ao 1 0 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LLcalling ^b~ay-k+ao=l 0 1 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL^ay~k-ao+l=ih 1 0 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL^k~ao-l+ih=ng 0 2 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL^ao~l-ih+ng=f 1 1 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL^l~ih-ng+f=ao 2 0 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LLfor ^ih~ng-f+ao=r 0 2 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL^ng~f-ao+r=hh 1 1 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL^f~ao-r+hh=er 2 0 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LLher ^ao~r-hh+er=p 0 1 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL^r~hh-er+p=aa 1 0 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LLpardon. -^hh~er-p+aa=r 0 2 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^er~p-aa+r=d 1 1 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^p~aa-r+d=ah 2 0 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^aa~r-d+ah=n 0 2 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^r~d-ah+n=pau 1 1 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^d~ah-n+pau=pau 2 0 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 29 LL^0~pau-pau+m=iy 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 3 3 LHMedium ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^m~iy-d+iy=ah 0 1 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^iy~d-iy+ah=m 1 0 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^d~iy-ah+m=hh 0 1 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH^iy~ah-m+hh=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LHHelen ^ah~m-hh+eh=l 0 1 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH^m~hh-eh+l=ah 1 0 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH^hh~eh-l+ah=n 0 2 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH^eh~l-ah+n=d 1 1 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH^l~ah-n+d=ah 2 0 1 0 1 NN NN NN 2 3 3 3 2 2 3 LHDuncan, ^ah~n-d+ah=ng 0 2 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^n~d-ah+ng=k 1 1 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^d~ah-ng+k=ah 2 0 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^ah~ng-k+ah=n 0 2 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^ng~k-ah+n=pau 1 1 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^k~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 3 LH^0~pau-pau+hh=uw 0 0 0 0 1 PAU PAU WP 0 0 2 0 0 1 5 LHwho ^pau~pau-hh+uw=w 0 1 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH^pau~hh-uw+w=aa 1 0 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LHwas ^hh~uw-w+aa=z 0 2 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH^uw~w-aa+z=b 1 1 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH^w~aa-z+b=ao 2 0 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LHborn ^aa~z-b+ao=r 0 3 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^z~b-ao+r=n 1 2 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^b~ao-r+n=ih 2 1 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^ao~r-n+ih=n 3 0 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LHin ^r~n-ih+n=k 0 1 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH^n~ih-n+k=ae 1 0 1 0 1 NN IN NN 4 2 2 1 1 3 5 LHCallander, ^ih~n-k+ae=l 0 1 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH^n~k-ae+l=ah 1 0 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH^k~ae-l+ah=n 0 2 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^ae~l-ah+n=d 1 1 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^l~ah-n+d=er 2 0 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^ah~n-d+er=pau 0 1 0 0 0 IN NN PAU 3 2 0 1 3 0 5 LH^n~d-er+pau=pau 1 0 0 0 0 IN NN PAU 3 2 0 1 3 0 5 LH^d~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 3 0 0 5 LH^0~pau-pau+p=er 0 0 0 0 1 PAU PAU NN 0 0 5 0 0 3 1 LHPerthshire, ^pau~pau-p+er=th 0 4 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^pau~p-er+th=hh 1 3 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^p~er-th+hh=s 2 2 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^er~th-hh+s=hh 3 1 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^th~hh-s+hh=iy 4 0 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^hh~s-hh+iy=r 0 1 1 1 1 PAU NN PAU 5 2 2 0 3 0 1 LH^s~hh-iy+r=eh 1 0 1 1 1 PAU NN PAU 5 2 2 0 3 0 1 LH^hh~iy-r+eh=pau 0 1 1 1 0 PAU NN PAU 2 2 0 0 3 0 1 LH^iy~r-eh+pau=pau 1 0 1 1 0 PAU NN PAU 2 2 0 0 3 0 1 LH^r~eh-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 3 0 0 1 LH^0~pau-pau+w=aa 0 0 0 0 1 PAU PAU VBD 0 0 3 0 0 1 9 LLwas ^pau~pau-w+aa=z 0 2 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL^pau~w-aa+z=ih 1 1 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL^w~aa-z+ih=m 2 0 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LLimprisoned ^aa~z-ih+m=p 0 1 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL^z~ih-m+p=r 1 0 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL^ih~m-p+r=ih 0 2 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^m~p-r+ih=z 1 1 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^p~r-ih+z=ah 2 0 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^r~ih-z+ah=n 0 3 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^ih~z-ah+n=d 1 2 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^z~ah-n+d=y 2 1 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^ah~n-d+y=uw 3 0 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LLusing ^n~d-y+uw=z 0 1 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL^d~y-uw+z=ih 1 0 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL^y~uw-z+ih=ng 0 2 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL^uw~z-ih+ng=dh 1 1 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL^z~ih-ng+dh=ah 2 0 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LLthe ^ih~ng-dh+ah=l 0 1 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL^ng~dh-ah+l=ao 1 0 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LLlaw ^dh~ah-l+ao=d 0 1 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL^ah~l-ao+d=uh 1 0 0 1 1 DT NN IN 2 2 2 1 1 2 9 LLduring ^l~ao-d+uh=r 0 1 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL^ao~d-uh+r=ih 1 0 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL^d~uh-r+ih=ng 0 2 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL^uh~r-ih+ng=w 1 1 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL^r~ih-ng+w=er 2 0 1 0 1 NN IN NN 2 3 4 1 2 1 9 LLWorld ^ih~ng-w+er=l 0 3 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^ng~w-er+l=d 1 2 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^w~er-l+d=w 2 1 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^er~l-d+w=ao 3 0 0 1 1 IN NN NN 3 4 3 2 1 1 9 LLWar ^l~d-w+ao=r 0 2 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL^d~w-ao+r=iy 1 1 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL^w~ao-r+iy=ih 2 0 1 1 1 NN NN NN 4 3 1 1 1 2 9 LLII. -^ao~r-iy+ih=pau 0 0 1 1 0 NN NN PAU 3 1 1 1 2 0 9 LL^r~iy-ih+pau=pau 0 0 1 0 0 NN NN PAU 1 1 0 1 2 0 9 LL^iy~ih-pau+pau=0 0 0 0 0 0 NN PAU PAU 1 0 0 2 0 0 9 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 26 LLShe ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LLwas ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL^iy~w-aa+z=t 1 1 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL^w~aa-z+t=aa 2 0 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LLtargeted ^aa~z-t+aa=r 0 2 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^z~t-aa+r=g 1 1 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^t~aa-r+g=ah 2 0 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^aa~r-g+ah=t 0 1 1 0 0 VBD VVN IN 3 2 3 1 3 1 26 LL^r~g-ah+t=ih 1 0 1 0 0 VBD VVN IN 3 2 3 1 3 1 26 LL^g~ah-t+ih=d 0 2 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL^ah~t-ih+d=b 1 1 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL^t~ih-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LLby ^ih~d-b+ay=dh 0 1 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL^d~b-ay+dh=ah 1 0 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LLthe ^b~ay-dh+ah=g 0 1 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL^ay~dh-ah+g=ah 1 0 1 0 1 IN DT NN 2 2 2 1 1 3 26 LLgovernment ^dh~ah-g+ah=v 0 1 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL^ah~g-ah+v=er 1 0 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL^g~ah-v+er=m 0 1 1 0 0 DT NN IN 2 2 4 1 3 2 26 LL^ah~v-er+m=ah 1 0 1 0 0 DT NN IN 2 2 4 1 3 2 26 LL^v~er-m+ah=n 0 3 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^er~m-ah+n=t 1 2 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^m~ah-n+t=ae 2 1 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^ah~n-t+ae=f 3 0 0 0 1 DT NN IN 2 4 2 1 3 2 26 LLafter ^n~t-ae+f=t 0 1 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL^t~ae-f+t=er 1 0 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL^ae~f-t+er=r 0 1 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LL^f~t-er+r=ih 1 0 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LLrevealing ^t~er-r+ih=v 0 1 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL^er~r-ih+v=iy 1 0 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL^r~ih-v+iy=l 0 1 0 1 0 IN VVG TO 2 2 3 2 3 1 26 LL^ih~v-iy+l=ih 1 0 0 1 0 IN VVG TO 2 2 3 2 3 1 26 LL^v~iy-l+ih=ng 0 2 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL^iy~l-ih+ng=t 1 1 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL^l~ih-ng+t=uw 2 0 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LLto ^ih~ng-t+uw=ah 0 1 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL^ng~t-uw+ah=s 1 0 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LLa ^t~uw-ah+s=ey 0 0 1 0 1 TO DT NN 2 1 2 1 1 2 26 LLséance ^uw~ah-s+ey=aa 0 1 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL^ah~s-ey+aa=n 1 0 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL^s~ey-aa+n=s 0 2 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL^ey~aa-n+s=aa 1 1 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL^aa~n-s+aa=d 2 0 1 0 1 DT NN NN 2 3 1 1 2 3 26 LLaudience ^n~s-aa+d=iy 0 0 0 1 0 NN NN IN/that 3 1 2 2 3 1 26 LL^s~aa-d+iy=ah 0 1 1 0 0 NN NN IN/that 1 2 3 2 3 1 26 LL^aa~d-iy+ah=n 1 0 1 0 0 NN NN IN/that 1 2 3 2 3 1 26 LL^d~iy-ah+n=s 0 2 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL^iy~ah-n+s=dh 1 1 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL^ah~n-s+dh=ae 2 0 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LLthat ^n~s-dh+ae=t 0 2 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL^s~dh-ae+t=ah 1 1 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL^dh~ae-t+ah=w 2 0 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LLa ^ae~t-ah+w=ao 0 0 1 0 1 IN/that DT NN 3 1 3 1 1 2 26 LLwarship ^t~ah-w+ao=r 0 2 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^ah~w-ao+r=sh 1 1 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^w~ao-r+sh=ih 2 0 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^ao~r-sh+ih=p 0 2 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL^r~sh-ih+p=hh 1 1 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL^sh~ih-p+hh=ae 2 0 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LLhad ^ih~p-hh+ae=d 0 2 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL^p~hh-ae+d=s 1 1 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL^hh~ae-d+s=ah 2 0 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LLsunk ^ae~d-s+ah=ng 0 3 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^d~s-ah+ng=k 1 2 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^s~ah-ng+k=b 2 1 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^ah~ng-k+b=ih 3 0 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LLbefore ^ng~k-b+ih=f 0 1 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL^k~b-ih+f=ao 1 0 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL^b~ih-f+ao=r 0 2 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL^ih~f-ao+r=dh 1 1 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL^f~ao-r+dh=ah 2 0 0 1 0 NN IN DT 2 3 2 1 2 1 26 LLthe ^ao~r-dh+ah=n 0 1 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL^r~dh-ah+n=uw 1 0 1 0 1 IN DT NN 3 2 3 2 1 1 26 LLnews ^dh~ah-n+uw=z 0 2 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL^ah~n-uw+z=hh 1 1 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL^n~uw-z+hh=ae 2 0 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LLhad ^uw~z-hh+ae=d 0 2 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL^z~hh-ae+d=b 1 1 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL^hh~ae-d+b=ih 2 0 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LLbeen ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL^d~b-ih+n=r 1 1 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL^b~ih-n+r=iy 2 0 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LLreleased ^ih~n-r+iy=l 0 1 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL^n~r-iy+l=iy 1 0 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL^r~iy-l+iy=s 0 3 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^iy~l-iy+s=t 1 2 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^l~iy-s+t=t 2 1 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^iy~s-t+t=uw 3 0 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LLto ^s~t-t+uw=dh 0 1 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL^t~t-uw+dh=ah 1 0 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LLthe ^t~uw-dh+ah=p 0 1 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL^uw~dh-ah+p=ah 1 0 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LLpublic. -^dh~ah-p+ah=b 0 1 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL^ah~p-ah+b=l 1 0 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL^p~ah-b+l=ih 0 3 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^ah~b-l+ih=k 1 2 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^b~l-ih+k=pau 2 1 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^l~ih-k+pau=pau 3 0 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^ih~k-pau+pau=0 0 0 0 0 0 JJ PAU PAU 4 0 0 2 0 0 26 LL^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 10 LLHer ^pau~pau-hh+er=jh 0 1 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LL^pau~hh-er+jh=iy 1 0 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LLgrand-daughter ^hh~er-jh+iy=aa 0 1 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL^er~jh-iy+aa=r 1 0 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL^jh~iy-aa+r=ah 0 0 1 1 0 PP$ NN VBZ 2 1 2 1 7 1 10 LL^iy~aa-r+ah=eh 0 1 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL^aa~r-ah+eh=n 1 0 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL^r~ah-eh+n=d 0 1 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^ah~eh-n+d=iy 1 0 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^eh~n-d+iy=d 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^n~d-iy+d=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^d~iy-d+iy=ah 0 1 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL^iy~d-iy+ah=y 1 0 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL^d~iy-ah+y=uw 0 0 1 0 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL^iy~ah-y+uw=jh 0 1 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL^ah~y-uw+jh=iy 1 0 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL^y~uw-jh+iy=ey 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^uw~jh-iy+ey=ch 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^jh~iy-ey+ch=t 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^iy~ey-ch+t=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL^ey~ch-t+iy=iy 0 1 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL^ch~t-iy+iy=aa 1 0 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL^t~iy-iy+aa=r 0 0 1 1 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL^iy~iy-aa+r=ih 0 1 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL^iy~aa-r+ih=z 1 0 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LLis ^aa~r-ih+z=p 0 1 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LL^r~ih-z+p=aa 1 0 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LLparticularly ^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LL^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LLangry ^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 10 LLat ^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 10 LL^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 10 LLthe ^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LL^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LLaccusations ^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 10 LL^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LLof ^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LL^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LLtreason. -^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 10 LL^0~pau-pau+m=eh 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 2 2 LHMary ^pau~pau-m+eh=r 0 1 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH^pau~m-eh+r=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH^m~eh-r+iy=m 0 1 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LH^eh~r-iy+m=aa 1 0 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LHMartin, ^r~iy-m+aa=r 0 2 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^iy~m-aa+r=t 1 1 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^m~aa-r+t=ah 2 0 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^aa~r-t+ah=n 0 2 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^r~t-ah+n=pau 1 1 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^t~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 2 LH^0~pau-pau+ah=v 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 1 2 LHof ^pau~pau-ah+v=eh 0 1 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH^pau~ah-v+eh=d 1 0 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LHEdinburgh, ^ah~v-eh+d=ah 0 0 1 1 0 IN NN PAU 2 1 3 1 4 0 2 LH^v~eh-d+ah=n 0 2 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^eh~d-ah+n=b 1 1 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^d~ah-n+b=er 2 0 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^ah~n-b+er=ow 0 1 0 0 0 IN NN PAU 3 2 1 1 4 0 2 LH^n~b-er+ow=pau 1 0 0 0 0 IN NN PAU 3 2 1 1 4 0 2 LH^b~er-ow+pau=pau 0 0 0 0 0 IN NN PAU 2 1 0 1 4 0 2 LH^er~ow-pau+pau=0 0 0 0 0 0 NN PAU PAU 1 0 0 4 0 0 2 LH^0~pau-pau+s=eh 0 0 0 0 1 PAU PAU VVD 0 0 3 0 0 1 10 LLsaid ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL^pau~s-eh+d=m 1 1 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL^s~eh-d+m=iy 2 0 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LLMrs ^eh~d-m+iy=s 0 1 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL^d~m-iy+s=iy 1 0 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL^m~iy-s+iy=s 0 2 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL^iy~s-iy+s=d 1 1 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL^s~iy-s+d=ah 2 0 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LLDuncan ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^s~d-ah+ng=k 1 1 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL^ng~k-ah+n=hh 1 1 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LLhad ^ah~n-hh+ae=d 0 2 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL^n~hh-ae+d=b 1 1 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL^hh~ae-d+b=ih 2 0 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LLbeen ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL^d~b-ih+n=ah 1 1 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL^b~ih-n+ah=k 2 0 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LLaccused ^ih~n-ah+k=y 0 0 1 0 1 VBN VVN IN 3 1 5 1 2 1 10 LL^n~ah-k+y=uw 0 4 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^ah~k-y+uw=z 1 3 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^k~y-uw+z=d 2 2 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^y~uw-z+d=ah 3 1 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^uw~z-d+ah=v 4 0 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LLof ^z~d-ah+v=b 0 1 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL^d~ah-v+b=iy 1 0 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LLbeing ^ah~v-b+iy=ih 0 1 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL^v~b-iy+ih=ng 1 0 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL^b~iy-ih+ng=ah 0 1 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LL^iy~ih-ng+ah=t 1 0 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LLa ^ih~ng-ah+t=r 0 0 0 0 1 VBG DT NN 2 1 3 2 1 2 10 LLtraitor. -^ng~ah-t+r=ey 0 2 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^ah~t-r+ey=t 1 1 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^t~r-ey+t=er 2 0 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^r~ey-t+er=pau 0 1 1 0 0 DT NN PAU 3 2 0 1 2 0 10 LL^ey~t-er+pau=pau 1 0 1 0 0 DT NN PAU 3 2 0 1 2 0 10 LL^t~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 10 LL^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 13 LL"When ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL^pau~w-eh+n=sh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL^w~eh-n+sh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LLshe ^eh~n-sh+iy=f 0 1 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL^n~sh-iy+f=er 1 0 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LLfirst ^sh~iy-f+er=s 0 3 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^iy~f-er+s=t 1 2 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^f~er-s+t=k 2 1 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^er~s-t+k=ey 3 0 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LLcame ^s~t-k+ey=m 0 2 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL^t~k-ey+m=b 1 1 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL^k~ey-m+b=ae 2 0 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LLback ^ey~m-b+ae=k 0 2 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL^m~b-ae+k=hh 1 1 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL^b~ae-k+hh=ow 2 0 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LLhome ^ae~k-hh+ow=m 0 2 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL^k~hh-ow+m=ae 1 1 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL^hh~ow-m+ae=f 2 0 1 1 1 NN NN IN 3 3 2 1 1 2 13 LLafter ^ow~m-ae+f=t 0 1 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL^m~ae-f+t=er 1 0 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL^ae~f-t+er=p 0 1 1 0 1 NN IN NN 2 2 3 1 2 2 13 LL^f~t-er+p=r 1 0 1 0 1 NN IN NN 2 2 3 1 2 2 13 LLprison ^t~er-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^er~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL^ih~z-ah+n=sh 1 1 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 2 2 1 13 LLshe ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LLwas ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL^iy~w-aa+z=n 1 1 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL^w~aa-z+n=eh 2 0 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LLnever ^aa~z-n+eh=v 0 1 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL^z~n-eh+v=er 1 0 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL^n~eh-v+er=dh 0 1 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LL^eh~v-er+dh=ah 1 0 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LLthe ^v~er-dh+ah=s 0 1 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL^er~dh-ah+s=ey 1 0 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LLsame. -^dh~ah-s+ey=m 0 2 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^ah~s-ey+m=pau 1 1 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^s~ey-m+pau=pau 2 0 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^ey~m-pau+pau=0 0 0 1 0 0 JJ PAU PAU 3 0 0 1 0 0 13 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LL"She ^pau~pau-sh+iy=ao 0 1 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL^pau~sh-iy+ao=l 1 0 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LLalways ^sh~iy-ao+l=w 0 1 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL^iy~ao-l+w=ey 1 0 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL^ao~l-w+ey=z 0 2 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL^l~w-ey+z=hh 1 1 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL^w~ey-z+hh=ae 2 0 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LLhad ^ey~z-hh+ae=d 0 2 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL^z~hh-ae+d=ah 1 1 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL^hh~ae-d+ah=b 2 0 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LLa ^ae~d-ah+b=ih 0 0 1 0 1 VHD DT NN 3 1 3 1 1 1 17 LLbit ^d~ah-b+ih=t 0 2 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL^ah~b-ih+t=ah 1 1 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL^b~ih-t+ah=v 2 0 0 1 1 DT NN IN 1 3 2 1 1 1 17 LLof ^ih~t-ah+v=ah 0 1 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL^t~ah-v+ah=g 1 0 1 1 0 NN IN DT 3 2 1 1 1 1 17 LLa ^ah~v-ah+g=l 0 0 1 0 1 IN DT NN 2 1 3 1 1 1 17 LLglow ^v~ah-g+l=ow 0 2 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL^ah~g-l+ow=ah 1 1 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL^g~l-ow+ah=b 2 0 0 1 0 DT NN IN 1 3 1 1 1 2 17 LLabout ^l~ow-ah+b=aw 0 0 1 0 1 NN IN PP$ 3 1 3 1 2 1 17 LL^ow~ah-b+aw=t 0 2 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL^ah~b-aw+t=hh 1 1 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL^b~aw-t+hh=er 2 0 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LLher ^aw~t-hh+er=b 0 1 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL^t~hh-er+b=ah 1 0 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LLbut ^hh~er-b+ah=t 0 2 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL^er~b-ah+t=sh 1 1 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL^b~ah-t+sh=iy 2 0 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LLshe ^ah~t-sh+iy=s 0 1 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL^t~sh-iy+s=iy 1 0 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LLseemed ^sh~iy-s+iy=m 0 3 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^iy~s-iy+m=d 1 2 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^s~iy-m+d=t 2 1 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^iy~m-d+t=uw 3 0 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LLto ^m~d-t+uw=hh 0 1 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL^d~t-uw+hh=ae 1 0 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LLhave ^t~uw-hh+ae=v 0 2 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL^uw~hh-ae+v=l 1 1 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL^hh~ae-v+l=ao 2 0 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LLlost ^ae~v-l+ao=s 0 3 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^v~l-ao+s=t 1 2 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^l~ao-s+t=dh 2 1 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^ao~s-t+dh=ae 3 0 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LLthat. -^s~t-dh+ae=t 0 2 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^t~dh-ae+t=pau 1 1 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^dh~ae-t+pau=pau 2 0 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^ae~t-pau+pau=0 0 0 1 0 0 IN/that PAU PAU 3 0 0 1 0 0 17 LL^0~pau-pau+s=ah 0 0 0 0 1 PAU PAU DT 0 0 3 0 0 1 6 LL"Some ^pau~pau-s+ah=m 0 2 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL^pau~s-ah+m=p 1 1 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL^s~ah-m+p=iy 2 0 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LLpeople ^ah~m-p+iy=p 0 1 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL^m~p-iy+p=ah 1 0 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL^p~iy-p+ah=l 0 2 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL^iy~p-ah+l=s 1 1 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL^p~ah-l+s=eh 2 0 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LLsaid ^ah~l-s+eh=d 0 2 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL^l~s-eh+d=ih 1 1 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL^s~eh-d+ih=t 2 0 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LLit ^eh~d-ih+t=w 0 1 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL^d~ih-t+w=aa 1 0 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LLwas ^ih~t-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL^t~w-aa+z=t 1 1 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL^w~aa-z+t=r 2 0 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LLtreason. ^aa~z-t+r=iy 0 2 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^z~t-r+iy=z 1 1 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^t~r-iy+z=ah 2 0 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^r~iy-z+ah=n 0 2 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^iy~z-ah+n=pau 1 1 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^z~ah-n+pau=pau 2 0 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 6 LL^0~pau-pau+m=ay 0 0 0 0 1 PAU PAU PP$ 0 0 2 0 0 1 25 LLMy ^pau~pau-m+ay=g 0 1 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL^pau~m-ay+g=r 1 0 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LLgrandmother ^m~ay-g+r=ae 0 4 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^ay~g-r+ae=n 1 3 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^g~r-ae+n=d 2 2 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^r~ae-n+d=m 3 1 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^ae~n-d+m=ah 4 0 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^n~d-m+ah=dh 0 1 1 1 0 PP$ NN VHD 5 2 2 1 3 1 25 LL^d~m-ah+dh=er 1 0 1 1 0 PP$ NN VHD 5 2 2 1 3 1 25 LL^m~ah-dh+er=hh 0 1 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LL^ah~dh-er+hh=ae 1 0 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LLhad ^dh~er-hh+ae=d 0 2 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL^er~hh-ae+d=t 1 1 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL^hh~ae-d+t=uw 2 0 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LLtwo ^ae~d-t+uw=s 0 1 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL^d~t-uw+s=ah 1 0 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LLsons ^t~uw-s+ah=n 0 3 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^uw~s-ah+n=z 1 2 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^s~ah-n+z=ah 2 1 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^ah~n-z+ah=n 3 0 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LLand ^n~z-ah+n=d 0 2 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL^z~ah-n+d=t 1 1 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL^ah~n-d+t=uw 2 0 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LLtwo ^n~d-t+uw=s 0 1 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL^d~t-uw+s=ah 1 0 0 1 1 CC CD NN 3 2 3 1 1 1 25 LLson ^t~uw-s+ah=n 0 2 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL^uw~s-ah+n=ih 1 1 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL^s~ah-n+ih=n 2 0 1 1 0 CD NN IN 2 3 2 1 1 1 25 LLin ^ah~n-ih+n=l 0 1 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL^n~ih-n+l=ao 1 0 1 0 1 NN IN NN 3 2 3 1 1 1 25 LLlaws ^ih~n-l+ao=z 0 2 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL^n~l-ao+z=ih 1 1 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL^l~ao-z+ih=n 2 0 0 1 0 IN NN IN 2 3 2 1 1 1 25 LLin ^ao~z-ih+n=dh 0 1 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL^z~ih-n+dh=ah 1 0 1 0 0 NN IN DT 3 2 2 1 1 1 25 LLthe ^ih~n-dh+ah=f 0 1 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL^n~dh-ah+f=ao 1 0 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LLforces ^dh~ah-f+ao=r 0 2 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^ah~f-ao+r=s 1 1 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^f~ao-r+s=ih 2 0 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^ao~r-s+ih=z 0 2 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL^r~s-ih+z=ah 1 1 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL^s~ih-z+ah=n 2 0 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL... and ^ih~z-ah+n=d 0 2 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL^z~ah-n+d=dh 1 1 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL^ah~n-d+dh=eh 2 0 0 0 1 MD CC EX 3 3 3 0 1 1 25 LLthere ^n~d-dh+eh=r 0 2 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL^d~dh-eh+r=ih 1 1 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL^dh~eh-r+ih=z 2 0 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LLis ^eh~r-ih+z=n 0 1 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL^r~ih-z+n=ow 1 0 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LLno ^ih~z-n+ow=w 0 1 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL^z~n-ow+w=ey 1 0 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LLway ^n~ow-w+ey=sh 0 1 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL^ow~w-ey+sh=iy 1 0 1 1 1 DT NN PP 2 2 2 1 1 1 25 LLshe ^w~ey-sh+iy=w 0 1 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL^ey~sh-iy+w=uh 1 0 1 1 1 NN PP MD 2 2 3 1 1 1 25 LLwould ^sh~iy-w+uh=d 0 2 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL^iy~w-uh+d=hh 1 1 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL^w~uh-d+hh=ae 2 0 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LLhave ^uh~d-hh+ae=v 0 2 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL^d~hh-ae+v=g 1 1 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL^hh~ae-v+g=ih 2 0 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LLgiven ^ae~v-g+ih=v 0 1 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL^v~g-ih+v=ah 1 0 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL^g~ih-v+ah=n 0 2 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL^ih~v-ah+n=eh 1 1 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL^v~ah-n+eh=n 2 0 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LLanybody ^ah~n-eh+n=iy 0 0 0 1 0 VVN NN NN 3 1 2 2 4 4 25 LL^n~eh-n+iy=b 0 1 1 0 0 VVN NN NN 1 2 2 2 4 4 25 LL^eh~n-iy+b=ah 1 0 1 0 0 VVN NN NN 1 2 2 2 4 4 25 LL^n~iy-b+ah=d 0 1 0 0 0 VVN NN NN 2 2 2 2 4 4 25 LL^iy~b-ah+d=iy 1 0 0 0 0 VVN NN NN 2 2 2 2 4 4 25 LL^b~ah-d+iy=ih 0 1 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LL^ah~d-iy+ih=n 1 0 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LLinformation." -^d~iy-ih+n=f 0 1 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL^iy~ih-n+f=er 1 0 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL^ih~n-f+er=m 0 1 1 0 1 NN NN PAU 2 2 2 4 4 0 25 LL^n~f-er+m=ey 1 0 1 0 1 NN NN PAU 2 2 2 4 4 0 25 LL^f~er-m+ey=sh 0 1 0 1 0 NN NN PAU 2 2 3 4 4 0 25 LL^er~m-ey+sh=ah 1 0 0 1 0 NN NN PAU 2 2 3 4 4 0 25 LL^m~ey-sh+ah=n 0 2 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^ey~sh-ah+n=pau 1 1 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^sh~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 4 0 0 25 LL^0~pau-pau+m=iy 0 0 0 0 0 PAU PAU NN 0 0 2 0 0 2 12 LHMrs ^pau~pau-m+iy=s 0 1 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH^pau~m-iy+s=iy 1 0 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH^m~iy-s+iy=s 0 2 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH^iy~s-iy+s=d 1 1 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH^s~iy-s+d=ah 2 0 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LHDuncan ^iy~s-d+ah=ng 0 2 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^s~d-ah+ng=k 1 1 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^d~ah-ng+k=ah 2 0 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^ah~ng-k+ah=n 0 2 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH^ng~k-ah+n=b 1 1 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH^k~ah-n+b=ih 2 0 1 0 0 NN NN NN 3 3 2 2 2 2 12 LHbecame ^ah~n-b+ih=k 0 1 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH^n~b-ih+k=ey 1 0 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH^b~ih-k+ey=m 0 2 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH^ih~k-ey+m=w 1 1 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH^k~ey-m+w=ah 2 0 0 1 1 NN NN CD 2 3 3 2 2 1 12 LHone ^ey~m-w+ah=n 0 2 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH^m~w-ah+n=ah 1 1 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH^w~ah-n+ah=v 2 0 1 1 1 NN CD IN 3 3 2 2 1 1 12 LHof ^ah~n-ah+v=dh 0 1 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH^n~ah-v+dh=ah 1 0 1 1 0 CD IN DT 3 2 2 1 1 1 12 LHthe ^ah~v-dh+ah=m 0 1 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH^v~dh-ah+m=ow 1 0 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LHmost ^dh~ah-m+ow=s 0 3 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^ah~m-ow+s=t 1 2 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^m~ow-s+t=f 2 1 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^ow~s-t+f=ey 3 0 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LHfamous ^s~t-f+ey=m 0 1 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH^t~f-ey+m=ah 1 0 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH^f~ey-m+ah=s 0 2 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH^ey~m-ah+s=m 1 1 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH^m~ah-s+m=iy 2 0 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LHmediums ^ah~s-m+iy=d 0 1 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH^s~m-iy+d=iy 1 0 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH^m~iy-d+iy=ah 0 1 1 0 0 JJ NNS IN 2 2 3 2 3 1 12 LH^iy~d-iy+ah=m 1 0 1 0 0 JJ NNS IN 2 2 3 2 3 1 12 LH^d~iy-ah+m=z 0 2 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH^iy~ah-m+z=ah 1 1 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH^ah~m-z+ah=v 2 0 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LHof ^m~z-ah+v=hh 0 1 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH^z~ah-v+hh=er 1 0 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LHher ^ah~v-hh+er=t 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH^v~hh-er+t=ay 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LHtime, ^hh~er-t+ay=m 0 2 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^er~t-ay+m=pau 1 1 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^t~ay-m+pau=pau 2 0 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^ay~m-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 12 LH^0~pau-pau+hh=eh 0 0 0 0 1 PAU PAU VVG 0 0 2 0 0 2 6 LLheading ^pau~pau-hh+eh=d 0 1 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL^pau~hh-eh+d=ih 1 0 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL^hh~eh-d+ih=ng 0 2 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL^eh~d-ih+ng=ah 1 1 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL^d~ih-ng+ah=n 2 0 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LLa ^ih~ng-ah+n=eh 0 0 0 0 1 VVG DT NN 3 1 2 2 1 2 6 LLnetwork ^ng~ah-n+eh=t 0 1 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL^ah~n-eh+t=w 1 0 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL^n~eh-t+w=er 0 3 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^eh~t-w+er=k 1 2 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^t~w-er+k=ah 2 1 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^w~er-k+ah=v 3 0 1 1 1 DT NN IN 2 4 2 1 2 1 6 LLof ^er~k-ah+v=s 0 1 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL^k~ah-v+s=p 1 0 1 1 1 NN IN NN 4 2 3 2 1 5 6 LLspiritualist ^ah~v-s+p=ih 0 2 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^v~s-p+ih=r 1 1 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^s~p-ih+r=ih 2 0 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^p~ih-r+ih=ch 0 1 1 0 0 IN NN NNS 3 2 2 1 5 2 6 LL^ih~r-ih+ch=ah 1 0 1 0 0 IN NN NNS 3 2 2 1 5 2 6 LL^r~ih-ch+ah=w 0 1 0 0 0 IN NN NNS 2 2 2 1 5 2 6 LL^ih~ch-ah+w=ah 1 0 0 0 0 IN NN NNS 2 2 2 1 5 2 6 LL^ch~ah-w+ah=l 0 1 0 0 0 IN NN NNS 2 2 4 1 5 2 6 LL^ah~w-ah+l=ih 1 0 0 0 0 IN NN NNS 2 2 4 1 5 2 6 LL^w~ah-l+ih=s 0 3 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^ah~l-ih+s=t 1 2 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^l~ih-s+t=ch 2 1 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^ih~s-t+ch=er 3 0 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LLchurches. -^s~t-ch+er=ch 0 1 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL^t~ch-er+ch=ah 1 0 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL^ch~er-ch+ah=z 0 2 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^er~ch-ah+z=pau 1 1 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^ch~ah-z+pau=pau 2 0 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^ah~z-pau+pau=0 0 0 0 0 0 NNS PAU PAU 3 0 0 2 0 0 6 LL^0~pau-pau+d=uh 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 2 7 LHDuring ^pau~pau-d+uh=r 0 1 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH^pau~d-uh+r=ih 1 0 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH^d~uh-r+ih=ng 0 2 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH^uh~r-ih+ng=dh 1 1 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH^r~ih-ng+dh=ah 2 0 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LHthe ^ih~ng-dh+ah=w 0 1 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH^ng~dh-ah+w=ao 1 0 0 0 1 IN DT NN 3 2 3 2 1 1 7 LHwar ^dh~ah-w+ao=r 0 2 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH^ah~w-ao+r=sh 1 1 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH^w~ao-r+sh=iy 2 0 0 1 1 DT NN PP 2 3 2 1 1 1 7 LHshe ^ao~r-sh+iy=l 0 1 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH^r~sh-iy+l=ay 1 0 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LHlived ^sh~iy-l+ay=v 0 3 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^iy~l-ay+v=d 1 2 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^l~ay-v+d=ih 2 1 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^ay~v-d+ih=n 3 0 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LHin ^v~d-ih+n=p 0 1 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH^d~ih-n+p=ao 1 0 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LHPortsmouth, ^ih~n-p+ao=r 0 3 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^n~p-ao+r=t 1 2 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^p~ao-r+t=s 2 1 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^ao~r-t+s=m 3 0 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^r~t-s+m=ah 0 3 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^t~s-m+ah=th 1 2 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^s~m-ah+th=pau 2 1 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^m~ah-th+pau=pau 3 0 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^ah~th-pau+pau=0 0 0 0 0 0 NN PAU PAU 4 0 0 2 0 0 7 LH^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 6 LLthe ^pau~pau-dh+ah=hh 0 1 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL^pau~dh-ah+hh=ow 1 0 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LLhome ^dh~ah-hh+ow=m 0 2 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL^ah~hh-ow+m=ah 1 1 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL^hh~ow-m+ah=v 2 0 0 1 1 DT NN IN 2 3 2 1 1 1 6 LLof ^ow~m-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL^m~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 6 LLthe ^ah~v-dh+ah=r 0 1 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL^v~dh-ah+r=oy 1 0 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LLRoyal ^dh~ah-r+oy=ah 0 1 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL^ah~r-oy+ah=l 1 0 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL^r~oy-ah+l=n 0 1 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LL^oy~ah-l+n=ey 1 0 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LLNavy. -^ah~l-n+ey=v 0 1 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL^l~n-ey+v=iy 1 0 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL^n~ey-v+iy=pau 0 1 1 0 0 JJ NN PAU 2 2 0 2 2 0 6 LL^ey~v-iy+pau=pau 1 0 1 0 0 JJ NN PAU 2 2 0 2 2 0 6 LL^v~iy-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 6 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LLShe ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LLhas ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LLput ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LLus ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LLon ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LLthe ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LLright ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LLside ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LLof ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LLthe ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LLlaw ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LLby ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LLbringing ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^b~r-ih+ng=ih 2 1 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^r~ih-ng+ih=ng 3 0 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ih~ng-ih+ng=ih 0 1 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LLin ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LLthe ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL1952 ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^w~ah-n+n=ay 2 0 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~n-n+ay=n 0 2 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~n-ay+n=f 1 1 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~ay-n+f=ay 2 0 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^ay~n-f+ay=v 0 2 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^n~f-ay+v=t 1 1 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^f~ay-v+t=uw 2 0 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^ay~v-t+uw=ae 0 1 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LLact. -^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^ae~k-t+pau=pau 2 0 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^k~t-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 17 LL^0~pau-pau+ae=t 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 1 19 LLAt ^pau~pau-ae+t=ah 0 1 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL^pau~ae-t+ah=s 1 0 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LLa ^ae~t-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LLséance ^t~ah-s+ey=aa 0 1 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL^ah~s-ey+aa=n 1 0 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL^s~ey-aa+n=s 0 2 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL^ey~aa-n+s=ih 1 1 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL^aa~n-s+ih=n 2 0 1 0 0 DT NN IN 2 3 2 1 2 1 19 LLin ^n~s-ih+n=w 0 1 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL^s~ih-n+w=ah 1 0 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL1943 ^ih~n-w+ah=n 0 2 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^n~w-ah+n=n 1 1 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~n-ay+n=f 1 1 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~ay-n+f=ao 2 0 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^ay~n-f+ao=r 0 2 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~f-ao+r=th 1 1 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^f~ao-r+th=r 2 0 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^ao~r-th+r=iy 0 2 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL^r~th-r+iy=ih 1 1 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL^th~r-iy+ih=t 2 0 1 1 1 IN NN PP 3 3 2 1 4 1 19 LLit ^r~iy-ih+t=w 0 1 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL^iy~ih-t+w=aa 1 0 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LLwas ^ih~t-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL^t~w-aa+z=k 1 1 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL^w~aa-z+k=l 2 0 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LLclaimed ^aa~z-k+l=ey 0 4 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^z~k-l+ey=m 1 3 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^k~l-ey+m=d 2 2 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^l~ey-m+d=dh 3 1 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^ey~m-d+dh=ae 4 0 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LLthat ^m~d-dh+ae=t 0 2 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL^d~dh-ae+t=dh 1 1 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL^dh~ae-t+dh=ah 2 0 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LLthe ^ae~t-dh+ah=s 0 1 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL^t~dh-ah+s=p 1 0 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LLspirit ^dh~ah-s+p=ih 0 2 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^ah~s-p+ih=r 1 1 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^s~p-ih+r=ah 2 0 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^p~ih-r+ah=t 0 2 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL^ih~r-ah+t=ah 1 1 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL^r~ah-t+ah=v 2 0 1 0 1 DT NN IN 3 3 2 1 2 1 19 LLof ^ah~t-ah+v=ah 0 1 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL^t~ah-v+ah=s 1 0 0 1 0 NN IN DT 3 2 1 2 1 1 19 LLa ^ah~v-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LLsailor ^v~ah-s+ey=l 0 1 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL^ah~s-ey+l=er 1 0 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL^s~ey-l+er=f 0 1 1 0 1 DT NN IN 2 2 4 1 2 1 19 LL^ey~l-er+f=r 1 0 1 0 1 DT NN IN 2 2 4 1 2 1 19 LLfrom ^l~er-f+r=ah 0 3 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^er~f-r+ah=m 1 2 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^f~r-ah+m=dh 2 1 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^r~ah-m+dh=ah 3 0 0 1 0 NN IN DT 2 4 2 2 1 1 19 LLthe ^ah~m-dh+ah=hh 0 1 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL^m~dh-ah+hh=m 1 0 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LLHMS ^dh~ah-hh+m=s 0 2 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL^ah~hh-m+s=b 1 1 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL^hh~m-s+b=aa 2 0 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LLBarham ^m~s-b+aa=r 0 2 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^s~b-aa+r=hh 1 1 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^b~aa-r+hh=ah 2 0 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^aa~r-hh+ah=m 0 2 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL^r~hh-ah+m=ah 1 1 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL^hh~ah-m+ah=p 2 0 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LLappeared. -^ah~m-ah+p=ih 0 0 0 0 1 NN VVN PAU 3 1 4 2 2 0 19 LL^m~ah-p+ih=r 0 3 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^ah~p-ih+r=d 1 2 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^p~ih-r+d=pau 2 1 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^ih~r-d+pau=pau 3 0 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^r~d-pau+pau=0 0 0 1 0 0 VVN PAU PAU 4 0 0 2 0 0 19 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 10 LLThe ^pau~pau-dh+ah=v 0 1 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL^pau~dh-ah+v=eh 1 0 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LLvessel ^dh~ah-v+eh=s 0 1 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL^ah~v-eh+s=ah 1 0 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL^v~eh-s+ah=l 0 2 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL^eh~s-ah+l=w 1 1 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL^s~ah-l+w=aa 2 0 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LLwas ^ah~l-w+aa=z 0 2 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL^l~w-aa+z=ow 1 1 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL^w~aa-z+ow=n 2 0 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LLonly ^aa~z-ow+n=l 0 1 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL^z~ow-n+l=iy 1 0 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL^ow~n-l+iy=ah 0 1 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LL^n~l-iy+ah=f 1 0 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LLofficially ^l~iy-ah+f=ih 0 0 0 0 1 RB RB VVN 2 1 2 2 4 2 10 LL^iy~ah-f+ih=sh 0 1 0 1 0 RB RB VVN 1 2 2 2 4 2 10 LL^ah~f-ih+sh=ah 1 0 0 1 0 RB RB VVN 1 2 2 2 4 2 10 LL^f~ih-sh+ah=l 0 1 1 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^ih~sh-ah+l=iy 1 0 1 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^sh~ah-l+iy=d 0 1 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^ah~l-iy+d=ih 1 0 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LLdeclared ^l~iy-d+ih=k 0 1 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL^iy~d-ih+k=l 1 0 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL^d~ih-k+l=eh 0 4 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^ih~k-l+eh=r 1 3 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^k~l-eh+r=d 2 2 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^l~eh-r+d=l 3 1 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^eh~r-d+l=ao 4 0 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LLlost ^r~d-l+ao=s 0 3 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^d~l-ao+s=t 1 2 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^l~ao-s+t=s 2 1 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^ao~s-t+s=eh 3 0 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LLseveral ^s~t-s+eh=v 0 1 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL^t~s-eh+v=r 1 0 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL^s~eh-v+r=ah 0 3 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^eh~v-r+ah=l 1 2 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^v~r-ah+l=m 2 1 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^r~ah-l+m=ah 3 0 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LLmonths ^ah~l-m+ah=n 0 4 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^l~m-ah+n=th 1 3 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^m~ah-n+th=s 2 2 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^ah~n-th+s=l 3 1 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^n~th-s+l=ey 4 0 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LLlater. -^th~s-l+ey=t 0 1 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL^s~l-ey+t=er 1 0 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL^l~ey-t+er=pau 0 1 1 0 0 NNS RBR PAU 2 2 0 1 2 0 10 LL^ey~t-er+pau=pau 1 0 1 0 0 NNS RBR PAU 2 2 0 1 2 0 10 LL^t~er-pau+pau=0 0 0 0 0 0 RBR PAU PAU 2 0 0 2 0 0 10 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 24 LLShe ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LLwas ^sh~iy-w+aa=z 0 2 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL^iy~w-aa+z=er 1 1 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL^w~aa-z+er=eh 2 0 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LLarrested ^aa~z-er+eh=s 0 0 1 0 1 VBD VVN IN 3 1 1 1 3 1 24 LL^z~er-eh+s=t 0 0 0 1 0 VBD VVN IN 1 1 4 1 3 1 24 LL^er~eh-s+t=ah 0 3 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^eh~s-t+ah=d 1 2 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^s~t-ah+d=ih 2 1 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^t~ah-d+ih=n 3 0 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LLin ^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL1944 ^ih~n-w+ah=n 0 2 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^n~w-ah+n=n 1 1 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~n-ay+n=f 1 1 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~ay-n+f=ao 2 0 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^ay~n-f+ao=r 0 2 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~f-ao+r=f 1 1 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^f~ao-r+f=ao 2 0 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^ao~r-f+ao=r 0 2 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL^r~f-ao+r=ah 1 1 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL^f~ao-r+ah=n 2 0 1 1 0 IN NN CC 3 3 3 1 4 1 24 LLand ^ao~r-ah+n=d 0 2 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL^r~ah-n+d=s 1 1 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL^ah~n-d+s=eh 2 0 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LLsentenced ^n~d-s+eh=n 0 2 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^d~s-eh+n=t 1 1 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^s~eh-n+t=ah 2 0 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^eh~n-t+ah=n 0 4 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^n~t-ah+n=s 1 3 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^t~ah-n+s=t 2 2 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^ah~n-s+t=t 3 1 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^n~s-t+t=uw 4 0 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LLto ^s~t-t+uw=n 0 1 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL^t~t-uw+n=ay 1 0 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LLnine ^t~uw-n+ay=n 0 2 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL^uw~n-ay+n=m 1 1 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL^n~ay-n+m=ah 2 0 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LLmonths ^ay~n-m+ah=n 0 4 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^n~m-ah+n=th 1 3 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^m~ah-n+th=s 2 2 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^ah~n-th+s=ih 3 1 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^n~th-s+ih=n 4 0 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LLin ^th~s-ih+n=p 0 1 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL^s~ih-n+p=r 1 0 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LLprison ^ih~n-p+r=ih 0 2 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^n~p-r+ih=z 1 1 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL^ih~z-ah+n=ae 1 1 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL^z~ah-n+ae=t 2 0 1 0 1 IN NN IN 3 3 2 1 2 1 24 LLat ^ah~n-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL^n~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 24 LLthe ^ae~t-dh+ah=ow 0 1 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL^t~dh-ah+ow=l 1 0 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LLOld ^dh~ah-ow+l=d 0 2 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL^ah~ow-l+d=b 1 1 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL^ow~l-d+b=ey 2 0 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LLBailey ^l~d-b+ey=l 0 1 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL^d~b-ey+l=iy 1 0 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL^b~ey-l+iy=f 0 1 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LL^ey~l-iy+f=ao 1 0 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LLfor ^l~iy-f+ao=r 0 2 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL^iy~f-ao+r=k 1 1 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL^f~ao-r+k=r 2 0 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LLcrimes ^ao~r-k+r=ay 0 4 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^r~k-r+ay=m 1 3 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^k~r-ay+m=z 2 2 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^r~ay-m+z=ah 3 1 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^ay~m-z+ah=n 4 0 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LLunder ^m~z-ah+n=d 0 1 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL^z~ah-n+d=er 1 0 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL^ah~n-d+er=dh 0 1 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LL^n~d-er+dh=ah 1 0 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LLthe ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 24 LLWitchcraft ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LLAct ^f~t-ae+k=t 0 2 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL^t~ae-k+t=ah 1 1 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL^ae~k-t+ah=v 2 0 1 1 1 NN NN IN 5 3 2 2 1 1 24 LLof ^k~t-ah+v=w 0 1 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL^t~ah-v+w=ah 1 0 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL1735. -^ah~v-w+ah=n 0 2 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^v~w-ah+n=s 1 1 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^w~ah-n+s=eh 2 0 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^ah~n-s+eh=v 0 1 1 1 0 IN NN PAU 3 2 3 1 5 0 24 LL^n~s-eh+v=ah 1 0 1 1 0 IN NN PAU 3 2 3 1 5 0 24 LL^s~eh-v+ah=n 0 2 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^eh~v-ah+n=th 1 1 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^v~ah-n+th=r 2 0 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^ah~n-th+r=iy 0 2 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^n~th-r+iy=f 1 1 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^th~r-iy+f=ay 2 0 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^r~iy-f+ay=v 0 2 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^iy~f-ay+v=pau 1 1 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^f~ay-v+pau=pau 2 0 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^ay~v-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 5 0 0 24 LL^0~pau-pau+w=ay 0 0 0 0 1 PAU PAU IN 0 0 3 0 0 1 9 LLWhile ^pau~pau-w+ay=l 0 2 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL^pau~w-ay+l=ih 1 1 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL^w~ay-l+ih=n 2 0 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LLin ^ay~l-ih+n=p 0 1 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL^l~ih-n+p=r 1 0 1 0 1 IN IN NN 3 2 3 1 1 2 9 LLprison ^ih~n-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^n~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL^ih~z-ah+n=sh 1 1 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 1 2 1 9 LLshe ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LLwas ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL^iy~w-aa+z=v 1 1 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL^w~aa-z+v=ih 2 0 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LLvisited ^aa~z-v+ih=z 0 1 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL^z~v-ih+z=ah 1 0 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL^v~ih-z+ah=t 0 1 1 0 0 VBD VVN IN 2 2 3 1 3 1 9 LL^ih~z-ah+t=ah 1 0 1 0 0 VBD VVN IN 2 2 3 1 3 1 9 LL^z~ah-t+ah=d 0 2 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL^ah~t-ah+d=b 1 1 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL^t~ah-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LLby ^ah~d-b+ay=w 0 1 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL^d~b-ay+w=ih 1 0 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LLWinston ^b~ay-w+ih=n 0 2 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^ay~w-ih+n=s 1 1 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^w~ih-n+s=t 2 0 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^ih~n-s+t=ah 0 3 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^n~s-t+ah=n 1 2 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^s~t-ah+n=ch 2 1 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^t~ah-n+ch=er 3 0 1 0 1 IN NN NN 3 4 2 1 2 2 9 LLChurchill. -^ah~n-ch+er=ch 0 1 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL^n~ch-er+ch=ih 1 0 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL^ch~er-ch+ih=l 0 2 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^er~ch-ih+l=pau 1 1 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^ch~ih-l+pau=pau 2 0 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^ih~l-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 9 LL^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 22 LLWhen ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LLhe ^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LL^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LLwas ^hh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL^iy~w-aa+z=aa 1 1 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL^w~aa-z+aa=r 2 0 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LLre-elected ^aa~z-aa+r=iy 0 0 1 1 1 VBD VVN IN 3 1 2 1 7 1 22 LL^z~aa-r+iy=iy 0 1 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL^aa~r-iy+iy=eh 1 0 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL^r~iy-iy+eh=l 0 0 1 1 1 VBD VVN IN 2 1 1 1 7 1 22 LL^iy~iy-eh+l=iy 0 0 1 1 1 VBD VVN IN 1 1 2 1 7 1 22 LL^iy~eh-l+iy=s 0 1 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL^eh~l-iy+s=iy 1 0 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL^l~iy-s+iy=t 0 1 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL^iy~s-iy+t=iy 1 0 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL^s~iy-t+iy=iy 0 1 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL^iy~t-iy+iy=d 1 0 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL^t~iy-iy+d=iy 0 0 1 1 1 VBD VVN IN 2 1 2 1 7 1 22 LL^iy~iy-d+iy=ih 0 1 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LL^iy~d-iy+ih=n 1 0 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LLin ^d~iy-ih+n=w 0 1 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL^iy~ih-n+w=ah 1 0 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL1951 ^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 22 LLthe ^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 22 LL^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 22 LLWitchcraft ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 22 LLAct ^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LLwas ^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LLrepealed ^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LLand ^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LLthree ^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LLyears ^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LLlater ^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LL^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LLspiritualism ^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LLwas ^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LLofficially ^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 22 LL^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LLrecognised ^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LLas ^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LL^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LLa ^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 22 LLreligion. -^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 22 LL^0~pau-pau+k=ae 0 0 0 0 0 PAU PAU NNS 0 0 3 0 0 3 11 LLCampaigners ^pau~pau-k+ae=m 0 2 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^pau~k-ae+m=p 1 1 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^k~ae-m+p=ey 2 0 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^ae~m-p+ey=n 0 1 0 1 0 PAU NNS TO 3 2 3 0 3 1 11 LL^m~p-ey+n=er 1 0 0 1 0 PAU NNS TO 3 2 3 0 3 1 11 LL^p~ey-n+er=z 0 2 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL^ey~n-er+z=t 1 1 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL^n~er-z+t=uw 2 0 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LLto ^er~z-t+uw=p 0 1 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL^z~t-uw+p=aa 1 0 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LLpardon ^t~uw-p+aa=r 0 2 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^uw~p-aa+r=d 1 1 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^p~aa-r+d=ah 2 0 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^aa~r-d+ah=n 0 2 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL^r~d-ah+n=m 1 1 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL^d~ah-n+m=iy 2 0 1 0 0 TO NN NN 3 3 2 1 2 2 11 LLMrs ^ah~n-m+iy=s 0 1 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL^n~m-iy+s=iy 1 0 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL^m~iy-s+iy=s 0 2 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL^iy~s-iy+s=d 1 1 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL^s~iy-s+d=ah 2 0 0 0 1 NN NN NN 2 3 3 2 2 2 11 LLDuncan ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^s~d-ah+ng=k 1 1 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL^ng~k-ah+n=hh 1 1 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LLhave ^ah~n-hh+ae=v 0 2 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL^n~hh-ae+v=s 1 1 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL^hh~ae-v+s=eh 2 0 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LLset ^ae~v-s+eh=t 0 2 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL^v~s-eh+t=ah 1 1 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL^s~eh-t+ah=p 2 0 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LLup ^eh~t-ah+p=ae 0 1 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL^t~ah-p+ae=n 1 0 1 1 1 NN RP DT 3 2 2 1 1 1 11 LLan ^ah~p-ae+n=ao 0 1 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL^p~ae-n+ao=n 1 0 1 1 1 RP DT RB 2 2 2 1 1 2 11 LLonline ^ae~n-ao+n=l 0 1 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL^n~ao-n+l=ay 1 0 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL^ao~n-l+ay=n 0 2 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL^n~l-ay+n=p 1 1 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL^l~ay-n+p=ah 2 0 1 1 0 DT RB NN 2 3 2 1 2 3 11 LLpetition. -^ay~n-p+ah=t 0 1 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL^n~p-ah+t=ih 1 0 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL^p~ah-t+ih=sh 0 1 0 1 0 RB NN PAU 2 2 3 2 3 0 11 LL^ah~t-ih+sh=ah 1 0 0 1 0 RB NN PAU 2 2 3 2 3 0 11 LL^t~ih-sh+ah=n 0 2 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^ih~sh-ah+n=pau 1 1 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^sh~ah-n+pau=pau 2 0 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 11 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 11 LLThe ^pau~pau-dh+ah=k 0 1 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL^pau~dh-ah+k=ae 1 0 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LLcampaign ^dh~ah-k+ae=m 0 2 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^ah~k-ae+m=p 1 1 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^k~ae-m+p=ey 2 0 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^ae~m-p+ey=n 0 2 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL^m~p-ey+n=ih 1 1 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL^p~ey-n+ih=z 2 0 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LLis ^ey~n-ih+z=b 0 1 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL^n~ih-z+b=ae 1 0 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LLbacked ^ih~z-b+ae=k 0 3 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^z~b-ae+k=t 1 2 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^b~ae-k+t=b 2 1 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^ae~k-t+b=ay 3 0 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LLby ^k~t-b+ay=dh 0 1 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL^t~b-ay+dh=ah 1 0 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LLthe ^b~ay-dh+ah=b 0 1 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL^ay~dh-ah+b=r 1 0 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LLBritish ^dh~ah-b+r=ih 0 2 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^ah~b-r+ih=t 1 1 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^b~r-ih+t=ih 2 0 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^r~ih-t+ih=sh 0 2 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL^ih~t-ih+sh=s 1 1 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL^t~ih-sh+s=ah 2 0 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LLSociety ^ih~sh-s+ah=s 0 1 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL^sh~s-ah+s=ay 1 0 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL^s~ah-s+ay=ah 0 1 0 1 0 JJ NN IN 2 2 1 2 4 1 11 LL^ah~s-ay+ah=t 1 0 0 1 0 JJ NN IN 2 2 1 2 4 1 11 LL^s~ay-ah+t=iy 0 0 1 0 0 JJ NN IN 2 1 2 2 4 1 11 LL^ay~ah-t+iy=ah 0 1 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LL^ah~t-iy+ah=v 1 0 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LLof ^t~iy-ah+v=p 0 1 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL^iy~ah-v+p=eh 1 0 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LLParanormal ^ah~v-p+eh=r 0 1 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL^v~p-eh+r=ah 1 0 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL^p~eh-r+ah=n 0 1 0 0 1 IN JJ NNS 2 2 3 1 4 2 11 LL^eh~r-ah+n=ao 1 0 0 0 1 IN JJ NNS 2 2 3 1 4 2 11 LL^r~ah-n+ao=r 0 2 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^ah~n-ao+r=m 1 1 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^n~ao-r+m=ah 2 0 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^ao~r-m+ah=l 0 2 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL^r~m-ah+l=s 1 1 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL^m~ah-l+s=t 2 0 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LLStudies. -^ah~l-s+t=ah 0 2 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^l~s-t+ah=d 1 1 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^s~t-ah+d=iy 2 0 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^t~ah-d+iy=z 0 2 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^ah~d-iy+z=pau 1 1 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^d~iy-z+pau=pau 2 0 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^iy~z-pau+pau=0 0 0 0 0 0 NNS PAU PAU 3 0 0 2 0 0 11 LL^0~pau-pau+m=iy 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 3 3 LHMedium ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^m~iy-d+iy=ah 0 1 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^iy~d-iy+ah=m 1 0 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^d~iy-ah+m=m 0 1 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH^iy~ah-m+m=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LHMary ^ah~m-m+eh=r 0 1 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH^m~m-eh+r=iy 1 0 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH^m~eh-r+iy=aa 0 1 1 0 1 NN NN NN 2 2 2 3 2 2 3 LH^eh~r-iy+aa=r 1 0 1 0 1 NN NN NN 2 2 2 3 2 2 3 LHArmour, ^r~iy-aa+r=m 0 1 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH^iy~aa-r+m=er 1 0 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH^aa~r-m+er=pau 0 1 1 0 0 NN NN PAU 2 2 0 2 2 0 3 LH^r~m-er+pau=pau 1 0 1 0 0 NN NN PAU 2 2 0 2 2 0 3 LH^m~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 3 LH^0~pau-pau+hh=uw 0 0 0 0 1 PAU PAU WP 0 0 2 0 0 1 4 LHwho ^pau~pau-hh+uw=r 0 1 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH^pau~hh-uw+r=ow 1 0 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LHwrote ^hh~uw-r+ow=t 0 2 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH^uw~r-ow+t=hh 1 1 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH^r~ow-t+hh=er 2 0 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LHher ^ow~t-hh+er=b 0 1 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH^t~hh-er+b=ay 1 0 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LHbiography, ^hh~er-b+ay=aa 0 1 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH^er~b-ay+aa=g 1 0 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH^b~ay-aa+g=r 0 0 0 1 0 PP$ NN PAU 2 1 3 1 4 0 4 LH^ay~aa-g+r=ah 0 2 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^aa~g-r+ah=f 1 1 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^g~r-ah+f=iy 2 0 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^r~ah-f+iy=pau 0 1 0 0 0 PP$ NN PAU 3 2 0 1 4 0 4 LH^ah~f-iy+pau=pau 1 0 0 0 0 PP$ NN PAU 3 2 0 1 4 0 4 LH^f~iy-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 4 0 0 4 LH^0~pau-pau+s=eh 0 0 0 0 1 PAU PAU VVD 0 0 3 0 0 1 1 LHsaid: ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^pau~s-eh+d=pau 1 1 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^s~eh-d+pau=pau 2 0 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^eh~d-pau+pau=0 0 0 1 0 0 VVD PAU PAU 3 0 0 1 0 0 1 LH^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LL"She ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LLhas ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LLput ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LLus ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LLon ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LLthe ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LLright ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LLside ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LLof ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LLthe ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LLlaw ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LLby ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LLbringing ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^b~r-ih+ng=ih 2 1 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^r~ih-ng+ih=ng 3 0 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ih~ng-ih+ng=ih 0 1 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LLin ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LLthe ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL1952 ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^w~ah-n+n=ay 2 0 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~n-n+ay=n 0 2 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~n-ay+n=f 1 1 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~ay-n+f=ay 2 0 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^ay~n-f+ay=v 0 2 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^n~f-ay+v=t 1 1 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^f~ay-v+t=uw 2 0 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^ay~v-t+uw=ae 0 1 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LLact." -^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^ae~k-t+pau=0 2 0 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^k~t-pau+0=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 17 LL \ No newline at end of file +^0~0-pau+hh=eh 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 2 8 LLHelen^0~pau-hh+eh=l 0 1 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL^pau~hh-eh+l=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL^hh~eh-l+ah=n 0 2 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL^eh~l-ah+n=d 1 1 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL^l~ah-n+d=ah 2 0 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL Duncan^ah~n-d+ah=ng 0 2 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^n~d-ah+ng=k 1 1 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL^ng~k-ah+n=w 1 1 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL^k~ah-n+w=aa 2 0 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL was^ah~n-w+aa=z 0 2 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL^n~w-aa+z=t 1 1 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL^w~aa-z+t=r 2 0 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL tried^aa~z-t+r=ay 0 3 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^z~t-r+ay=d 1 2 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^t~r-ay+d=ah 2 1 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL^r~ay-d+ah=n 3 0 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL under^ay~d-ah+n=d 0 1 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL^d~ah-n+d=er 1 0 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL^ah~n-d+er=dh 0 1 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LL^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LL the^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL Witchcraft^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL Act^f~t-ae+k=t 0 2 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^t~ae-k+t=pau 1 1 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^ae~k-t+pau=pau 2 0 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL^k~t-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 8 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 29 LL +The^pau~pau-dh+ah=f 0 1 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL^pau~dh-ah+f=ae 1 0 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL family^dh~ah-f+ae=m 0 1 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL^ah~f-ae+m=ah 1 0 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL^f~ae-m+ah=l 0 1 1 0 0 DT RB IN 2 2 2 1 3 1 29 LL^ae~m-ah+l=iy 1 0 1 0 0 DT RB IN 2 2 2 1 3 1 29 LL^m~ah-l+iy=ah 0 1 0 0 1 DT RB IN 2 2 2 1 3 1 29 LL^ah~l-iy+ah=v 1 0 0 0 1 DT RB IN 2 2 2 1 3 1 29 LL of^l~iy-ah+v=dh 0 1 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL^iy~ah-v+dh=ah 1 0 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL the^ah~v-dh+ah=l 0 1 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL^v~dh-ah+l=ae 1 0 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL last^dh~ah-l+ae=s 0 3 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^ah~l-ae+s=t 1 2 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^l~ae-s+t=p 2 1 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL^ae~s-t+p=er 3 0 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL person^s~t-p+er=s 0 1 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL^t~p-er+s=ah 1 0 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL^p~er-s+ah=n 0 2 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL^er~s-ah+n=ih 1 1 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL^s~ah-n+ih=n 2 0 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL in^ah~n-ih+n=dh 0 1 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL^n~ih-n+dh=ah 1 0 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL the^ih~n-dh+ah=uw 0 1 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL^n~dh-ah+uw=k 1 0 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL UK^dh~ah-uw+k=t 0 1 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL^ah~uw-k+t=uw 1 0 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL to^uw~k-t+uw=b 0 1 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL^k~t-uw+b=iy 1 0 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL be^t~uw-b+iy=p 0 1 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL^uw~b-iy+p=r 1 0 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL prosecuted^b~iy-p+r=aa 0 2 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^iy~p-r+aa=s 1 1 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^p~r-aa+s=ih 2 0 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL^r~aa-s+ih=k 0 1 1 0 1 VB VVN IN 3 2 3 1 4 2 29 LL^aa~s-ih+k=y 1 0 1 0 1 VB VVN IN 3 2 3 1 4 2 29 LL^s~ih-k+y=uw 0 2 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^ih~k-y+uw=t 1 1 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^k~y-uw+t=ih 2 0 0 1 0 VB VVN IN 2 3 3 1 4 2 29 LL^y~uw-t+ih=d 0 2 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL^uw~t-ih+d=ah 1 1 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL^t~ih-d+ah=n 2 0 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL under^ih~d-ah+n=d 0 1 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL^d~ah-n+d=er 1 0 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL^ah~n-d+er=dh 0 1 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LL^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LL the^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL Witchcraft^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL Act^f~t-ae+k=t 0 2 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL^t~ae-k+t=w 1 1 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL^ae~k-t+w=ih 2 0 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL will^k~t-w+ih=l 0 2 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL^t~w-ih+l=m 1 1 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL^w~ih-l+m=aa 2 0 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL mark^ih~l-m+aa=r 0 3 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^l~m-aa+r=k 1 2 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^m~aa-r+k=dh 2 1 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL^aa~r-k+dh=ah 3 0 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL the^r~k-dh+ah=f 0 1 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL^k~dh-ah+f=ay 1 0 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL 50th^dh~ah-f+ay=v 0 1 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ah~f-ay+v=ow 1 0 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL^f~ay-v+ow=t 0 1 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ay~v-ow+t=iy 1 0 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^v~ow-t+iy=ey 0 1 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^ow~t-iy+ey=ch 1 0 1 1 1 DT NN NN 2 2 2 1 4 5 29 LL^t~iy-ey+ch=ae 0 1 1 1 1 DT NN NN 2 2 1 1 4 5 29 LL^iy~ey-ch+ae=n 1 0 1 1 1 DT NN NN 2 2 1 1 4 5 29 LL anniversary^ey~ch-ae+n=ah 0 0 1 1 0 NN NN IN 2 1 2 4 5 1 29 LL^ch~ae-n+ah=v 0 1 1 0 1 NN NN IN 1 2 2 4 5 1 29 LL^ae~n-ah+v=er 1 0 1 0 1 NN NN IN 1 2 2 4 5 1 29 LL^n~ah-v+er=s 0 1 0 1 0 NN NN IN 2 2 2 4 5 1 29 LL^ah~v-er+s=er 1 0 0 1 0 NN NN IN 2 2 2 4 5 1 29 LL^v~er-s+er=iy 0 1 1 0 0 NN NN IN 2 2 1 4 5 1 29 LL^er~s-er+iy=ah 1 0 1 0 0 NN NN IN 2 2 1 4 5 1 29 LL^s~er-iy+ah=v 0 0 0 0 1 NN NN IN 2 1 2 4 5 1 29 LL of^er~iy-ah+v=hh 0 1 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL^iy~ah-v+hh=er 1 0 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL her^ah~v-hh+er=d 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL^v~hh-er+d=eh 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL death^hh~er-d+eh=th 0 2 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL^er~d-eh+th=b 1 1 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL^d~eh-th+b=ay 2 0 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL by^eh~th-b+ay=k 0 1 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL^th~b-ay+k=ao 1 0 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL calling^b~ay-k+ao=l 0 1 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL^ay~k-ao+l=ih 1 0 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL^k~ao-l+ih=ng 0 2 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL^ao~l-ih+ng=f 1 1 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL^l~ih-ng+f=ao 2 0 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL for^ih~ng-f+ao=r 0 2 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL^ng~f-ao+r=hh 1 1 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL^f~ao-r+hh=er 2 0 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL her^ao~r-hh+er=p 0 1 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL^r~hh-er+p=aa 1 0 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL pardon.^hh~er-p+aa=r 0 2 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^er~p-aa+r=d 1 1 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^p~aa-r+d=ah 2 0 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL^aa~r-d+ah=n 0 2 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^r~d-ah+n=pau 1 1 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^d~ah-n+pau=pau 2 0 1 0 0 PP$ NN PAU 3 3 0 1 2 0 29 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 29 LL^0~pau-pau+m=iy 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 3 3 LH +Medium^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^m~iy-d+iy=ah 0 1 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^iy~d-iy+ah=m 1 0 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^d~iy-ah+m=hh 0 1 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH^iy~ah-m+hh=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH Helen^ah~m-hh+eh=l 0 1 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH^m~hh-eh+l=ah 1 0 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH^hh~eh-l+ah=n 0 2 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH^eh~l-ah+n=d 1 1 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH^l~ah-n+d=ah 2 0 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH Duncan,^ah~n-d+ah=ng 0 2 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^n~d-ah+ng=k 1 1 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^d~ah-ng+k=ah 2 0 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH^ah~ng-k+ah=n 0 2 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^ng~k-ah+n=pau 1 1 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^k~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 3 3 0 2 2 0 3 LH^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 3 LH^0~pau-pau+hh=uw 0 0 0 0 1 PAU PAU WP 0 0 2 0 0 1 5 LH who^pau~pau-hh+uw=w 0 1 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH^pau~hh-uw+w=aa 1 0 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH was^hh~uw-w+aa=z 0 2 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH^uw~w-aa+z=b 1 1 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH^w~aa-z+b=ao 2 0 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH born^aa~z-b+ao=r 0 3 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^z~b-ao+r=n 1 2 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^b~ao-r+n=ih 2 1 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH^ao~r-n+ih=n 3 0 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH in^r~n-ih+n=k 0 1 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH^n~ih-n+k=ae 1 0 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH Callander,^ih~n-k+ae=l 0 1 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH^n~k-ae+l=ah 1 0 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH^k~ae-l+ah=n 0 2 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^ae~l-ah+n=d 1 1 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^l~ah-n+d=er 2 0 1 0 0 IN NN PAU 2 3 2 1 3 0 5 LH^ah~n-d+er=pau 0 1 0 0 0 IN NN PAU 3 2 0 1 3 0 5 LH^n~d-er+pau=pau 1 0 0 0 0 IN NN PAU 3 2 0 1 3 0 5 LH^d~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 3 0 0 5 LH^0~pau-pau+p=er 0 0 0 0 1 PAU PAU NN 0 0 5 0 0 3 1 LH Perthshire,^pau~pau-p+er=th 0 4 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^pau~p-er+th=hh 1 3 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^p~er-th+hh=s 2 2 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^er~th-hh+s=hh 3 1 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^th~hh-s+hh=iy 4 0 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH^hh~s-hh+iy=r 0 1 1 1 1 PAU NN PAU 5 2 2 0 3 0 1 LH^s~hh-iy+r=eh 1 0 1 1 1 PAU NN PAU 5 2 2 0 3 0 1 LH^hh~iy-r+eh=pau 0 1 1 1 0 PAU NN PAU 2 2 0 0 3 0 1 LH^iy~r-eh+pau=pau 1 0 1 1 0 PAU NN PAU 2 2 0 0 3 0 1 LH^r~eh-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 3 0 0 1 LH^0~pau-pau+w=aa 0 0 0 0 1 PAU PAU VBD 0 0 3 0 0 1 9 LL was^pau~pau-w+aa=z 0 2 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL^pau~w-aa+z=ih 1 1 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL^w~aa-z+ih=m 2 0 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL imprisoned^aa~z-ih+m=p 0 1 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL^z~ih-m+p=r 1 0 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL^ih~m-p+r=ih 0 2 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^m~p-r+ih=z 1 1 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^p~r-ih+z=ah 2 0 0 1 0 VBD VVN VVG 2 3 4 1 3 2 9 LL^r~ih-z+ah=n 0 3 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^ih~z-ah+n=d 1 2 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^z~ah-n+d=y 2 1 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL^ah~n-d+y=uw 3 0 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL using^n~d-y+uw=z 0 1 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL^d~y-uw+z=ih 1 0 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL^y~uw-z+ih=ng 0 2 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL^uw~z-ih+ng=dh 1 1 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL^z~ih-ng+dh=ah 2 0 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL the^ih~ng-dh+ah=l 0 1 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL^ng~dh-ah+l=ao 1 0 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL law^dh~ah-l+ao=d 0 1 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL^ah~l-ao+d=uh 1 0 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL during^l~ao-d+uh=r 0 1 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL^ao~d-uh+r=ih 1 0 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL^d~uh-r+ih=ng 0 2 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL^uh~r-ih+ng=w 1 1 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL^r~ih-ng+w=er 2 0 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL World^ih~ng-w+er=l 0 3 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^ng~w-er+l=d 1 2 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^w~er-l+d=w 2 1 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL^er~l-d+w=ao 3 0 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL War^l~d-w+ao=r 0 2 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL^d~w-ao+r=iy 1 1 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL^w~ao-r+iy=ih 2 0 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL II.^ao~r-iy+ih=pau 0 0 1 1 0 NN NN PAU 3 1 1 1 2 0 9 LL^r~iy-ih+pau=pau 0 0 1 0 0 NN NN PAU 1 1 0 1 2 0 9 LL^iy~ih-pau+pau=0 0 0 0 0 0 NN PAU PAU 1 0 0 2 0 0 9 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 26 LL +She^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL was^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL^iy~w-aa+z=t 1 1 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL^w~aa-z+t=aa 2 0 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL targeted^aa~z-t+aa=r 0 2 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^z~t-aa+r=g 1 1 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^t~aa-r+g=ah 2 0 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL^aa~r-g+ah=t 0 1 1 0 0 VBD VVN IN 3 2 3 1 3 1 26 LL^r~g-ah+t=ih 1 0 1 0 0 VBD VVN IN 3 2 3 1 3 1 26 LL^g~ah-t+ih=d 0 2 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL^ah~t-ih+d=b 1 1 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL^t~ih-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL by^ih~d-b+ay=dh 0 1 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL^d~b-ay+dh=ah 1 0 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL the^b~ay-dh+ah=g 0 1 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL^ay~dh-ah+g=ah 1 0 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL government^dh~ah-g+ah=v 0 1 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL^ah~g-ah+v=er 1 0 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL^g~ah-v+er=m 0 1 1 0 0 DT NN IN 2 2 4 1 3 2 26 LL^ah~v-er+m=ah 1 0 1 0 0 DT NN IN 2 2 4 1 3 2 26 LL^v~er-m+ah=n 0 3 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^er~m-ah+n=t 1 2 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^m~ah-n+t=ae 2 1 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL^ah~n-t+ae=f 3 0 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL after^n~t-ae+f=t 0 1 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL^t~ae-f+t=er 1 0 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL^ae~f-t+er=r 0 1 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LL^f~t-er+r=ih 1 0 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LL revealing^t~er-r+ih=v 0 1 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL^er~r-ih+v=iy 1 0 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL^r~ih-v+iy=l 0 1 0 1 0 IN VVG TO 2 2 3 2 3 1 26 LL^ih~v-iy+l=ih 1 0 0 1 0 IN VVG TO 2 2 3 2 3 1 26 LL^v~iy-l+ih=ng 0 2 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL^iy~l-ih+ng=t 1 1 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL^l~ih-ng+t=uw 2 0 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL to^ih~ng-t+uw=ah 0 1 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL^ng~t-uw+ah=s 1 0 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL a^t~uw-ah+s=ey 0 0 1 0 1 TO DT NN 2 1 2 1 1 2 26 LL séance^uw~ah-s+ey=aa 0 1 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL^ah~s-ey+aa=n 1 0 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL^s~ey-aa+n=s 0 2 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL^ey~aa-n+s=aa 1 1 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL^aa~n-s+aa=d 2 0 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL audience^n~s-aa+d=iy 0 0 0 1 0 NN NN IN/that 3 1 2 2 3 1 26 LL^s~aa-d+iy=ah 0 1 1 0 0 NN NN IN/that 1 2 3 2 3 1 26 LL^aa~d-iy+ah=n 1 0 1 0 0 NN NN IN/that 1 2 3 2 3 1 26 LL^d~iy-ah+n=s 0 2 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL^iy~ah-n+s=dh 1 1 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL^ah~n-s+dh=ae 2 0 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL that^n~s-dh+ae=t 0 2 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL^s~dh-ae+t=ah 1 1 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL^dh~ae-t+ah=w 2 0 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL a^ae~t-ah+w=ao 0 0 1 0 1 IN/that DT NN 3 1 3 1 1 2 26 LL warship^t~ah-w+ao=r 0 2 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^ah~w-ao+r=sh 1 1 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^w~ao-r+sh=ih 2 0 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL^ao~r-sh+ih=p 0 2 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL^r~sh-ih+p=hh 1 1 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL^sh~ih-p+hh=ae 2 0 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL had^ih~p-hh+ae=d 0 2 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL^p~hh-ae+d=s 1 1 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL^hh~ae-d+s=ah 2 0 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL sunk^ae~d-s+ah=ng 0 3 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^d~s-ah+ng=k 1 2 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^s~ah-ng+k=b 2 1 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL^ah~ng-k+b=ih 3 0 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL before^ng~k-b+ih=f 0 1 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL^k~b-ih+f=ao 1 0 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL^b~ih-f+ao=r 0 2 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL^ih~f-ao+r=dh 1 1 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL^f~ao-r+dh=ah 2 0 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL the^ao~r-dh+ah=n 0 1 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL^r~dh-ah+n=uw 1 0 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL news^dh~ah-n+uw=z 0 2 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL^ah~n-uw+z=hh 1 1 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL^n~uw-z+hh=ae 2 0 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL had^uw~z-hh+ae=d 0 2 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL^z~hh-ae+d=b 1 1 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL^hh~ae-d+b=ih 2 0 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL been^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL^d~b-ih+n=r 1 1 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL^b~ih-n+r=iy 2 0 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL released^ih~n-r+iy=l 0 1 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL^n~r-iy+l=iy 1 0 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL^r~iy-l+iy=s 0 3 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^iy~l-iy+s=t 1 2 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^l~iy-s+t=t 2 1 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL^iy~s-t+t=uw 3 0 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL to^s~t-t+uw=dh 0 1 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL^t~t-uw+dh=ah 1 0 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL the^t~uw-dh+ah=p 0 1 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL^uw~dh-ah+p=ah 1 0 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL public.^dh~ah-p+ah=b 0 1 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL^ah~p-ah+b=l 1 0 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL^p~ah-b+l=ih 0 3 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^ah~b-l+ih=k 1 2 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^b~l-ih+k=pau 2 1 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^l~ih-k+pau=pau 3 0 1 0 0 DT JJ PAU 2 4 0 1 2 0 26 LL^ih~k-pau+pau=0 0 0 0 0 0 JJ PAU PAU 4 0 0 2 0 0 26 LL^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 12 LL +Her^pau~pau-hh+er=g 0 1 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL^pau~hh-er+g=r 1 0 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL grand^hh~er-g+r=ae 0 4 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL^er~g-r+ae=n 1 3 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL^g~r-ae+n=d 2 2 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL^r~ae-n+d=d 3 1 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL^ae~n-d+d=ao 4 0 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL-daughter^n~d-d+ao=t 0 1 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL^d~d-ao+t=er 1 0 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL^d~ao-t+er=ih 0 1 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL^ao~t-er+ih=z 1 0 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL is^t~er-ih+z=p 0 1 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL^er~ih-z+p=aa 1 0 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL particularly^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL angry^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL at^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL the^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL accusations^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 12 LL^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL of^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL treason.^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 12 LL^0~pau-pau+m=eh 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 2 2 LH +Mary^pau~pau-m+eh=r 0 1 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH^pau~m-eh+r=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH^m~eh-r+iy=m 0 1 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LH^eh~r-iy+m=aa 1 0 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LH Martin,^r~iy-m+aa=r 0 2 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^iy~m-aa+r=t 1 1 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^m~aa-r+t=ah 2 0 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH^aa~r-t+ah=n 0 2 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^r~t-ah+n=pau 1 1 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^t~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 3 3 0 2 2 0 2 LH^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 2 LH^0~pau-pau+ah=v 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 1 2 LH of^pau~pau-ah+v=eh 0 1 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH^pau~ah-v+eh=d 1 0 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH Edinburgh,^ah~v-eh+d=ah 0 0 1 1 0 IN NN PAU 2 1 3 1 4 0 2 LH^v~eh-d+ah=n 0 2 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^eh~d-ah+n=b 1 1 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^d~ah-n+b=er 2 0 1 0 0 IN NN PAU 1 3 2 1 4 0 2 LH^ah~n-b+er=ow 0 1 0 0 0 IN NN PAU 3 2 1 1 4 0 2 LH^n~b-er+ow=pau 1 0 0 0 0 IN NN PAU 3 2 1 1 4 0 2 LH^b~er-ow+pau=pau 0 0 0 0 0 IN NN PAU 2 1 0 1 4 0 2 LH^er~ow-pau+pau=0 0 0 0 0 0 NN PAU PAU 1 0 0 4 0 0 2 LH^0~pau-pau+s=eh 0 0 0 0 1 PAU PAU VVD 0 0 3 0 0 1 10 LL said^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL^pau~s-eh+d=m 1 1 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL^s~eh-d+m=iy 2 0 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL Mrs^eh~d-m+iy=s 0 1 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL^d~m-iy+s=iy 1 0 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL^m~iy-s+iy=s 0 2 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL^iy~s-iy+s=d 1 1 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL^s~iy-s+d=ah 2 0 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL Duncan^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^s~d-ah+ng=k 1 1 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL^ng~k-ah+n=hh 1 1 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL had^ah~n-hh+ae=d 0 2 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL^n~hh-ae+d=b 1 1 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL^hh~ae-d+b=ih 2 0 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL been^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL^d~b-ih+n=ah 1 1 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL^b~ih-n+ah=k 2 0 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL accused^ih~n-ah+k=y 0 0 1 0 1 VBN VVN IN 3 1 5 1 2 1 10 LL^n~ah-k+y=uw 0 4 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^ah~k-y+uw=z 1 3 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^k~y-uw+z=d 2 2 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^y~uw-z+d=ah 3 1 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL^uw~z-d+ah=v 4 0 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL of^z~d-ah+v=b 0 1 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL^d~ah-v+b=iy 1 0 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL being^ah~v-b+iy=ih 0 1 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL^v~b-iy+ih=ng 1 0 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL^b~iy-ih+ng=ah 0 1 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LL^iy~ih-ng+ah=t 1 0 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LL a^ih~ng-ah+t=r 0 0 0 0 1 VBG DT NN 2 1 3 2 1 2 10 LL traitor.^ng~ah-t+r=ey 0 2 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^ah~t-r+ey=t 1 1 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^t~r-ey+t=er 2 0 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL^r~ey-t+er=pau 0 1 1 0 0 DT NN PAU 3 2 0 1 2 0 10 LL^ey~t-er+pau=pau 1 0 1 0 0 DT NN PAU 3 2 0 1 2 0 10 LL^t~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 10 LL^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 13 LL +"When^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL^pau~w-eh+n=sh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL^w~eh-n+sh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL she^eh~n-sh+iy=f 0 1 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL^n~sh-iy+f=er 1 0 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL first^sh~iy-f+er=s 0 3 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^iy~f-er+s=t 1 2 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^f~er-s+t=k 2 1 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL^er~s-t+k=ey 3 0 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL came^s~t-k+ey=m 0 2 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL^t~k-ey+m=b 1 1 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL^k~ey-m+b=ae 2 0 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL back^ey~m-b+ae=k 0 2 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL^m~b-ae+k=hh 1 1 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL^b~ae-k+hh=ow 2 0 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL home^ae~k-hh+ow=m 0 2 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL^k~hh-ow+m=ae 1 1 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL^hh~ow-m+ae=f 2 0 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL after^ow~m-ae+f=t 0 1 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL^m~ae-f+t=er 1 0 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL^ae~f-t+er=p 0 1 1 0 1 NN IN NN 2 2 3 1 2 2 13 LL^f~t-er+p=r 1 0 1 0 1 NN IN NN 2 2 3 1 2 2 13 LL prison^t~er-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^er~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL^ih~z-ah+n=sh 1 1 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL she^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL was^sh~iy-w+aa=z 0 2 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL^iy~w-aa+z=n 1 1 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL^w~aa-z+n=eh 2 0 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL never^aa~z-n+eh=v 0 1 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL^z~n-eh+v=er 1 0 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL^n~eh-v+er=dh 0 1 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LL^eh~v-er+dh=ah 1 0 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LL the^v~er-dh+ah=s 0 1 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL^er~dh-ah+s=ey 1 0 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL same.^dh~ah-s+ey=m 0 2 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^ah~s-ey+m=pau 1 1 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^s~ey-m+pau=pau 2 0 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL^ey~m-pau+pau=0 0 0 1 0 0 JJ PAU PAU 3 0 0 1 0 0 13 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LL +"She^pau~pau-sh+iy=ao 0 1 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL^pau~sh-iy+ao=l 1 0 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL always^sh~iy-ao+l=w 0 1 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL^iy~ao-l+w=ey 1 0 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL^ao~l-w+ey=z 0 2 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL^l~w-ey+z=hh 1 1 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL^w~ey-z+hh=ae 2 0 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL had^ey~z-hh+ae=d 0 2 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL^z~hh-ae+d=ah 1 1 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL^hh~ae-d+ah=b 2 0 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL a^ae~d-ah+b=ih 0 0 1 0 1 VHD DT NN 3 1 3 1 1 1 17 LL bit^d~ah-b+ih=t 0 2 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL^ah~b-ih+t=ah 1 1 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL^b~ih-t+ah=v 2 0 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL of^ih~t-ah+v=ah 0 1 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL^t~ah-v+ah=g 1 0 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL a^ah~v-ah+g=l 0 0 1 0 1 IN DT NN 2 1 3 1 1 1 17 LL glow^v~ah-g+l=ow 0 2 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL^ah~g-l+ow=ah 1 1 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL^g~l-ow+ah=b 2 0 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL about^l~ow-ah+b=aw 0 0 1 0 1 NN IN PP$ 3 1 3 1 2 1 17 LL^ow~ah-b+aw=t 0 2 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL^ah~b-aw+t=hh 1 1 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL^b~aw-t+hh=er 2 0 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL her^aw~t-hh+er=b 0 1 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL^t~hh-er+b=ah 1 0 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL but^hh~er-b+ah=t 0 2 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL^er~b-ah+t=sh 1 1 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL^b~ah-t+sh=iy 2 0 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL she^ah~t-sh+iy=s 0 1 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL^t~sh-iy+s=iy 1 0 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL seemed^sh~iy-s+iy=m 0 3 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^iy~s-iy+m=d 1 2 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^s~iy-m+d=t 2 1 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL^iy~m-d+t=uw 3 0 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL to^m~d-t+uw=hh 0 1 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL^d~t-uw+hh=ae 1 0 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL have^t~uw-hh+ae=v 0 2 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL^uw~hh-ae+v=l 1 1 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL^hh~ae-v+l=ao 2 0 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL lost^ae~v-l+ao=s 0 3 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^v~l-ao+s=t 1 2 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^l~ao-s+t=dh 2 1 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL^ao~s-t+dh=ae 3 0 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL that.^s~t-dh+ae=t 0 2 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^t~dh-ae+t=pau 1 1 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^dh~ae-t+pau=pau 2 0 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL^ae~t-pau+pau=0 0 0 1 0 0 IN/that PAU PAU 3 0 0 1 0 0 17 LL^0~pau-pau+s=ah 0 0 0 0 1 PAU PAU DT 0 0 3 0 0 1 6 LL +"Some^pau~pau-s+ah=m 0 2 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL^pau~s-ah+m=p 1 1 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL^s~ah-m+p=iy 2 0 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL people^ah~m-p+iy=p 0 1 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL^m~p-iy+p=ah 1 0 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL^p~iy-p+ah=l 0 2 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL^iy~p-ah+l=s 1 1 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL^p~ah-l+s=eh 2 0 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL said^ah~l-s+eh=d 0 2 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL^l~s-eh+d=ih 1 1 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL^s~eh-d+ih=t 2 0 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL it^eh~d-ih+t=w 0 1 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL^d~ih-t+w=aa 1 0 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL was^ih~t-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL^t~w-aa+z=t 1 1 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL^w~aa-z+t=r 2 0 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL treason.^aa~z-t+r=iy 0 2 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^z~t-r+iy=z 1 1 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^t~r-iy+z=ah 2 0 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL^r~iy-z+ah=n 0 2 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^iy~z-ah+n=pau 1 1 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^z~ah-n+pau=pau 2 0 1 0 0 VBD NN PAU 3 3 0 1 2 0 6 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 6 LL^0~pau-pau+m=ay 0 0 0 0 1 PAU PAU PP$ 0 0 2 0 0 1 25 LL My^pau~pau-m+ay=g 0 1 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL^pau~m-ay+g=r 1 0 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL grandmother^m~ay-g+r=ae 0 4 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^ay~g-r+ae=n 1 3 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^g~r-ae+n=d 2 2 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^r~ae-n+d=m 3 1 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^ae~n-d+m=ah 4 0 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL^n~d-m+ah=dh 0 1 1 1 0 PP$ NN VHD 5 2 2 1 3 1 25 LL^d~m-ah+dh=er 1 0 1 1 0 PP$ NN VHD 5 2 2 1 3 1 25 LL^m~ah-dh+er=hh 0 1 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LL^ah~dh-er+hh=ae 1 0 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LL had^dh~er-hh+ae=d 0 2 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL^er~hh-ae+d=t 1 1 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL^hh~ae-d+t=uw 2 0 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL two^ae~d-t+uw=s 0 1 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL^d~t-uw+s=ah 1 0 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL sons^t~uw-s+ah=n 0 3 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^uw~s-ah+n=z 1 2 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^s~ah-n+z=ah 2 1 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL^ah~n-z+ah=n 3 0 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL and^n~z-ah+n=d 0 2 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL^z~ah-n+d=t 1 1 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL^ah~n-d+t=uw 2 0 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL two^n~d-t+uw=s 0 1 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL^d~t-uw+s=ah 1 0 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL son^t~uw-s+ah=n 0 2 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL^uw~s-ah+n=ih 1 1 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL^s~ah-n+ih=n 2 0 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL in^ah~n-ih+n=l 0 1 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL^n~ih-n+l=ao 1 0 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL laws^ih~n-l+ao=z 0 2 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL^n~l-ao+z=ih 1 1 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL^l~ao-z+ih=n 2 0 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL in^ao~z-ih+n=dh 0 1 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL^z~ih-n+dh=ah 1 0 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL the^ih~n-dh+ah=f 0 1 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL^n~dh-ah+f=ao 1 0 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL forces^dh~ah-f+ao=r 0 2 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^ah~f-ao+r=s 1 1 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^f~ao-r+s=ih 2 0 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL^ao~r-s+ih=z 0 2 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL^r~s-ih+z=ah 1 1 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL^s~ih-z+ah=n 2 0 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL ... and^ih~z-ah+n=d 0 2 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL^z~ah-n+d=dh 1 1 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL^ah~n-d+dh=eh 2 0 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL there^n~d-dh+eh=r 0 2 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL^d~dh-eh+r=ih 1 1 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL^dh~eh-r+ih=z 2 0 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL is^eh~r-ih+z=n 0 1 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL^r~ih-z+n=ow 1 0 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL no^ih~z-n+ow=w 0 1 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL^z~n-ow+w=ey 1 0 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL way^n~ow-w+ey=sh 0 1 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL^ow~w-ey+sh=iy 1 0 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL she^w~ey-sh+iy=w 0 1 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL^ey~sh-iy+w=uh 1 0 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL would^sh~iy-w+uh=d 0 2 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL^iy~w-uh+d=hh 1 1 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL^w~uh-d+hh=ae 2 0 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL have^uh~d-hh+ae=v 0 2 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL^d~hh-ae+v=g 1 1 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL^hh~ae-v+g=ih 2 0 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL given^ae~v-g+ih=v 0 1 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL^v~g-ih+v=ah 1 0 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL^g~ih-v+ah=n 0 2 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL^ih~v-ah+n=eh 1 1 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL^v~ah-n+eh=n 2 0 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL anybody^ah~n-eh+n=iy 0 0 0 1 0 VVN NN NN 3 1 2 2 4 4 25 LL^n~eh-n+iy=b 0 1 1 0 0 VVN NN NN 1 2 2 2 4 4 25 LL^eh~n-iy+b=ah 1 0 1 0 0 VVN NN NN 1 2 2 2 4 4 25 LL^n~iy-b+ah=d 0 1 0 0 0 VVN NN NN 2 2 2 2 4 4 25 LL^iy~b-ah+d=iy 1 0 0 0 0 VVN NN NN 2 2 2 2 4 4 25 LL^b~ah-d+iy=ih 0 1 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LL^ah~d-iy+ih=n 1 0 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LL information."^d~iy-ih+n=f 0 1 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL^iy~ih-n+f=er 1 0 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL^ih~n-f+er=m 0 1 1 0 1 NN NN PAU 2 2 2 4 4 0 25 LL^n~f-er+m=ey 1 0 1 0 1 NN NN PAU 2 2 2 4 4 0 25 LL^f~er-m+ey=sh 0 1 0 1 0 NN NN PAU 2 2 3 4 4 0 25 LL^er~m-ey+sh=ah 1 0 0 1 0 NN NN PAU 2 2 3 4 4 0 25 LL^m~ey-sh+ah=n 0 2 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^ey~sh-ah+n=pau 1 1 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^sh~ah-n+pau=pau 2 0 1 0 0 NN NN PAU 2 3 0 4 4 0 25 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 4 0 0 25 LL^0~pau-pau+m=iy 0 0 0 0 0 PAU PAU NN 0 0 2 0 0 2 12 LH +Mrs^pau~pau-m+iy=s 0 1 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH^pau~m-iy+s=iy 1 0 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH^m~iy-s+iy=s 0 2 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH^iy~s-iy+s=d 1 1 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH^s~iy-s+d=ah 2 0 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH Duncan^iy~s-d+ah=ng 0 2 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^s~d-ah+ng=k 1 1 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^d~ah-ng+k=ah 2 0 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH^ah~ng-k+ah=n 0 2 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH^ng~k-ah+n=b 1 1 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH^k~ah-n+b=ih 2 0 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH became^ah~n-b+ih=k 0 1 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH^n~b-ih+k=ey 1 0 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH^b~ih-k+ey=m 0 2 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH^ih~k-ey+m=w 1 1 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH^k~ey-m+w=ah 2 0 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH one^ey~m-w+ah=n 0 2 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH^m~w-ah+n=ah 1 1 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH^w~ah-n+ah=v 2 0 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH of^ah~n-ah+v=dh 0 1 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH^n~ah-v+dh=ah 1 0 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH the^ah~v-dh+ah=m 0 1 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH^v~dh-ah+m=ow 1 0 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH most^dh~ah-m+ow=s 0 3 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^ah~m-ow+s=t 1 2 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^m~ow-s+t=f 2 1 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH^ow~s-t+f=ey 3 0 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH famous^s~t-f+ey=m 0 1 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH^t~f-ey+m=ah 1 0 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH^f~ey-m+ah=s 0 2 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH^ey~m-ah+s=m 1 1 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH^m~ah-s+m=iy 2 0 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH mediums^ah~s-m+iy=d 0 1 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH^s~m-iy+d=iy 1 0 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH^m~iy-d+iy=ah 0 1 1 0 0 JJ NNS IN 2 2 3 2 3 1 12 LH^iy~d-iy+ah=m 1 0 1 0 0 JJ NNS IN 2 2 3 2 3 1 12 LH^d~iy-ah+m=z 0 2 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH^iy~ah-m+z=ah 1 1 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH^ah~m-z+ah=v 2 0 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH of^m~z-ah+v=hh 0 1 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH^z~ah-v+hh=er 1 0 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH her^ah~v-hh+er=t 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH^v~hh-er+t=ay 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH time,^hh~er-t+ay=m 0 2 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^er~t-ay+m=pau 1 1 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^t~ay-m+pau=pau 2 0 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH^ay~m-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 12 LH^0~pau-pau+hh=eh 0 0 0 0 1 PAU PAU VVG 0 0 2 0 0 2 6 LL heading^pau~pau-hh+eh=d 0 1 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL^pau~hh-eh+d=ih 1 0 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL^hh~eh-d+ih=ng 0 2 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL^eh~d-ih+ng=ah 1 1 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL^d~ih-ng+ah=n 2 0 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL a^ih~ng-ah+n=eh 0 0 0 0 1 VVG DT NN 3 1 2 2 1 2 6 LL network^ng~ah-n+eh=t 0 1 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL^ah~n-eh+t=w 1 0 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL^n~eh-t+w=er 0 3 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^eh~t-w+er=k 1 2 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^t~w-er+k=ah 2 1 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL^w~er-k+ah=v 3 0 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL of^er~k-ah+v=s 0 1 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL^k~ah-v+s=p 1 0 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL spiritualist^ah~v-s+p=ih 0 2 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^v~s-p+ih=r 1 1 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^s~p-ih+r=ih 2 0 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL^p~ih-r+ih=ch 0 1 1 0 0 IN NN NNS 3 2 2 1 5 2 6 LL^ih~r-ih+ch=ah 1 0 1 0 0 IN NN NNS 3 2 2 1 5 2 6 LL^r~ih-ch+ah=w 0 1 0 0 0 IN NN NNS 2 2 2 1 5 2 6 LL^ih~ch-ah+w=ah 1 0 0 0 0 IN NN NNS 2 2 2 1 5 2 6 LL^ch~ah-w+ah=l 0 1 0 0 0 IN NN NNS 2 2 4 1 5 2 6 LL^ah~w-ah+l=ih 1 0 0 0 0 IN NN NNS 2 2 4 1 5 2 6 LL^w~ah-l+ih=s 0 3 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^ah~l-ih+s=t 1 2 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^l~ih-s+t=ch 2 1 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL^ih~s-t+ch=er 3 0 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL churches.^s~t-ch+er=ch 0 1 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL^t~ch-er+ch=ah 1 0 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL^ch~er-ch+ah=z 0 2 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^er~ch-ah+z=pau 1 1 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^ch~ah-z+pau=pau 2 0 1 0 0 NN NNS PAU 2 3 0 5 2 0 6 LL^ah~z-pau+pau=0 0 0 0 0 0 NNS PAU PAU 3 0 0 2 0 0 6 LL^0~pau-pau+d=uh 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 2 7 LH +During^pau~pau-d+uh=r 0 1 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH^pau~d-uh+r=ih 1 0 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH^d~uh-r+ih=ng 0 2 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH^uh~r-ih+ng=dh 1 1 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH^r~ih-ng+dh=ah 2 0 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH the^ih~ng-dh+ah=w 0 1 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH^ng~dh-ah+w=ao 1 0 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH war^dh~ah-w+ao=r 0 2 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH^ah~w-ao+r=sh 1 1 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH^w~ao-r+sh=iy 2 0 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH she^ao~r-sh+iy=l 0 1 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH^r~sh-iy+l=ay 1 0 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH lived^sh~iy-l+ay=v 0 3 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^iy~l-ay+v=d 1 2 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^l~ay-v+d=ih 2 1 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH^ay~v-d+ih=n 3 0 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH in^v~d-ih+n=p 0 1 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH^d~ih-n+p=ao 1 0 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH Portsmouth,^ih~n-p+ao=r 0 3 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^n~p-ao+r=t 1 2 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^p~ao-r+t=s 2 1 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^ao~r-t+s=m 3 0 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH^r~t-s+m=ah 0 3 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^t~s-m+ah=th 1 2 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^s~m-ah+th=pau 2 1 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^m~ah-th+pau=pau 3 0 1 0 0 IN NN PAU 4 4 0 1 2 0 7 LH^ah~th-pau+pau=0 0 0 0 0 0 NN PAU PAU 4 0 0 2 0 0 7 LH^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 6 LL the^pau~pau-dh+ah=hh 0 1 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL^pau~dh-ah+hh=ow 1 0 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL home^dh~ah-hh+ow=m 0 2 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL^ah~hh-ow+m=ah 1 1 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL^hh~ow-m+ah=v 2 0 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL of^ow~m-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL^m~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL the^ah~v-dh+ah=r 0 1 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL^v~dh-ah+r=oy 1 0 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL Royal^dh~ah-r+oy=ah 0 1 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL^ah~r-oy+ah=l 1 0 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL^r~oy-ah+l=n 0 1 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LL^oy~ah-l+n=ey 1 0 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LL Navy.^ah~l-n+ey=v 0 1 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL^l~n-ey+v=iy 1 0 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL^n~ey-v+iy=pau 0 1 1 0 0 JJ NN PAU 2 2 0 2 2 0 6 LL^ey~v-iy+pau=pau 1 0 1 0 0 JJ NN PAU 2 2 0 2 2 0 6 LL^v~iy-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 6 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LL +She^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL has^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL put^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL us^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL on^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL the^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL right^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL side^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL of^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL the^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL law^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL by^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL bringing^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^b~r-ih+ng=ih 2 1 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^r~ih-ng+ih=ng 3 0 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ih~ng-ih+ng=ih 0 1 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL in^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL the^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL 1952^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^w~ah-n+n=ay 2 0 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~n-n+ay=n 0 2 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~n-ay+n=f 1 1 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~ay-n+f=ay 2 0 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^ay~n-f+ay=v 0 2 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^n~f-ay+v=t 1 1 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^f~ay-v+t=uw 2 0 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^ay~v-t+uw=ae 0 1 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL act.^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^ae~k-t+pau=pau 2 0 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^k~t-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 17 LL^0~pau-pau+ae=t 0 0 0 0 1 PAU PAU IN 0 0 2 0 0 1 19 LL +At^pau~pau-ae+t=ah 0 1 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL^pau~ae-t+ah=s 1 0 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL a^ae~t-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL séance^t~ah-s+ey=aa 0 1 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL^ah~s-ey+aa=n 1 0 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL^s~ey-aa+n=s 0 2 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL^ey~aa-n+s=ih 1 1 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL^aa~n-s+ih=n 2 0 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL in^n~s-ih+n=w 0 1 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL^s~ih-n+w=ah 1 0 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL 1943^ih~n-w+ah=n 0 2 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^n~w-ah+n=n 1 1 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~n-ay+n=f 1 1 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~ay-n+f=ao 2 0 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^ay~n-f+ao=r 0 2 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^n~f-ao+r=th 1 1 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^f~ao-r+th=r 2 0 1 1 1 IN NN PP 3 3 3 1 4 1 19 LL^ao~r-th+r=iy 0 2 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL^r~th-r+iy=ih 1 1 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL^th~r-iy+ih=t 2 0 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL it^r~iy-ih+t=w 0 1 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL^iy~ih-t+w=aa 1 0 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL was^ih~t-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL^t~w-aa+z=k 1 1 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL^w~aa-z+k=l 2 0 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL claimed^aa~z-k+l=ey 0 4 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^z~k-l+ey=m 1 3 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^k~l-ey+m=d 2 2 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^l~ey-m+d=dh 3 1 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL^ey~m-d+dh=ae 4 0 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL that^m~d-dh+ae=t 0 2 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL^d~dh-ae+t=dh 1 1 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL^dh~ae-t+dh=ah 2 0 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL the^ae~t-dh+ah=s 0 1 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL^t~dh-ah+s=p 1 0 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL spirit^dh~ah-s+p=ih 0 2 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^ah~s-p+ih=r 1 1 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^s~p-ih+r=ah 2 0 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL^p~ih-r+ah=t 0 2 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL^ih~r-ah+t=ah 1 1 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL^r~ah-t+ah=v 2 0 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL of^ah~t-ah+v=ah 0 1 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL^t~ah-v+ah=s 1 0 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL a^ah~v-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL sailor^v~ah-s+ey=l 0 1 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL^ah~s-ey+l=er 1 0 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL^s~ey-l+er=f 0 1 1 0 1 DT NN IN 2 2 4 1 2 1 19 LL^ey~l-er+f=r 1 0 1 0 1 DT NN IN 2 2 4 1 2 1 19 LL from^l~er-f+r=ah 0 3 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^er~f-r+ah=m 1 2 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^f~r-ah+m=dh 2 1 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL^r~ah-m+dh=ah 3 0 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL the^ah~m-dh+ah=hh 0 1 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL^m~dh-ah+hh=m 1 0 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL HMS^dh~ah-hh+m=s 0 2 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL^ah~hh-m+s=b 1 1 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL^hh~m-s+b=aa 2 0 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL Barham^m~s-b+aa=r 0 2 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^s~b-aa+r=hh 1 1 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^b~aa-r+hh=ah 2 0 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL^aa~r-hh+ah=m 0 2 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL^r~hh-ah+m=ah 1 1 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL^hh~ah-m+ah=p 2 0 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL appeared.^ah~m-ah+p=ih 0 0 0 0 1 NN VVN PAU 3 1 4 2 2 0 19 LL^m~ah-p+ih=r 0 3 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^ah~p-ih+r=d 1 2 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^p~ih-r+d=pau 2 1 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^ih~r-d+pau=pau 3 0 0 1 0 NN VVN PAU 1 4 0 2 2 0 19 LL^r~d-pau+pau=0 0 0 1 0 0 VVN PAU PAU 4 0 0 2 0 0 19 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 10 LL +The^pau~pau-dh+ah=v 0 1 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL^pau~dh-ah+v=eh 1 0 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL vessel^dh~ah-v+eh=s 0 1 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL^ah~v-eh+s=ah 1 0 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL^v~eh-s+ah=l 0 2 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL^eh~s-ah+l=w 1 1 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL^s~ah-l+w=aa 2 0 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL was^ah~l-w+aa=z 0 2 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL^l~w-aa+z=ow 1 1 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL^w~aa-z+ow=n 2 0 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL only^aa~z-ow+n=l 0 1 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL^z~ow-n+l=iy 1 0 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL^ow~n-l+iy=ah 0 1 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LL^n~l-iy+ah=f 1 0 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LL officially^l~iy-ah+f=ih 0 0 0 0 1 RB RB VVN 2 1 2 2 4 2 10 LL^iy~ah-f+ih=sh 0 1 0 1 0 RB RB VVN 1 2 2 2 4 2 10 LL^ah~f-ih+sh=ah 1 0 0 1 0 RB RB VVN 1 2 2 2 4 2 10 LL^f~ih-sh+ah=l 0 1 1 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^ih~sh-ah+l=iy 1 0 1 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^sh~ah-l+iy=d 0 1 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LL^ah~l-iy+d=ih 1 0 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LL declared^l~iy-d+ih=k 0 1 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL^iy~d-ih+k=l 1 0 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL^d~ih-k+l=eh 0 4 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^ih~k-l+eh=r 1 3 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^k~l-eh+r=d 2 2 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^l~eh-r+d=l 3 1 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL^eh~r-d+l=ao 4 0 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL lost^r~d-l+ao=s 0 3 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^d~l-ao+s=t 1 2 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^l~ao-s+t=s 2 1 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL^ao~s-t+s=eh 3 0 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL several^s~t-s+eh=v 0 1 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL^t~s-eh+v=r 1 0 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL^s~eh-v+r=ah 0 3 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^eh~v-r+ah=l 1 2 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^v~r-ah+l=m 2 1 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL^r~ah-l+m=ah 3 0 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL months^ah~l-m+ah=n 0 4 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^l~m-ah+n=th 1 3 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^m~ah-n+th=s 2 2 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^ah~n-th+s=l 3 1 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL^n~th-s+l=ey 4 0 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL later.^th~s-l+ey=t 0 1 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL^s~l-ey+t=er 1 0 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL^l~ey-t+er=pau 0 1 1 0 0 NNS RBR PAU 2 2 0 1 2 0 10 LL^ey~t-er+pau=pau 1 0 1 0 0 NNS RBR PAU 2 2 0 1 2 0 10 LL^t~er-pau+pau=0 0 0 0 0 0 RBR PAU PAU 2 0 0 2 0 0 10 LL^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 24 LL +She^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL was^sh~iy-w+aa=z 0 2 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL^iy~w-aa+z=er 1 1 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL^w~aa-z+er=eh 2 0 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL arrested^aa~z-er+eh=s 0 0 1 0 1 VBD VVN IN 3 1 1 1 3 1 24 LL^z~er-eh+s=t 0 0 0 1 0 VBD VVN IN 1 1 4 1 3 1 24 LL^er~eh-s+t=ah 0 3 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^eh~s-t+ah=d 1 2 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^s~t-ah+d=ih 2 1 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL^t~ah-d+ih=n 3 0 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL in^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL 1944^ih~n-w+ah=n 0 2 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^n~w-ah+n=n 1 1 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~n-ay+n=f 1 1 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~ay-n+f=ao 2 0 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^ay~n-f+ao=r 0 2 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^n~f-ao+r=f 1 1 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^f~ao-r+f=ao 2 0 1 1 1 IN NN CC 3 3 3 1 4 1 24 LL^ao~r-f+ao=r 0 2 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL^r~f-ao+r=ah 1 1 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL^f~ao-r+ah=n 2 0 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL and^ao~r-ah+n=d 0 2 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL^r~ah-n+d=s 1 1 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL^ah~n-d+s=eh 2 0 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL sentenced^n~d-s+eh=n 0 2 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^d~s-eh+n=t 1 1 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^s~eh-n+t=ah 2 0 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL^eh~n-t+ah=n 0 4 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^n~t-ah+n=s 1 3 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^t~ah-n+s=t 2 2 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^ah~n-s+t=t 3 1 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL^n~s-t+t=uw 4 0 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL to^s~t-t+uw=n 0 1 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL^t~t-uw+n=ay 1 0 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL nine^t~uw-n+ay=n 0 2 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL^uw~n-ay+n=m 1 1 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL^n~ay-n+m=ah 2 0 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL months^ay~n-m+ah=n 0 4 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^n~m-ah+n=th 1 3 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^m~ah-n+th=s 2 2 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^ah~n-th+s=ih 3 1 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL^n~th-s+ih=n 4 0 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL in^th~s-ih+n=p 0 1 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL^s~ih-n+p=r 1 0 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL prison^ih~n-p+r=ih 0 2 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^n~p-r+ih=z 1 1 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL^ih~z-ah+n=ae 1 1 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL^z~ah-n+ae=t 2 0 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL at^ah~n-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL^n~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL the^ae~t-dh+ah=ow 0 1 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL^t~dh-ah+ow=l 1 0 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL Old^dh~ah-ow+l=d 0 2 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL^ah~ow-l+d=b 1 1 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL^ow~l-d+b=ey 2 0 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL Bailey^l~d-b+ey=l 0 1 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL^d~b-ey+l=iy 1 0 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL^b~ey-l+iy=f 0 1 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LL^ey~l-iy+f=ao 1 0 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LL for^l~iy-f+ao=r 0 2 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL^iy~f-ao+r=k 1 1 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL^f~ao-r+k=r 2 0 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL crimes^ao~r-k+r=ay 0 4 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^r~k-r+ay=m 1 3 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^k~r-ay+m=z 2 2 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^r~ay-m+z=ah 3 1 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL^ay~m-z+ah=n 4 0 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL under^m~z-ah+n=d 0 1 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL^z~ah-n+d=er 1 0 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL^ah~n-d+er=dh 0 1 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LL^n~d-er+dh=ah 1 0 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LL the^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL Witchcraft^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL Act^f~t-ae+k=t 0 2 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL^t~ae-k+t=ah 1 1 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL^ae~k-t+ah=v 2 0 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL of^k~t-ah+v=w 0 1 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL^t~ah-v+w=ah 1 0 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL 1735.^ah~v-w+ah=n 0 2 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^v~w-ah+n=s 1 1 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^w~ah-n+s=eh 2 0 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL^ah~n-s+eh=v 0 1 1 1 0 IN NN PAU 3 2 3 1 5 0 24 LL^n~s-eh+v=ah 1 0 1 1 0 IN NN PAU 3 2 3 1 5 0 24 LL^s~eh-v+ah=n 0 2 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^eh~v-ah+n=th 1 1 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^v~ah-n+th=r 2 0 1 0 1 IN NN PAU 2 3 3 1 5 0 24 LL^ah~n-th+r=iy 0 2 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^n~th-r+iy=f 1 1 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^th~r-iy+f=ay 2 0 0 1 1 IN NN PAU 3 3 3 1 5 0 24 LL^r~iy-f+ay=v 0 2 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^iy~f-ay+v=pau 1 1 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^f~ay-v+pau=pau 2 0 1 1 0 IN NN PAU 3 3 0 1 5 0 24 LL^ay~v-pau+pau=0 0 0 1 0 0 NN PAU PAU 3 0 0 5 0 0 24 LL^0~pau-pau+w=ay 0 0 0 0 1 PAU PAU IN 0 0 3 0 0 1 9 LL +While^pau~pau-w+ay=l 0 2 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL^pau~w-ay+l=ih 1 1 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL^w~ay-l+ih=n 2 0 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL in^ay~l-ih+n=p 0 1 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL^l~ih-n+p=r 1 0 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL prison^ih~n-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^n~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^p~r-ih+z=ah 2 0 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL^r~ih-z+ah=n 0 2 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL^ih~z-ah+n=sh 1 1 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL she^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL was^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL^iy~w-aa+z=v 1 1 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL^w~aa-z+v=ih 2 0 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL visited^aa~z-v+ih=z 0 1 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL^z~v-ih+z=ah 1 0 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL^v~ih-z+ah=t 0 1 1 0 0 VBD VVN IN 2 2 3 1 3 1 9 LL^ih~z-ah+t=ah 1 0 1 0 0 VBD VVN IN 2 2 3 1 3 1 9 LL^z~ah-t+ah=d 0 2 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL^ah~t-ah+d=b 1 1 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL^t~ah-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL by^ah~d-b+ay=w 0 1 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL^d~b-ay+w=ih 1 0 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL Winston^b~ay-w+ih=n 0 2 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^ay~w-ih+n=s 1 1 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^w~ih-n+s=t 2 0 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL^ih~n-s+t=ah 0 3 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^n~s-t+ah=n 1 2 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^s~t-ah+n=ch 2 1 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL^t~ah-n+ch=er 3 0 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL Churchill.^ah~n-ch+er=ch 0 1 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL^n~ch-er+ch=ih 1 0 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL^ch~er-ch+ih=l 0 2 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^er~ch-ih+l=pau 1 1 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^ch~ih-l+pau=pau 2 0 1 0 0 NN NN PAU 2 3 0 2 2 0 9 LL^ih~l-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 9 LL^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 24 LL +When^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL he^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL was^hh~iy-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL^iy~w-aa+z=r 1 1 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL^w~aa-z+r=ey 2 0 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL re^aa~z-r+ey=ih 0 1 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL^z~r-ey+ih=l 1 0 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL-elected^r~ey-ih+l=eh 0 0 1 0 1 NN VVN IN 2 1 3 0 3 1 24 LL^ey~ih-l+eh=k 0 2 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL^ih~l-eh+k=t 1 1 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL^l~eh-k+t=ah 2 0 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL^eh~k-t+ah=d 0 2 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL^k~t-ah+d=ih 1 1 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL^t~ah-d+ih=n 2 0 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL in^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL 1951^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL the^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL Witchcraft^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL Act^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL was^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL repealed^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL and^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL three^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL years^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL later^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL spiritualism^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL was^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL officially^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 24 LL^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL recognised^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL as^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL a^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 24 LL religion.^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 24 LL^0~pau-pau+k=ae 0 0 0 0 0 PAU PAU NNS 0 0 3 0 0 3 11 LL +Campaigners^pau~pau-k+ae=m 0 2 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^pau~k-ae+m=p 1 1 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^k~ae-m+p=ey 2 0 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL^ae~m-p+ey=n 0 1 0 1 0 PAU NNS TO 3 2 3 0 3 1 11 LL^m~p-ey+n=er 1 0 0 1 0 PAU NNS TO 3 2 3 0 3 1 11 LL^p~ey-n+er=z 0 2 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL^ey~n-er+z=t 1 1 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL^n~er-z+t=uw 2 0 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL to^er~z-t+uw=p 0 1 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL^z~t-uw+p=aa 1 0 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL pardon^t~uw-p+aa=r 0 2 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^uw~p-aa+r=d 1 1 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^p~aa-r+d=ah 2 0 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL^aa~r-d+ah=n 0 2 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL^r~d-ah+n=m 1 1 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL^d~ah-n+m=iy 2 0 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL Mrs^ah~n-m+iy=s 0 1 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL^n~m-iy+s=iy 1 0 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL^m~iy-s+iy=s 0 2 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL^iy~s-iy+s=d 1 1 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL^s~iy-s+d=ah 2 0 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL Duncan^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^s~d-ah+ng=k 1 1 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^d~ah-ng+k=ah 2 0 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL^ah~ng-k+ah=n 0 2 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL^ng~k-ah+n=hh 1 1 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL have^ah~n-hh+ae=v 0 2 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL^n~hh-ae+v=s 1 1 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL^hh~ae-v+s=eh 2 0 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL set^ae~v-s+eh=t 0 2 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL^v~s-eh+t=ah 1 1 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL^s~eh-t+ah=p 2 0 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL up^eh~t-ah+p=ae 0 1 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL^t~ah-p+ae=n 1 0 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL an^ah~p-ae+n=ao 0 1 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL^p~ae-n+ao=n 1 0 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL online^ae~n-ao+n=l 0 1 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL^n~ao-n+l=ay 1 0 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL^ao~n-l+ay=n 0 2 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL^n~l-ay+n=p 1 1 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL^l~ay-n+p=ah 2 0 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL petition.^ay~n-p+ah=t 0 1 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL^n~p-ah+t=ih 1 0 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL^p~ah-t+ih=sh 0 1 0 1 0 RB NN PAU 2 2 3 2 3 0 11 LL^ah~t-ih+sh=ah 1 0 0 1 0 RB NN PAU 2 2 3 2 3 0 11 LL^t~ih-sh+ah=n 0 2 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^ih~sh-ah+n=pau 1 1 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^sh~ah-n+pau=pau 2 0 1 0 0 RB NN PAU 2 3 0 2 3 0 11 LL^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 11 LL^0~pau-pau+dh=ah 0 0 0 0 0 PAU PAU DT 0 0 2 0 0 1 11 LL +The^pau~pau-dh+ah=k 0 1 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL^pau~dh-ah+k=ae 1 0 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL campaign^dh~ah-k+ae=m 0 2 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^ah~k-ae+m=p 1 1 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^k~ae-m+p=ey 2 0 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL^ae~m-p+ey=n 0 2 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL^m~p-ey+n=ih 1 1 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL^p~ey-n+ih=z 2 0 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL is^ey~n-ih+z=b 0 1 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL^n~ih-z+b=ae 1 0 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL backed^ih~z-b+ae=k 0 3 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^z~b-ae+k=t 1 2 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^b~ae-k+t=b 2 1 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL^ae~k-t+b=ay 3 0 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL by^k~t-b+ay=dh 0 1 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL^t~b-ay+dh=ah 1 0 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL the^b~ay-dh+ah=b 0 1 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL^ay~dh-ah+b=r 1 0 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL British^dh~ah-b+r=ih 0 2 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^ah~b-r+ih=t 1 1 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^b~r-ih+t=ih 2 0 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL^r~ih-t+ih=sh 0 2 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL^ih~t-ih+sh=s 1 1 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL^t~ih-sh+s=ah 2 0 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL Society^ih~sh-s+ah=s 0 1 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL^sh~s-ah+s=ay 1 0 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL^s~ah-s+ay=ah 0 1 0 1 0 JJ NN IN 2 2 1 2 4 1 11 LL^ah~s-ay+ah=t 1 0 0 1 0 JJ NN IN 2 2 1 2 4 1 11 LL^s~ay-ah+t=iy 0 0 1 0 0 JJ NN IN 2 1 2 2 4 1 11 LL^ay~ah-t+iy=ah 0 1 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LL^ah~t-iy+ah=v 1 0 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LL of^t~iy-ah+v=p 0 1 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL^iy~ah-v+p=eh 1 0 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL Paranormal^ah~v-p+eh=r 0 1 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL^v~p-eh+r=ah 1 0 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL^p~eh-r+ah=n 0 1 0 0 1 IN JJ NNS 2 2 3 1 4 2 11 LL^eh~r-ah+n=ao 1 0 0 0 1 IN JJ NNS 2 2 3 1 4 2 11 LL^r~ah-n+ao=r 0 2 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^ah~n-ao+r=m 1 1 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^n~ao-r+m=ah 2 0 0 1 0 IN JJ NNS 2 3 3 1 4 2 11 LL^ao~r-m+ah=l 0 2 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL^r~m-ah+l=s 1 1 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL^m~ah-l+s=t 2 0 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL Studies.^ah~l-s+t=ah 0 2 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^l~s-t+ah=d 1 1 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^s~t-ah+d=iy 2 0 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL^t~ah-d+iy=z 0 2 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^ah~d-iy+z=pau 1 1 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^d~iy-z+pau=pau 2 0 1 0 0 JJ NNS PAU 3 3 0 4 2 0 11 LL^iy~z-pau+pau=0 0 0 0 0 0 NNS PAU PAU 3 0 0 2 0 0 11 LL^0~pau-pau+m=iy 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 3 3 LH +Medium^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH^m~iy-d+iy=ah 0 1 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^iy~d-iy+ah=m 1 0 1 0 0 PAU NN NN 2 2 2 0 3 2 3 LH^d~iy-ah+m=m 0 1 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH^iy~ah-m+m=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH Mary^ah~m-m+eh=r 0 1 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH^m~m-eh+r=iy 1 0 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH^m~eh-r+iy=aa 0 1 1 0 1 NN NN NN 2 2 2 3 2 2 3 LH^eh~r-iy+aa=r 1 0 1 0 1 NN NN NN 2 2 2 3 2 2 3 LH Armour,^r~iy-aa+r=m 0 1 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH^iy~aa-r+m=er 1 0 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH^aa~r-m+er=pau 0 1 1 0 0 NN NN PAU 2 2 0 2 2 0 3 LH^r~m-er+pau=pau 1 0 1 0 0 NN NN PAU 2 2 0 2 2 0 3 LH^m~er-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 2 0 0 3 LH^0~pau-pau+hh=uw 0 0 0 0 1 PAU PAU WP 0 0 2 0 0 1 4 LH who^pau~pau-hh+uw=r 0 1 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH^pau~hh-uw+r=ow 1 0 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH wrote^hh~uw-r+ow=t 0 2 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH^uw~r-ow+t=hh 1 1 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH^r~ow-t+hh=er 2 0 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH her^ow~t-hh+er=b 0 1 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH^t~hh-er+b=ay 1 0 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH biography,^hh~er-b+ay=aa 0 1 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH^er~b-ay+aa=g 1 0 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH^b~ay-aa+g=r 0 0 0 1 0 PP$ NN PAU 2 1 3 1 4 0 4 LH^ay~aa-g+r=ah 0 2 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^aa~g-r+ah=f 1 1 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^g~r-ah+f=iy 2 0 1 0 0 PP$ NN PAU 1 3 2 1 4 0 4 LH^r~ah-f+iy=pau 0 1 0 0 0 PP$ NN PAU 3 2 0 1 4 0 4 LH^ah~f-iy+pau=pau 1 0 0 0 0 PP$ NN PAU 3 2 0 1 4 0 4 LH^f~iy-pau+pau=0 0 0 0 0 0 NN PAU PAU 2 0 0 4 0 0 4 LH^0~pau-pau+s=eh 0 0 0 0 1 PAU PAU VVD 0 0 3 0 0 1 1 LH said:^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^pau~s-eh+d=pau 1 1 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^s~eh-d+pau=pau 2 0 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH^eh~d-pau+pau=0 0 0 1 0 0 VVD PAU PAU 3 0 0 1 0 0 1 LH^0~pau-pau+sh=iy 0 0 0 0 1 PAU PAU PP 0 0 2 0 0 1 17 LL "She^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL has^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL put^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL us^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL on^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL the^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL right^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL side^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL of^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL the^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL law^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL by^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL bringing^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^b~r-ih+ng=ih 2 1 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^r~ih-ng+ih=ng 3 0 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL^ih~ng-ih+ng=ih 0 1 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL in^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL the^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL 1952^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^w~ah-n+n=ay 2 0 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL^ah~n-n+ay=n 0 2 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~n-ay+n=f 1 1 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^n~ay-n+f=ay 2 0 1 1 1 DT NN NN 3 3 3 1 4 1 17 LL^ay~n-f+ay=v 0 2 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^n~f-ay+v=t 1 1 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^f~ay-v+t=uw 2 0 1 1 1 DT NN NN 3 3 2 1 4 1 17 LL^ay~v-t+uw=ae 0 1 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL act."^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^ae~k-t+pau=0 2 0 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL^k~t-pau+0=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 17 LL + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-cex-out002.xml b/src/idlaktxp/test_data/mod-cex-out002.xml index 28665ced07e..8ad804b484e 100644 --- a/src/idlaktxp/test_data/mod-cex-out002.xml +++ b/src/idlaktxp/test_data/mod-cex-out002.xml @@ -1,3 +1,3 @@ -^0~0-pau+hh=ah 0 0 0 0 0 PAU PAU NN 0 0 2 0 0 2 2 LHHello ^0~pau-hh+ah=l 0 1 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH^pau~hh-ah+l=ow 1 0 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH^hh~ah-l+ow=dh 0 1 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LH^ah~l-ow+dh=eh 1 0 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LHthere, ^l~ow-dh+eh=r 0 2 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^ow~dh-eh+r=pau 1 1 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^dh~eh-r+pau=pau 2 0 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^eh~r-pau+pau=0 0 0 1 0 0 EX PAU PAU 3 0 0 1 0 0 2 LH^0~pau-pau+w=ah 0 0 0 0 1 PAU PAU NN 0 0 3 0 0 1 3 LL1 ^pau~pau-w+ah=n 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL^pau~w-ah+n=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL^w~ah-n+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL2 ^ah~n-t+uw=th 0 1 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL^n~t-uw+th=r 1 0 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL3. -^t~uw-th+r=iy 0 2 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^uw~th-r+iy=pau 1 1 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^th~r-iy+pau=0 2 0 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^r~iy-pau+0=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 3 LL \ No newline at end of file +^0~0-pau+hh=ah 0 0 0 0 0 PAU PAU NN 0 0 2 0 0 2 2 LHHello^0~pau-hh+ah=l 0 1 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH^pau~hh-ah+l=ow 1 0 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH^hh~ah-l+ow=dh 0 1 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LH^ah~l-ow+dh=eh 1 0 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LH there,^l~ow-dh+eh=r 0 2 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^ow~dh-eh+r=pau 1 1 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^dh~eh-r+pau=pau 2 0 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH^eh~r-pau+pau=0 0 0 1 0 0 EX PAU PAU 3 0 0 1 0 0 2 LH^0~pau-pau+w=ah 0 0 0 0 1 PAU PAU NN 0 0 3 0 0 1 3 LL 1^pau~pau-w+ah=n 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL^pau~w-ah+n=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL^w~ah-n+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL 2^ah~n-t+uw=th 0 1 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL^n~t-uw+th=r 1 0 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL 3.^t~uw-th+r=iy 0 2 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^uw~th-r+iy=pau 1 1 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^th~r-iy+pau=0 2 0 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL^r~iy-pau+0=0 0 0 1 0 0 NN PAU PAU 3 0 0 1 0 0 3 LL + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-cex-outv000.xml b/src/idlaktxp/test_data/mod-cex-outv000.xml index b3ba3225b4c..450c7663b45 100644 --- a/src/idlaktxp/test_data/mod-cex-outv000.xml +++ b/src/idlaktxp/test_data/mod-cex-outv000.xml @@ -45,9 +45,6 @@ an - - - ^0~pau-k+ae=n 0 2 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL ^pau~k-ae+n=pau 1 1 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL @@ -72,10 +69,11 @@ + + + a - - ^pau~pau-ah+pau=pau 0 0 0 0 0 PAU DT PAU 0 1 0 0 1 0 1 LL @@ -98,6 +96,8 @@ + + http: @@ -167,143 +167,165 @@ - - + + - ^0~pau-pau+w=w 0 0 0 0 0 PAU PAU NN 0 0 3 0 0 1 1 LL + ^0~pau-pau+d=ah 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 7 9 LH - + www.big.site - - - ^pau~pau-w+w=w 0 2 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL - ^pau~w-w+w=pau 1 1 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL - ^w~w-w+pau=pau 2 0 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL + + ^pau~pau-d+ah=b 0 1 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH + ^pau~d-ah+b=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH - - - - - ^w~w-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 1 0 0 1 LL - - - - - - - - - - - ^0~pau-pau+b=ih 0 0 0 0 1 PAU PAU JJ 0 0 3 0 0 1 1 LL - - - - - - ^pau~pau-b+ih=g 0 2 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL - ^pau~b-ih+g=pau 1 1 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL - ^b~ih-g+pau=pau 2 0 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH - - - - - ^ih~g-pau+pau=0 0 0 1 0 0 JJ PAU PAU 3 0 0 1 0 0 1 LL - - - - - - - - - - - ^0~pau-pau+s=ay 0 0 0 0 1 PAU PAU NN 0 0 3 0 0 1 7 LH - - - - - - ^pau~pau-s+ay=t 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH - ^pau~s-ay+t=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH - ^s~ay-t+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + ^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + + + ^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + ^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + ^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + + + ^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + ^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH + ^l~y-uw+d=aa 1 0 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH + + + ^y~uw-d+aa=t 0 2 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + ^uw~d-aa+t=b 1 1 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + ^d~aa-t+b=iy 2 0 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^aa~t-b+iy=ay 0 1 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH + ^t~b-iy+ay=jh 1 0 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH + + + ^b~iy-ay+jh=iy 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH + + + ^iy~ay-jh+iy=d 0 1 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH + ^ay~jh-iy+d=aa 1 0 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH + + + ^jh~iy-d+aa=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^iy~d-aa+t=eh 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^d~aa-t+eh=s 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^aa~t-eh+s=ay 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^t~eh-s+ay=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^eh~s-ay+t=iy 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^s~ay-t+iy=iy 0 1 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH + ^ay~t-iy+iy=t 1 0 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH + + + ^t~iy-iy+t=uw 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH + 2 - ^ay~t-t+uw=iy 0 1 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH - ^t~t-uw+iy=k 1 0 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH + ^iy~iy-t+uw=iy 0 1 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH + ^iy~t-uw+iy=k 1 0 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH = - ^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 2 7 LH + ^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 1 9 LH - ^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH + ^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH - - 4-2 - + + 4 - ^l~z-f+ao=r 0 2 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH - ^z~f-ao+r=t 1 1 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH - ^f~ao-r+t=uw 2 0 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH + ^l~z-f+ao=r 0 2 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH + ^z~f-ao+r=t 1 1 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH + ^f~ao-r+t=uw 2 0 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH - - ^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LH - ^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LH + + - + + 2 + + ^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH + ^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH - + + FULL - - ^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH - ^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH - ^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH + ^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH + ^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH + ^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH - + + Power - - ^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH - ^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH + ^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH + ^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH - ^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 7 LH + ^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 9 LH - + + café - - ^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH - ^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH + ^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH + ^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH - ^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH - ^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH + ^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH + ^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH - ^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 7 LH + ^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 9 LH @@ -316,11 +338,9 @@ + “okay” - - - ^pau~pau-ow+k=ey 0 0 0 1 1 PAU NN PAU 0 1 2 0 2 0 1 LH @@ -345,18 +365,20 @@ + + + And - ^pau~pau-ah+n=d 0 2 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL ^pau~ah-n+d=ah 1 1 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL ^ah~n-d+ah=n 2 0 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL + another - ^n~d-ah+n=ah 0 0 0 0 1 CC DT NN 3 1 2 1 3 2 3 LL @@ -369,11 +391,9 @@ ^ah~dh-er+s=eh 1 0 1 0 1 CC DT NN 2 2 3 1 3 2 3 LL + sentence. - - - ^dh~er-s+eh=n 0 2 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL ^er~s-eh+n=t 1 1 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL @@ -393,6 +413,9 @@ + + + diff --git a/src/idlaktxp/test_data/mod-cex-outv001.xml b/src/idlaktxp/test_data/mod-cex-outv001.xml index 56fe6a8bbad..b0b3294f517 100644 --- a/src/idlaktxp/test_data/mod-cex-outv001.xml +++ b/src/idlaktxp/test_data/mod-cex-outv001.xml @@ -38,7 +38,6 @@ Helen - ^0~pau-hh+eh=l 0 1 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL ^pau~hh-eh+l=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL @@ -49,9 +48,9 @@ ^l~ah-n+d=ah 2 0 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL + Duncan - ^ah~n-d+ah=ng 0 2 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL ^n~d-ah+ng=k 1 1 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL @@ -63,18 +62,18 @@ ^k~ah-n+w=aa 2 0 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL + was - ^ah~n-w+aa=z 0 2 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL ^n~w-aa+z=t 1 1 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL ^w~aa-z+t=r 2 0 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL + tried - ^aa~z-t+r=ay 0 3 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL ^z~t-r+ay=d 1 2 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL @@ -82,9 +81,9 @@ ^r~ay-d+ah=n 3 0 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL + under - ^ay~d-ah+n=d 0 1 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL ^d~ah-n+d=er 1 0 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL @@ -94,17 +93,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL @@ -118,10 +117,9 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL + Act - - ^f~t-ae+k=t 0 2 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL ^t~ae-k+t=pau 1 1 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL @@ -146,17 +144,18 @@ + + The - ^pau~pau-dh+ah=f 0 1 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL ^pau~dh-ah+f=ae 1 0 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL + family - ^dh~ah-f+ae=m 0 1 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL ^ah~f-ae+m=ah 1 0 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL @@ -170,25 +169,25 @@ ^ah~l-iy+ah=v 1 0 0 0 1 DT RB IN 2 2 2 1 3 1 29 LL + of - ^l~iy-ah+v=dh 0 1 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL ^iy~ah-v+dh=ah 1 0 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL ^v~dh-ah+l=ae 1 0 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL + last - ^dh~ah-l+ae=s 0 3 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL ^ah~l-ae+s=t 1 2 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL @@ -196,9 +195,9 @@ ^ae~s-t+p=er 3 0 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL + person - ^s~t-p+er=s 0 1 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL ^t~p-er+s=ah 1 0 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL @@ -209,49 +208,49 @@ ^s~ah-n+ih=n 2 0 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL + in - ^ah~n-ih+n=dh 0 1 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL ^n~ih-n+dh=ah 1 0 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL + the - ^ih~n-dh+ah=uw 0 1 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL ^n~dh-ah+uw=k 1 0 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL + UK - ^dh~ah-uw+k=t 0 1 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL ^ah~uw-k+t=uw 1 0 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL + to - ^uw~k-t+uw=b 0 1 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL ^k~t-uw+b=iy 1 0 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL + be - ^t~uw-b+iy=p 0 1 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL ^uw~b-iy+p=r 1 0 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL + prosecuted - ^b~iy-p+r=aa 0 2 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL ^iy~p-r+aa=s 1 1 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL @@ -272,9 +271,9 @@ ^t~ih-d+ah=n 2 0 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL + under - ^ih~d-ah+n=d 0 1 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL ^d~ah-n+d=er 1 0 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL @@ -284,17 +283,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL @@ -308,27 +307,27 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL + Act - ^f~t-ae+k=t 0 2 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL ^t~ae-k+t=w 1 1 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL ^ae~k-t+w=ih 2 0 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL + will - ^k~t-w+ih=l 0 2 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL ^t~w-ih+l=m 1 1 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL ^w~ih-l+m=aa 2 0 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL + mark - ^ih~l-m+aa=r 0 3 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL ^l~m-aa+r=k 1 2 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL @@ -336,17 +335,17 @@ ^aa~r-k+dh=ah 3 0 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL + the - ^r~k-dh+ah=f 0 1 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL ^k~dh-ah+f=ay 1 0 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL + 50th - ^dh~ah-f+ay=v 0 1 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL ^ah~f-ay+v=ow 1 0 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL @@ -364,9 +363,9 @@ ^iy~ey-ch+ae=n 1 0 1 1 1 DT NN NN 2 2 1 1 4 5 29 LL + anniversary - ^ey~ch-ae+n=ah 0 0 1 1 0 NN NN IN 2 1 2 4 5 1 29 LL @@ -386,42 +385,42 @@ ^s~er-iy+ah=v 0 0 0 0 1 NN NN IN 2 1 2 4 5 1 29 LL + of - ^er~iy-ah+v=hh 0 1 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL ^iy~ah-v+hh=er 1 0 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL + her - ^ah~v-hh+er=d 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL ^v~hh-er+d=eh 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL + death - ^hh~er-d+eh=th 0 2 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL ^er~d-eh+th=b 1 1 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL ^d~eh-th+b=ay 2 0 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL + by - ^eh~th-b+ay=k 0 1 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL ^th~b-ay+k=ao 1 0 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL + calling - ^b~ay-k+ao=l 0 1 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL ^ay~k-ao+l=ih 1 0 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL @@ -432,27 +431,26 @@ ^l~ih-ng+f=ao 2 0 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL + for - ^ih~ng-f+ao=r 0 2 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL ^ng~f-ao+r=hh 1 1 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL ^f~ao-r+hh=er 2 0 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL + her - ^ao~r-hh+er=p 0 1 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL ^r~hh-er+p=aa 1 0 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL + pardon. - - ^hh~er-p+aa=r 0 2 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL ^er~p-aa+r=d 1 1 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL @@ -482,9 +480,10 @@ + + Medium - ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH ^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH @@ -498,9 +497,9 @@ ^iy~ah-m+hh=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH + Helen - ^ah~m-hh+eh=l 0 1 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH ^m~hh-eh+l=ah 1 0 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH @@ -511,9 +510,9 @@ ^l~ah-n+d=ah 2 0 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH + Duncan, - ^ah~n-d+ah=ng 0 2 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH ^n~d-ah+ng=k 1 1 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH @@ -541,26 +540,26 @@ + who - ^pau~pau-hh+uw=w 0 1 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH ^pau~hh-uw+w=aa 1 0 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH + was - ^hh~uw-w+aa=z 0 2 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH ^uw~w-aa+z=b 1 1 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH ^w~aa-z+b=ao 2 0 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH + born - ^aa~z-b+ao=r 0 3 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH ^z~b-ao+r=n 1 2 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH @@ -568,17 +567,17 @@ ^ao~r-n+ih=n 3 0 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH + in - ^r~n-ih+n=k 0 1 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH ^n~ih-n+k=ae 1 0 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH + Callander, - ^ih~n-k+ae=l 0 1 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH ^n~k-ae+l=ah 1 0 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH @@ -609,9 +608,9 @@ + Perthshire, - ^pau~pau-p+er=th 0 4 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH ^pau~p-er+th=hh 1 3 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH @@ -644,18 +643,18 @@ + was - ^pau~pau-w+aa=z 0 2 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL ^pau~w-aa+z=ih 1 1 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL ^w~aa-z+ih=m 2 0 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL + imprisoned - ^aa~z-ih+m=p 0 1 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL ^z~ih-m+p=r 1 0 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL @@ -672,9 +671,9 @@ ^ah~n-d+y=uw 3 0 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL + using - ^n~d-y+uw=z 0 1 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL ^d~y-uw+z=ih 1 0 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL @@ -685,25 +684,25 @@ ^z~ih-ng+dh=ah 2 0 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL + the - ^ih~ng-dh+ah=l 0 1 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL ^ng~dh-ah+l=ao 1 0 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL + law - ^dh~ah-l+ao=d 0 1 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL ^ah~l-ao+d=uh 1 0 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL + during - ^l~ao-d+uh=r 0 1 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL ^ao~d-uh+r=ih 1 0 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL @@ -714,9 +713,9 @@ ^r~ih-ng+w=er 2 0 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL + World - ^ih~ng-w+er=l 0 3 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL ^ng~w-er+l=d 1 2 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL @@ -724,19 +723,18 @@ ^er~l-d+w=ao 3 0 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL + War - ^l~d-w+ao=r 0 2 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL ^d~w-ao+r=iy 1 1 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL ^w~ao-r+iy=ih 2 0 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL + II. - - ^ao~r-iy+ih=pau 0 0 1 1 0 NN NN PAU 3 1 1 1 2 0 9 LL @@ -762,26 +760,27 @@ + + She - ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL ^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL ^iy~w-aa+z=t 1 1 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL ^w~aa-z+t=aa 2 0 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL + targeted - ^aa~z-t+aa=r 0 2 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL ^z~t-aa+r=g 1 1 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL @@ -797,25 +796,25 @@ ^t~ih-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL + by - ^ih~d-b+ay=dh 0 1 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL ^d~b-ay+dh=ah 1 0 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL + the - ^b~ay-dh+ah=g 0 1 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL ^ay~dh-ah+g=ah 1 0 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL + government - ^dh~ah-g+ah=v 0 1 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL ^ah~g-ah+v=er 1 0 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL @@ -831,9 +830,9 @@ ^ah~n-t+ae=f 3 0 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL + after - ^n~t-ae+f=t 0 1 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL ^t~ae-f+t=er 1 0 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL @@ -843,9 +842,9 @@ ^f~t-er+r=ih 1 0 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LL + revealing - ^t~er-r+ih=v 0 1 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL ^er~r-ih+v=iy 1 0 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL @@ -860,24 +859,24 @@ ^l~ih-ng+t=uw 2 0 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL + to - ^ih~ng-t+uw=ah 0 1 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL ^ng~t-uw+ah=s 1 0 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL + a - ^t~uw-ah+s=ey 0 0 1 0 1 TO DT NN 2 1 2 1 1 2 26 LL + séance - ^uw~ah-s+ey=aa 0 1 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL ^ah~s-ey+aa=n 1 0 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL @@ -888,9 +887,9 @@ ^aa~n-s+aa=d 2 0 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL + audience - ^n~s-aa+d=iy 0 0 0 1 0 NN NN IN/that 3 1 2 2 3 1 26 LL @@ -904,25 +903,25 @@ ^ah~n-s+dh=ae 2 0 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL + that - ^n~s-dh+ae=t 0 2 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL ^s~dh-ae+t=ah 1 1 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL ^dh~ae-t+ah=w 2 0 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL + a - ^ae~t-ah+w=ao 0 0 1 0 1 IN/that DT NN 3 1 3 1 1 2 26 LL + warship - ^t~ah-w+ao=r 0 2 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL ^ah~w-ao+r=sh 1 1 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL @@ -934,18 +933,18 @@ ^sh~ih-p+hh=ae 2 0 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL + had - ^ih~p-hh+ae=d 0 2 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL ^p~hh-ae+d=s 1 1 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL ^hh~ae-d+s=ah 2 0 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL + sunk - ^ae~d-s+ah=ng 0 3 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL ^d~s-ah+ng=k 1 2 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL @@ -953,9 +952,9 @@ ^ah~ng-k+b=ih 3 0 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL + before - ^ng~k-b+ih=f 0 1 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL ^k~b-ih+f=ao 1 0 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL @@ -966,44 +965,44 @@ ^f~ao-r+dh=ah 2 0 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL + the - ^ao~r-dh+ah=n 0 1 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL ^r~dh-ah+n=uw 1 0 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL + news - ^dh~ah-n+uw=z 0 2 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL ^ah~n-uw+z=hh 1 1 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL ^n~uw-z+hh=ae 2 0 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL + had - ^uw~z-hh+ae=d 0 2 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL ^z~hh-ae+d=b 1 1 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL ^hh~ae-d+b=ih 2 0 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL + been - ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL ^d~b-ih+n=r 1 1 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL ^b~ih-n+r=iy 2 0 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL + released - ^ih~n-r+iy=l 0 1 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL ^n~r-iy+l=iy 1 0 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL @@ -1015,26 +1014,25 @@ ^iy~s-t+t=uw 3 0 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL + to - ^s~t-t+uw=dh 0 1 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL ^t~t-uw+dh=ah 1 0 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL + the - ^t~uw-dh+ah=p 0 1 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL ^uw~dh-ah+p=ah 1 0 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL + public. - - ^dh~ah-p+ah=b 0 1 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL ^ah~p-ah+b=l 1 0 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL @@ -1056,187 +1054,157 @@ - + - ^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 10 LL + ^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 12 LL + + Her - - ^pau~pau-hh+er=jh 0 1 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LL - ^pau~hh-er+jh=iy 1 0 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LL + ^pau~pau-hh+er=g 0 1 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL + ^pau~hh-er+g=r 1 0 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL - - grand-daughter - - - ^hh~er-jh+iy=aa 0 1 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^er~jh-iy+aa=r 1 0 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - - - ^jh~iy-aa+r=ah 0 0 1 1 0 PP$ NN VBZ 2 1 2 1 7 1 10 LL - - - ^iy~aa-r+ah=eh 0 1 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^aa~r-ah+eh=n 1 0 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - - - ^r~ah-eh+n=d 0 1 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^ah~eh-n+d=iy 1 0 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^eh~n-d+iy=d 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^n~d-iy+d=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^d~iy-d+iy=ah 0 1 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^iy~d-iy+ah=y 1 0 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL - - - ^d~iy-ah+y=uw 0 0 1 0 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL - - - ^iy~ah-y+uw=jh 0 1 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^ah~y-uw+jh=iy 1 0 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - - - ^y~uw-jh+iy=ey 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^uw~jh-iy+ey=ch 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^jh~iy-ey+ch=t 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^iy~ey-ch+t=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^ey~ch-t+iy=iy 0 1 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^ch~t-iy+iy=aa 1 0 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL + + + grand + + ^hh~er-g+r=ae 0 4 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^er~g-r+ae=n 1 3 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^g~r-ae+n=d 2 2 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^r~ae-n+d=d 3 1 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^ae~n-d+d=ao 4 0 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL - - ^t~iy-iy+aa=r 0 0 1 1 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL + + - + + daughter + + ^n~d-d+ao=t 0 1 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL + ^d~d-ao+t=er 1 0 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL - - ^iy~iy-aa+r=ih 0 1 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^iy~aa-r+ih=z 1 0 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL + + ^d~ao-t+er=ih 0 1 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL + ^ao~t-er+ih=z 1 0 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL - + + is - - ^aa~r-ih+z=p 0 1 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LL - ^r~ih-z+p=aa 1 0 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LL + ^t~er-ih+z=p 0 1 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL + ^er~ih-z+p=aa 1 0 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL - + + particularly - - ^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL - ^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL - ^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL + ^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL + ^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL + ^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL - ^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL - ^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL + ^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL + ^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL - ^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL - ^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL - ^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL + ^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL + ^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL + ^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL - ^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL - ^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL + ^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL + ^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL - ^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LL - ^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LL + ^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL + ^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL - + + angry - - ^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL - ^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL + ^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL + ^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL - ^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL - ^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL - ^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL + ^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL + ^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL + ^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL - + + at - - ^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 10 LL - ^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 10 LL + ^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL + ^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL - + + the - - ^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LL - ^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LL + ^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL + ^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL - + + accusations - - ^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 10 LL + ^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 12 LL - ^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL - ^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL - ^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL + ^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL + ^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL + ^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL - ^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL - ^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL + ^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL + ^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL - ^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL + ^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL - + + of - - ^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LL - ^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LL + ^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL + ^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL - + + treason. - - - ^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL - ^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL - ^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL + ^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL + ^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL + ^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL - ^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL - ^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL - ^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL + ^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL + ^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL + ^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL - ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 10 LL + ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 12 LL @@ -1251,9 +1219,10 @@ + + Mary - ^pau~pau-m+eh=r 0 1 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH ^pau~m-eh+r=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH @@ -1263,9 +1232,9 @@ ^eh~r-iy+m=aa 1 0 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LH + Martin, - ^r~iy-m+aa=r 0 2 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH ^iy~m-aa+r=t 1 1 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH @@ -1293,17 +1262,17 @@ + of - ^pau~pau-ah+v=eh 0 1 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH ^pau~ah-v+eh=d 1 0 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH + Edinburgh, - ^ah~v-eh+d=ah 0 0 1 1 0 IN NN PAU 2 1 3 1 4 0 2 LH @@ -1336,18 +1305,18 @@ + said - ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL ^pau~s-eh+d=m 1 1 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL ^s~eh-d+m=iy 2 0 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL + Mrs - ^eh~d-m+iy=s 0 1 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL ^d~m-iy+s=iy 1 0 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL @@ -1358,9 +1327,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL ^s~d-ah+ng=k 1 1 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL @@ -1372,27 +1341,27 @@ ^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL + had - ^ah~n-hh+ae=d 0 2 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL ^n~hh-ae+d=b 1 1 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL ^hh~ae-d+b=ih 2 0 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL + been - ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL ^d~b-ih+n=ah 1 1 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL ^b~ih-n+ah=k 2 0 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL + accused - ^ih~n-ah+k=y 0 0 1 0 1 VBN VVN IN 3 1 5 1 2 1 10 LL @@ -1404,17 +1373,17 @@ ^uw~z-d+ah=v 4 0 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL + of - ^z~d-ah+v=b 0 1 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL ^d~ah-v+b=iy 1 0 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL + being - ^ah~v-b+iy=ih 0 1 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL ^v~b-iy+ih=ng 1 0 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL @@ -1424,17 +1393,16 @@ ^iy~ih-ng+ah=t 1 0 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LL + a - ^ih~ng-ah+t=r 0 0 0 0 1 VBG DT NN 2 1 3 2 1 2 10 LL + traitor. - - ^ng~ah-t+r=ey 0 2 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL ^ah~t-r+ey=t 1 1 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL @@ -1463,26 +1431,27 @@ + + "When - ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL ^pau~w-eh+n=sh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL ^w~eh-n+sh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL + she - ^eh~n-sh+iy=f 0 1 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL ^n~sh-iy+f=er 1 0 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL + first - ^sh~iy-f+er=s 0 3 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL ^iy~f-er+s=t 1 2 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL @@ -1490,36 +1459,36 @@ ^er~s-t+k=ey 3 0 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL + came - ^s~t-k+ey=m 0 2 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL ^t~k-ey+m=b 1 1 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL ^k~ey-m+b=ae 2 0 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL + back - ^ey~m-b+ae=k 0 2 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL ^m~b-ae+k=hh 1 1 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL ^b~ae-k+hh=ow 2 0 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL + home - ^ae~k-hh+ow=m 0 2 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL ^k~hh-ow+m=ae 1 1 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL ^hh~ow-m+ae=f 2 0 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL + after - ^ow~m-ae+f=t 0 1 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL ^m~ae-f+t=er 1 0 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL @@ -1529,9 +1498,9 @@ ^f~t-er+p=r 1 0 1 0 1 NN IN NN 2 2 3 1 2 2 13 LL + prison - ^t~er-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL ^er~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL @@ -1543,26 +1512,26 @@ ^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL + she - ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL ^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL ^iy~w-aa+z=n 1 1 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL ^w~aa-z+n=eh 2 0 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL + never - ^aa~z-n+eh=v 0 1 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL ^z~n-eh+v=er 1 0 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL @@ -1572,18 +1541,17 @@ ^eh~v-er+dh=ah 1 0 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LL + the - ^v~er-dh+ah=s 0 1 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL ^er~dh-ah+s=ey 1 0 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL + same. - - ^dh~ah-s+ey=m 0 2 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL ^ah~s-ey+m=pau 1 1 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL @@ -1608,17 +1576,18 @@ + + "She - ^pau~pau-sh+iy=ao 0 1 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL ^pau~sh-iy+ao=l 1 0 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL + always - ^sh~iy-ao+l=w 0 1 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL ^iy~ao-l+w=ey 1 0 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL @@ -1629,58 +1598,58 @@ ^w~ey-z+hh=ae 2 0 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL + had - ^ey~z-hh+ae=d 0 2 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL ^z~hh-ae+d=ah 1 1 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL ^hh~ae-d+ah=b 2 0 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL + a - ^ae~d-ah+b=ih 0 0 1 0 1 VHD DT NN 3 1 3 1 1 1 17 LL + bit - ^d~ah-b+ih=t 0 2 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL ^ah~b-ih+t=ah 1 1 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL ^b~ih-t+ah=v 2 0 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL + of - ^ih~t-ah+v=ah 0 1 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL ^t~ah-v+ah=g 1 0 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL + a - ^ah~v-ah+g=l 0 0 1 0 1 IN DT NN 2 1 3 1 1 1 17 LL + glow - ^v~ah-g+l=ow 0 2 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL ^ah~g-l+ow=ah 1 1 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL ^g~l-ow+ah=b 2 0 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL + about - ^l~ow-ah+b=aw 0 0 1 0 1 NN IN PP$ 3 1 3 1 2 1 17 LL @@ -1690,34 +1659,34 @@ ^b~aw-t+hh=er 2 0 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL + her - ^aw~t-hh+er=b 0 1 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL ^t~hh-er+b=ah 1 0 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL + but - ^hh~er-b+ah=t 0 2 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL ^er~b-ah+t=sh 1 1 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL ^b~ah-t+sh=iy 2 0 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL + she - ^ah~t-sh+iy=s 0 1 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL ^t~sh-iy+s=iy 1 0 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL + seemed - ^sh~iy-s+iy=m 0 3 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL ^iy~s-iy+m=d 1 2 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL @@ -1725,26 +1694,26 @@ ^iy~m-d+t=uw 3 0 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL + to - ^m~d-t+uw=hh 0 1 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL ^d~t-uw+hh=ae 1 0 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL + have - ^t~uw-hh+ae=v 0 2 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL ^uw~hh-ae+v=l 1 1 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL ^hh~ae-v+l=ao 2 0 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL + lost - ^ae~v-l+ao=s 0 3 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL ^v~l-ao+s=t 1 2 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL @@ -1752,10 +1721,9 @@ ^ao~s-t+dh=ae 3 0 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL + that. - - ^s~t-dh+ae=t 0 2 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL ^t~dh-ae+t=pau 1 1 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL @@ -1780,18 +1748,19 @@ + + "Some - ^pau~pau-s+ah=m 0 2 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL ^pau~s-ah+m=p 1 1 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL ^s~ah-m+p=iy 2 0 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL + people - ^ah~m-p+iy=p 0 1 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL ^m~p-iy+p=ah 1 0 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL @@ -1802,35 +1771,35 @@ ^p~ah-l+s=eh 2 0 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL + said - ^ah~l-s+eh=d 0 2 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL ^l~s-eh+d=ih 1 1 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL ^s~eh-d+ih=t 2 0 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL + it - ^eh~d-ih+t=w 0 1 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL ^d~ih-t+w=aa 1 0 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL + was - ^ih~t-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL ^t~w-aa+z=t 1 1 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL ^w~aa-z+t=r 2 0 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL + treason. - ^aa~z-t+r=iy 0 2 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL ^z~t-r+iy=z 1 1 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL @@ -1860,17 +1829,17 @@ + My - ^pau~pau-m+ay=g 0 1 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL ^pau~m-ay+g=r 1 0 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL + grandmother - ^m~ay-g+r=ae 0 4 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL ^ay~g-r+ae=n 1 3 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL @@ -1887,26 +1856,26 @@ ^ah~dh-er+hh=ae 1 0 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LL + had - ^dh~er-hh+ae=d 0 2 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL ^er~hh-ae+d=t 1 1 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL ^hh~ae-d+t=uw 2 0 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL + two - ^ae~d-t+uw=s 0 1 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL ^d~t-uw+s=ah 1 0 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL + sons - ^t~uw-s+ah=n 0 3 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL ^uw~s-ah+n=z 1 2 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL @@ -1914,68 +1883,68 @@ ^ah~n-z+ah=n 3 0 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL + and - ^n~z-ah+n=d 0 2 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL ^z~ah-n+d=t 1 1 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL ^ah~n-d+t=uw 2 0 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL + two - ^n~d-t+uw=s 0 1 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL ^d~t-uw+s=ah 1 0 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL + son - ^t~uw-s+ah=n 0 2 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL ^uw~s-ah+n=ih 1 1 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL ^s~ah-n+ih=n 2 0 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL + in - ^ah~n-ih+n=l 0 1 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL ^n~ih-n+l=ao 1 0 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL + laws - ^ih~n-l+ao=z 0 2 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL ^n~l-ao+z=ih 1 1 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL ^l~ao-z+ih=n 2 0 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL + in - ^ao~z-ih+n=dh 0 1 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL ^z~ih-n+dh=ah 1 0 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL + the - ^ih~n-dh+ah=f 0 1 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL ^n~dh-ah+f=ao 1 0 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL + forces - ^dh~ah-f+ao=r 0 2 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL ^ah~f-ao+r=s 1 1 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL @@ -1987,81 +1956,79 @@ ^s~ih-z+ah=n 2 0 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL - - ... - - + + ... + and - ^ih~z-ah+n=d 0 2 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL ^z~ah-n+d=dh 1 1 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL ^ah~n-d+dh=eh 2 0 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL + there - ^n~d-dh+eh=r 0 2 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL ^d~dh-eh+r=ih 1 1 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL ^dh~eh-r+ih=z 2 0 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL + is - ^eh~r-ih+z=n 0 1 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL ^r~ih-z+n=ow 1 0 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL + no - ^ih~z-n+ow=w 0 1 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL ^z~n-ow+w=ey 1 0 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL + way - ^n~ow-w+ey=sh 0 1 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL ^ow~w-ey+sh=iy 1 0 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL + she - ^w~ey-sh+iy=w 0 1 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL ^ey~sh-iy+w=uh 1 0 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL + would - ^sh~iy-w+uh=d 0 2 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL ^iy~w-uh+d=hh 1 1 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL ^w~uh-d+hh=ae 2 0 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL + have - ^uh~d-hh+ae=v 0 2 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL ^d~hh-ae+v=g 1 1 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL ^hh~ae-v+g=ih 2 0 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL + given - ^ae~v-g+ih=v 0 1 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL ^v~g-ih+v=ah 1 0 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL @@ -2072,9 +2039,9 @@ ^v~ah-n+eh=n 2 0 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL + anybody - ^ah~n-eh+n=iy 0 0 0 1 0 VVN NN NN 3 1 2 2 4 4 25 LL @@ -2091,10 +2058,9 @@ ^ah~d-iy+ih=n 1 0 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LL + information." - - ^d~iy-ih+n=f 0 1 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL ^iy~ih-n+f=er 1 0 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL @@ -2131,9 +2097,10 @@ + + Mrs - ^pau~pau-m+iy=s 0 1 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH ^pau~m-iy+s=iy 1 0 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH @@ -2144,9 +2111,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH ^s~d-ah+ng=k 1 1 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH @@ -2158,9 +2125,9 @@ ^k~ah-n+b=ih 2 0 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH + became - ^ah~n-b+ih=k 0 1 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH ^n~b-ih+k=ey 1 0 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH @@ -2171,34 +2138,34 @@ ^k~ey-m+w=ah 2 0 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH + one - ^ey~m-w+ah=n 0 2 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH ^m~w-ah+n=ah 1 1 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH ^w~ah-n+ah=v 2 0 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH + of - ^ah~n-ah+v=dh 0 1 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH ^n~ah-v+dh=ah 1 0 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH + the - ^ah~v-dh+ah=m 0 1 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH ^v~dh-ah+m=ow 1 0 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH + most - ^dh~ah-m+ow=s 0 3 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH ^ah~m-ow+s=t 1 2 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH @@ -2206,9 +2173,9 @@ ^ow~s-t+f=ey 3 0 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH + famous - ^s~t-f+ey=m 0 1 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH ^t~f-ey+m=ah 1 0 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH @@ -2219,9 +2186,9 @@ ^m~ah-s+m=iy 2 0 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH + mediums - ^ah~s-m+iy=d 0 1 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH ^s~m-iy+d=iy 1 0 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH @@ -2236,25 +2203,25 @@ ^ah~m-z+ah=v 2 0 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH + of - ^m~z-ah+v=hh 0 1 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH ^z~ah-v+hh=er 1 0 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH + her - ^ah~v-hh+er=t 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH ^v~hh-er+t=ay 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH + time, - ^hh~er-t+ay=m 0 2 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH ^er~t-ay+m=pau 1 1 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH @@ -2277,9 +2244,9 @@ + heading - ^pau~pau-hh+eh=d 0 1 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL ^pau~hh-eh+d=ih 1 0 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL @@ -2290,16 +2257,16 @@ ^d~ih-ng+ah=n 2 0 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL + a - ^ih~ng-ah+n=eh 0 0 0 0 1 VVG DT NN 3 1 2 2 1 2 6 LL + network - ^ng~ah-n+eh=t 0 1 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL ^ah~n-eh+t=w 1 0 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL @@ -2311,17 +2278,17 @@ ^w~er-k+ah=v 3 0 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL + of - ^er~k-ah+v=s 0 1 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL ^k~ah-v+s=p 1 0 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL + spiritualist - ^ah~v-s+p=ih 0 2 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL ^v~s-p+ih=r 1 1 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL @@ -2346,10 +2313,9 @@ ^ih~s-t+ch=er 3 0 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL + churches. - - ^s~t-ch+er=ch 0 1 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL ^t~ch-er+ch=ah 1 0 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL @@ -2378,9 +2344,10 @@ + + During - ^pau~pau-d+uh=r 0 1 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH ^pau~d-uh+r=ih 1 0 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH @@ -2391,34 +2358,34 @@ ^r~ih-ng+dh=ah 2 0 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH + the - ^ih~ng-dh+ah=w 0 1 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH ^ng~dh-ah+w=ao 1 0 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH + war - ^dh~ah-w+ao=r 0 2 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH ^ah~w-ao+r=sh 1 1 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH ^w~ao-r+sh=iy 2 0 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH + she - ^ao~r-sh+iy=l 0 1 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH ^r~sh-iy+l=ay 1 0 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH + lived - ^sh~iy-l+ay=v 0 3 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH ^iy~l-ay+v=d 1 2 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH @@ -2426,17 +2393,17 @@ ^ay~v-d+ih=n 3 0 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH + in - ^v~d-ih+n=p 0 1 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH ^d~ih-n+p=ao 1 0 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH + Portsmouth, - ^ih~n-p+ao=r 0 3 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH ^n~p-ao+r=t 1 2 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH @@ -2466,42 +2433,42 @@ + the - ^pau~pau-dh+ah=hh 0 1 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL ^pau~dh-ah+hh=ow 1 0 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL + home - ^dh~ah-hh+ow=m 0 2 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL ^ah~hh-ow+m=ah 1 1 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL ^hh~ow-m+ah=v 2 0 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL + of - ^ow~m-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL ^m~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL + the - ^ah~v-dh+ah=r 0 1 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL ^v~dh-ah+r=oy 1 0 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL + Royal - ^dh~ah-r+oy=ah 0 1 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL ^ah~r-oy+ah=l 1 0 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL @@ -2511,10 +2478,9 @@ ^oy~ah-l+n=ey 1 0 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LL + Navy. - - ^ah~l-n+ey=v 0 1 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL ^l~n-ey+v=iy 1 0 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL @@ -2542,109 +2508,110 @@ + + She - ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL ^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL + has - ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL + put - ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL + us - ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL ^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL + on - ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL ^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL + the - ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL ^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL + right - ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL + side - ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL + of - ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL ^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL ^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL + law - ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL ^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL + by - ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL ^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL + bringing - ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL ^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL @@ -2656,25 +2623,25 @@ ^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL + in - ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL ^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL + the - ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL ^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL + 1952 - ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL ^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL @@ -2695,10 +2662,9 @@ ^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL + act. - - ^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL ^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL @@ -2723,24 +2689,25 @@ + + At - ^pau~pau-ae+t=ah 0 1 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL ^pau~ae-t+ah=s 1 0 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL + a - ^ae~t-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL + séance - ^t~ah-s+ey=aa 0 1 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL ^ah~s-ey+aa=n 1 0 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL @@ -2751,17 +2718,17 @@ ^aa~n-s+ih=n 2 0 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL + in - ^n~s-ih+n=w 0 1 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL ^s~ih-n+w=ah 1 0 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL + 1943 - ^ih~n-w+ah=n 0 2 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL ^n~w-ah+n=n 1 1 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL @@ -2783,26 +2750,26 @@ ^th~r-iy+ih=t 2 0 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL + it - ^r~iy-ih+t=w 0 1 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL ^iy~ih-t+w=aa 1 0 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL + was - ^ih~t-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL ^t~w-aa+z=k 1 1 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL ^w~aa-z+k=l 2 0 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL + claimed - ^aa~z-k+l=ey 0 4 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL ^z~k-l+ey=m 1 3 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL @@ -2811,26 +2778,26 @@ ^ey~m-d+dh=ae 4 0 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL + that - ^m~d-dh+ae=t 0 2 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL ^d~dh-ae+t=dh 1 1 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL ^dh~ae-t+dh=ah 2 0 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL + the - ^ae~t-dh+ah=s 0 1 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL ^t~dh-ah+s=p 1 0 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL + spirit - ^dh~ah-s+p=ih 0 2 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL ^ah~s-p+ih=r 1 1 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL @@ -2842,24 +2809,24 @@ ^r~ah-t+ah=v 2 0 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL + of - ^ah~t-ah+v=ah 0 1 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL ^t~ah-v+ah=s 1 0 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL + a - ^ah~v-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL + sailor - ^v~ah-s+ey=l 0 1 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL ^ah~s-ey+l=er 1 0 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL @@ -2869,9 +2836,9 @@ ^ey~l-er+f=r 1 0 1 0 1 DT NN IN 2 2 4 1 2 1 19 LL + from - ^l~er-f+r=ah 0 3 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL ^er~f-r+ah=m 1 2 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL @@ -2879,26 +2846,26 @@ ^r~ah-m+dh=ah 3 0 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL + the - ^ah~m-dh+ah=hh 0 1 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL ^m~dh-ah+hh=m 1 0 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL + HMS - ^dh~ah-hh+m=s 0 2 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL ^ah~hh-m+s=b 1 1 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL ^hh~m-s+b=aa 2 0 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL + Barham - ^m~s-b+aa=r 0 2 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL ^s~b-aa+r=hh 1 1 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL @@ -2910,10 +2877,9 @@ ^hh~ah-m+ah=p 2 0 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL + appeared. - - ^ah~m-ah+p=ih 0 0 0 0 1 NN VVN PAU 3 1 4 2 2 0 19 LL @@ -2942,17 +2908,18 @@ + + The - ^pau~pau-dh+ah=v 0 1 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL ^pau~dh-ah+v=eh 1 0 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL + vessel - ^dh~ah-v+eh=s 0 1 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL ^ah~v-eh+s=ah 1 0 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL @@ -2963,18 +2930,18 @@ ^s~ah-l+w=aa 2 0 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL + was - ^ah~l-w+aa=z 0 2 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL ^l~w-aa+z=ow 1 1 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL ^w~aa-z+ow=n 2 0 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL + only - ^aa~z-ow+n=l 0 1 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL ^z~ow-n+l=iy 1 0 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL @@ -2984,9 +2951,9 @@ ^n~l-iy+ah=f 1 0 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LL + officially - ^l~iy-ah+f=ih 0 0 0 0 1 RB RB VVN 2 1 2 2 4 2 10 LL @@ -3003,9 +2970,9 @@ ^ah~l-iy+d=ih 1 0 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LL + declared - ^l~iy-d+ih=k 0 1 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL ^iy~d-ih+k=l 1 0 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL @@ -3018,9 +2985,9 @@ ^eh~r-d+l=ao 4 0 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL + lost - ^r~d-l+ao=s 0 3 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL ^d~l-ao+s=t 1 2 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL @@ -3028,9 +2995,9 @@ ^ao~s-t+s=eh 3 0 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL + several - ^s~t-s+eh=v 0 1 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL ^t~s-eh+v=r 1 0 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL @@ -3042,9 +3009,9 @@ ^r~ah-l+m=ah 3 0 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL + months - ^ah~l-m+ah=n 0 4 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL ^l~m-ah+n=th 1 3 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL @@ -3053,10 +3020,9 @@ ^n~th-s+l=ey 4 0 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL + later. - - ^th~s-l+ey=t 0 1 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL ^s~l-ey+t=er 1 0 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL @@ -3084,26 +3050,27 @@ + + She - ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL ^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL + was - ^sh~iy-w+aa=z 0 2 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL ^iy~w-aa+z=er 1 1 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL ^w~aa-z+er=eh 2 0 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL + arrested - ^aa~z-er+eh=s 0 0 1 0 1 VBD VVN IN 3 1 1 1 3 1 24 LL @@ -3117,17 +3084,17 @@ ^t~ah-d+ih=n 3 0 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL + in - ^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL ^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL + 1944 - ^ih~n-w+ah=n 0 2 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL ^n~w-ah+n=n 1 1 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL @@ -3149,18 +3116,18 @@ ^f~ao-r+ah=n 2 0 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL + and - ^ao~r-ah+n=d 0 2 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL ^r~ah-n+d=s 1 1 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL ^ah~n-d+s=eh 2 0 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL + sentenced - ^n~d-s+eh=n 0 2 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL ^d~s-eh+n=t 1 1 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL @@ -3174,26 +3141,26 @@ ^n~s-t+t=uw 4 0 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL + to - ^s~t-t+uw=n 0 1 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL ^t~t-uw+n=ay 1 0 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL + nine - ^t~uw-n+ay=n 0 2 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL ^uw~n-ay+n=m 1 1 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL ^n~ay-n+m=ah 2 0 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL + months - ^ay~n-m+ah=n 0 4 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL ^n~m-ah+n=th 1 3 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL @@ -3202,17 +3169,17 @@ ^n~th-s+ih=n 4 0 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL + in - ^th~s-ih+n=p 0 1 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL ^s~ih-n+p=r 1 0 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL + prison - ^ih~n-p+r=ih 0 2 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL ^n~p-r+ih=z 1 1 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL @@ -3224,34 +3191,34 @@ ^z~ah-n+ae=t 2 0 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL + at - ^ah~n-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL ^n~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL + the - ^ae~t-dh+ah=ow 0 1 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL ^t~dh-ah+ow=l 1 0 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL + Old - ^dh~ah-ow+l=d 0 2 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL ^ah~ow-l+d=b 1 1 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL ^ow~l-d+b=ey 2 0 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL + Bailey - ^l~d-b+ey=l 0 1 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL ^d~b-ey+l=iy 1 0 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL @@ -3261,18 +3228,18 @@ ^ey~l-iy+f=ao 1 0 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LL + for - ^l~iy-f+ao=r 0 2 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL ^iy~f-ao+r=k 1 1 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL ^f~ao-r+k=r 2 0 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL + crimes - ^ao~r-k+r=ay 0 4 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL ^r~k-r+ay=m 1 3 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL @@ -3281,9 +3248,9 @@ ^ay~m-z+ah=n 4 0 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL + under - ^m~z-ah+n=d 0 1 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL ^z~ah-n+d=er 1 0 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL @@ -3293,17 +3260,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL @@ -3317,27 +3284,26 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + Act - ^f~t-ae+k=t 0 2 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL ^t~ae-k+t=ah 1 1 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL ^ae~k-t+ah=v 2 0 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL + of - ^k~t-ah+v=w 0 1 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL ^t~ah-v+w=ah 1 0 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL + 1735. - - ^ah~v-w+ah=n 0 2 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL ^v~w-ah+n=s 1 1 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL @@ -3381,26 +3347,27 @@ + + While - ^pau~pau-w+ay=l 0 2 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL ^pau~w-ay+l=ih 1 1 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL ^w~ay-l+ih=n 2 0 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL + in - ^ay~l-ih+n=p 0 1 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL ^l~ih-n+p=r 1 0 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL + prison - ^ih~n-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL ^n~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL @@ -3412,26 +3379,26 @@ ^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL + she - ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL ^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL ^iy~w-aa+z=v 1 1 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL ^w~aa-z+v=ih 2 0 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL + visited - ^aa~z-v+ih=z 0 1 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL ^z~v-ih+z=ah 1 0 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL @@ -3446,17 +3413,17 @@ ^t~ah-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL + by - ^ah~d-b+ay=w 0 1 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL ^d~b-ay+w=ih 1 0 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL + Winston - ^b~ay-w+ih=n 0 2 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL ^ay~w-ih+n=s 1 1 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL @@ -3469,10 +3436,9 @@ ^t~ah-n+ch=er 3 0 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL + Churchill. - - ^ah~n-ch+er=ch 0 1 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL ^n~ch-er+ch=ih 1 0 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL @@ -3493,314 +3459,303 @@ - + - ^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 22 LL + ^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 24 LL + + When - - ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL - ^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL - ^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL + ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + ^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + ^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + he - - ^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LL - ^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LL + ^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL + ^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL + was - - ^hh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL - ^iy~w-aa+z=aa 1 1 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL - ^w~aa-z+aa=r 2 0 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL + ^hh~iy-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL + ^iy~w-aa+z=r 1 1 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL + ^w~aa-z+r=ey 2 0 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL - - re-elected - - - ^aa~z-aa+r=iy 0 0 1 1 1 VBD VVN IN 3 1 2 1 7 1 22 LL - - - ^z~aa-r+iy=iy 0 1 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL - ^aa~r-iy+iy=eh 1 0 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL + + + re + + ^aa~z-r+ey=ih 0 1 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL + ^z~r-ey+ih=l 1 0 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL - - ^r~iy-iy+eh=l 0 0 1 1 1 VBD VVN IN 2 1 1 1 7 1 22 LL - - - ^iy~iy-eh+l=iy 0 0 1 1 1 VBD VVN IN 1 1 2 1 7 1 22 LL - - - ^iy~eh-l+iy=s 0 1 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL - ^eh~l-iy+s=iy 1 0 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL - - - ^l~iy-s+iy=t 0 1 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL - ^iy~s-iy+t=iy 1 0 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL - - - ^s~iy-t+iy=iy 0 1 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL - ^iy~t-iy+iy=d 1 0 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL + + - + + elected + + ^r~ey-ih+l=eh 0 0 1 0 1 NN VVN IN 2 1 3 0 3 1 24 LL - - ^t~iy-iy+d=iy 0 0 1 1 1 VBD VVN IN 2 1 2 1 7 1 22 LL + + ^ey~ih-l+eh=k 0 2 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL + ^ih~l-eh+k=t 1 1 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL + ^l~eh-k+t=ah 2 0 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL - - ^iy~iy-d+iy=ih 0 1 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LL - ^iy~d-iy+ih=n 1 0 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LL + + ^eh~k-t+ah=d 0 2 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL + ^k~t-ah+d=ih 1 1 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL + ^t~ah-d+ih=n 2 0 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL - + + in - - ^d~iy-ih+n=w 0 1 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL - ^iy~ih-n+w=ah 1 0 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL + ^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL + ^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL - + + 1951 - - ^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL - ^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL - ^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL + ^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL + ^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL + ^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL - ^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL - ^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL - ^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL + ^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL + ^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL + ^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL - ^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL - ^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL + ^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL + ^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL - ^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL + ^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL - + + the - - ^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 22 LL - ^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 22 LL + ^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL + ^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL - + + Witchcraft - - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL - ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL - ^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL + ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL + ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL + ^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL - ^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL + ^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL - + + Act - - ^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL - ^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL - ^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL + ^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL + ^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL + ^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL - + + was - - ^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL - ^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL - ^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL + ^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL + ^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL + ^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL - + + repealed - - ^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL - ^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL + ^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL + ^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL - ^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL + ^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL - + + and - - ^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL - ^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL - ^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL + ^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL + ^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL + ^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL - + + three - - ^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL - ^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL - ^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL + ^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL + ^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL + ^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL - + + years - - ^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL + ^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL - + + later - - ^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL - ^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL + ^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL + ^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL - ^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LL - ^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LL + ^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL + ^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL - + + spiritualism - - ^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL - ^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL - ^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL + ^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL + ^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL + ^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL - ^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL - ^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL + ^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL + ^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL - ^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL - ^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL + ^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL + ^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL - ^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL - ^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL + ^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL + ^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL - ^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL + ^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL - + + was - - ^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL - ^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL - ^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL + ^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL + ^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL + ^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL - + + officially - - ^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 22 LL + ^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 24 LL - ^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL - ^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL + ^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL + ^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL - ^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL - ^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL + ^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL + ^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL - ^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL - ^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL + ^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL + ^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL - + + recognised - - ^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL - ^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL + ^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL + ^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL - ^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL - ^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL + ^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL + ^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL - ^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL + ^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL - + + as - - ^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LL - ^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LL + ^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL + ^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL - + + a - - ^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 22 LL + ^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 24 LL - + + religion. - - - ^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL - ^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL + ^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL + ^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL - ^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL - ^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL + ^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL + ^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL - ^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL - ^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL - ^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL + ^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL + ^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL + ^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL - ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 22 LL + ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 24 LL @@ -3815,9 +3770,10 @@ + + Campaigners - ^pau~pau-k+ae=m 0 2 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL ^pau~k-ae+m=p 1 1 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL @@ -3833,17 +3789,17 @@ ^n~er-z+t=uw 2 0 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL + to - ^er~z-t+uw=p 0 1 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL ^z~t-uw+p=aa 1 0 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL + pardon - ^t~uw-p+aa=r 0 2 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL ^uw~p-aa+r=d 1 1 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL @@ -3855,9 +3811,9 @@ ^d~ah-n+m=iy 2 0 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL + Mrs - ^ah~n-m+iy=s 0 1 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL ^n~m-iy+s=iy 1 0 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL @@ -3868,9 +3824,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL ^s~d-ah+ng=k 1 1 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL @@ -3882,43 +3838,43 @@ ^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL + have - ^ah~n-hh+ae=v 0 2 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL ^n~hh-ae+v=s 1 1 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL ^hh~ae-v+s=eh 2 0 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL + set - ^ae~v-s+eh=t 0 2 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL ^v~s-eh+t=ah 1 1 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL ^s~eh-t+ah=p 2 0 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL + up - ^eh~t-ah+p=ae 0 1 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL ^t~ah-p+ae=n 1 0 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL + an - ^ah~p-ae+n=ao 0 1 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL ^p~ae-n+ao=n 1 0 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL + online - ^ae~n-ao+n=l 0 1 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL ^n~ao-n+l=ay 1 0 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL @@ -3929,10 +3885,9 @@ ^l~ay-n+p=ah 2 0 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL + petition. - - ^ay~n-p+ah=t 0 1 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL ^n~p-ah+t=ih 1 0 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL @@ -3965,17 +3920,18 @@ + + The - ^pau~pau-dh+ah=k 0 1 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL ^pau~dh-ah+k=ae 1 0 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL + campaign - ^dh~ah-k+ae=m 0 2 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL ^ah~k-ae+m=p 1 1 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL @@ -3987,17 +3943,17 @@ ^p~ey-n+ih=z 2 0 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL + is - ^ey~n-ih+z=b 0 1 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL ^n~ih-z+b=ae 1 0 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL + backed - ^ih~z-b+ae=k 0 3 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL ^z~b-ae+k=t 1 2 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL @@ -4005,25 +3961,25 @@ ^ae~k-t+b=ay 3 0 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL + by - ^k~t-b+ay=dh 0 1 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL ^t~b-ay+dh=ah 1 0 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL + the - ^b~ay-dh+ah=b 0 1 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL ^ay~dh-ah+b=r 1 0 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL + British - ^dh~ah-b+r=ih 0 2 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL ^ah~b-r+ih=t 1 1 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL @@ -4035,9 +3991,9 @@ ^t~ih-sh+s=ah 2 0 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL + Society - ^ih~sh-s+ah=s 0 1 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL ^sh~s-ah+s=ay 1 0 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL @@ -4054,17 +4010,17 @@ ^ah~t-iy+ah=v 1 0 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LL + of - ^t~iy-ah+v=p 0 1 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL ^iy~ah-v+p=eh 1 0 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL + Paranormal - ^ah~v-p+eh=r 0 1 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL ^v~p-eh+r=ah 1 0 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL @@ -4084,10 +4040,9 @@ ^m~ah-l+s=t 2 0 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL + Studies. - - ^ah~l-s+t=ah 0 2 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL ^l~s-t+ah=d 1 1 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL @@ -4117,9 +4072,10 @@ + + Medium - ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH ^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH @@ -4133,9 +4089,9 @@ ^iy~ah-m+m=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH + Mary - ^ah~m-m+eh=r 0 1 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH ^m~m-eh+r=iy 1 0 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH @@ -4145,9 +4101,9 @@ ^eh~r-iy+aa=r 1 0 1 0 1 NN NN NN 2 2 2 3 2 2 3 LH + Armour, - ^r~iy-aa+r=m 0 1 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH ^iy~aa-r+m=er 1 0 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH @@ -4173,34 +4129,34 @@ + who - ^pau~pau-hh+uw=r 0 1 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH ^pau~hh-uw+r=ow 1 0 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH + wrote - ^hh~uw-r+ow=t 0 2 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH ^uw~r-ow+t=hh 1 1 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH ^r~ow-t+hh=er 2 0 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH + her - ^ow~t-hh+er=b 0 1 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH ^t~hh-er+b=ay 1 0 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH + biography, - ^hh~er-b+ay=aa 0 1 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH ^er~b-ay+aa=g 1 0 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH @@ -4234,9 +4190,9 @@ + said: - ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH ^pau~s-eh+d=pau 1 1 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH @@ -4259,109 +4215,109 @@ + "She - ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL ^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL + has - ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL + put - ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL + us - ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL ^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL + on - ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL ^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL + the - ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL ^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL + right - ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL + side - ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL + of - ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL ^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL ^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL + law - ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL ^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL + by - ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL ^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL + bringing - ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL ^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL @@ -4373,25 +4329,25 @@ ^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL + in - ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL ^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL + the - ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL ^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL + 1952 - ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL ^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL @@ -4412,10 +4368,9 @@ ^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL + act." - - ^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL ^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL @@ -4429,6 +4384,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-cex-outv002.xml b/src/idlaktxp/test_data/mod-cex-outv002.xml index c1a8df0af6f..9c7677a59d2 100644 --- a/src/idlaktxp/test_data/mod-cex-outv002.xml +++ b/src/idlaktxp/test_data/mod-cex-outv002.xml @@ -38,7 +38,6 @@ Hello - ^0~pau-hh+ah=l 0 1 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH ^pau~hh-ah+l=ow 1 0 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH @@ -48,9 +47,9 @@ ^ah~l-ow+dh=eh 1 0 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LH + there, - ^l~ow-dh+eh=r 0 2 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH ^ow~dh-eh+r=pau 1 1 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH @@ -73,27 +72,26 @@ + 1 - ^pau~pau-w+ah=n 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL ^pau~w-ah+n=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL ^w~ah-n+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL + 2 - ^ah~n-t+uw=th 0 1 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL ^n~t-uw+th=r 1 0 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL + 3. - - ^t~uw-th+r=iy 0 2 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL ^uw~th-r+iy=pau 1 1 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL @@ -107,6 +105,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-cex-reg000.xml b/src/idlaktxp/test_data/mod-cex-reg000.xml index b3ba3225b4c..450c7663b45 100644 --- a/src/idlaktxp/test_data/mod-cex-reg000.xml +++ b/src/idlaktxp/test_data/mod-cex-reg000.xml @@ -45,9 +45,6 @@ an - - - ^0~pau-k+ae=n 0 2 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL ^pau~k-ae+n=pau 1 1 0 1 0 NN DT PAU 0 3 0 0 1 0 2 LL @@ -72,10 +69,11 @@ + + + a - - ^pau~pau-ah+pau=pau 0 0 0 0 0 PAU DT PAU 0 1 0 0 1 0 1 LL @@ -98,6 +96,8 @@ + + http: @@ -167,143 +167,165 @@ - - + + - ^0~pau-pau+w=w 0 0 0 0 0 PAU PAU NN 0 0 3 0 0 1 1 LL + ^0~pau-pau+d=ah 0 0 0 0 1 PAU PAU NN 0 0 2 0 0 7 9 LH - + www.big.site - - - ^pau~pau-w+w=w 0 2 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL - ^pau~w-w+w=pau 1 1 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL - ^w~w-w+pau=pau 2 0 0 0 0 PAU NN PAU 0 3 0 0 1 0 1 LL + + ^pau~pau-d+ah=b 0 1 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH + ^pau~d-ah+b=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 7 1 9 LH - - - - - ^w~w-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 1 0 0 1 LL - - - - - - - - - - - ^0~pau-pau+b=ih 0 0 0 0 1 PAU PAU JJ 0 0 3 0 0 1 1 LL - - - - - - ^pau~pau-b+ih=g 0 2 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL - ^pau~b-ih+g=pau 1 1 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL - ^b~ih-g+pau=pau 2 0 0 1 0 PAU JJ PAU 0 3 0 0 1 0 1 LL + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH - - - - - ^ih~g-pau+pau=0 0 0 1 0 0 JJ PAU PAU 3 0 0 1 0 0 1 LL - - - - - - - - - - - ^0~pau-pau+s=ay 0 0 0 0 1 PAU PAU NN 0 0 3 0 0 1 7 LH - - - - - - ^pau~pau-s+ay=t 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH - ^pau~s-ay+t=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH - ^s~ay-t+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 7 LH + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + ^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + + + ^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + ^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + ^l~y-uw+d=ah 1 0 0 0 1 PAU NN NN 3 2 2 0 7 1 9 LH + + + ^y~uw-d+ah=b 0 1 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + ^uw~d-ah+b=ah 1 0 0 1 0 PAU NN NN 2 2 3 0 7 1 9 LH + + + ^d~ah-b+ah=l 0 2 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^ah~b-ah+l=y 1 1 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + ^b~ah-l+y=uw 2 0 1 0 0 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^ah~l-y+uw=d 0 1 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH + ^l~y-uw+d=aa 1 0 0 0 1 PAU NN NN 3 2 3 0 7 1 9 LH + + + ^y~uw-d+aa=t 0 2 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + ^uw~d-aa+t=b 1 1 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + ^d~aa-t+b=iy 2 0 0 1 1 PAU NN NN 2 3 2 0 7 1 9 LH + + + ^aa~t-b+iy=ay 0 1 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH + ^t~b-iy+ay=jh 1 0 1 1 1 PAU NN NN 3 2 1 0 7 1 9 LH + + + ^b~iy-ay+jh=iy 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH + + + ^iy~ay-jh+iy=d 0 1 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH + ^ay~jh-iy+d=aa 1 0 1 1 1 PAU NN NN 1 2 2 0 7 1 9 LH + + + ^jh~iy-d+aa=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^iy~d-aa+t=eh 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^d~aa-t+eh=s 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^aa~t-eh+s=ay 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^t~eh-s+ay=t 0 1 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + ^eh~s-ay+t=iy 1 0 1 1 1 PAU NN NN 2 2 2 0 7 1 9 LH + + + ^s~ay-t+iy=iy 0 1 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH + ^ay~t-iy+iy=t 1 0 1 1 1 PAU NN NN 2 2 1 0 7 1 9 LH + + + ^t~iy-iy+t=uw 0 0 1 1 1 PAU NN NN 2 1 2 0 7 1 9 LH + 2 - ^ay~t-t+uw=iy 0 1 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH - ^t~t-uw+iy=k 1 0 1 1 1 NN NN NN 3 2 1 1 1 2 7 LH + ^iy~iy-t+uw=iy 0 1 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH + ^iy~t-uw+iy=k 1 0 1 1 1 NN NN NN 1 2 1 7 1 2 9 LH = - ^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 2 7 LH + ^t~uw-iy+k=w 0 0 1 1 0 NN NN NN 2 1 5 1 2 1 9 LH - ^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH - ^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 2 7 LH + ^uw~iy-k+w=ah 0 4 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^iy~k-w+ah=l 1 3 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^k~w-ah+l=z 2 2 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^w~ah-l+z=f 3 1 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH + ^ah~l-z+f=ao 4 0 1 0 1 NN NN NN 1 5 3 1 2 1 9 LH - - 4-2 - + + 4 - ^l~z-f+ao=r 0 2 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH - ^z~f-ao+r=t 1 1 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH - ^f~ao-r+t=uw 2 0 0 1 1 NN NN JJ 5 3 2 2 2 1 7 LH + ^l~z-f+ao=r 0 2 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH + ^z~f-ao+r=t 1 1 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH + ^f~ao-r+t=uw 2 0 0 1 1 NN NN NN 5 3 2 2 1 0 9 LH - - ^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LH - ^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 2 2 1 7 LH + + - + + 2 + + ^ao~r-t+uw=f 0 1 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH + ^r~t-uw+f=uh 1 0 1 1 1 NN NN JJ 3 2 3 0 1 1 9 LH - + + FULL - - ^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH - ^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH - ^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 2 1 2 7 LH + ^t~uw-f+uh=l 0 2 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH + ^uw~f-uh+l=p 1 1 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH + ^f~uh-l+p=aw 2 0 1 1 1 NN JJ NN 2 3 2 1 1 2 9 LH - + + Power - - ^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH - ^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 7 LH + ^uh~l-p+aw=er 0 1 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH + ^l~p-aw+er=k 1 0 1 1 0 JJ NN NN 3 2 1 1 2 2 9 LH - ^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 7 LH + ^p~aw-er+k=ah 0 0 1 0 0 JJ NN NN 2 1 2 1 2 2 9 LH - + + café - - ^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH - ^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 7 LH + ^aw~er-k+ah=f 0 1 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH + ^er~k-ah+f=ey 1 0 0 0 1 NN NN PAU 1 2 2 2 2 0 9 LH - ^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH - ^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 7 LH + ^k~ah-f+ey=pau 0 1 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH + ^ah~f-ey+pau=pau 1 0 0 1 0 NN NN PAU 2 2 0 2 2 0 9 LH - ^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 7 LH + ^f~ey-pau+pau=0 0 0 1 0 0 NN PAU PAU 2 0 0 2 0 0 9 LH @@ -316,11 +338,9 @@ + “okay” - - - ^pau~pau-ow+k=ey 0 0 0 1 1 PAU NN PAU 0 1 2 0 2 0 1 LH @@ -345,18 +365,20 @@ + + + And - ^pau~pau-ah+n=d 0 2 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL ^pau~ah-n+d=ah 1 1 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL ^ah~n-d+ah=n 2 0 0 0 0 PAU CC DT 0 3 1 0 1 3 3 LL + another - ^n~d-ah+n=ah 0 0 0 0 1 CC DT NN 3 1 2 1 3 2 3 LL @@ -369,11 +391,9 @@ ^ah~dh-er+s=eh 1 0 1 0 1 CC DT NN 2 2 3 1 3 2 3 LL + sentence. - - - ^dh~er-s+eh=n 0 2 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL ^er~s-eh+n=t 1 1 0 1 0 DT NN PAU 2 3 4 3 2 0 3 LL @@ -393,6 +413,9 @@ + + + diff --git a/src/idlaktxp/test_data/mod-cex-reg001.xml b/src/idlaktxp/test_data/mod-cex-reg001.xml index 56fe6a8bbad..b0b3294f517 100644 --- a/src/idlaktxp/test_data/mod-cex-reg001.xml +++ b/src/idlaktxp/test_data/mod-cex-reg001.xml @@ -38,7 +38,6 @@ Helen - ^0~pau-hh+eh=l 0 1 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL ^pau~hh-eh+l=ah 1 0 0 1 0 PAU NN NN 0 2 3 0 2 2 8 LL @@ -49,9 +48,9 @@ ^l~ah-n+d=ah 2 0 1 0 1 PAU NN NN 2 3 3 0 2 2 8 LL + Duncan - ^ah~n-d+ah=ng 0 2 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL ^n~d-ah+ng=k 1 1 0 1 0 NN NN VBD 3 3 3 2 2 1 8 LL @@ -63,18 +62,18 @@ ^k~ah-n+w=aa 2 0 1 0 1 NN NN VBD 3 3 3 2 2 1 8 LL + was - ^ah~n-w+aa=z 0 2 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL ^n~w-aa+z=t 1 1 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL ^w~aa-z+t=r 2 0 0 1 1 NN VBD VVN 3 3 4 2 1 1 8 LL + tried - ^aa~z-t+r=ay 0 3 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL ^z~t-r+ay=d 1 2 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL @@ -82,9 +81,9 @@ ^r~ay-d+ah=n 3 0 1 1 1 VBD VVN IN 3 4 2 1 1 2 8 LL + under - ^ay~d-ah+n=d 0 1 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL ^d~ah-n+d=er 1 0 1 1 0 VVN IN DT 4 2 2 1 2 1 8 LL @@ -94,17 +93,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 1 2 1 8 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 8 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 8 LL @@ -118,10 +117,9 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 8 LL + Act - - ^f~t-ae+k=t 0 2 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL ^t~ae-k+t=pau 1 1 1 1 0 NN NN PAU 5 3 0 2 1 0 8 LL @@ -146,17 +144,18 @@ + + The - ^pau~pau-dh+ah=f 0 1 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL ^pau~dh-ah+f=ae 1 0 0 0 1 PAU DT RB 0 2 2 0 1 3 29 LL + family - ^dh~ah-f+ae=m 0 1 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL ^ah~f-ae+m=ah 1 0 0 1 0 DT RB IN 2 2 2 1 3 1 29 LL @@ -170,25 +169,25 @@ ^ah~l-iy+ah=v 1 0 0 0 1 DT RB IN 2 2 2 1 3 1 29 LL + of - ^l~iy-ah+v=dh 0 1 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL ^iy~ah-v+dh=ah 1 0 0 1 0 RB IN DT 2 2 2 3 1 1 29 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL ^v~dh-ah+l=ae 1 0 1 0 1 IN DT JJ 2 2 4 1 1 1 29 LL + last - ^dh~ah-l+ae=s 0 3 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL ^ah~l-ae+s=t 1 2 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL @@ -196,9 +195,9 @@ ^ae~s-t+p=er 3 0 0 1 1 DT JJ NN 2 4 2 1 1 2 29 LL + person - ^s~t-p+er=s 0 1 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL ^t~p-er+s=ah 1 0 1 1 0 JJ NN IN 4 2 3 1 2 1 29 LL @@ -209,49 +208,49 @@ ^s~ah-n+ih=n 2 0 1 0 0 JJ NN IN 2 3 2 1 2 1 29 LL + in - ^ah~n-ih+n=dh 0 1 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL ^n~ih-n+dh=ah 1 0 0 0 0 NN IN DT 3 2 2 2 1 1 29 LL + the - ^ih~n-dh+ah=uw 0 1 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL ^n~dh-ah+uw=k 1 0 0 0 0 IN DT NN 2 2 2 1 1 1 29 LL + UK - ^dh~ah-uw+k=t 0 1 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL ^ah~uw-k+t=uw 1 0 0 0 1 DT NN TO 2 2 2 1 1 1 29 LL + to - ^uw~k-t+uw=b 0 1 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL ^k~t-uw+b=iy 1 0 0 1 1 NN TO VB 2 2 2 1 1 1 29 LL + be - ^t~uw-b+iy=p 0 1 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL ^uw~b-iy+p=r 1 0 1 1 1 TO VB VVN 2 2 3 1 1 4 29 LL + prosecuted - ^b~iy-p+r=aa 0 2 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL ^iy~p-r+aa=s 1 1 1 1 0 VB VVN IN 2 3 2 1 4 2 29 LL @@ -272,9 +271,9 @@ ^t~ih-d+ah=n 2 0 1 0 1 VB VVN IN 3 3 2 1 4 2 29 LL + under - ^ih~d-ah+n=d 0 1 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL ^d~ah-n+d=er 1 0 0 1 0 VVN IN DT 3 2 2 4 2 1 29 LL @@ -284,17 +283,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 VVN IN DT 2 2 2 4 2 1 29 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 29 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 29 LL @@ -308,27 +307,27 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 29 LL + Act - ^f~t-ae+k=t 0 2 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL ^t~ae-k+t=w 1 1 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL ^ae~k-t+w=ih 2 0 1 1 1 NN NN MD 5 3 3 2 1 1 29 LL + will - ^k~t-w+ih=l 0 2 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL ^t~w-ih+l=m 1 1 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL ^w~ih-l+m=aa 2 0 1 1 1 NN MD NN 3 3 4 1 1 1 29 LL + mark - ^ih~l-m+aa=r 0 3 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL ^l~m-aa+r=k 1 2 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL @@ -336,17 +335,17 @@ ^aa~r-k+dh=ah 3 0 1 1 0 MD NN DT 3 4 2 1 1 1 29 LL + the - ^r~k-dh+ah=f 0 1 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL ^k~dh-ah+f=ay 1 0 1 0 1 NN DT NN 4 2 2 1 1 4 29 LL + 50th - ^dh~ah-f+ay=v 0 1 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL ^ah~f-ay+v=ow 1 0 0 1 1 DT NN NN 2 2 2 1 4 5 29 LL @@ -364,9 +363,9 @@ ^iy~ey-ch+ae=n 1 0 1 1 1 DT NN NN 2 2 1 1 4 5 29 LL + anniversary - ^ey~ch-ae+n=ah 0 0 1 1 0 NN NN IN 2 1 2 4 5 1 29 LL @@ -386,42 +385,42 @@ ^s~er-iy+ah=v 0 0 0 0 1 NN NN IN 2 1 2 4 5 1 29 LL + of - ^er~iy-ah+v=hh 0 1 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL ^iy~ah-v+hh=er 1 0 0 1 0 NN IN PP$ 1 2 2 5 1 1 29 LL + her - ^ah~v-hh+er=d 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL ^v~hh-er+d=eh 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 29 LL + death - ^hh~er-d+eh=th 0 2 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL ^er~d-eh+th=b 1 1 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL ^d~eh-th+b=ay 2 0 0 1 1 PP$ NN IN 2 3 2 1 1 1 29 LL + by - ^eh~th-b+ay=k 0 1 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL ^th~b-ay+k=ao 1 0 1 1 1 NN IN VVG 3 2 2 1 1 2 29 LL + calling - ^b~ay-k+ao=l 0 1 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL ^ay~k-ao+l=ih 1 0 1 1 0 IN VVG IN 2 2 3 1 2 1 29 LL @@ -432,27 +431,26 @@ ^l~ih-ng+f=ao 2 0 1 0 1 IN VVG IN 2 3 3 1 2 1 29 LL + for - ^ih~ng-f+ao=r 0 2 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL ^ng~f-ao+r=hh 1 1 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL ^f~ao-r+hh=er 2 0 0 1 0 VVG IN PP$ 3 3 2 2 1 1 29 LL + her - ^ao~r-hh+er=p 0 1 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL ^r~hh-er+p=aa 1 0 1 0 1 IN PP$ NN 3 2 3 1 1 2 29 LL + pardon. - - ^hh~er-p+aa=r 0 2 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL ^er~p-aa+r=d 1 1 0 1 0 PP$ NN PAU 2 3 3 1 2 0 29 LL @@ -482,9 +480,10 @@ + + Medium - ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH ^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH @@ -498,9 +497,9 @@ ^iy~ah-m+hh=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH + Helen - ^ah~m-hh+eh=l 0 1 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH ^m~hh-eh+l=ah 1 0 0 1 0 NN NN NN 2 2 3 3 2 2 3 LH @@ -511,9 +510,9 @@ ^l~ah-n+d=ah 2 0 1 0 1 NN NN NN 2 3 3 3 2 2 3 LH + Duncan, - ^ah~n-d+ah=ng 0 2 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH ^n~d-ah+ng=k 1 1 0 1 0 NN NN PAU 3 3 3 2 2 0 3 LH @@ -541,26 +540,26 @@ + who - ^pau~pau-hh+uw=w 0 1 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH ^pau~hh-uw+w=aa 1 0 0 1 1 PAU WP VBD 0 2 3 0 1 1 5 LH + was - ^hh~uw-w+aa=z 0 2 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH ^uw~w-aa+z=b 1 1 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH ^w~aa-z+b=ao 2 0 1 1 1 WP VBD NN 2 3 4 1 1 1 5 LH + born - ^aa~z-b+ao=r 0 3 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH ^z~b-ao+r=n 1 2 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH @@ -568,17 +567,17 @@ ^ao~r-n+ih=n 3 0 1 1 0 VBD NN IN 3 4 2 1 1 1 5 LH + in - ^r~n-ih+n=k 0 1 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH ^n~ih-n+k=ae 1 0 1 0 1 NN IN NN 4 2 2 1 1 3 5 LH + Callander, - ^ih~n-k+ae=l 0 1 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH ^n~k-ae+l=ah 1 0 0 1 0 IN NN PAU 2 2 3 1 3 0 5 LH @@ -609,9 +608,9 @@ + Perthshire, - ^pau~pau-p+er=th 0 4 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH ^pau~p-er+th=hh 1 3 0 1 1 PAU NN PAU 0 5 2 0 3 0 1 LH @@ -644,18 +643,18 @@ + was - ^pau~pau-w+aa=z 0 2 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL ^pau~w-aa+z=ih 1 1 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL ^w~aa-z+ih=m 2 0 0 1 0 PAU VBD VVN 0 3 2 0 1 3 9 LL + imprisoned - ^aa~z-ih+m=p 0 1 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL ^z~ih-m+p=r 1 0 1 0 1 VBD VVN VVG 3 2 3 1 3 2 9 LL @@ -672,9 +671,9 @@ ^ah~n-d+y=uw 3 0 1 0 1 VBD VVN VVG 3 4 2 1 3 2 9 LL + using - ^n~d-y+uw=z 0 1 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL ^d~y-uw+z=ih 1 0 0 1 0 VVN VVG DT 4 2 3 3 2 1 9 LL @@ -685,25 +684,25 @@ ^z~ih-ng+dh=ah 2 0 1 0 0 VVN VVG DT 2 3 2 3 2 1 9 LL + the - ^ih~ng-dh+ah=l 0 1 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL ^ng~dh-ah+l=ao 1 0 0 0 1 VVG DT NN 3 2 2 2 1 1 9 LL + law - ^dh~ah-l+ao=d 0 1 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL ^ah~l-ao+d=uh 1 0 0 1 1 DT NN IN 2 2 2 1 1 2 9 LL + during - ^l~ao-d+uh=r 0 1 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL ^ao~d-uh+r=ih 1 0 1 1 0 NN IN NN 2 2 3 1 2 1 9 LL @@ -714,9 +713,9 @@ ^r~ih-ng+w=er 2 0 1 0 1 NN IN NN 2 3 4 1 2 1 9 LL + World - ^ih~ng-w+er=l 0 3 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL ^ng~w-er+l=d 1 2 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL @@ -724,19 +723,18 @@ ^er~l-d+w=ao 3 0 0 1 1 IN NN NN 3 4 3 2 1 1 9 LL + War - ^l~d-w+ao=r 0 2 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL ^d~w-ao+r=iy 1 1 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL ^w~ao-r+iy=ih 2 0 1 1 1 NN NN NN 4 3 1 1 1 2 9 LL + II. - - ^ao~r-iy+ih=pau 0 0 1 1 0 NN NN PAU 3 1 1 1 2 0 9 LL @@ -762,26 +760,27 @@ + + She - ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL ^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 26 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL ^iy~w-aa+z=t 1 1 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL ^w~aa-z+t=aa 2 0 1 1 1 PP VBD VVN 2 3 3 1 1 3 26 LL + targeted - ^aa~z-t+aa=r 0 2 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL ^z~t-aa+r=g 1 1 1 1 0 VBD VVN IN 3 3 2 1 3 1 26 LL @@ -797,25 +796,25 @@ ^t~ih-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 26 LL + by - ^ih~d-b+ay=dh 0 1 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL ^d~b-ay+dh=ah 1 0 0 1 0 VVN IN DT 3 2 2 3 1 1 26 LL + the - ^b~ay-dh+ah=g 0 1 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL ^ay~dh-ah+g=ah 1 0 1 0 1 IN DT NN 2 2 2 1 1 3 26 LL + government - ^dh~ah-g+ah=v 0 1 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL ^ah~g-ah+v=er 1 0 0 1 0 DT NN IN 2 2 2 1 3 2 26 LL @@ -831,9 +830,9 @@ ^ah~n-t+ae=f 3 0 0 0 1 DT NN IN 2 4 2 1 3 2 26 LL + after - ^n~t-ae+f=t 0 1 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL ^t~ae-f+t=er 1 0 0 1 0 NN IN VVG 4 2 2 3 2 3 26 LL @@ -843,9 +842,9 @@ ^f~t-er+r=ih 1 0 1 0 0 NN IN VVG 2 2 2 3 2 3 26 LL + revealing - ^t~er-r+ih=v 0 1 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL ^er~r-ih+v=iy 1 0 0 0 1 IN VVG TO 2 2 2 2 3 1 26 LL @@ -860,24 +859,24 @@ ^l~ih-ng+t=uw 2 0 1 0 1 IN VVG TO 2 3 2 2 3 1 26 LL + to - ^ih~ng-t+uw=ah 0 1 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL ^ng~t-uw+ah=s 1 0 0 1 0 VVG TO DT 3 2 1 3 1 1 26 LL + a - ^t~uw-ah+s=ey 0 0 1 0 1 TO DT NN 2 1 2 1 1 2 26 LL + séance - ^uw~ah-s+ey=aa 0 1 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL ^ah~s-ey+aa=n 1 0 0 1 0 DT NN NN 1 2 3 1 2 3 26 LL @@ -888,9 +887,9 @@ ^aa~n-s+aa=d 2 0 1 0 1 DT NN NN 2 3 1 1 2 3 26 LL + audience - ^n~s-aa+d=iy 0 0 0 1 0 NN NN IN/that 3 1 2 2 3 1 26 LL @@ -904,25 +903,25 @@ ^ah~n-s+dh=ae 2 0 0 0 1 NN NN IN/that 2 3 3 2 3 1 26 LL + that - ^n~s-dh+ae=t 0 2 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL ^s~dh-ae+t=ah 1 1 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL ^dh~ae-t+ah=w 2 0 0 1 0 NN IN/that DT 3 3 1 3 1 1 26 LL + a - ^ae~t-ah+w=ao 0 0 1 0 1 IN/that DT NN 3 1 3 1 1 2 26 LL + warship - ^t~ah-w+ao=r 0 2 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL ^ah~w-ao+r=sh 1 1 0 1 1 DT NN VHD 1 3 3 1 2 1 26 LL @@ -934,18 +933,18 @@ ^sh~ih-p+hh=ae 2 0 1 1 1 DT NN VHD 3 3 3 1 2 1 26 LL + had - ^ih~p-hh+ae=d 0 2 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL ^p~hh-ae+d=s 1 1 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL ^hh~ae-d+s=ah 2 0 1 1 1 NN VHD NN 3 3 4 2 1 1 26 LL + sunk - ^ae~d-s+ah=ng 0 3 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL ^d~s-ah+ng=k 1 2 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL @@ -953,9 +952,9 @@ ^ah~ng-k+b=ih 3 0 1 1 0 VHD NN IN 3 4 2 1 1 2 26 LL + before - ^ng~k-b+ih=f 0 1 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL ^k~b-ih+f=ao 1 0 1 0 1 NN IN DT 4 2 3 1 2 1 26 LL @@ -966,44 +965,44 @@ ^f~ao-r+dh=ah 2 0 0 1 0 NN IN DT 2 3 2 1 2 1 26 LL + the - ^ao~r-dh+ah=n 0 1 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL ^r~dh-ah+n=uw 1 0 1 0 1 IN DT NN 3 2 3 2 1 1 26 LL + news - ^dh~ah-n+uw=z 0 2 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL ^ah~n-uw+z=hh 1 1 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL ^n~uw-z+hh=ae 2 0 0 1 1 DT NN VHD 2 3 3 1 1 1 26 LL + had - ^uw~z-hh+ae=d 0 2 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL ^z~hh-ae+d=b 1 1 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL ^hh~ae-d+b=ih 2 0 1 1 1 NN VHD VBN 3 3 3 1 1 1 26 LL + been - ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL ^d~b-ih+n=r 1 1 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL ^b~ih-n+r=iy 2 0 1 1 0 VHD VBN VVN 3 3 2 1 1 2 26 LL + released - ^ih~n-r+iy=l 0 1 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL ^n~r-iy+l=iy 1 0 1 0 1 VBN VVN TO 3 2 4 1 2 1 26 LL @@ -1015,26 +1014,25 @@ ^iy~s-t+t=uw 3 0 0 1 1 VBN VVN TO 2 4 2 1 2 1 26 LL + to - ^s~t-t+uw=dh 0 1 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL ^t~t-uw+dh=ah 1 0 1 1 0 VVN TO DT 4 2 2 2 1 1 26 LL + the - ^t~uw-dh+ah=p 0 1 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL ^uw~dh-ah+p=ah 1 0 1 0 1 TO DT JJ 2 2 2 1 1 2 26 LL + public. - - ^dh~ah-p+ah=b 0 1 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL ^ah~p-ah+b=l 1 0 0 1 0 DT JJ PAU 2 2 4 1 2 0 26 LL @@ -1056,187 +1054,157 @@ - + - ^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 10 LL + ^0~pau-pau+hh=er 0 0 0 0 0 PAU PAU PP$ 0 0 2 0 0 1 12 LL + + Her - - ^pau~pau-hh+er=jh 0 1 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LL - ^pau~hh-er+jh=iy 1 0 0 0 1 PAU PP$ NN 0 2 2 0 1 7 10 LL + ^pau~pau-hh+er=g 0 1 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL + ^pau~hh-er+g=r 1 0 0 0 1 PAU PP$ NN 0 2 5 0 1 1 12 LL - - grand-daughter - - - ^hh~er-jh+iy=aa 0 1 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^er~jh-iy+aa=r 1 0 0 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - - - ^jh~iy-aa+r=ah 0 0 1 1 0 PP$ NN VBZ 2 1 2 1 7 1 10 LL - - - ^iy~aa-r+ah=eh 0 1 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^aa~r-ah+eh=n 1 0 1 0 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - - - ^r~ah-eh+n=d 0 1 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^ah~eh-n+d=iy 1 0 0 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^eh~n-d+iy=d 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^n~d-iy+d=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^d~iy-d+iy=ah 0 1 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^iy~d-iy+ah=y 1 0 1 1 0 PP$ NN VBZ 2 2 1 1 7 1 10 LL - - - ^d~iy-ah+y=uw 0 0 1 0 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL - - - ^iy~ah-y+uw=jh 0 1 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^ah~y-uw+jh=iy 1 0 0 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - - - ^y~uw-jh+iy=ey 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^uw~jh-iy+ey=ch 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^jh~iy-ey+ch=t 0 1 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - ^iy~ey-ch+t=iy 1 0 1 1 1 PP$ NN VBZ 2 2 2 1 7 1 10 LL - - - ^ey~ch-t+iy=iy 0 1 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL - ^ch~t-iy+iy=aa 1 0 1 1 1 PP$ NN VBZ 2 2 1 1 7 1 10 LL + + + grand + + ^hh~er-g+r=ae 0 4 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^er~g-r+ae=n 1 3 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^g~r-ae+n=d 2 2 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^r~ae-n+d=d 3 1 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL + ^ae~n-d+d=ao 4 0 0 1 1 PP$ NN NN 2 5 2 1 1 0 12 LL - - ^t~iy-iy+aa=r 0 0 1 1 1 PP$ NN VBZ 2 1 2 1 7 1 10 LL + + - + + daughter + + ^n~d-d+ao=t 0 1 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL + ^d~d-ao+t=er 1 0 1 1 0 NN NN VBZ 5 2 2 0 2 1 12 LL - - ^iy~iy-aa+r=ih 0 1 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL - ^iy~aa-r+ih=z 1 0 1 1 1 PP$ NN VBZ 1 2 2 1 7 1 10 LL + + ^d~ao-t+er=ih 0 1 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL + ^ao~t-er+ih=z 1 0 1 0 1 NN NN VBZ 2 2 2 0 2 1 12 LL - + + is - - ^aa~r-ih+z=p 0 1 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LL - ^r~ih-z+p=aa 1 0 1 1 1 NN VBZ RB 2 2 3 7 1 5 10 LL + ^t~er-ih+z=p 0 1 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL + ^er~ih-z+p=aa 1 0 0 1 1 NN VBZ RB 2 2 3 2 1 5 12 LL - + + particularly - - ^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL - ^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL - ^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 10 LL + ^ih~z-p+aa=r 0 2 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL + ^z~p-aa+r=t 1 1 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL + ^p~aa-r+t=ih 2 0 1 1 1 VBZ RB NN 2 3 2 1 5 2 12 LL - ^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL - ^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 10 LL + ^aa~r-t+ih=k 0 1 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL + ^r~t-ih+k=y 1 0 1 1 0 VBZ RB NN 3 2 3 1 5 2 12 LL - ^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL - ^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL - ^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 10 LL + ^t~ih-k+y=ah 0 2 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL + ^ih~k-y+ah=l 1 1 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL + ^k~y-ah+l=er 2 0 1 0 0 VBZ RB NN 2 3 2 1 5 2 12 LL - ^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL - ^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 10 LL + ^y~ah-l+er=l 0 1 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL + ^ah~l-er+l=iy 1 0 0 0 0 VBZ RB NN 3 2 2 1 5 2 12 LL - ^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LL - ^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 10 LL + ^l~er-l+iy=ae 0 1 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL + ^er~l-iy+ae=ng 1 0 0 0 1 VBZ RB NN 2 2 2 1 5 2 12 LL - + + angry - - ^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL - ^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 10 LL + ^l~iy-ae+ng=g 0 1 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL + ^iy~ae-ng+g=r 1 0 0 1 0 RB NN IN 2 2 3 5 2 1 12 LL - ^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL - ^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL - ^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 10 LL + ^ae~ng-g+r=iy 0 2 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL + ^ng~g-r+iy=ae 1 1 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL + ^g~r-iy+ae=t 2 0 1 0 1 RB NN IN 2 3 2 5 2 1 12 LL - + + at - - ^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 10 LL - ^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 10 LL + ^r~iy-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL + ^iy~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 12 LL - + + the - - ^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LL - ^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 10 LL + ^ae~t-dh+ah=ae 0 1 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL + ^t~dh-ah+ae=k 1 0 1 0 1 IN DT NNS 2 2 1 1 1 4 12 LL - + + accusations - - ^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 10 LL + ^dh~ah-ae+k=y 0 0 0 1 0 DT NNS IN 2 1 3 1 4 1 12 LL - ^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL - ^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL - ^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 10 LL + ^ah~ae-k+y=ah 0 2 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL + ^ae~k-y+ah=z 1 1 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL + ^k~y-ah+z=ey 2 0 1 0 1 DT NNS IN 1 3 2 1 4 1 12 LL - ^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL - ^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 10 LL + ^y~ah-z+ey=sh 0 1 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL + ^ah~z-ey+sh=ah 1 0 0 1 0 DT NNS IN 3 2 4 1 4 1 12 LL - ^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL - ^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 10 LL + ^z~ey-sh+ah=n 0 3 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^ey~sh-ah+n=z 1 2 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^sh~ah-n+z=ah 2 1 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL + ^ah~n-z+ah=v 3 0 1 0 1 DT NNS IN 2 4 2 1 4 1 12 LL - + + of - - ^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LL - ^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 10 LL + ^n~z-ah+v=t 0 1 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL + ^z~ah-v+t=r 1 0 0 1 1 NNS IN NN 4 2 3 4 1 2 12 LL - + + treason. - - - ^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL - ^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL - ^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 10 LL + ^ah~v-t+r=iy 0 2 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL + ^v~t-r+iy=z 1 1 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL + ^t~r-iy+z=ah 2 0 1 1 0 IN NN PAU 2 3 3 1 2 0 12 LL - ^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL - ^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL - ^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 10 LL + ^r~iy-z+ah=n 0 2 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL + ^iy~z-ah+n=pau 1 1 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL + ^z~ah-n+pau=pau 2 0 1 0 0 IN NN PAU 3 3 0 1 2 0 12 LL - ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 10 LL + ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 2 0 0 12 LL @@ -1251,9 +1219,10 @@ + + Mary - ^pau~pau-m+eh=r 0 1 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH ^pau~m-eh+r=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 2 2 2 LH @@ -1263,9 +1232,9 @@ ^eh~r-iy+m=aa 1 0 1 0 1 PAU NN NN 2 2 3 0 2 2 2 LH + Martin, - ^r~iy-m+aa=r 0 2 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH ^iy~m-aa+r=t 1 1 0 1 0 NN NN PAU 2 3 3 2 2 0 2 LH @@ -1293,17 +1262,17 @@ + of - ^pau~pau-ah+v=eh 0 1 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH ^pau~ah-v+eh=d 1 0 0 1 1 PAU IN NN 0 2 1 0 1 4 2 LH + Edinburgh, - ^ah~v-eh+d=ah 0 0 1 1 0 IN NN PAU 2 1 3 1 4 0 2 LH @@ -1336,18 +1305,18 @@ + said - ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL ^pau~s-eh+d=m 1 1 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL ^s~eh-d+m=iy 2 0 0 1 0 PAU VVD NN 0 3 2 0 1 2 10 LL + Mrs - ^eh~d-m+iy=s 0 1 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL ^d~m-iy+s=iy 1 0 1 0 0 VVD NN NN 3 2 3 1 2 2 10 LL @@ -1358,9 +1327,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 VVD NN NN 2 3 3 1 2 2 10 LL + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL ^s~d-ah+ng=k 1 1 0 1 0 NN NN VHD 3 3 3 2 2 1 10 LL @@ -1372,27 +1341,27 @@ ^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHD 3 3 3 2 2 1 10 LL + had - ^ah~n-hh+ae=d 0 2 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL ^n~hh-ae+d=b 1 1 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL ^hh~ae-d+b=ih 2 0 0 1 1 NN VHD VBN 3 3 3 2 1 1 10 LL + been - ^ae~d-b+ih=n 0 2 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL ^d~b-ih+n=ah 1 1 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL ^b~ih-n+ah=k 2 0 1 1 0 VHD VBN VVN 3 3 1 1 1 2 10 LL + accused - ^ih~n-ah+k=y 0 0 1 0 1 VBN VVN IN 3 1 5 1 2 1 10 LL @@ -1404,17 +1373,17 @@ ^uw~z-d+ah=v 4 0 0 1 1 VBN VVN IN 1 5 2 1 2 1 10 LL + of - ^z~d-ah+v=b 0 1 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL ^d~ah-v+b=iy 1 0 1 1 1 VVN IN VBG 5 2 2 2 1 2 10 LL + being - ^ah~v-b+iy=ih 0 1 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL ^v~b-iy+ih=ng 1 0 1 1 0 IN VBG DT 2 2 2 1 2 1 10 LL @@ -1424,17 +1393,16 @@ ^iy~ih-ng+ah=t 1 0 1 0 0 IN VBG DT 2 2 1 1 2 1 10 LL + a - ^ih~ng-ah+t=r 0 0 0 0 1 VBG DT NN 2 1 3 2 1 2 10 LL + traitor. - - ^ng~ah-t+r=ey 0 2 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL ^ah~t-r+ey=t 1 1 0 1 0 DT NN PAU 1 3 2 1 2 0 10 LL @@ -1463,26 +1431,27 @@ + + "When - ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL ^pau~w-eh+n=sh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL ^w~eh-n+sh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 13 LL + she - ^eh~n-sh+iy=f 0 1 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL ^n~sh-iy+f=er 1 0 1 1 1 WRB PP JJ 3 2 4 1 1 1 13 LL + first - ^sh~iy-f+er=s 0 3 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL ^iy~f-er+s=t 1 2 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL @@ -1490,36 +1459,36 @@ ^er~s-t+k=ey 3 0 1 1 1 PP JJ VVD 2 4 3 1 1 1 13 LL + came - ^s~t-k+ey=m 0 2 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL ^t~k-ey+m=b 1 1 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL ^k~ey-m+b=ae 2 0 1 1 1 JJ VVD NN 4 3 3 1 1 1 13 LL + back - ^ey~m-b+ae=k 0 2 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL ^m~b-ae+k=hh 1 1 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL ^b~ae-k+hh=ow 2 0 1 1 1 VVD NN NN 3 3 3 1 1 1 13 LL + home - ^ae~k-hh+ow=m 0 2 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL ^k~hh-ow+m=ae 1 1 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL ^hh~ow-m+ae=f 2 0 1 1 1 NN NN IN 3 3 2 1 1 2 13 LL + after - ^ow~m-ae+f=t 0 1 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL ^m~ae-f+t=er 1 0 1 1 0 NN IN NN 3 2 2 1 2 2 13 LL @@ -1529,9 +1498,9 @@ ^f~t-er+p=r 1 0 1 0 1 NN IN NN 2 2 3 1 2 2 13 LL + prison - ^t~er-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL ^er~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 2 2 1 13 LL @@ -1543,26 +1512,26 @@ ^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 2 2 1 13 LL + she - ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL ^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 13 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL ^iy~w-aa+z=n 1 1 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL ^w~aa-z+n=eh 2 0 1 1 1 PP VBD RB 2 3 2 1 1 2 13 LL + never - ^aa~z-n+eh=v 0 1 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL ^z~n-eh+v=er 1 0 1 1 0 VBD RB DT 3 2 2 1 2 1 13 LL @@ -1572,18 +1541,17 @@ ^eh~v-er+dh=ah 1 0 1 0 0 VBD RB DT 2 2 2 1 2 1 13 LL + the - ^v~er-dh+ah=s 0 1 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL ^er~dh-ah+s=ey 1 0 0 0 1 RB DT JJ 2 2 3 2 1 1 13 LL + same. - - ^dh~ah-s+ey=m 0 2 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL ^ah~s-ey+m=pau 1 1 0 1 0 DT JJ PAU 2 3 0 1 1 0 13 LL @@ -1608,17 +1576,18 @@ + + "She - ^pau~pau-sh+iy=ao 0 1 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL ^pau~sh-iy+ao=l 1 0 0 1 1 PAU PP RB 0 2 2 0 1 2 17 LL + always - ^sh~iy-ao+l=w 0 1 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL ^iy~ao-l+w=ey 1 0 1 1 1 PP RB VHD 2 2 3 1 2 1 17 LL @@ -1629,58 +1598,58 @@ ^w~ey-z+hh=ae 2 0 1 1 1 PP RB VHD 2 3 3 1 2 1 17 LL + had - ^ey~z-hh+ae=d 0 2 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL ^z~hh-ae+d=ah 1 1 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL ^hh~ae-d+ah=b 2 0 1 1 0 RB VHD DT 3 3 1 2 1 1 17 LL + a - ^ae~d-ah+b=ih 0 0 1 0 1 VHD DT NN 3 1 3 1 1 1 17 LL + bit - ^d~ah-b+ih=t 0 2 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL ^ah~b-ih+t=ah 1 1 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL ^b~ih-t+ah=v 2 0 0 1 1 DT NN IN 1 3 2 1 1 1 17 LL + of - ^ih~t-ah+v=ah 0 1 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL ^t~ah-v+ah=g 1 0 1 1 0 NN IN DT 3 2 1 1 1 1 17 LL + a - ^ah~v-ah+g=l 0 0 1 0 1 IN DT NN 2 1 3 1 1 1 17 LL + glow - ^v~ah-g+l=ow 0 2 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL ^ah~g-l+ow=ah 1 1 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL ^g~l-ow+ah=b 2 0 0 1 0 DT NN IN 1 3 1 1 1 2 17 LL + about - ^l~ow-ah+b=aw 0 0 1 0 1 NN IN PP$ 3 1 3 1 2 1 17 LL @@ -1690,34 +1659,34 @@ ^b~aw-t+hh=er 2 0 0 1 0 NN IN PP$ 1 3 2 1 2 1 17 LL + her - ^aw~t-hh+er=b 0 1 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL ^t~hh-er+b=ah 1 0 1 0 1 IN PP$ CC 3 2 3 2 1 1 17 LL + but - ^hh~er-b+ah=t 0 2 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL ^er~b-ah+t=sh 1 1 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL ^b~ah-t+sh=iy 2 0 0 1 1 PP$ CC PP 2 3 2 1 1 1 17 LL + she - ^ah~t-sh+iy=s 0 1 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL ^t~sh-iy+s=iy 1 0 1 1 1 CC PP VVN 3 2 4 1 1 1 17 LL + seemed - ^sh~iy-s+iy=m 0 3 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL ^iy~s-iy+m=d 1 2 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL @@ -1725,26 +1694,26 @@ ^iy~m-d+t=uw 3 0 1 1 1 PP VVN TO 2 4 2 1 1 1 17 LL + to - ^m~d-t+uw=hh 0 1 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL ^d~t-uw+hh=ae 1 0 1 1 1 VVN TO VHP 4 2 3 1 1 1 17 LL + have - ^t~uw-hh+ae=v 0 2 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL ^uw~hh-ae+v=l 1 1 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL ^hh~ae-v+l=ao 2 0 1 1 1 TO VHP NN 2 3 4 1 1 1 17 LL + lost - ^ae~v-l+ao=s 0 3 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL ^v~l-ao+s=t 1 2 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL @@ -1752,10 +1721,9 @@ ^ao~s-t+dh=ae 3 0 1 1 1 VHP NN IN/that 3 4 3 1 1 1 17 LL + that. - - ^s~t-dh+ae=t 0 2 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL ^t~dh-ae+t=pau 1 1 1 1 0 NN IN/that PAU 4 3 0 1 1 0 17 LL @@ -1780,18 +1748,19 @@ + + "Some - ^pau~pau-s+ah=m 0 2 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL ^pau~s-ah+m=p 1 1 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL ^s~ah-m+p=iy 2 0 0 1 1 PAU DT NNS 0 3 2 0 1 2 6 LL + people - ^ah~m-p+iy=p 0 1 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL ^m~p-iy+p=ah 1 0 1 1 0 DT NNS VVD 3 2 3 1 2 1 6 LL @@ -1802,35 +1771,35 @@ ^p~ah-l+s=eh 2 0 1 0 1 DT NNS VVD 2 3 3 1 2 1 6 LL + said - ^ah~l-s+eh=d 0 2 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL ^l~s-eh+d=ih 1 1 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL ^s~eh-d+ih=t 2 0 0 1 1 NNS VVD PP 3 3 2 2 1 1 6 LL + it - ^eh~d-ih+t=w 0 1 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL ^d~ih-t+w=aa 1 0 1 1 1 VVD PP VBD 3 2 3 1 1 1 6 LL + was - ^ih~t-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL ^t~w-aa+z=t 1 1 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL ^w~aa-z+t=r 2 0 1 1 1 PP VBD NN 2 3 3 1 1 2 6 LL + treason. - ^aa~z-t+r=iy 0 2 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL ^z~t-r+iy=z 1 1 1 1 0 VBD NN PAU 3 3 3 1 2 0 6 LL @@ -1860,17 +1829,17 @@ + My - ^pau~pau-m+ay=g 0 1 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL ^pau~m-ay+g=r 1 0 0 1 1 PAU PP$ NN 0 2 5 0 1 3 25 LL + grandmother - ^m~ay-g+r=ae 0 4 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL ^ay~g-r+ae=n 1 3 1 1 1 PP$ NN VHD 2 5 2 1 3 1 25 LL @@ -1887,26 +1856,26 @@ ^ah~dh-er+hh=ae 1 0 1 0 1 PP$ NN VHD 2 2 3 1 3 1 25 LL + had - ^dh~er-hh+ae=d 0 2 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL ^er~hh-ae+d=t 1 1 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL ^hh~ae-d+t=uw 2 0 0 1 1 NN VHD CD 2 3 2 3 1 1 25 LL + two - ^ae~d-t+uw=s 0 1 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL ^d~t-uw+s=ah 1 0 1 1 1 VHD CD NNS 3 2 4 1 1 1 25 LL + sons - ^t~uw-s+ah=n 0 3 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL ^uw~s-ah+n=z 1 2 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL @@ -1914,68 +1883,68 @@ ^ah~n-z+ah=n 3 0 1 1 0 CD NNS CC 2 4 3 1 1 1 25 LL + and - ^n~z-ah+n=d 0 2 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL ^z~ah-n+d=t 1 1 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL ^ah~n-d+t=uw 2 0 1 0 1 NNS CC CD 4 3 2 1 1 1 25 LL + two - ^n~d-t+uw=s 0 1 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL ^d~t-uw+s=ah 1 0 0 1 1 CC CD NN 3 2 3 1 1 1 25 LL + son - ^t~uw-s+ah=n 0 2 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL ^uw~s-ah+n=ih 1 1 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL ^s~ah-n+ih=n 2 0 1 1 0 CD NN IN 2 3 2 1 1 1 25 LL + in - ^ah~n-ih+n=l 0 1 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL ^n~ih-n+l=ao 1 0 1 0 1 NN IN NN 3 2 3 1 1 1 25 LL + laws - ^ih~n-l+ao=z 0 2 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL ^n~l-ao+z=ih 1 1 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL ^l~ao-z+ih=n 2 0 0 1 0 IN NN IN 2 3 2 1 1 1 25 LL + in - ^ao~z-ih+n=dh 0 1 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL ^z~ih-n+dh=ah 1 0 1 0 0 NN IN DT 3 2 2 1 1 1 25 LL + the - ^ih~n-dh+ah=f 0 1 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL ^n~dh-ah+f=ao 1 0 0 0 1 IN DT NNS 2 2 3 1 1 2 25 LL + forces - ^dh~ah-f+ao=r 0 2 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL ^ah~f-ao+r=s 1 1 0 1 0 DT NNS MD 2 3 3 1 2 0 25 LL @@ -1987,81 +1956,79 @@ ^s~ih-z+ah=n 2 0 1 0 0 DT NNS MD 3 3 3 1 2 0 25 LL - - ... - - + + ... + and - ^ih~z-ah+n=d 0 2 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL ^z~ah-n+d=dh 1 1 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL ^ah~n-d+dh=eh 2 0 0 0 1 MD CC EX 3 3 3 0 1 1 25 LL + there - ^n~d-dh+eh=r 0 2 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL ^d~dh-eh+r=ih 1 1 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL ^dh~eh-r+ih=z 2 0 0 1 1 CC EX VBZ 3 3 2 1 1 1 25 LL + is - ^eh~r-ih+z=n 0 1 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL ^r~ih-z+n=ow 1 0 1 1 1 EX VBZ DT 3 2 2 1 1 1 25 LL + no - ^ih~z-n+ow=w 0 1 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL ^z~n-ow+w=ey 1 0 1 1 1 VBZ DT NN 2 2 2 1 1 1 25 LL + way - ^n~ow-w+ey=sh 0 1 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL ^ow~w-ey+sh=iy 1 0 1 1 1 DT NN PP 2 2 2 1 1 1 25 LL + she - ^w~ey-sh+iy=w 0 1 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL ^ey~sh-iy+w=uh 1 0 1 1 1 NN PP MD 2 2 3 1 1 1 25 LL + would - ^sh~iy-w+uh=d 0 2 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL ^iy~w-uh+d=hh 1 1 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL ^w~uh-d+hh=ae 2 0 1 1 1 PP MD VHP 2 3 3 1 1 1 25 LL + have - ^uh~d-hh+ae=v 0 2 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL ^d~hh-ae+v=g 1 1 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL ^hh~ae-v+g=ih 2 0 1 1 1 MD VHP VVN 3 3 2 1 1 2 25 LL + given - ^ae~v-g+ih=v 0 1 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL ^v~g-ih+v=ah 1 0 1 1 0 VHP VVN NN 3 2 3 1 2 4 25 LL @@ -2072,9 +2039,9 @@ ^v~ah-n+eh=n 2 0 1 0 1 VHP VVN NN 2 3 1 1 2 4 25 LL + anybody - ^ah~n-eh+n=iy 0 0 0 1 0 VVN NN NN 3 1 2 2 4 4 25 LL @@ -2091,10 +2058,9 @@ ^ah~d-iy+ih=n 1 0 0 0 1 VVN NN NN 2 2 2 2 4 4 25 LL + information." - - ^d~iy-ih+n=f 0 1 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL ^iy~ih-n+f=er 1 0 0 1 0 NN NN PAU 2 2 2 4 4 0 25 LL @@ -2131,9 +2097,10 @@ + + Mrs - ^pau~pau-m+iy=s 0 1 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH ^pau~m-iy+s=iy 1 0 0 0 0 PAU NN NN 0 2 3 0 2 2 12 LH @@ -2144,9 +2111,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 PAU NN NN 2 3 3 0 2 2 12 LH + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH ^s~d-ah+ng=k 1 1 0 1 0 NN NN NN 3 3 3 2 2 2 12 LH @@ -2158,9 +2125,9 @@ ^k~ah-n+b=ih 2 0 1 0 0 NN NN NN 3 3 2 2 2 2 12 LH + became - ^ah~n-b+ih=k 0 1 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH ^n~b-ih+k=ey 1 0 0 0 1 NN NN CD 3 2 3 2 2 1 12 LH @@ -2171,34 +2138,34 @@ ^k~ey-m+w=ah 2 0 0 1 1 NN NN CD 2 3 3 2 2 1 12 LH + one - ^ey~m-w+ah=n 0 2 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH ^m~w-ah+n=ah 1 1 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH ^w~ah-n+ah=v 2 0 1 1 1 NN CD IN 3 3 2 2 1 1 12 LH + of - ^ah~n-ah+v=dh 0 1 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH ^n~ah-v+dh=ah 1 0 1 1 0 CD IN DT 3 2 2 1 1 1 12 LH + the - ^ah~v-dh+ah=m 0 1 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH ^v~dh-ah+m=ow 1 0 1 0 1 IN DT RBS 2 2 4 1 1 1 12 LH + most - ^dh~ah-m+ow=s 0 3 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH ^ah~m-ow+s=t 1 2 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH @@ -2206,9 +2173,9 @@ ^ow~s-t+f=ey 3 0 0 1 1 DT RBS JJ 2 4 2 1 1 2 12 LH + famous - ^s~t-f+ey=m 0 1 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH ^t~f-ey+m=ah 1 0 1 1 0 RBS JJ NNS 4 2 3 1 2 3 12 LH @@ -2219,9 +2186,9 @@ ^m~ah-s+m=iy 2 0 1 0 1 RBS JJ NNS 2 3 2 1 2 3 12 LH + mediums - ^ah~s-m+iy=d 0 1 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH ^s~m-iy+d=iy 1 0 0 1 0 JJ NNS IN 3 2 2 2 3 1 12 LH @@ -2236,25 +2203,25 @@ ^ah~m-z+ah=v 2 0 0 0 1 JJ NNS IN 2 3 2 2 3 1 12 LH + of - ^m~z-ah+v=hh 0 1 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH ^z~ah-v+hh=er 1 0 0 1 0 NNS IN PP$ 3 2 2 3 1 1 12 LH + her - ^ah~v-hh+er=t 0 1 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH ^v~hh-er+t=ay 1 0 1 0 1 IN PP$ NN 2 2 3 1 1 1 12 LH + time, - ^hh~er-t+ay=m 0 2 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH ^er~t-ay+m=pau 1 1 0 1 0 PP$ NN PAU 2 3 0 1 1 0 12 LH @@ -2277,9 +2244,9 @@ + heading - ^pau~pau-hh+eh=d 0 1 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL ^pau~hh-eh+d=ih 1 0 0 1 0 PAU VVG DT 0 2 3 0 2 1 6 LL @@ -2290,16 +2257,16 @@ ^d~ih-ng+ah=n 2 0 1 0 0 PAU VVG DT 2 3 1 0 2 1 6 LL + a - ^ih~ng-ah+n=eh 0 0 0 0 1 VVG DT NN 3 1 2 2 1 2 6 LL + network - ^ng~ah-n+eh=t 0 1 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL ^ah~n-eh+t=w 1 0 0 1 1 DT NN IN 1 2 4 1 2 1 6 LL @@ -2311,17 +2278,17 @@ ^w~er-k+ah=v 3 0 1 1 1 DT NN IN 2 4 2 1 2 1 6 LL + of - ^er~k-ah+v=s 0 1 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL ^k~ah-v+s=p 1 0 1 1 1 NN IN NN 4 2 3 2 1 5 6 LL + spiritualist - ^ah~v-s+p=ih 0 2 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL ^v~s-p+ih=r 1 1 1 1 0 IN NN NNS 2 3 2 1 5 2 6 LL @@ -2346,10 +2313,9 @@ ^ih~s-t+ch=er 3 0 0 0 1 IN NN NNS 2 4 2 1 5 2 6 LL + churches. - - ^s~t-ch+er=ch 0 1 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL ^t~ch-er+ch=ah 1 0 0 1 0 NN NNS PAU 4 2 3 5 2 0 6 LL @@ -2378,9 +2344,10 @@ + + During - ^pau~pau-d+uh=r 0 1 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH ^pau~d-uh+r=ih 1 0 0 1 0 PAU IN DT 0 2 3 0 2 1 7 LH @@ -2391,34 +2358,34 @@ ^r~ih-ng+dh=ah 2 0 1 0 0 PAU IN DT 2 3 2 0 2 1 7 LH + the - ^ih~ng-dh+ah=w 0 1 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH ^ng~dh-ah+w=ao 1 0 0 0 1 IN DT NN 3 2 3 2 1 1 7 LH + war - ^dh~ah-w+ao=r 0 2 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH ^ah~w-ao+r=sh 1 1 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH ^w~ao-r+sh=iy 2 0 0 1 1 DT NN PP 2 3 2 1 1 1 7 LH + she - ^ao~r-sh+iy=l 0 1 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH ^r~sh-iy+l=ay 1 0 1 1 1 NN PP VVN 3 2 4 1 1 1 7 LH + lived - ^sh~iy-l+ay=v 0 3 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH ^iy~l-ay+v=d 1 2 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH @@ -2426,17 +2393,17 @@ ^ay~v-d+ih=n 3 0 1 1 0 PP VVN IN 2 4 2 1 1 1 7 LH + in - ^v~d-ih+n=p 0 1 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH ^d~ih-n+p=ao 1 0 1 0 1 VVN IN NN 4 2 4 1 1 2 7 LH + Portsmouth, - ^ih~n-p+ao=r 0 3 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH ^n~p-ao+r=t 1 2 0 1 0 IN NN PAU 2 4 4 1 2 0 7 LH @@ -2466,42 +2433,42 @@ + the - ^pau~pau-dh+ah=hh 0 1 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL ^pau~dh-ah+hh=ow 1 0 0 0 1 PAU DT NN 0 2 3 0 1 1 6 LL + home - ^dh~ah-hh+ow=m 0 2 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL ^ah~hh-ow+m=ah 1 1 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL ^hh~ow-m+ah=v 2 0 0 1 1 DT NN IN 2 3 2 1 1 1 6 LL + of - ^ow~m-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL ^m~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 6 LL + the - ^ah~v-dh+ah=r 0 1 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL ^v~dh-ah+r=oy 1 0 1 0 1 IN DT JJ 2 2 2 1 1 2 6 LL + Royal - ^dh~ah-r+oy=ah 0 1 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL ^ah~r-oy+ah=l 1 0 0 1 0 DT JJ NN 2 2 2 1 2 2 6 LL @@ -2511,10 +2478,9 @@ ^oy~ah-l+n=ey 1 0 1 0 1 DT JJ NN 2 2 2 1 2 2 6 LL + Navy. - - ^ah~l-n+ey=v 0 1 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL ^l~n-ey+v=iy 1 0 0 1 0 JJ NN PAU 2 2 2 2 2 0 6 LL @@ -2542,109 +2508,110 @@ + + She - ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL ^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL + has - ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL + put - ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL + us - ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL ^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL + on - ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL ^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL + the - ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL ^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL + right - ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL + side - ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL + of - ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL ^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL ^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL + law - ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL ^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL + by - ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL ^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL + bringing - ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL ^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL @@ -2656,25 +2623,25 @@ ^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL + in - ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL ^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL + the - ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL ^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL + 1952 - ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL ^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL @@ -2695,10 +2662,9 @@ ^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL + act. - - ^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL ^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL @@ -2723,24 +2689,25 @@ + + At - ^pau~pau-ae+t=ah 0 1 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL ^pau~ae-t+ah=s 1 0 0 1 0 PAU IN DT 0 2 1 0 1 1 19 LL + a - ^ae~t-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL + séance - ^t~ah-s+ey=aa 0 1 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL ^ah~s-ey+aa=n 1 0 0 1 0 DT NN IN 1 2 3 1 2 1 19 LL @@ -2751,17 +2718,17 @@ ^aa~n-s+ih=n 2 0 1 0 0 DT NN IN 2 3 2 1 2 1 19 LL + in - ^n~s-ih+n=w 0 1 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL ^s~ih-n+w=ah 1 0 0 0 1 NN IN NN 3 2 3 2 1 4 19 LL + 1943 - ^ih~n-w+ah=n 0 2 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL ^n~w-ah+n=n 1 1 0 1 1 IN NN PP 2 3 3 1 4 1 19 LL @@ -2783,26 +2750,26 @@ ^th~r-iy+ih=t 2 0 1 1 1 IN NN PP 3 3 2 1 4 1 19 LL + it - ^r~iy-ih+t=w 0 1 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL ^iy~ih-t+w=aa 1 0 1 1 1 NN PP VBD 3 2 3 4 1 1 19 LL + was - ^ih~t-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL ^t~w-aa+z=k 1 1 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL ^w~aa-z+k=l 2 0 1 1 1 PP VBD VVN 2 3 5 1 1 1 19 LL + claimed - ^aa~z-k+l=ey 0 4 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL ^z~k-l+ey=m 1 3 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL @@ -2811,26 +2778,26 @@ ^ey~m-d+dh=ae 4 0 1 1 1 VBD VVN IN/that 3 5 3 1 1 1 19 LL + that - ^m~d-dh+ae=t 0 2 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL ^d~dh-ae+t=dh 1 1 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL ^dh~ae-t+dh=ah 2 0 1 1 0 VVN IN/that DT 5 3 2 1 1 1 19 LL + the - ^ae~t-dh+ah=s 0 1 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL ^t~dh-ah+s=p 1 0 1 0 1 IN/that DT NN 3 2 3 1 1 2 19 LL + spirit - ^dh~ah-s+p=ih 0 2 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL ^ah~s-p+ih=r 1 1 0 1 0 DT NN IN 2 3 3 1 2 1 19 LL @@ -2842,24 +2809,24 @@ ^r~ah-t+ah=v 2 0 1 0 1 DT NN IN 3 3 2 1 2 1 19 LL + of - ^ah~t-ah+v=ah 0 1 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL ^t~ah-v+ah=s 1 0 0 1 0 NN IN DT 3 2 1 2 1 1 19 LL + a - ^ah~v-ah+s=ey 0 0 1 0 1 IN DT NN 2 1 2 1 1 2 19 LL + sailor - ^v~ah-s+ey=l 0 1 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL ^ah~s-ey+l=er 1 0 0 1 0 DT NN IN 1 2 2 1 2 1 19 LL @@ -2869,9 +2836,9 @@ ^ey~l-er+f=r 1 0 1 0 1 DT NN IN 2 2 4 1 2 1 19 LL + from - ^l~er-f+r=ah 0 3 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL ^er~f-r+ah=m 1 2 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL @@ -2879,26 +2846,26 @@ ^r~ah-m+dh=ah 3 0 0 1 0 NN IN DT 2 4 2 2 1 1 19 LL + the - ^ah~m-dh+ah=hh 0 1 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL ^m~dh-ah+hh=m 1 0 1 0 0 IN DT NNS 4 2 3 1 1 1 19 LL + HMS - ^dh~ah-hh+m=s 0 2 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL ^ah~hh-m+s=b 1 1 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL ^hh~m-s+b=aa 2 0 0 0 1 DT NNS NN 2 3 3 1 1 2 19 LL + Barham - ^m~s-b+aa=r 0 2 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL ^s~b-aa+r=hh 1 1 0 1 0 NNS NN VVN 3 3 3 1 2 2 19 LL @@ -2910,10 +2877,9 @@ ^hh~ah-m+ah=p 2 0 1 0 0 NNS NN VVN 3 3 1 1 2 2 19 LL + appeared. - - ^ah~m-ah+p=ih 0 0 0 0 1 NN VVN PAU 3 1 4 2 2 0 19 LL @@ -2942,17 +2908,18 @@ + + The - ^pau~pau-dh+ah=v 0 1 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL ^pau~dh-ah+v=eh 1 0 0 0 1 PAU DT NN 0 2 2 0 1 2 10 LL + vessel - ^dh~ah-v+eh=s 0 1 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL ^ah~v-eh+s=ah 1 0 0 1 0 DT NN VBD 2 2 3 1 2 1 10 LL @@ -2963,18 +2930,18 @@ ^s~ah-l+w=aa 2 0 1 0 1 DT NN VBD 2 3 3 1 2 1 10 LL + was - ^ah~l-w+aa=z 0 2 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL ^l~w-aa+z=ow 1 1 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL ^w~aa-z+ow=n 2 0 0 1 1 NN VBD RB 3 3 2 2 1 2 10 LL + only - ^aa~z-ow+n=l 0 1 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL ^z~ow-n+l=iy 1 0 1 1 0 VBD RB RB 3 2 2 1 2 4 10 LL @@ -2984,9 +2951,9 @@ ^n~l-iy+ah=f 1 0 1 0 0 VBD RB RB 2 2 1 1 2 4 10 LL + officially - ^l~iy-ah+f=ih 0 0 0 0 1 RB RB VVN 2 1 2 2 4 2 10 LL @@ -3003,9 +2970,9 @@ ^ah~l-iy+d=ih 1 0 0 0 0 RB RB VVN 2 2 2 2 4 2 10 LL + declared - ^l~iy-d+ih=k 0 1 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL ^iy~d-ih+k=l 1 0 0 0 1 RB VVN NN 2 2 5 4 2 1 10 LL @@ -3018,9 +2985,9 @@ ^eh~r-d+l=ao 4 0 0 1 1 RB VVN NN 2 5 4 4 2 1 10 LL + lost - ^r~d-l+ao=s 0 3 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL ^d~l-ao+s=t 1 2 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL @@ -3028,9 +2995,9 @@ ^ao~s-t+s=eh 3 0 1 1 1 VVN NN JJ 5 4 2 2 1 2 10 LL + several - ^s~t-s+eh=v 0 1 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL ^t~s-eh+v=r 1 0 1 1 0 NN JJ NNS 4 2 4 1 2 1 10 LL @@ -3042,9 +3009,9 @@ ^r~ah-l+m=ah 3 0 1 0 1 NN JJ NNS 2 4 5 1 2 1 10 LL + months - ^ah~l-m+ah=n 0 4 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL ^l~m-ah+n=th 1 3 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL @@ -3053,10 +3020,9 @@ ^n~th-s+l=ey 4 0 0 1 1 JJ NNS RBR 4 5 2 2 1 2 10 LL + later. - - ^th~s-l+ey=t 0 1 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL ^s~l-ey+t=er 1 0 1 1 0 NNS RBR PAU 5 2 2 1 2 0 10 LL @@ -3084,26 +3050,27 @@ + + She - ^pau~pau-sh+iy=w 0 1 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL ^pau~sh-iy+w=aa 1 0 0 1 1 PAU PP VBD 0 2 3 0 1 1 24 LL + was - ^sh~iy-w+aa=z 0 2 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL ^iy~w-aa+z=er 1 1 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL ^w~aa-z+er=eh 2 0 1 1 0 PP VBD VVN 2 3 1 1 1 3 24 LL + arrested - ^aa~z-er+eh=s 0 0 1 0 1 VBD VVN IN 3 1 1 1 3 1 24 LL @@ -3117,17 +3084,17 @@ ^t~ah-d+ih=n 3 0 1 0 0 VBD VVN IN 1 4 2 1 3 1 24 LL + in - ^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL ^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 4 2 3 3 1 4 24 LL + 1944 - ^ih~n-w+ah=n 0 2 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL ^n~w-ah+n=n 1 1 0 1 1 IN NN CC 2 3 3 1 4 1 24 LL @@ -3149,18 +3116,18 @@ ^f~ao-r+ah=n 2 0 1 1 0 IN NN CC 3 3 3 1 4 1 24 LL + and - ^ao~r-ah+n=d 0 2 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL ^r~ah-n+d=s 1 1 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL ^ah~n-d+s=eh 2 0 1 0 1 NN CC VVN 3 3 3 4 1 2 24 LL + sentenced - ^n~d-s+eh=n 0 2 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL ^d~s-eh+n=t 1 1 0 1 0 CC VVN TO 3 3 5 1 2 1 24 LL @@ -3174,26 +3141,26 @@ ^n~s-t+t=uw 4 0 1 0 1 CC VVN TO 3 5 2 1 2 1 24 LL + to - ^s~t-t+uw=n 0 1 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL ^t~t-uw+n=ay 1 0 0 1 1 VVN TO CD 5 2 3 2 1 1 24 LL + nine - ^t~uw-n+ay=n 0 2 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL ^uw~n-ay+n=m 1 1 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL ^n~ay-n+m=ah 2 0 1 1 1 TO CD NNS 2 3 5 1 1 1 24 LL + months - ^ay~n-m+ah=n 0 4 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL ^n~m-ah+n=th 1 3 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL @@ -3202,17 +3169,17 @@ ^n~th-s+ih=n 4 0 1 1 0 CD NNS IN 3 5 2 1 1 1 24 LL + in - ^th~s-ih+n=p 0 1 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL ^s~ih-n+p=r 1 0 1 0 1 NNS IN NN 5 2 3 1 1 2 24 LL + prison - ^ih~n-p+r=ih 0 2 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL ^n~p-r+ih=z 1 1 0 1 0 IN NN IN 2 3 3 1 2 1 24 LL @@ -3224,34 +3191,34 @@ ^z~ah-n+ae=t 2 0 1 0 1 IN NN IN 3 3 2 1 2 1 24 LL + at - ^ah~n-ae+t=dh 0 1 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL ^n~ae-t+dh=ah 1 0 0 1 0 NN IN DT 3 2 2 2 1 1 24 LL + the - ^ae~t-dh+ah=ow 0 1 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL ^t~dh-ah+ow=l 1 0 1 0 1 IN DT JJ 2 2 3 1 1 1 24 LL + Old - ^dh~ah-ow+l=d 0 2 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL ^ah~ow-l+d=b 1 1 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL ^ow~l-d+b=ey 2 0 0 1 1 DT JJ NN 2 3 2 1 1 2 24 LL + Bailey - ^l~d-b+ey=l 0 1 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL ^d~b-ey+l=iy 1 0 1 1 0 JJ NN IN 3 2 2 1 2 1 24 LL @@ -3261,18 +3228,18 @@ ^ey~l-iy+f=ao 1 0 1 0 1 JJ NN IN 2 2 3 1 2 1 24 LL + for - ^l~iy-f+ao=r 0 2 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL ^iy~f-ao+r=k 1 1 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL ^f~ao-r+k=r 2 0 0 1 1 NN IN NNS 2 3 5 2 1 1 24 LL + crimes - ^ao~r-k+r=ay 0 4 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL ^r~k-r+ay=m 1 3 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL @@ -3281,9 +3248,9 @@ ^ay~m-z+ah=n 4 0 1 1 1 IN NNS IN 3 5 2 1 1 2 24 LL + under - ^m~z-ah+n=d 0 1 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL ^z~ah-n+d=er 1 0 1 1 0 NNS IN DT 5 2 2 1 2 1 24 LL @@ -3293,17 +3260,17 @@ ^n~d-er+dh=ah 1 0 1 0 0 NNS IN DT 2 2 2 1 2 1 24 LL + the - ^d~er-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL ^er~dh-ah+w=ih 1 0 0 0 1 IN DT NN 2 2 3 2 1 2 24 LL + Witchcraft - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL @@ -3317,27 +3284,26 @@ ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + Act - ^f~t-ae+k=t 0 2 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL ^t~ae-k+t=ah 1 1 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL ^ae~k-t+ah=v 2 0 1 1 1 NN NN IN 5 3 2 2 1 1 24 LL + of - ^k~t-ah+v=w 0 1 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL ^t~ah-v+w=ah 1 0 1 1 1 NN IN NN 3 2 3 1 1 5 24 LL + 1735. - - ^ah~v-w+ah=n 0 2 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL ^v~w-ah+n=s 1 1 1 1 1 IN NN PAU 2 3 2 1 5 0 24 LL @@ -3381,26 +3347,27 @@ + + While - ^pau~pau-w+ay=l 0 2 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL ^pau~w-ay+l=ih 1 1 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL ^w~ay-l+ih=n 2 0 0 1 0 PAU IN IN 0 3 2 0 1 1 9 LL + in - ^ay~l-ih+n=p 0 1 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL ^l~ih-n+p=r 1 0 1 0 1 IN IN NN 3 2 3 1 1 2 9 LL + prison - ^ih~n-p+r=ih 0 2 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL ^n~p-r+ih=z 1 1 0 1 0 IN NN PP 2 3 3 1 2 1 9 LL @@ -3412,26 +3379,26 @@ ^z~ah-n+sh=iy 2 0 1 0 1 IN NN PP 3 3 2 1 2 1 9 LL + she - ^ah~n-sh+iy=w 0 1 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL ^n~sh-iy+w=aa 1 0 0 1 1 NN PP VBD 3 2 3 2 1 1 9 LL + was - ^sh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL ^iy~w-aa+z=v 1 1 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL ^w~aa-z+v=ih 2 0 1 1 1 PP VBD VVN 2 3 2 1 1 3 9 LL + visited - ^aa~z-v+ih=z 0 1 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL ^z~v-ih+z=ah 1 0 1 1 0 VBD VVN IN 3 2 2 1 3 1 9 LL @@ -3446,17 +3413,17 @@ ^t~ah-d+b=ay 2 0 0 0 1 VBD VVN IN 2 3 2 1 3 1 9 LL + by - ^ah~d-b+ay=w 0 1 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL ^d~b-ay+w=ih 1 0 0 1 1 VVN IN NN 3 2 3 3 1 2 9 LL + Winston - ^b~ay-w+ih=n 0 2 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL ^ay~w-ih+n=s 1 1 1 1 0 IN NN NN 2 3 4 1 2 2 9 LL @@ -3469,10 +3436,9 @@ ^t~ah-n+ch=er 3 0 1 0 1 IN NN NN 3 4 2 1 2 2 9 LL + Churchill. - - ^ah~n-ch+er=ch 0 1 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL ^n~ch-er+ch=ih 1 0 0 1 0 NN NN PAU 4 2 3 2 2 0 9 LL @@ -3493,314 +3459,303 @@ - + - ^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 22 LL + ^0~pau-pau+w=eh 0 0 0 0 1 PAU PAU WRB 0 0 3 0 0 1 24 LL + + When - - ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL - ^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL - ^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 22 LL + ^pau~pau-w+eh=n 0 2 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + ^pau~w-eh+n=hh 1 1 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + ^w~eh-n+hh=iy 2 0 0 1 1 PAU WRB PP 0 3 2 0 1 1 24 LL + he - - ^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LL - ^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 22 LL + ^eh~n-hh+iy=w 0 1 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL + ^n~hh-iy+w=aa 1 0 1 1 1 WRB PP VBD 3 2 3 1 1 1 24 LL + was - - ^hh~iy-w+aa=z 0 2 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL - ^iy~w-aa+z=aa 1 1 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL - ^w~aa-z+aa=r 2 0 1 1 1 PP VBD VVN 2 3 1 1 1 7 22 LL + ^hh~iy-w+aa=z 0 2 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL + ^iy~w-aa+z=r 1 1 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL + ^w~aa-z+r=ey 2 0 1 1 1 PP VBD NN 2 3 2 1 1 1 24 LL - - re-elected - - - ^aa~z-aa+r=iy 0 0 1 1 1 VBD VVN IN 3 1 2 1 7 1 22 LL - - - ^z~aa-r+iy=iy 0 1 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL - ^aa~r-iy+iy=eh 1 0 1 1 1 VBD VVN IN 1 2 1 1 7 1 22 LL + + + re + + ^aa~z-r+ey=ih 0 1 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL + ^z~r-ey+ih=l 1 0 1 1 0 VBD NN NN 3 2 1 1 1 0 24 LL - - ^r~iy-iy+eh=l 0 0 1 1 1 VBD VVN IN 2 1 1 1 7 1 22 LL - - - ^iy~iy-eh+l=iy 0 0 1 1 1 VBD VVN IN 1 1 2 1 7 1 22 LL - - - ^iy~eh-l+iy=s 0 1 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL - ^eh~l-iy+s=iy 1 0 1 1 1 VBD VVN IN 1 2 2 1 7 1 22 LL - - - ^l~iy-s+iy=t 0 1 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL - ^iy~s-iy+t=iy 1 0 1 1 1 VBD VVN IN 2 2 2 1 7 1 22 LL - - - ^s~iy-t+iy=iy 0 1 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL - ^iy~t-iy+iy=d 1 0 1 1 1 VBD VVN IN 2 2 1 1 7 1 22 LL + + - + + elected + + ^r~ey-ih+l=eh 0 0 1 0 1 NN VVN IN 2 1 3 0 3 1 24 LL - - ^t~iy-iy+d=iy 0 0 1 1 1 VBD VVN IN 2 1 2 1 7 1 22 LL + + ^ey~ih-l+eh=k 0 2 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL + ^ih~l-eh+k=t 1 1 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL + ^l~eh-k+t=ah 2 0 0 1 0 NN VVN IN 1 3 3 0 3 1 24 LL - - ^iy~iy-d+iy=ih 0 1 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LL - ^iy~d-iy+ih=n 1 0 1 1 0 VBD VVN IN 1 2 2 1 7 1 22 LL + + ^eh~k-t+ah=d 0 2 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL + ^k~t-ah+d=ih 1 1 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL + ^t~ah-d+ih=n 2 0 1 0 0 NN VVN IN 3 3 2 0 3 1 24 LL - + + in - - ^d~iy-ih+n=w 0 1 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL - ^iy~ih-n+w=ah 1 0 1 0 1 VVN IN NN 2 2 3 7 1 4 22 LL + ^ah~d-ih+n=w 0 1 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL + ^d~ih-n+w=ah 1 0 0 0 1 VVN IN NN 3 2 3 3 1 4 24 LL - + + 1951 - - ^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL - ^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL - ^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 22 LL + ^ih~n-w+ah=n 0 2 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL + ^n~w-ah+n=n 1 1 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL + ^w~ah-n+n=ay 2 0 0 1 1 IN NN DT 2 3 3 1 4 1 24 LL - ^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL - ^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL - ^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 22 LL + ^ah~n-n+ay=n 0 2 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL + ^n~n-ay+n=f 1 1 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL + ^n~ay-n+f=ay 2 0 1 1 1 IN NN DT 3 3 2 1 4 1 24 LL - ^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL - ^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 22 LL + ^ay~n-f+ay=v 0 1 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL + ^n~f-ay+v=w 1 0 1 1 1 IN NN DT 3 2 4 1 4 1 24 LL - ^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL - ^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 22 LL + ^f~ay-v+w=ah 0 3 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^ay~v-w+ah=n 1 2 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^v~w-ah+n=dh 2 1 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL + ^w~ah-n+dh=ah 3 0 1 1 0 IN NN DT 2 4 2 1 4 1 24 LL - + + the - - ^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 22 LL - ^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 22 LL + ^ah~n-dh+ah=w 0 1 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL + ^n~dh-ah+w=ih 1 0 1 0 1 NN DT NN 4 2 3 4 1 2 24 LL - + + Witchcraft - - ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL - ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL - ^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 22 LL + ^dh~ah-w+ih=ch 0 2 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL + ^ah~w-ih+ch=k 1 1 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL + ^w~ih-ch+k=r 2 0 0 1 1 DT NN NN 2 3 5 1 2 1 24 LL - ^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL - ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 22 LL + ^ih~ch-k+r=ae 0 4 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^ch~k-r+ae=f 1 3 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^k~r-ae+f=t 2 2 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^r~ae-f+t=ae 3 1 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL + ^ae~f-t+ae=k 4 0 1 1 1 DT NN NN 3 5 3 1 2 1 24 LL - + + Act - - ^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL - ^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL - ^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 22 LL + ^f~t-ae+k=t 0 2 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL + ^t~ae-k+t=w 1 1 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL + ^ae~k-t+w=aa 2 0 1 1 1 NN NN VBD 5 3 3 2 1 1 24 LL - + + was - - ^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL - ^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL - ^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 22 LL + ^k~t-w+aa=z 0 2 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL + ^t~w-aa+z=r 1 1 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL + ^w~aa-z+r=ih 2 0 1 1 0 NN VBD VVN 3 3 2 1 1 2 24 LL - + + repealed - - ^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL - ^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 22 LL + ^aa~z-r+ih=p 0 1 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL + ^z~r-ih+p=iy 1 0 1 0 1 VBD VVN CC 3 2 4 1 2 1 24 LL - ^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL - ^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 22 LL + ^r~ih-p+iy=l 0 3 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^ih~p-iy+l=d 1 2 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^p~iy-l+d=ah 2 1 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL + ^iy~l-d+ah=n 3 0 0 1 0 VBD VVN CC 2 4 3 1 2 1 24 LL - + + and - - ^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL - ^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL - ^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 22 LL + ^l~d-ah+n=d 0 2 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL + ^d~ah-n+d=th 1 1 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL + ^ah~n-d+th=r 2 0 1 0 1 VVN CC CD 4 3 3 2 1 1 24 LL - + + three - - ^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL - ^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL - ^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 22 LL + ^n~d-th+r=iy 0 2 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL + ^d~th-r+iy=y 1 1 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL + ^th~r-iy+y=ih 2 0 0 1 1 CC CD NNS 3 3 4 1 1 1 24 LL - + + years - - ^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL - ^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 22 LL + ^r~iy-y+ih=r 0 3 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^iy~y-ih+r=z 1 2 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^y~ih-r+z=l 2 1 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL + ^ih~r-z+l=ey 3 0 1 1 1 CD NNS RBR 3 4 2 1 1 2 24 LL - + + later - - ^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL - ^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 22 LL + ^r~z-l+ey=t 0 1 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL + ^z~l-ey+t=er 1 0 1 1 0 NNS RBR NN 4 2 2 1 2 5 24 LL - ^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LL - ^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 22 LL + ^l~ey-t+er=s 0 1 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL + ^ey~t-er+s=p 1 0 1 0 1 NNS RBR NN 2 2 3 1 2 5 24 LL - + + spiritualism - - ^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL - ^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL - ^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 22 LL + ^t~er-s+p=ih 0 2 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL + ^er~s-p+ih=r 1 1 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL + ^s~p-ih+r=ih 2 0 0 1 0 RBR NN VBD 2 3 2 2 5 1 24 LL - ^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL - ^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 22 LL + ^p~ih-r+ih=ch 0 1 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL + ^ih~r-ih+ch=ah 1 0 1 0 0 RBR NN VBD 3 2 2 2 5 1 24 LL - ^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL - ^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 22 LL + ^r~ih-ch+ah=w 0 1 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL + ^ih~ch-ah+w=ah 1 0 0 0 0 RBR NN VBD 2 2 2 2 5 1 24 LL - ^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL - ^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 22 LL + ^ch~ah-w+ah=l 0 1 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL + ^ah~w-ah+l=ih 1 0 0 0 0 RBR NN VBD 2 2 4 2 5 1 24 LL - ^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL - ^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 22 LL + ^w~ah-l+ih=z 0 3 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^ah~l-ih+z=m 1 2 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^l~ih-z+m=w 2 1 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL + ^ih~z-m+w=aa 3 0 0 0 1 RBR NN VBD 2 4 3 2 5 1 24 LL - + + was - - ^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL - ^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL - ^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 22 LL + ^z~m-w+aa=z 0 2 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL + ^m~w-aa+z=ah 1 1 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL + ^w~aa-z+ah=f 2 0 0 1 0 NN VBD RB 4 3 1 5 1 4 24 LL - + + officially - - ^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 22 LL + ^aa~z-ah+f=ih 0 0 1 0 1 VBD RB VVN 3 1 2 1 4 3 24 LL - ^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL - ^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 22 LL + ^z~ah-f+ih=sh 0 1 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL + ^ah~f-ih+sh=ah 1 0 0 1 0 VBD RB VVN 1 2 2 1 4 3 24 LL - ^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL - ^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL + ^f~ih-sh+ah=l 0 1 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL + ^ih~sh-ah+l=iy 1 0 1 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL - ^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL - ^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 22 LL + ^sh~ah-l+iy=r 0 1 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL + ^ah~l-iy+r=iy 1 0 0 0 0 VBD RB VVN 2 2 2 1 4 3 24 LL - + + recognised - - ^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL - ^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 22 LL + ^l~iy-r+iy=k 0 1 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL + ^iy~r-iy+k=ow 1 0 0 0 1 RB VVN IN 2 2 2 4 3 1 24 LL - ^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL - ^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 22 LL + ^r~iy-k+ow=n 0 1 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL + ^iy~k-ow+n=iy 1 0 0 1 0 RB VVN IN 2 2 4 4 3 1 24 LL - ^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL - ^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 22 LL + ^k~ow-n+iy=s 0 3 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^ow~n-iy+s=d 1 2 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^n~iy-s+d=ae 2 1 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL + ^iy~s-d+ae=z 3 0 1 0 1 RB VVN IN 2 4 2 4 3 1 24 LL - + + as - - ^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LL - ^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 22 LL + ^s~d-ae+z=ah 0 1 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL + ^d~ae-z+ah=r 1 0 0 1 0 VVN IN DT 4 2 1 3 1 1 24 LL - + + a - - ^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 22 LL + ^ae~z-ah+r=ih 0 0 1 0 0 IN DT NN 2 1 2 1 1 3 24 LL - + + religion. - - - ^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL - ^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 22 LL + ^z~ah-r+ih=l 0 1 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL + ^ah~r-ih+l=ih 1 0 0 0 1 DT NN PAU 1 2 2 1 3 0 24 LL - ^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL - ^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 22 LL + ^r~ih-l+ih=jh 0 1 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL + ^ih~l-ih+jh=ah 1 0 0 1 0 DT NN PAU 2 2 3 1 3 0 24 LL - ^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL - ^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL - ^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 22 LL + ^l~ih-jh+ah=n 0 2 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL + ^ih~jh-ah+n=pau 1 1 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL + ^jh~ah-n+pau=pau 2 0 1 0 0 DT NN PAU 2 3 0 1 3 0 24 LL - ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 22 LL + ^ah~n-pau+pau=0 0 0 0 0 0 NN PAU PAU 3 0 0 3 0 0 24 LL @@ -3815,9 +3770,10 @@ + + Campaigners - ^pau~pau-k+ae=m 0 2 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL ^pau~k-ae+m=p 1 1 0 0 1 PAU NNS TO 0 3 2 0 3 1 11 LL @@ -3833,17 +3789,17 @@ ^n~er-z+t=uw 2 0 1 0 1 PAU NNS TO 2 3 2 0 3 1 11 LL + to - ^er~z-t+uw=p 0 1 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL ^z~t-uw+p=aa 1 0 0 1 1 NNS TO NN 3 2 3 3 1 2 11 LL + pardon - ^t~uw-p+aa=r 0 2 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL ^uw~p-aa+r=d 1 1 1 1 0 TO NN NN 2 3 3 1 2 2 11 LL @@ -3855,9 +3811,9 @@ ^d~ah-n+m=iy 2 0 1 0 0 TO NN NN 3 3 2 1 2 2 11 LL + Mrs - ^ah~n-m+iy=s 0 1 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL ^n~m-iy+s=iy 1 0 0 0 0 NN NN NN 3 2 3 2 2 2 11 LL @@ -3868,9 +3824,9 @@ ^s~iy-s+d=ah 2 0 0 0 1 NN NN NN 2 3 3 2 2 2 11 LL + Duncan - ^iy~s-d+ah=ng 0 2 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL ^s~d-ah+ng=k 1 1 0 1 0 NN NN VHP 3 3 3 2 2 1 11 LL @@ -3882,43 +3838,43 @@ ^k~ah-n+hh=ae 2 0 1 0 1 NN NN VHP 3 3 3 2 2 1 11 LL + have - ^ah~n-hh+ae=v 0 2 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL ^n~hh-ae+v=s 1 1 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL ^hh~ae-v+s=eh 2 0 0 1 1 NN VHP NN 3 3 3 2 1 1 11 LL + set - ^ae~v-s+eh=t 0 2 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL ^v~s-eh+t=ah 1 1 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL ^s~eh-t+ah=p 2 0 1 1 1 VHP NN RP 3 3 2 1 1 1 11 LL + up - ^eh~t-ah+p=ae 0 1 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL ^t~ah-p+ae=n 1 0 1 1 1 NN RP DT 3 2 2 1 1 1 11 LL + an - ^ah~p-ae+n=ao 0 1 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL ^p~ae-n+ao=n 1 0 1 1 1 RP DT RB 2 2 2 1 1 2 11 LL + online - ^ae~n-ao+n=l 0 1 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL ^n~ao-n+l=ay 1 0 1 1 1 DT RB NN 2 2 3 1 2 3 11 LL @@ -3929,10 +3885,9 @@ ^l~ay-n+p=ah 2 0 1 1 0 DT RB NN 2 3 2 1 2 3 11 LL + petition. - - ^ay~n-p+ah=t 0 1 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL ^n~p-ah+t=ih 1 0 1 0 1 RB NN PAU 3 2 2 2 3 0 11 LL @@ -3965,17 +3920,18 @@ + + The - ^pau~pau-dh+ah=k 0 1 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL ^pau~dh-ah+k=ae 1 0 0 0 0 PAU DT NN 0 2 3 0 1 2 11 LL + campaign - ^dh~ah-k+ae=m 0 2 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL ^ah~k-ae+m=p 1 1 0 0 1 DT NN VBZ 2 3 3 1 2 1 11 LL @@ -3987,17 +3943,17 @@ ^p~ey-n+ih=z 2 0 0 1 1 DT NN VBZ 3 3 2 1 2 1 11 LL + is - ^ey~n-ih+z=b 0 1 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL ^n~ih-z+b=ae 1 0 1 1 1 NN VBZ VVN 3 2 4 2 1 1 11 LL + backed - ^ih~z-b+ae=k 0 3 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL ^z~b-ae+k=t 1 2 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL @@ -4005,25 +3961,25 @@ ^ae~k-t+b=ay 3 0 1 1 1 VBZ VVN IN 2 4 2 1 1 1 11 LL + by - ^k~t-b+ay=dh 0 1 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL ^t~b-ay+dh=ah 1 0 1 1 0 VVN IN DT 4 2 2 1 1 1 11 LL + the - ^b~ay-dh+ah=b 0 1 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL ^ay~dh-ah+b=r 1 0 1 0 1 IN DT JJ 2 2 3 1 1 2 11 LL + British - ^dh~ah-b+r=ih 0 2 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL ^ah~b-r+ih=t 1 1 0 1 0 DT JJ NN 2 3 3 1 2 4 11 LL @@ -4035,9 +3991,9 @@ ^t~ih-sh+s=ah 2 0 1 0 0 DT JJ NN 3 3 2 1 2 4 11 LL + Society - ^ih~sh-s+ah=s 0 1 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL ^sh~s-ah+s=ay 1 0 0 0 1 JJ NN IN 3 2 2 2 4 1 11 LL @@ -4054,17 +4010,17 @@ ^ah~t-iy+ah=v 1 0 0 0 1 JJ NN IN 1 2 2 2 4 1 11 LL + of - ^t~iy-ah+v=p 0 1 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL ^iy~ah-v+p=eh 1 0 0 1 0 NN IN JJ 2 2 2 4 1 4 11 LL + Paranormal - ^ah~v-p+eh=r 0 1 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL ^v~p-eh+r=ah 1 0 1 0 0 IN JJ NNS 2 2 2 1 4 2 11 LL @@ -4084,10 +4040,9 @@ ^m~ah-l+s=t 2 0 1 0 1 IN JJ NNS 3 3 3 1 4 2 11 LL + Studies. - - ^ah~l-s+t=ah 0 2 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL ^l~s-t+ah=d 1 1 0 1 0 JJ NNS PAU 3 3 3 4 2 0 11 LL @@ -4117,9 +4072,10 @@ + + Medium - ^pau~pau-m+iy=d 0 1 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH ^pau~m-iy+d=iy 1 0 0 1 0 PAU NN NN 0 2 2 0 3 2 3 LH @@ -4133,9 +4089,9 @@ ^iy~ah-m+m=eh 1 0 0 0 1 PAU NN NN 2 2 2 0 3 2 3 LH + Mary - ^ah~m-m+eh=r 0 1 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH ^m~m-eh+r=iy 1 0 0 1 0 NN NN NN 2 2 2 3 2 2 3 LH @@ -4145,9 +4101,9 @@ ^eh~r-iy+aa=r 1 0 1 0 1 NN NN NN 2 2 2 3 2 2 3 LH + Armour, - ^r~iy-aa+r=m 0 1 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH ^iy~aa-r+m=er 1 0 0 1 0 NN NN PAU 2 2 2 2 2 0 3 LH @@ -4173,34 +4129,34 @@ + who - ^pau~pau-hh+uw=r 0 1 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH ^pau~hh-uw+r=ow 1 0 0 1 1 PAU WP NN 0 2 3 0 1 1 4 LH + wrote - ^hh~uw-r+ow=t 0 2 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH ^uw~r-ow+t=hh 1 1 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH ^r~ow-t+hh=er 2 0 1 1 0 WP NN PP$ 2 3 2 1 1 1 4 LH + her - ^ow~t-hh+er=b 0 1 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH ^t~hh-er+b=ay 1 0 1 0 0 NN PP$ NN 3 2 2 1 1 4 4 LH + biography, - ^hh~er-b+ay=aa 0 1 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH ^er~b-ay+aa=g 1 0 0 0 1 PP$ NN PAU 2 2 1 1 4 0 4 LH @@ -4234,9 +4190,9 @@ + said: - ^pau~pau-s+eh=d 0 2 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH ^pau~s-eh+d=pau 1 1 0 1 0 PAU VVD PAU 0 3 0 0 1 0 1 LH @@ -4259,109 +4215,109 @@ + "She - ^pau~pau-sh+iy=hh 0 1 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL ^pau~sh-iy+hh=ae 1 0 0 1 1 PAU PP VHZ 0 2 3 0 1 1 17 LL + has - ^sh~iy-hh+ae=z 0 2 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^iy~hh-ae+z=p 1 1 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL ^hh~ae-z+p=uh 2 0 1 1 1 PP VHZ NN 2 3 3 1 1 1 17 LL + put - ^ae~z-p+uh=t 0 2 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^z~p-uh+t=ah 1 1 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL ^p~uh-t+ah=s 2 0 1 1 1 VHZ NN PP 3 3 2 1 1 1 17 LL + us - ^uh~t-ah+s=aa 0 1 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL ^t~ah-s+aa=n 1 0 1 1 1 NN PP RB 3 2 2 1 1 1 17 LL + on - ^ah~s-aa+n=dh 0 1 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL ^s~aa-n+dh=ah 1 0 1 1 0 PP RB DT 2 2 2 1 1 1 17 LL + the - ^aa~n-dh+ah=r 0 1 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL ^n~dh-ah+r=ay 1 0 1 0 1 RB DT NN 2 2 3 1 1 1 17 LL + right - ^dh~ah-r+ay=t 0 2 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^ah~r-ay+t=s 1 1 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL ^r~ay-t+s=ay 2 0 0 1 1 DT NN NN 2 3 3 1 1 1 17 LL + side - ^ay~t-s+ay=d 0 2 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^t~s-ay+d=ah 1 1 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL ^s~ay-d+ah=v 2 0 1 1 1 NN NN IN 3 3 2 1 1 1 17 LL + of - ^ay~d-ah+v=dh 0 1 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL ^d~ah-v+dh=ah 1 0 1 1 0 NN IN DT 3 2 2 1 1 1 17 LL + the - ^ah~v-dh+ah=l 0 1 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL ^v~dh-ah+l=ao 1 0 1 0 1 IN DT NN 2 2 2 1 1 1 17 LL + law - ^dh~ah-l+ao=b 0 1 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL ^ah~l-ao+b=ay 1 0 0 1 1 DT NN IN 2 2 2 1 1 1 17 LL + by - ^l~ao-b+ay=b 0 1 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL ^ao~b-ay+b=r 1 0 1 1 1 NN IN VVG 2 2 4 1 1 2 17 LL + bringing - ^b~ay-b+r=ih 0 3 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL ^ay~b-r+ih=ng 1 2 1 1 0 IN VVG IN 2 4 2 1 2 1 17 LL @@ -4373,25 +4329,25 @@ ^ng~ih-ng+ih=n 1 0 1 0 0 IN VVG IN 4 2 2 1 2 1 17 LL + in - ^ih~ng-ih+n=dh 0 1 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL ^ng~ih-n+dh=ah 1 0 0 0 0 VVG IN DT 2 2 2 2 1 1 17 LL + the - ^ih~n-dh+ah=w 0 1 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL ^n~dh-ah+w=ah 1 0 0 0 1 IN DT NN 2 2 3 1 1 4 17 LL + 1952 - ^dh~ah-w+ah=n 0 2 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL ^ah~w-ah+n=n 1 1 0 1 1 DT NN NN 2 3 3 1 4 1 17 LL @@ -4412,10 +4368,9 @@ ^v~t-uw+ae=k 1 0 1 1 1 DT NN NN 3 2 3 1 4 1 17 LL + act." - - ^t~uw-ae+k=t 0 2 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL ^uw~ae-k+t=pau 1 1 1 1 0 NN NN PAU 2 3 0 4 1 0 17 LL @@ -4429,6 +4384,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-cex-reg002.xml b/src/idlaktxp/test_data/mod-cex-reg002.xml index c1a8df0af6f..9c7677a59d2 100644 --- a/src/idlaktxp/test_data/mod-cex-reg002.xml +++ b/src/idlaktxp/test_data/mod-cex-reg002.xml @@ -38,7 +38,6 @@ Hello - ^0~pau-hh+ah=l 0 1 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH ^pau~hh-ah+l=ow 1 0 0 0 1 PAU NN EX 0 2 2 0 2 1 2 LH @@ -48,9 +47,9 @@ ^ah~l-ow+dh=eh 1 0 0 1 1 PAU NN EX 2 2 3 0 2 1 2 LH + there, - ^l~ow-dh+eh=r 0 2 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH ^ow~dh-eh+r=pau 1 1 1 1 0 NN EX PAU 2 3 0 2 1 0 2 LH @@ -73,27 +72,26 @@ + 1 - ^pau~pau-w+ah=n 0 2 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL ^pau~w-ah+n=t 1 1 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL ^w~ah-n+t=uw 2 0 0 1 1 PAU NN NN 0 3 2 0 1 1 3 LL + 2 - ^ah~n-t+uw=th 0 1 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL ^n~t-uw+th=r 1 0 1 1 1 NN NN NN 3 2 3 1 1 1 3 LL + 3. - - ^t~uw-th+r=iy 0 2 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL ^uw~th-r+iy=pau 1 1 1 1 0 NN NN PAU 2 3 0 1 1 0 3 LL @@ -107,6 +105,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-pauses-out000.xml b/src/idlaktxp/test_data/mod-pauses-out000.xml index a0c3d4ed28d..3bfd29f07dd 100644 --- a/src/idlaktxp/test_data/mod-pauses-out000.xml +++ b/src/idlaktxp/test_data/mod-pauses-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pauses-out001.xml b/src/idlaktxp/test_data/mod-pauses-out001.xml index 08439d1d403..797da5209bc 100644 --- a/src/idlaktxp/test_data/mod-pauses-out001.xml +++ b/src/idlaktxp/test_data/mod-pauses-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pauses-out002.xml b/src/idlaktxp/test_data/mod-pauses-out002.xml index b6da8050f2a..fbbc4958f45 100644 --- a/src/idlaktxp/test_data/mod-pauses-out002.xml +++ b/src/idlaktxp/test_data/mod-pauses-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pauses-outv000.xml b/src/idlaktxp/test_data/mod-pauses-outv000.xml index dd134750180..1aa7a6382b9 100644 --- a/src/idlaktxp/test_data/mod-pauses-outv000.xml +++ b/src/idlaktxp/test_data/mod-pauses-outv000.xml @@ -7,72 +7,48 @@ K - - an - + an + + - + a - - a - + - - http: / / - - www.big.site - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-pauses-outv001.xml b/src/idlaktxp/test_data/mod-pauses-outv001.xml index 408e6e5dd05..7f07f1a397f 100644 --- a/src/idlaktxp/test_data/mod-pauses-outv001.xml +++ b/src/idlaktxp/test_data/mod-pauses-outv001.xml @@ -3,1435 +3,749 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "Some + + people + + said + + it + + was + + treason. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + - - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-pauses-outv002.xml b/src/idlaktxp/test_data/mod-pauses-outv002.xml index f0703a6424c..58d2b66813e 100644 --- a/src/idlaktxp/test_data/mod-pauses-outv002.xml +++ b/src/idlaktxp/test_data/mod-pauses-outv002.xml @@ -3,27 +3,17 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-pauses-reg000.xml b/src/idlaktxp/test_data/mod-pauses-reg000.xml index dd134750180..1aa7a6382b9 100644 --- a/src/idlaktxp/test_data/mod-pauses-reg000.xml +++ b/src/idlaktxp/test_data/mod-pauses-reg000.xml @@ -7,72 +7,48 @@ K - - an - + an + + - + a - - a - + - - http: / / - - www.big.site - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-pauses-reg001.xml b/src/idlaktxp/test_data/mod-pauses-reg001.xml index 408e6e5dd05..7f07f1a397f 100644 --- a/src/idlaktxp/test_data/mod-pauses-reg001.xml +++ b/src/idlaktxp/test_data/mod-pauses-reg001.xml @@ -3,1435 +3,749 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "Some + + people + + said + + it + + was + + treason. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + - - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-pauses-reg002.xml b/src/idlaktxp/test_data/mod-pauses-reg002.xml index f0703a6424c..58d2b66813e 100644 --- a/src/idlaktxp/test_data/mod-pauses-reg002.xml +++ b/src/idlaktxp/test_data/mod-pauses-reg002.xml @@ -3,27 +3,17 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-phrasing-out000.xml b/src/idlaktxp/test_data/mod-phrasing-out000.xml index 80c9c097b0c..8ef4958beaa 100644 --- a/src/idlaktxp/test_data/mod-phrasing-out000.xml +++ b/src/idlaktxp/test_data/mod-phrasing-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-phrasing-out001.xml b/src/idlaktxp/test_data/mod-phrasing-out001.xml index 482201a13b3..6d0940e0db4 100644 --- a/src/idlaktxp/test_data/mod-phrasing-out001.xml +++ b/src/idlaktxp/test_data/mod-phrasing-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-phrasing-out002.xml b/src/idlaktxp/test_data/mod-phrasing-out002.xml index 1bc9bc2d8cb..9752c530bf2 100644 --- a/src/idlaktxp/test_data/mod-phrasing-out002.xml +++ b/src/idlaktxp/test_data/mod-phrasing-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-phrasing-outv000.xml b/src/idlaktxp/test_data/mod-phrasing-outv000.xml index 46577d5a475..e91d7a7a6ff 100644 --- a/src/idlaktxp/test_data/mod-phrasing-outv000.xml +++ b/src/idlaktxp/test_data/mod-phrasing-outv000.xml @@ -9,29 +9,25 @@ K - - an - - - - + an - - a - + + - + a + + http: @@ -48,74 +44,44 @@ - - - - - www.big.site - - + + - - - - - - - - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-phrasing-outv001.xml b/src/idlaktxp/test_data/mod-phrasing-outv001.xml index faa321c08cc..1b1a584fee2 100644 --- a/src/idlaktxp/test_data/mod-phrasing-outv001.xml +++ b/src/idlaktxp/test_data/mod-phrasing-outv001.xml @@ -5,1567 +5,881 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - + - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - - - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + + "Some + + people + + said + + it + + was + + treason. - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + + + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - + + + During + + the + + war + + she + + lived + + in + + Portsmouth, - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - - - + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - + - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-phrasing-outv002.xml b/src/idlaktxp/test_data/mod-phrasing-outv002.xml index 32e6ac2dfbd..cc160538ff9 100644 --- a/src/idlaktxp/test_data/mod-phrasing-outv002.xml +++ b/src/idlaktxp/test_data/mod-phrasing-outv002.xml @@ -5,32 +5,22 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-phrasing-reg000.xml b/src/idlaktxp/test_data/mod-phrasing-reg000.xml index 46577d5a475..e91d7a7a6ff 100644 --- a/src/idlaktxp/test_data/mod-phrasing-reg000.xml +++ b/src/idlaktxp/test_data/mod-phrasing-reg000.xml @@ -9,29 +9,25 @@ K - - an - - - - + an - - a - + + - + a + + http: @@ -48,74 +44,44 @@ - - - - - www.big.site - - + + - - - - - - - - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-phrasing-reg001.xml b/src/idlaktxp/test_data/mod-phrasing-reg001.xml index faa321c08cc..1b1a584fee2 100644 --- a/src/idlaktxp/test_data/mod-phrasing-reg001.xml +++ b/src/idlaktxp/test_data/mod-phrasing-reg001.xml @@ -5,1567 +5,881 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - + - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - - - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + + "Some + + people + + said + + it + + was + + treason. - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + + + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - + + + During + + the + + war + + she + + lived + + in + + Portsmouth, - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - - - + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - + - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-phrasing-reg002.xml b/src/idlaktxp/test_data/mod-phrasing-reg002.xml index 32e6ac2dfbd..cc160538ff9 100644 --- a/src/idlaktxp/test_data/mod-phrasing-reg002.xml +++ b/src/idlaktxp/test_data/mod-phrasing-reg002.xml @@ -5,32 +5,22 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-postag-out000.xml b/src/idlaktxp/test_data/mod-postag-out000.xml index 79b607e44ba..66e18bb00bd 100644 --- a/src/idlaktxp/test_data/mod-postag-out000.xml +++ b/src/idlaktxp/test_data/mod-postag-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-postag-out001.xml b/src/idlaktxp/test_data/mod-postag-out001.xml index 16c70564bf6..094df50ddfa 100644 --- a/src/idlaktxp/test_data/mod-postag-out001.xml +++ b/src/idlaktxp/test_data/mod-postag-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-postag-out002.xml b/src/idlaktxp/test_data/mod-postag-out002.xml index cfa5a3ece53..9cb644169cd 100644 --- a/src/idlaktxp/test_data/mod-postag-out002.xml +++ b/src/idlaktxp/test_data/mod-postag-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-postag-outv000.xml b/src/idlaktxp/test_data/mod-postag-outv000.xml index ea764f9cc66..337ab69dfc5 100644 --- a/src/idlaktxp/test_data/mod-postag-outv000.xml +++ b/src/idlaktxp/test_data/mod-postag-outv000.xml @@ -7,72 +7,48 @@ K - - an - + an + + - + a - - a - + - - http: / / - - www.big.site - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-postag-outv001.xml b/src/idlaktxp/test_data/mod-postag-outv001.xml index 7326eecfb79..09c8eb434ea 100644 --- a/src/idlaktxp/test_data/mod-postag-outv001.xml +++ b/src/idlaktxp/test_data/mod-postag-outv001.xml @@ -3,1435 +3,749 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "Some + + people + + said + + it + + was + + treason. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + - - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-postag-outv002.xml b/src/idlaktxp/test_data/mod-postag-outv002.xml index 9c189f4ea4f..28fac525772 100644 --- a/src/idlaktxp/test_data/mod-postag-outv002.xml +++ b/src/idlaktxp/test_data/mod-postag-outv002.xml @@ -3,27 +3,17 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-postag-reg000.xml b/src/idlaktxp/test_data/mod-postag-reg000.xml index ea764f9cc66..337ab69dfc5 100644 --- a/src/idlaktxp/test_data/mod-postag-reg000.xml +++ b/src/idlaktxp/test_data/mod-postag-reg000.xml @@ -7,72 +7,48 @@ K - - an - + an + + - + a - - a - + - - http: / / - - www.big.site - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-postag-reg001.xml b/src/idlaktxp/test_data/mod-postag-reg001.xml index 7326eecfb79..09c8eb434ea 100644 --- a/src/idlaktxp/test_data/mod-postag-reg001.xml +++ b/src/idlaktxp/test_data/mod-postag-reg001.xml @@ -3,1435 +3,749 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "Some + + people + + said + + it + + was + + treason. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + - - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-postag-reg002.xml b/src/idlaktxp/test_data/mod-postag-reg002.xml index 9c189f4ea4f..28fac525772 100644 --- a/src/idlaktxp/test_data/mod-postag-reg002.xml +++ b/src/idlaktxp/test_data/mod-postag-reg002.xml @@ -3,27 +3,17 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-pronounce-out000.xml b/src/idlaktxp/test_data/mod-pronounce-out000.xml index 73a653fabbb..c18f0ec10a6 100644 --- a/src/idlaktxp/test_data/mod-pronounce-out000.xml +++ b/src/idlaktxp/test_data/mod-pronounce-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pronounce-out001.xml b/src/idlaktxp/test_data/mod-pronounce-out001.xml index 39412535da6..049532f2815 100644 --- a/src/idlaktxp/test_data/mod-pronounce-out001.xml +++ b/src/idlaktxp/test_data/mod-pronounce-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pronounce-out002.xml b/src/idlaktxp/test_data/mod-pronounce-out002.xml index d31f5bcab28..f0235ad2dcc 100644 --- a/src/idlaktxp/test_data/mod-pronounce-out002.xml +++ b/src/idlaktxp/test_data/mod-pronounce-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-pronounce-outv000.xml b/src/idlaktxp/test_data/mod-pronounce-outv000.xml index 38e97cd33e7..0e3f8587b7d 100644 --- a/src/idlaktxp/test_data/mod-pronounce-outv000.xml +++ b/src/idlaktxp/test_data/mod-pronounce-outv000.xml @@ -9,29 +9,25 @@ K - - an - - - - + an - - a - + + - + a + + http: @@ -48,74 +44,44 @@ - - - - - www.big.site - - + + - - - - - - - - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-pronounce-outv001.xml b/src/idlaktxp/test_data/mod-pronounce-outv001.xml index cc92633dc57..6e02dab3ef2 100644 --- a/src/idlaktxp/test_data/mod-pronounce-outv001.xml +++ b/src/idlaktxp/test_data/mod-pronounce-outv001.xml @@ -5,1567 +5,881 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - + - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - - - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + + "Some + + people + + said + + it + + was + + treason. - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + + + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - + + + During + + the + + war + + she + + lived + + in + + Portsmouth, - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - - - + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - + - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-pronounce-outv002.xml b/src/idlaktxp/test_data/mod-pronounce-outv002.xml index 6aa957c7c35..83525eeb869 100644 --- a/src/idlaktxp/test_data/mod-pronounce-outv002.xml +++ b/src/idlaktxp/test_data/mod-pronounce-outv002.xml @@ -5,32 +5,22 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-pronounce-reg000.xml b/src/idlaktxp/test_data/mod-pronounce-reg000.xml index 38e97cd33e7..0e3f8587b7d 100644 --- a/src/idlaktxp/test_data/mod-pronounce-reg000.xml +++ b/src/idlaktxp/test_data/mod-pronounce-reg000.xml @@ -9,29 +9,25 @@ K - - an - - - - + an - - a - + + - + a + + http: @@ -48,74 +44,44 @@ - - - - - www.big.site - - + + - - - - - - - - - - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - + 4 + - + 2 + + FULL + + Power + + café - - “okay” - - - - + + “okay” - - And - - - - another - - - - sentence. - + - + And + + another + + sentence. + + + diff --git a/src/idlaktxp/test_data/mod-pronounce-reg001.xml b/src/idlaktxp/test_data/mod-pronounce-reg001.xml index cc92633dc57..6e02dab3ef2 100644 --- a/src/idlaktxp/test_data/mod-pronounce-reg001.xml +++ b/src/idlaktxp/test_data/mod-pronounce-reg001.xml @@ -5,1567 +5,881 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - - - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. - - Medium - - - - Helen - - - - Duncan, - - + + + Medium + + Helen + + Duncan, - - who - - - - was - - - - born - - - - in - - - - Callander, - - + + who + + was + + born + + in + + Callander, - - Perthshire, - - + + Perthshire, - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - - - + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. - + - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. - - Mary - - - - Martin, - - + + + Mary + + Martin, - - of - - - - Edinburgh, - - + + of + + Edinburgh, - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - - - + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - + + + "Some + + people + + said + + it + + was + + treason. - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - - - + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - + + + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - - - + + heading + + a + + network + + of + + spiritualist + + churches. - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - + + + During + + the + + war + + she + + lived + + in + + Portsmouth, - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - - - + + the + + home + + of + + the + + Royal + + Navy. - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. - + - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. - - Medium - - - - Mary - - - - Armour, - - + + + Medium + + Mary + + Armour, - - who - - - - wrote - - - - her - - - - biography, - - + + who + + wrote + + her + + biography, - - said: - - + + said: - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - - - + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + + diff --git a/src/idlaktxp/test_data/mod-pronounce-reg002.xml b/src/idlaktxp/test_data/mod-pronounce-reg002.xml index 6aa957c7c35..83525eeb869 100644 --- a/src/idlaktxp/test_data/mod-pronounce-reg002.xml +++ b/src/idlaktxp/test_data/mod-pronounce-reg002.xml @@ -5,32 +5,22 @@ - - Hello - - - - there, - - + Hello + + there, - - 1 - - - - 2 - - - - 3. - - - + + 1 + + 2 + + 3. + + diff --git a/src/idlaktxp/test_data/mod-syllabify-out000.xml b/src/idlaktxp/test_data/mod-syllabify-out000.xml index 886bf1be861..c701283cfbf 100644 --- a/src/idlaktxp/test_data/mod-syllabify-out000.xml +++ b/src/idlaktxp/test_data/mod-syllabify-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-syllabify-out001.xml b/src/idlaktxp/test_data/mod-syllabify-out001.xml index fc6885840b0..7b8f67a0174 100644 --- a/src/idlaktxp/test_data/mod-syllabify-out001.xml +++ b/src/idlaktxp/test_data/mod-syllabify-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-syllabify-out002.xml b/src/idlaktxp/test_data/mod-syllabify-out002.xml index 09e7ec7e1f4..92769e7e8a2 100644 --- a/src/idlaktxp/test_data/mod-syllabify-out002.xml +++ b/src/idlaktxp/test_data/mod-syllabify-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-syllabify-outv000.xml b/src/idlaktxp/test_data/mod-syllabify-outv000.xml index 77e00483fa6..166ae138986 100644 --- a/src/idlaktxp/test_data/mod-syllabify-outv000.xml +++ b/src/idlaktxp/test_data/mod-syllabify-outv000.xml @@ -14,9 +14,6 @@ an - - - @@ -29,10 +26,11 @@ + + + a - - @@ -43,6 +41,8 @@ + + http: @@ -82,44 +82,87 @@ - - + + - + www.big.site - - - - - + + + - - - - - - - - - + - - + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + 2 @@ -140,31 +183,34 @@ - - 4-2 - + + 4 - + + - + + 2 + - + + FULL - - + + Power - @@ -173,9 +219,9 @@ - + + café - @@ -189,11 +235,9 @@ + “okay” - - - @@ -206,18 +250,20 @@ + + + And - + another - @@ -230,11 +276,9 @@ + sentence. - - - @@ -248,6 +292,9 @@ + + + diff --git a/src/idlaktxp/test_data/mod-syllabify-outv001.xml b/src/idlaktxp/test_data/mod-syllabify-outv001.xml index 86c059f91c5..cdd4554f2c3 100644 --- a/src/idlaktxp/test_data/mod-syllabify-outv001.xml +++ b/src/idlaktxp/test_data/mod-syllabify-outv001.xml @@ -7,7 +7,6 @@ Helen - @@ -18,9 +17,9 @@ + Duncan - @@ -32,18 +31,18 @@ + was - + tried - @@ -51,9 +50,9 @@ + under - @@ -63,17 +62,17 @@ + the - + Witchcraft - @@ -87,10 +86,9 @@ + Act - - @@ -103,17 +101,18 @@ + + The - + family - @@ -127,25 +126,25 @@ + of - + the - + last - @@ -153,9 +152,9 @@ + person - @@ -166,49 +165,49 @@ + in - + the - + UK - + to - + be - + prosecuted - @@ -229,9 +228,9 @@ + under - @@ -241,17 +240,17 @@ + the - + Witchcraft - @@ -265,27 +264,27 @@ + Act - + will - + mark - @@ -293,17 +292,17 @@ + the - + 50th - @@ -321,9 +320,9 @@ + anniversary - @@ -343,42 +342,42 @@ + of - + her - + death - + by - + calling - @@ -389,27 +388,26 @@ + for - + her - + pardon. - - @@ -427,9 +425,10 @@ + + Medium - @@ -443,9 +442,9 @@ + Helen - @@ -456,9 +455,9 @@ + Duncan, - @@ -474,26 +473,26 @@ + who - + was - + born - @@ -501,17 +500,17 @@ + in - + Callander, - @@ -530,9 +529,9 @@ + Perthshire, - @@ -553,18 +552,18 @@ + was - + imprisoned - @@ -581,9 +580,9 @@ + using - @@ -594,25 +593,25 @@ + the - + law - + during - @@ -623,9 +622,9 @@ + World - @@ -633,19 +632,18 @@ + War - + II. - - @@ -659,26 +657,27 @@ + + She - + was - + targeted - @@ -694,25 +693,25 @@ + by - + the - + government - @@ -728,9 +727,9 @@ + after - @@ -740,9 +739,9 @@ + revealing - @@ -757,24 +756,24 @@ + to - + a - + séance - @@ -785,9 +784,9 @@ + audience - @@ -801,25 +800,25 @@ + that - + a - + warship - @@ -831,18 +830,18 @@ + had - + sunk - @@ -850,9 +849,9 @@ + before - @@ -863,44 +862,44 @@ + the - + news - + had - + been - + released - @@ -912,26 +911,25 @@ + to - + the - + public. - - @@ -947,80 +945,51 @@ - + + + Her - - - grand-daughter - - - - - - - - - - - - - - - - - - - + + + grand + + + + + + - + + - + + daughter + - - - - - - - - - - - - - - - - + - + - - - - - - - - + - + + is - - + + particularly - @@ -1044,9 +1013,9 @@ - + + angry - @@ -1057,25 +1026,25 @@ - + + at - - + + the - - + + accusations - @@ -1095,18 +1064,17 @@ - + + of - - + + treason. - - @@ -1124,9 +1092,10 @@ + + Mary - @@ -1136,9 +1105,9 @@ + Martin, - @@ -1154,17 +1123,17 @@ + of - + Edinburgh, - @@ -1185,18 +1154,18 @@ + said - + Mrs - @@ -1207,9 +1176,9 @@ + Duncan - @@ -1221,27 +1190,27 @@ + had - + been - + accused - @@ -1253,17 +1222,17 @@ + of - + being - @@ -1273,17 +1242,16 @@ + a - + traitor. - - @@ -1300,26 +1268,27 @@ + + "When - + she - + first - @@ -1327,36 +1296,36 @@ + came - + back - + home - + after - @@ -1366,9 +1335,9 @@ + prison - @@ -1380,26 +1349,26 @@ + she - + was - + never - @@ -1409,18 +1378,17 @@ + the - + same. - - @@ -1433,17 +1401,18 @@ + + "She - + always - @@ -1454,58 +1423,58 @@ + had - + a - + bit - + of - + a - + glow - + about - @@ -1515,34 +1484,34 @@ + her - + but - + she - + seemed - @@ -1550,26 +1519,26 @@ + to - + have - + lost - @@ -1577,10 +1546,9 @@ + that. - - @@ -1593,18 +1561,19 @@ + + "Some - + people - @@ -1615,35 +1584,35 @@ + said - + it - + was - + treason. - @@ -1661,17 +1630,17 @@ + My - + grandmother - @@ -1688,26 +1657,26 @@ + had - + two - + sons - @@ -1715,68 +1684,68 @@ + and - + two - + son - + in - + laws - + in - + the - + forces - @@ -1788,81 +1757,79 @@ - - ... - - + + ... + and - + there - + is - + no - + way - + she - + would - + have - + given - @@ -1873,9 +1840,9 @@ + anybody - @@ -1892,10 +1859,9 @@ + information." - - @@ -1920,9 +1886,10 @@ + + Mrs - @@ -1933,9 +1900,9 @@ + Duncan - @@ -1947,9 +1914,9 @@ + became - @@ -1960,34 +1927,34 @@ + one - + of - + the - + most - @@ -1995,9 +1962,9 @@ + famous - @@ -2008,9 +1975,9 @@ + mediums - @@ -2025,25 +1992,25 @@ + of - + her - + time, - @@ -2054,9 +2021,9 @@ + heading - @@ -2067,16 +2034,16 @@ + a - + network - @@ -2088,17 +2055,17 @@ + of - + spiritualist - @@ -2123,10 +2090,9 @@ + churches. - - @@ -2143,9 +2109,10 @@ + + During - @@ -2156,34 +2123,34 @@ + the - + war - + she - + lived - @@ -2191,17 +2158,17 @@ + in - + Portsmouth, - @@ -2219,42 +2186,42 @@ + the - + home - + of - + the - + Royal - @@ -2264,10 +2231,9 @@ + Navy. - - @@ -2283,109 +2249,110 @@ + + She - + has - + put - + us - + on - + the - + right - + side - + of - + the - + law - + by - + bringing - @@ -2397,25 +2364,25 @@ + in - + the - + 1952 - @@ -2436,10 +2403,9 @@ + act. - - @@ -2452,24 +2418,25 @@ + + At - + a - + séance - @@ -2480,17 +2447,17 @@ + in - + 1943 - @@ -2512,26 +2479,26 @@ + it - + was - + claimed - @@ -2540,26 +2507,26 @@ + that - + the - + spirit - @@ -2571,24 +2538,24 @@ + of - + a - + sailor - @@ -2598,9 +2565,9 @@ + from - @@ -2608,26 +2575,26 @@ + the - + HMS - + Barham - @@ -2639,10 +2606,9 @@ + appeared. - - @@ -2659,17 +2625,18 @@ + + The - + vessel - @@ -2680,18 +2647,18 @@ + was - + only - @@ -2701,9 +2668,9 @@ + officially - @@ -2720,9 +2687,9 @@ + declared - @@ -2735,9 +2702,9 @@ + lost - @@ -2745,9 +2712,9 @@ + several - @@ -2759,9 +2726,9 @@ + months - @@ -2770,10 +2737,9 @@ + later. - - @@ -2789,26 +2755,27 @@ + + She - + was - + arrested - @@ -2822,17 +2789,17 @@ + in - + 1944 - @@ -2854,18 +2821,18 @@ + and - + sentenced - @@ -2879,26 +2846,26 @@ + to - + nine - + months - @@ -2907,17 +2874,17 @@ + in - + prison - @@ -2929,34 +2896,34 @@ + at - + the - + Old - + Bailey - @@ -2966,18 +2933,18 @@ + for - + crimes - @@ -2986,9 +2953,9 @@ + under - @@ -2998,17 +2965,17 @@ + the - + Witchcraft - @@ -3022,27 +2989,26 @@ + Act - + of - + 1735. - - @@ -3074,26 +3040,27 @@ + + While - + in - + prison - @@ -3105,26 +3072,26 @@ + she - + was - + visited - @@ -3139,17 +3106,17 @@ + by - + Winston - @@ -3162,10 +3129,9 @@ + Churchill. - - @@ -3180,81 +3146,71 @@ - + + + When - + he - + was - - - re-elected - - - - - + + + re + - - - - + - - + + - + + elected + + - + - - - - - + + - + - - - - - - - - + + - + + in - - + + 1951 - @@ -3276,17 +3232,17 @@ - + + the - - + + Witchcraft - @@ -3300,27 +3256,27 @@ - + + Act - - + + was - - + + repealed - @@ -3332,27 +3288,27 @@ - + + and - - + + three - - + + years - @@ -3360,9 +3316,9 @@ - + + later - @@ -3372,9 +3328,9 @@ - + + spiritualism - @@ -3399,18 +3355,18 @@ - + + was - - + + officially - @@ -3427,9 +3383,9 @@ - + + recognised - @@ -3445,25 +3401,24 @@ - + + as - - + + a - - + + religion. - - @@ -3484,9 +3439,10 @@ + + Campaigners - @@ -3502,17 +3458,17 @@ + to - + pardon - @@ -3524,9 +3480,9 @@ + Mrs - @@ -3537,9 +3493,9 @@ + Duncan - @@ -3551,43 +3507,43 @@ + have - + set - + up - + an - + online - @@ -3598,10 +3554,9 @@ + petition. - - @@ -3622,17 +3577,18 @@ + + The - + campaign - @@ -3644,17 +3600,17 @@ + is - + backed - @@ -3662,25 +3618,25 @@ + by - + the - + British - @@ -3692,9 +3648,9 @@ + Society - @@ -3711,17 +3667,17 @@ + of - + Paranormal - @@ -3741,10 +3697,9 @@ + Studies. - - @@ -3762,9 +3717,10 @@ + + Medium - @@ -3778,9 +3734,9 @@ + Mary - @@ -3790,9 +3746,9 @@ + Armour, - @@ -3806,34 +3762,34 @@ + who - + wrote - + her - + biography, - @@ -3855,9 +3811,9 @@ + said: - @@ -3868,109 +3824,109 @@ + "She - + has - + put - + us - + on - + the - + right - + side - + of - + the - + law - + by - + bringing - @@ -3982,25 +3938,25 @@ + in - + the - + 1952 - @@ -4021,10 +3977,9 @@ + act." - - @@ -4032,6 +3987,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-syllabify-outv002.xml b/src/idlaktxp/test_data/mod-syllabify-outv002.xml index 5a77e16b194..2d050dac744 100644 --- a/src/idlaktxp/test_data/mod-syllabify-outv002.xml +++ b/src/idlaktxp/test_data/mod-syllabify-outv002.xml @@ -7,7 +7,6 @@ Hello - @@ -17,9 +16,9 @@ + there, - @@ -30,27 +29,26 @@ + 1 - + 2 - + 3. - - @@ -58,6 +56,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-syllabify-reg000.xml b/src/idlaktxp/test_data/mod-syllabify-reg000.xml index 77e00483fa6..166ae138986 100644 --- a/src/idlaktxp/test_data/mod-syllabify-reg000.xml +++ b/src/idlaktxp/test_data/mod-syllabify-reg000.xml @@ -14,9 +14,6 @@ an - - - @@ -29,10 +26,11 @@ + + + a - - @@ -43,6 +41,8 @@ + + http: @@ -82,44 +82,87 @@ - - + + - + www.big.site - - - - - + + + - - - - - - - - - + - - + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + 2 @@ -140,31 +183,34 @@ - - 4-2 - + + 4 - + + - + + 2 + - + + FULL - - + + Power - @@ -173,9 +219,9 @@ - + + café - @@ -189,11 +235,9 @@ + “okay” - - - @@ -206,18 +250,20 @@ + + + And - + another - @@ -230,11 +276,9 @@ + sentence. - - - @@ -248,6 +292,9 @@ + + + diff --git a/src/idlaktxp/test_data/mod-syllabify-reg001.xml b/src/idlaktxp/test_data/mod-syllabify-reg001.xml index 86c059f91c5..cdd4554f2c3 100644 --- a/src/idlaktxp/test_data/mod-syllabify-reg001.xml +++ b/src/idlaktxp/test_data/mod-syllabify-reg001.xml @@ -7,7 +7,6 @@ Helen - @@ -18,9 +17,9 @@ + Duncan - @@ -32,18 +31,18 @@ + was - + tried - @@ -51,9 +50,9 @@ + under - @@ -63,17 +62,17 @@ + the - + Witchcraft - @@ -87,10 +86,9 @@ + Act - - @@ -103,17 +101,18 @@ + + The - + family - @@ -127,25 +126,25 @@ + of - + the - + last - @@ -153,9 +152,9 @@ + person - @@ -166,49 +165,49 @@ + in - + the - + UK - + to - + be - + prosecuted - @@ -229,9 +228,9 @@ + under - @@ -241,17 +240,17 @@ + the - + Witchcraft - @@ -265,27 +264,27 @@ + Act - + will - + mark - @@ -293,17 +292,17 @@ + the - + 50th - @@ -321,9 +320,9 @@ + anniversary - @@ -343,42 +342,42 @@ + of - + her - + death - + by - + calling - @@ -389,27 +388,26 @@ + for - + her - + pardon. - - @@ -427,9 +425,10 @@ + + Medium - @@ -443,9 +442,9 @@ + Helen - @@ -456,9 +455,9 @@ + Duncan, - @@ -474,26 +473,26 @@ + who - + was - + born - @@ -501,17 +500,17 @@ + in - + Callander, - @@ -530,9 +529,9 @@ + Perthshire, - @@ -553,18 +552,18 @@ + was - + imprisoned - @@ -581,9 +580,9 @@ + using - @@ -594,25 +593,25 @@ + the - + law - + during - @@ -623,9 +622,9 @@ + World - @@ -633,19 +632,18 @@ + War - + II. - - @@ -659,26 +657,27 @@ + + She - + was - + targeted - @@ -694,25 +693,25 @@ + by - + the - + government - @@ -728,9 +727,9 @@ + after - @@ -740,9 +739,9 @@ + revealing - @@ -757,24 +756,24 @@ + to - + a - + séance - @@ -785,9 +784,9 @@ + audience - @@ -801,25 +800,25 @@ + that - + a - + warship - @@ -831,18 +830,18 @@ + had - + sunk - @@ -850,9 +849,9 @@ + before - @@ -863,44 +862,44 @@ + the - + news - + had - + been - + released - @@ -912,26 +911,25 @@ + to - + the - + public. - - @@ -947,80 +945,51 @@ - + + + Her - - - grand-daughter - - - - - - - - - - - - - - - - - - - + + + grand + + + + + + - + + - + + daughter + - - - - - - - - - - - - - - - - + - + - - - - - - - - + - + + is - - + + particularly - @@ -1044,9 +1013,9 @@ - + + angry - @@ -1057,25 +1026,25 @@ - + + at - - + + the - - + + accusations - @@ -1095,18 +1064,17 @@ - + + of - - + + treason. - - @@ -1124,9 +1092,10 @@ + + Mary - @@ -1136,9 +1105,9 @@ + Martin, - @@ -1154,17 +1123,17 @@ + of - + Edinburgh, - @@ -1185,18 +1154,18 @@ + said - + Mrs - @@ -1207,9 +1176,9 @@ + Duncan - @@ -1221,27 +1190,27 @@ + had - + been - + accused - @@ -1253,17 +1222,17 @@ + of - + being - @@ -1273,17 +1242,16 @@ + a - + traitor. - - @@ -1300,26 +1268,27 @@ + + "When - + she - + first - @@ -1327,36 +1296,36 @@ + came - + back - + home - + after - @@ -1366,9 +1335,9 @@ + prison - @@ -1380,26 +1349,26 @@ + she - + was - + never - @@ -1409,18 +1378,17 @@ + the - + same. - - @@ -1433,17 +1401,18 @@ + + "She - + always - @@ -1454,58 +1423,58 @@ + had - + a - + bit - + of - + a - + glow - + about - @@ -1515,34 +1484,34 @@ + her - + but - + she - + seemed - @@ -1550,26 +1519,26 @@ + to - + have - + lost - @@ -1577,10 +1546,9 @@ + that. - - @@ -1593,18 +1561,19 @@ + + "Some - + people - @@ -1615,35 +1584,35 @@ + said - + it - + was - + treason. - @@ -1661,17 +1630,17 @@ + My - + grandmother - @@ -1688,26 +1657,26 @@ + had - + two - + sons - @@ -1715,68 +1684,68 @@ + and - + two - + son - + in - + laws - + in - + the - + forces - @@ -1788,81 +1757,79 @@ - - ... - - + + ... + and - + there - + is - + no - + way - + she - + would - + have - + given - @@ -1873,9 +1840,9 @@ + anybody - @@ -1892,10 +1859,9 @@ + information." - - @@ -1920,9 +1886,10 @@ + + Mrs - @@ -1933,9 +1900,9 @@ + Duncan - @@ -1947,9 +1914,9 @@ + became - @@ -1960,34 +1927,34 @@ + one - + of - + the - + most - @@ -1995,9 +1962,9 @@ + famous - @@ -2008,9 +1975,9 @@ + mediums - @@ -2025,25 +1992,25 @@ + of - + her - + time, - @@ -2054,9 +2021,9 @@ + heading - @@ -2067,16 +2034,16 @@ + a - + network - @@ -2088,17 +2055,17 @@ + of - + spiritualist - @@ -2123,10 +2090,9 @@ + churches. - - @@ -2143,9 +2109,10 @@ + + During - @@ -2156,34 +2123,34 @@ + the - + war - + she - + lived - @@ -2191,17 +2158,17 @@ + in - + Portsmouth, - @@ -2219,42 +2186,42 @@ + the - + home - + of - + the - + Royal - @@ -2264,10 +2231,9 @@ + Navy. - - @@ -2283,109 +2249,110 @@ + + She - + has - + put - + us - + on - + the - + right - + side - + of - + the - + law - + by - + bringing - @@ -2397,25 +2364,25 @@ + in - + the - + 1952 - @@ -2436,10 +2403,9 @@ + act. - - @@ -2452,24 +2418,25 @@ + + At - + a - + séance - @@ -2480,17 +2447,17 @@ + in - + 1943 - @@ -2512,26 +2479,26 @@ + it - + was - + claimed - @@ -2540,26 +2507,26 @@ + that - + the - + spirit - @@ -2571,24 +2538,24 @@ + of - + a - + sailor - @@ -2598,9 +2565,9 @@ + from - @@ -2608,26 +2575,26 @@ + the - + HMS - + Barham - @@ -2639,10 +2606,9 @@ + appeared. - - @@ -2659,17 +2625,18 @@ + + The - + vessel - @@ -2680,18 +2647,18 @@ + was - + only - @@ -2701,9 +2668,9 @@ + officially - @@ -2720,9 +2687,9 @@ + declared - @@ -2735,9 +2702,9 @@ + lost - @@ -2745,9 +2712,9 @@ + several - @@ -2759,9 +2726,9 @@ + months - @@ -2770,10 +2737,9 @@ + later. - - @@ -2789,26 +2755,27 @@ + + She - + was - + arrested - @@ -2822,17 +2789,17 @@ + in - + 1944 - @@ -2854,18 +2821,18 @@ + and - + sentenced - @@ -2879,26 +2846,26 @@ + to - + nine - + months - @@ -2907,17 +2874,17 @@ + in - + prison - @@ -2929,34 +2896,34 @@ + at - + the - + Old - + Bailey - @@ -2966,18 +2933,18 @@ + for - + crimes - @@ -2986,9 +2953,9 @@ + under - @@ -2998,17 +2965,17 @@ + the - + Witchcraft - @@ -3022,27 +2989,26 @@ + Act - + of - + 1735. - - @@ -3074,26 +3040,27 @@ + + While - + in - + prison - @@ -3105,26 +3072,26 @@ + she - + was - + visited - @@ -3139,17 +3106,17 @@ + by - + Winston - @@ -3162,10 +3129,9 @@ + Churchill. - - @@ -3180,81 +3146,71 @@ - + + + When - + he - + was - - - re-elected - - - - - + + + re + - - - - + - - + + - + + elected + + - + - - - - - + + - + - - - - - - - - + + - + + in - - + + 1951 - @@ -3276,17 +3232,17 @@ - + + the - - + + Witchcraft - @@ -3300,27 +3256,27 @@ - + + Act - - + + was - - + + repealed - @@ -3332,27 +3288,27 @@ - + + and - - + + three - - + + years - @@ -3360,9 +3316,9 @@ - + + later - @@ -3372,9 +3328,9 @@ - + + spiritualism - @@ -3399,18 +3355,18 @@ - + + was - - + + officially - @@ -3427,9 +3383,9 @@ - + + recognised - @@ -3445,25 +3401,24 @@ - + + as - - + + a - - + + religion. - - @@ -3484,9 +3439,10 @@ + + Campaigners - @@ -3502,17 +3458,17 @@ + to - + pardon - @@ -3524,9 +3480,9 @@ + Mrs - @@ -3537,9 +3493,9 @@ + Duncan - @@ -3551,43 +3507,43 @@ + have - + set - + up - + an - + online - @@ -3598,10 +3554,9 @@ + petition. - - @@ -3622,17 +3577,18 @@ + + The - + campaign - @@ -3644,17 +3600,17 @@ + is - + backed - @@ -3662,25 +3618,25 @@ + by - + the - + British - @@ -3692,9 +3648,9 @@ + Society - @@ -3711,17 +3667,17 @@ + of - + Paranormal - @@ -3741,10 +3697,9 @@ + Studies. - - @@ -3762,9 +3717,10 @@ + + Medium - @@ -3778,9 +3734,9 @@ + Mary - @@ -3790,9 +3746,9 @@ + Armour, - @@ -3806,34 +3762,34 @@ + who - + wrote - + her - + biography, - @@ -3855,9 +3811,9 @@ + said: - @@ -3868,109 +3824,109 @@ + "She - + has - + put - + us - + on - + the - + right - + side - + of - + the - + law - + by - + bringing - @@ -3982,25 +3938,25 @@ + in - + the - + 1952 - @@ -4021,10 +3977,9 @@ + act." - - @@ -4032,6 +3987,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-syllabify-reg002.xml b/src/idlaktxp/test_data/mod-syllabify-reg002.xml index 5a77e16b194..2d050dac744 100644 --- a/src/idlaktxp/test_data/mod-syllabify-reg002.xml +++ b/src/idlaktxp/test_data/mod-syllabify-reg002.xml @@ -7,7 +7,6 @@ Hello - @@ -17,9 +16,9 @@ + there, - @@ -30,27 +29,26 @@ + 1 - + 2 - + 3. - - @@ -58,6 +56,8 @@ + + diff --git a/src/idlaktxp/test_data/mod-tokenise-out000.xml b/src/idlaktxp/test_data/mod-tokenise-out000.xml index 2de4150411b..a13ef382d14 100644 --- a/src/idlaktxp/test_data/mod-tokenise-out000.xml +++ b/src/idlaktxp/test_data/mod-tokenise-out000.xml @@ -1,9 +1,9 @@ -K an +K an -a -http://www.big.site 2=4-2 FULL Power café “okay” +a +http://www.big.site 2=4-2 FULL Power café “okay” -And another sentence. +And another sentence. - \ No newline at end of file + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-tokenise-out001.xml b/src/idlaktxp/test_data/mod-tokenise-out001.xml index 99b02a15773..e8eb8f9e912 100644 --- a/src/idlaktxp/test_data/mod-tokenise-out001.xml +++ b/src/idlaktxp/test_data/mod-tokenise-out001.xml @@ -1,22 +1,22 @@ -Helen Duncan was tried under the Witchcraft Act -The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. -Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. -She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. -Her grand-daughter is particularly angry at the accusations of treason. -Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. -"When she first came back home after prison she was never the same. -"She always had a bit of a glow about her but she seemed to have lost that. -"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." -Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. -During the war she lived in Portsmouth, the home of the Royal Navy. -She has put us on the right side of the law by bringing in the 1952 act. -At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. -The vessel was only officially declared lost several months later. -She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. -While in prison she was visited by Winston Churchill. -When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. -Campaigners to pardon Mrs Duncan have set up an online petition. -The campaign is backed by the British Society of Paranormal Studies. -Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." - \ No newline at end of file +Helen Duncan was tried under the Witchcraft Act +The family of the last person in the UK to be prosecuted under the Witchcraft Act will mark the 50th anniversary of her death by calling for her pardon. +Medium Helen Duncan, who was born in Callander, Perthshire, was imprisoned using the law during World War II. +She was targeted by the government after revealing to a séance audience that a warship had sunk before the news had been released to the public. +Her grand-daughter is particularly angry at the accusations of treason. +Mary Martin, of Edinburgh, said Mrs Duncan had been accused of being a traitor. +"When she first came back home after prison she was never the same. +"She always had a bit of a glow about her but she seemed to have lost that. +"Some people said it was treason. My grandmother had two sons and two son in laws in the forces ... and there is no way she would have given anybody information." +Mrs Duncan became one of the most famous mediums of her time, heading a network of spiritualist churches. +During the war she lived in Portsmouth, the home of the Royal Navy. +She has put us on the right side of the law by bringing in the 1952 act. +At a séance in 1943 it was claimed that the spirit of a sailor from the HMS Barham appeared. +The vessel was only officially declared lost several months later. +She was arrested in 1944 and sentenced to nine months in prison at the Old Bailey for crimes under the Witchcraft Act of 1735. +While in prison she was visited by Winston Churchill. +When he was re-elected in 1951 the Witchcraft Act was repealed and three years later spiritualism was officially recognised as a religion. +Campaigners to pardon Mrs Duncan have set up an online petition. +The campaign is backed by the British Society of Paranormal Studies. +Medium Mary Armour, who wrote her biography, said: "She has put us on the right side of the law by bringing in the 1952 act." + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-tokenise-out002.xml b/src/idlaktxp/test_data/mod-tokenise-out002.xml index 2cbaebfc7f6..bfc9fb76a35 100644 --- a/src/idlaktxp/test_data/mod-tokenise-out002.xml +++ b/src/idlaktxp/test_data/mod-tokenise-out002.xml @@ -1,3 +1,3 @@ -Hello there, 1 2 3. - \ No newline at end of file +Hello there, 1 2 3. + \ No newline at end of file diff --git a/src/idlaktxp/test_data/mod-tokenise-outv000.xml b/src/idlaktxp/test_data/mod-tokenise-outv000.xml index 29d5f47a3f7..aed097e394a 100644 --- a/src/idlaktxp/test_data/mod-tokenise-outv000.xml +++ b/src/idlaktxp/test_data/mod-tokenise-outv000.xml @@ -6,62 +6,40 @@ K - - an - + an + - - - a - + a + - http: / / - - www.big.site - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - - - “okay” - + 4 + - + 2 + + FULL + + Power + + café + + “okay” + - - - And - - - - another - - - - sentence. - + And + + another + + sentence. + - diff --git a/src/idlaktxp/test_data/mod-tokenise-outv001.xml b/src/idlaktxp/test_data/mod-tokenise-outv001.xml index 2bbdb4d3998..6cf9ed38884 100644 --- a/src/idlaktxp/test_data/mod-tokenise-outv001.xml +++ b/src/idlaktxp/test_data/mod-tokenise-outv001.xml @@ -2,1404 +2,718 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act + - - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. + - - - Medium - - - - Helen - - - - Duncan, - - - - who - - - - was - - - - born - - - - in - - - - Callander, - - - - Perthshire, - - - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - + Medium + + Helen + + Duncan, + + who + + was + + born + + in + + Callander, + + Perthshire, + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. + - - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. + - - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. + - - - Mary - - - - Martin, - - - - of - - - - Edinburgh, - - - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + Mary + + Martin, + + of + + Edinburgh, + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + - - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. + - - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. + - - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + "Some + + people + + said + + it + + was + + treason. + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." + - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, + + heading + + a + + network + + of + + spiritualist + + churches. + - - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + the + + home + + of + + the + + Royal + + Navy. + - - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. + - - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. + - - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. + - - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. + - - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. + - - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. + - - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. + - - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. + - - - Medium - - - - Mary - - - - Armour, - - - - who - - - - wrote - - - - her - - - - biography, - - - - said: - - - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - + Medium + + Mary + + Armour, + + who + + wrote + + her + + biography, + + said: + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + - diff --git a/src/idlaktxp/test_data/mod-tokenise-outv002.xml b/src/idlaktxp/test_data/mod-tokenise-outv002.xml index 56575dfbd04..b5f8676b391 100644 --- a/src/idlaktxp/test_data/mod-tokenise-outv002.xml +++ b/src/idlaktxp/test_data/mod-tokenise-outv002.xml @@ -2,25 +2,15 @@ - - Hello - - - - there, - - - - 1 - - - - 2 - - - - 3. - + Hello + + there, + + 1 + + 2 + + 3. + - diff --git a/src/idlaktxp/test_data/mod-tokenise-reg000.xml b/src/idlaktxp/test_data/mod-tokenise-reg000.xml index 29d5f47a3f7..aed097e394a 100644 --- a/src/idlaktxp/test_data/mod-tokenise-reg000.xml +++ b/src/idlaktxp/test_data/mod-tokenise-reg000.xml @@ -6,62 +6,40 @@ K - - an - + an + - - - a - + a + - http: / / - - www.big.site - - - - + www.big.site + 2 = - - 4-2 - - - - FULL - - - - Power - - - - café - - - - “okay” - + 4 + - + 2 + + FULL + + Power + + café + + “okay” + - - - And - - - - another - - - - sentence. - + And + + another + + sentence. + - diff --git a/src/idlaktxp/test_data/mod-tokenise-reg001.xml b/src/idlaktxp/test_data/mod-tokenise-reg001.xml index 2bbdb4d3998..6cf9ed38884 100644 --- a/src/idlaktxp/test_data/mod-tokenise-reg001.xml +++ b/src/idlaktxp/test_data/mod-tokenise-reg001.xml @@ -2,1404 +2,718 @@ - - Helen - - - - Duncan - - - - was - - - - tried - - - - under - - - - the - - - - Witchcraft - - - - Act - + Helen + + Duncan + + was + + tried + + under + + the + + Witchcraft + + Act + - - - The - - - - family - - - - of - - - - the - - - - last - - - - person - - - - in - - - - the - - - - UK - - - - to - - - - be - - - - prosecuted - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - will - - - - mark - - - - the - - - - 50th - - - - anniversary - - - - of - - - - her - - - - death - - - - by - - - - calling - - - - for - - - - her - - - - pardon. - + The + + family + + of + + the + + last + + person + + in + + the + + UK + + to + + be + + prosecuted + + under + + the + + Witchcraft + + Act + + will + + mark + + the + + 50th + + anniversary + + of + + her + + death + + by + + calling + + for + + her + + pardon. + - - - Medium - - - - Helen - - - - Duncan, - - - - who - - - - was - - - - born - - - - in - - - - Callander, - - - - Perthshire, - - - - was - - - - imprisoned - - - - using - - - - the - - - - law - - - - during - - - - World - - - - War - - - - II. - + Medium + + Helen + + Duncan, + + who + + was + + born + + in + + Callander, + + Perthshire, + + was + + imprisoned + + using + + the + + law + + during + + World + + War + + II. + - - - She - - - - was - - - - targeted - - - - by - - - - the - - - - government - - - - after - - - - revealing - - - - to - - - - a - - - - séance - - - - audience - - - - that - - - - a - - - - warship - - - - had - - - - sunk - - - - before - - - - the - - - - news - - - - had - - - - been - - - - released - - - - to - - - - the - - - - public. - + She + + was + + targeted + + by + + the + + government + + after + + revealing + + to + + a + + séance + + audience + + that + + a + + warship + + had + + sunk + + before + + the + + news + + had + + been + + released + + to + + the + + public. + - - - Her - - - - grand-daughter - - - - is - - - - particularly - - - - angry - - - - at - - - - the - - - - accusations - - - - of - - - - treason. - + Her + + grand + - + daughter + + is + + particularly + + angry + + at + + the + + accusations + + of + + treason. + - - - Mary - - - - Martin, - - - - of - - - - Edinburgh, - - - - said - - - - Mrs - - - - Duncan - - - - had - - - - been - - - - accused - - - - of - - - - being - - - - a - - - - traitor. - + Mary + + Martin, + + of + + Edinburgh, + + said + + Mrs + + Duncan + + had + + been + + accused + + of + + being + + a + + traitor. + - - - "When - - - - she - - - - first - - - - came - - - - back - - - - home - - - - after - - - - prison - - - - she - - - - was - - - - never - - - - the - - - - same. - + "When + + she + + first + + came + + back + + home + + after + + prison + + she + + was + + never + + the + + same. + - - - "She - - - - always - - - - had - - - - a - - - - bit - - - - of - - - - a - - - - glow - - - - about - - - - her - - - - but - - - - she - - - - seemed - - - - to - - - - have - - - - lost - - - - that. - + "She + + always + + had + + a + + bit + + of + + a + + glow + + about + + her + + but + + she + + seemed + + to + + have + + lost + + that. + - - - "Some - - - - people - - - - said - - - - it - - - - was - - - - treason. - - - - My - - - - grandmother - - - - had - - - - two - - - - sons - - - - and - - - - two - - - - son - - - - in - - - - laws - - - - in - - - - the - - - - forces - - - - ... - - - - and - - - - there - - - - is - - - - no - - - - way - - - - she - - - - would - - - - have - - - - given - - - - anybody - - - - information." - + "Some + + people + + said + + it + + was + + treason. + + My + + grandmother + + had + + two + + sons + + and + + two + + son + + in + + laws + + in + + the + + forces + + ... + + and + + there + + is + + no + + way + + she + + would + + have + + given + + anybody + + information." + - - - Mrs - - - - Duncan - - - - became - - - - one - - - - of - - - - the - - - - most - - - - famous - - - - mediums - - - - of - - - - her - - - - time, - - - - heading - - - - a - - - - network - - - - of - - - - spiritualist - - - - churches. - + Mrs + + Duncan + + became + + one + + of + + the + + most + + famous + + mediums + + of + + her + + time, + + heading + + a + + network + + of + + spiritualist + + churches. + - - - During - - - - the - - - - war - - - - she - - - - lived - - - - in - - - - Portsmouth, - - - - the - - - - home - - - - of - - - - the - - - - Royal - - - - Navy. - + During + + the + + war + + she + + lived + + in + + Portsmouth, + + the + + home + + of + + the + + Royal + + Navy. + - - - She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act. - + She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act. + - - - At - - - - a - - - - séance - - - - in - - - - 1943 - - - - it - - - - was - - - - claimed - - - - that - - - - the - - - - spirit - - - - of - - - - a - - - - sailor - - - - from - - - - the - - - - HMS - - - - Barham - - - - appeared. - + At + + a + + séance + + in + + 1943 + + it + + was + + claimed + + that + + the + + spirit + + of + + a + + sailor + + from + + the + + HMS + + Barham + + appeared. + - - - The - - - - vessel - - - - was - - - - only - - - - officially - - - - declared - - - - lost - - - - several - - - - months - - - - later. - + The + + vessel + + was + + only + + officially + + declared + + lost + + several + + months + + later. + - - - She - - - - was - - - - arrested - - - - in - - - - 1944 - - - - and - - - - sentenced - - - - to - - - - nine - - - - months - - - - in - - - - prison - - - - at - - - - the - - - - Old - - - - Bailey - - - - for - - - - crimes - - - - under - - - - the - - - - Witchcraft - - - - Act - - - - of - - - - 1735. - + She + + was + + arrested + + in + + 1944 + + and + + sentenced + + to + + nine + + months + + in + + prison + + at + + the + + Old + + Bailey + + for + + crimes + + under + + the + + Witchcraft + + Act + + of + + 1735. + - - - While - - - - in - - - - prison - - - - she - - - - was - - - - visited - - - - by - - - - Winston - - - - Churchill. - + While + + in + + prison + + she + + was + + visited + + by + + Winston + + Churchill. + - - - When - - - - he - - - - was - - - - re-elected - - - - in - - - - 1951 - - - - the - - - - Witchcraft - - - - Act - - - - was - - - - repealed - - - - and - - - - three - - - - years - - - - later - - - - spiritualism - - - - was - - - - officially - - - - recognised - - - - as - - - - a - - - - religion. - + When + + he + + was + + re + - + elected + + in + + 1951 + + the + + Witchcraft + + Act + + was + + repealed + + and + + three + + years + + later + + spiritualism + + was + + officially + + recognised + + as + + a + + religion. + - - - Campaigners - - - - to - - - - pardon - - - - Mrs - - - - Duncan - - - - have - - - - set - - - - up - - - - an - - - - online - - - - petition. - + Campaigners + + to + + pardon + + Mrs + + Duncan + + have + + set + + up + + an + + online + + petition. + - - - The - - - - campaign - - - - is - - - - backed - - - - by - - - - the - - - - British - - - - Society - - - - of - - - - Paranormal - - - - Studies. - + The + + campaign + + is + + backed + + by + + the + + British + + Society + + of + + Paranormal + + Studies. + - - - Medium - - - - Mary - - - - Armour, - - - - who - - - - wrote - - - - her - - - - biography, - - - - said: - - - - "She - - - - has - - - - put - - - - us - - - - on - - - - the - - - - right - - - - side - - - - of - - - - the - - - - law - - - - by - - - - bringing - - - - in - - - - the - - - - 1952 - - - - act." - + Medium + + Mary + + Armour, + + who + + wrote + + her + + biography, + + said: + + "She + + has + + put + + us + + on + + the + + right + + side + + of + + the + + law + + by + + bringing + + in + + the + + 1952 + + act." + - diff --git a/src/idlaktxp/test_data/mod-tokenise-reg002.xml b/src/idlaktxp/test_data/mod-tokenise-reg002.xml index 56575dfbd04..b5f8676b391 100644 --- a/src/idlaktxp/test_data/mod-tokenise-reg002.xml +++ b/src/idlaktxp/test_data/mod-tokenise-reg002.xml @@ -2,25 +2,15 @@ - - Hello - - - - there, - - - - 1 - - - - 2 - - - - 3. - + Hello + + there, + + 1 + + 2 + + 3. + - diff --git a/src/idlaktxp/txpnrules.cc b/src/idlaktxp/txpnrules.cc index 15abfff6d61..a7341b415ae 100644 --- a/src/idlaktxp/txpnrules.cc +++ b/src/idlaktxp/txpnrules.cc @@ -57,7 +57,8 @@ void TxpNRules::Init(const TxpParseOptions &opts, const std::string &name) { rgxwspace_ = rgxwspace_default_ = pcre.Compile("^([ \n\t\r]+)"); rgxsep_ = rgxsep_default_ = pcre.Compile("^([\\-\\+\\=\\/@]$)"); - rgxpunc_ = rgxpunc_default_ = pcre.Compile("^([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)([^\\(\\)\\[\\]\\{\\}\\\"!\\?\\.,;:\\|]*)([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)");// NOLINT + // rgxpunc_ = rgxpunc_default_ = pcre.Compile("^([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)([^\\(\\)\\[\\]\\{\\}\\\"!\\?;:\\|]*?)([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)");// NOLINT + rgxpunc_ = rgxpunc_default_ = pcre.Compile("^([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)(.*?)([\\(\\)\\[\\]\\{\\}\\\"'!\\?\\.,;:\\|]*)$"); rgxalpha_ = rgxalpha_default_ = pcre.Compile("^[a-zA-Z_']+$"); MakeLkp(&locallkps_, "downcase", "{\"A\":\"a\", \"B\":\"b\", \"C\":\"c\", \"D\":\"d\", \"E\":\"e\", \"F\":\"f\", \"G\":\"g\", \"H\":\"h\", \"I\":\"i\", \"J\":\"j\", \"K\":\"k\", \"L\":\"l\", \"M\":\"m\", \"N\":\"n\", \"O\":\"o\", \"P\":\"p\", \"Q\":\"q\", \"R\":\"r\", \"S\":\"s\", \"T\":\"t\", \"U\":\"u\", \"V\":\"v\", \"W\":\"w\", \"X\":\"x\", \"Y\":\"y\", \"Z\":\"z\"}");// NOLINT MakeLkp(&locallkps_, "convertillegal", "{\"À\":\"A\", \"Á\":\"A\", \"Â\":\"A\", \"Ã\":\"A\", \"Å\":\"A\", \"Æ\":\"AE\", \"à\":\"a\", \"á\":\"a\", \"â\":\"a\", \"ã\":\"a\", \"å\":\"a\", \"æ\":\"ae\", \"Ç\":\"C\", \"ç\":\"c\", \"È\":\"E\", \"É\":\"E\", \"Ê\":\"E\", \"Ë\":\"E\", \"è\":\"e\", \"é\":\"e\", \"ê\":\"e\", \"ë\":\"e\", \"Ì\":\"I\", \"Í\":\"I\", \"Î\":\"I\", \"Ï\":\"I\", \"ì\":\"i\", \"í\":\"i\", \"î\":\"i\", \"ï\":\"i\", \"Ñ\":\"N\", \"ñ\":\"n\", \"Ò\":\"O\", \"Ó\":\"O\", \"Ô\":\"O\", \"Õ\":\"O\", \"Ø\":\"O\", \"ò\":\"o\", \"ó\":\"o\", \"ô\":\"o\", \"õ\":\"o\", \"ø\":\"o\", \"Ù\":\"U\", \"Ú\":\"U\", \"Û\":\"U\", \"Ű\":u\"Ü\", \"ù\":\"u\", \"ú\":\"u\", \"û\":\"u\", \"ű\":u\"ü\", \"Ý\":\"Y\", \"ý\":\"y\"}");// NOLINT @@ -76,9 +77,8 @@ bool TxpNRules::Parse(const std::string &tpdb) { if (rgx) rgxwspace_ = rgx; rgx = GetRgx("separators"); if (rgx) rgxsep_ = rgx; - // Current punc_strip_full in tpdb not appropriate use hard coded version - // rgx = GetRgx("punc_strip_full"); - // if (rgx) rgxpunc_ = rgx; + rgx = GetRgx("punc_strip"); + if (rgx) rgxpunc_ = rgx; rgx = GetRgx("alpha"); if (rgx) rgxalpha_ = rgx; } else { diff --git a/src/idlaktxp/txpparse-options.h b/src/idlaktxp/txpparse-options.h index e261cd0b716..670ee4c001a 100644 --- a/src/idlaktxp/txpparse-options.h +++ b/src/idlaktxp/txpparse-options.h @@ -29,6 +29,7 @@ #include #include #include +#include "base/kaldi-common.h" #include "util/parse-options.h" #include "idlaktxp/idlak-common.h" diff --git a/src/pyIdlak/Makefile b/src/pyIdlak/Makefile new file mode 100644 index 00000000000..16c5c199158 --- /dev/null +++ b/src/pyIdlak/Makefile @@ -0,0 +1,48 @@ + +include ../kaldi.mk + +OBJFILES = python-api.o pyIdlak_wrap.o + +LIBNAME = _pyIdlak + +ADDLIBS = ../idlaktxp/idlak-txp.a ../util/kaldi-util.a ../matrix/kaldi-matrix.a ../base/kaldi-base.a + +EXTRA_CXXFLAGS = -fPIC -I$(PYTHONDEVINC) -I$(PCREROOT)/include -I$(EXPATROOT)/include -I$(PUJIXMLROOT)/src +EXTRA_LDLIBS = -lpython2.7 -Wl,-rpath,"$(PCREROOT)/lib" $(PCREROOT)/lib/libpcre.so $(EXPATROOT)/lib/libexpat.so + +include ../makefiles/default_rules.mk + +ifeq ($(KALDI_FLAVOR), dynamic) + STATICLIB = +else + STATICLIB = _pyIdlak.a +endif + +wrapper: + $(SWIG) -c++ -python -o pyIdlak_wrap.cc pyIdlak.i + +sharedlib: $(STATICLIB) +ifeq ($(KALDI_FLAVOR), dynamic) + ifeq ($(shell uname), Darwin) + ln -fs $(KALDILIBDIR)/lib_pyIdlak.dylib _pyIdlak.dylib + else ifeq ($(shell uname), Linux) + ln -fs $(KALDILIBDIR)/lib_pyIdlak.so _pyIdlak.so + else # Platform not supported + $(error Dynamic libraries not supported on this platform '$(shell uname)'. Python wrapper cannot be built.) + endif +else + ifeq ($(shell uname), Darwin) + $(CXX) -dynamiclib -o _pyIdlak.dylib -install_name @rpath/_pyIdlak.a $(LDFLAGS) $(LDLIBS) + else ifeq ($(shell uname), Linux) + # Building shared library from static (static was compiled with -fPIC) + $(CXX) -shared -o _pyIdlak.so -Wl,--no-undefined -Wl,--as-needed \ + -Wl,-soname=_pyIdlak.so,--whole-archive _pyIdlak.a $(ADDLIBS) $(PUJIXMLROOT)/scripts/libpugixml.a -Wl,--no-whole-archive $(LDFLAGS) $(LDLIBS) + else # Platform not supported + $(error Dynamic libraries not supported on this platform '$(shell uname)'. Python wrapper cannot be built.) + endif +endif + +clean: + -rm -f *.o *.a *.so pyIdlak.py pyIdlak.pyc pyIdlak_wrap.cc + +all: wrapper sharedlib diff --git a/src/pyIdlak/pyIdlak.i b/src/pyIdlak/pyIdlak.i new file mode 100644 index 00000000000..c988f57256f --- /dev/null +++ b/src/pyIdlak/pyIdlak.i @@ -0,0 +1,28 @@ +// pyIdlak/pyIdlak.i + +// Copyright 2018 CereProc Ltd. (Authors: David A. Braude +// Matthew Aylett) + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. +// + +%module pyIdlak +%{ +#include "python-api.h" +%} + +%include "python-api.h" + + + diff --git a/src/pyIdlak/python-api.cc b/src/pyIdlak/python-api.cc new file mode 100644 index 00000000000..2076b03f5a4 --- /dev/null +++ b/src/pyIdlak/python-api.cc @@ -0,0 +1,50 @@ +// pyIdlak/python-api.cc + +// Copyright 2018 CereProc Ltd. (Authors: David A. Braude +// Matthew Aylett) + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. +// + +#include "idlaktxp/idlaktxp.h" + +#include "python-api.h" + +struct PyTxpParseOptions { + kaldi::TxpParseOptions * po_; +}; + + +PyTxpParseOptions * PyTxpParseOptions_new(const char *usage) +{ + PyTxpParseOptions * pypo = new PyTxpParseOptions; + pypo->po_ = new kaldi::TxpParseOptions(usage); + return pypo; +} + + +void PyTxpParseOptions_delete(PyTxpParseOptions * pypo) +{ + if (pypo) { + delete pypo->po_; + delete pypo; + } +} + +void PyTxpParseOptions_PrintUsage(PyTxpParseOptions * pypo, bool print_command_line) +{ + if (pypo) { + pypo->po_->PrintUsage(print_command_line); + } +} diff --git a/src/pyIdlak/python-api.h b/src/pyIdlak/python-api.h new file mode 100644 index 00000000000..ad071fca3ba --- /dev/null +++ b/src/pyIdlak/python-api.h @@ -0,0 +1,31 @@ +// pyIdlak/python-api.h + +// Copyright 2018 CereProc Ltd. (Authors: David A. Braude +// Matthew Aylett) + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +// MERCHANTABLITY OR NON-INFRINGEMENT. +// See the Apache 2 License for the specific language governing permissions and +// limitations under the License. +// + +#ifndef KALDI_PYIDLAK_PYTHON_API_H_ +#define KALDI_PYIDLAK_PYTHON_API_H_ + +// TxpParseOptions wrappers +typedef struct PyTxpParseOptions PyTxpParseOptions; + +PyTxpParseOptions * PyTxpParseOptions_new(const char *usage); +void PyTxpParseOptions_delete(PyTxpParseOptions * pypo); + +void PyTxpParseOptions_PrintUsage(PyTxpParseOptions * pypo, bool print_command_line = false); + +#endif // KALDI_PYIDLAK_PYTHON_API_H_ \ No newline at end of file diff --git a/tools/extras/check_dependencies.sh b/tools/extras/check_dependencies.sh index ff4cefe2010..fa97ac34d3a 100755 --- a/tools/extras/check_dependencies.sh +++ b/tools/extras/check_dependencies.sh @@ -65,7 +65,7 @@ if ! echo "#include " | $CXX -E - >&/dev/null; then add_packages zlib-devel zlib1g-dev zlib-devel fi -for f in make automake autoconf patch grep bzip2 gzip wget git; do +for f in make automake autoconf patch grep bzip2 gzip wget git swig; do if ! which $f >&/dev/null; then echo "$0: $f is not installed." add_packages $f $f $f @@ -100,7 +100,7 @@ fi # pythonok=false #fi -( +( #Use a subshell so that sourcing env.sh does not have an influence on the rest of the script [ -f ./env.sh ] && . ./env.sh if $pythonok && ! which python2 >&/dev/null; then @@ -111,14 +111,14 @@ if $pythonok && ! which python2 >&/dev/null; then fi if [[ -f $PWD/python/.use_default_python && -f $PWD/python/python ]]; then - rm $PWD/python/python + rm $PWD/python/python fi if $pythonok && which python >&/dev/null && [[ ! -f $PWD/python/.use_default_python ]]; then version=`python 2>&1 --version | awk '{print $2}' ` if [[ $version != "2.7"* ]] ; then echo "$0: WARNING python 2.7 is not the default python. We fixed this by adding a correct symlink more prominently on the path." - echo "$0: If you really want to use python $version as default, add an empty file $PWD/python/.use_default_python and run this script again." + echo "$0: If you really want to use python $version as default, add an empty file $PWD/python/.use_default_python and run this script again." mkdir -p $PWD/python ln -s $(which python2.7) $PWD/python/python echo "export PATH=$PWD/python:\${PATH}" >> env.sh