initial commit
authorMart Lubbers <mart@martlubbers.net>
Wed, 15 Mar 2017 15:16:00 +0000 (16:16 +0100)
committerMart Lubbers <mart@martlubbers.net>
Wed, 15 Mar 2017 15:16:00 +0000 (16:16 +0100)
32 files changed:
.gitignore [new file with mode: 0644]
data.txt [new file with mode: 0644]
makevenv.sh [new file with mode: 0755]
mfcc.py [new file with mode: 0644]
orig/01_-_High_Velocity_Impact_Spatter.flac [new file with mode: 0644]
orig/02_-_Sadistic_Embodiment.flac [new file with mode: 0644]
orig/03_-_Kill_or_Become.flac [new file with mode: 0644]
orig/04_-_A_Skeletal_Domain.flac [new file with mode: 0644]
orig/05_-_Headlong_Into_Carnage.flac [new file with mode: 0644]
orig/06_-_The_Murderer's_Pact.flac [new file with mode: 0644]
orig/07_-_Funeral_Cremation.flac [new file with mode: 0644]
orig/08_-_Icepick_Lobotomy.flac [new file with mode: 0644]
orig/09_-_Vector_of_Cruelty.flac [new file with mode: 0644]
orig/10_-_Bloodstained_Cement.flac [new file with mode: 0644]
orig/11_-_Asphyxiate_to_Resuscitate.flac [new file with mode: 0644]
orig/12_-_Hollowed_Bodies.flac [new file with mode: 0644]
preprocess.sh [new file with mode: 0644]
segment.py [new file with mode: 0644]
test.py [new file with mode: 0644]
textgrid/00.TextGrid [new file with mode: 0644]
textgrid/01.TextGrid [new file with mode: 0644]
textgrid/02.TextGrid [new file with mode: 0644]
textgrid/03.TextGrid [new file with mode: 0644]
textgrid/04.TextGrid [new file with mode: 0644]
textgrid/05.TextGrid [new file with mode: 0644]
textgrid/06.TextGrid [new file with mode: 0644]
textgrid/07.TextGrid [new file with mode: 0644]
textgrid/08.TextGrid [new file with mode: 0644]
textgrid/09.TextGrid [new file with mode: 0644]
textgrid/10.TextGrid [new file with mode: 0644]
textgrid/11.TextGrid [new file with mode: 0644]
train.py [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..2e8dbe8
--- /dev/null
@@ -0,0 +1,10 @@
+mfcc
+wav
+bin
+include
+lib
+share
+model.*
+model.*
+test.txt
+train.txt
diff --git a/data.txt b/data.txt
new file mode 100644 (file)
index 0000000..028c959
--- /dev/null
+++ b/data.txt
@@ -0,0 +1,12 @@
+00     High Velocity Impact Spatter    10888584
+01     Sadistic Embodiment     8701224
+02     Kill or Become  10172400
+03     A Skeletal Domain       9647904
+04     Headlong Into Carnage   7993272
+05     The Murderer's Pact     13460496
+06     Funeral Cremation       9785496
+07     Icepick Lobotomy        8654184
+08     Vector of Cruelty       9046968
+09     Bloodstained Cement     9789612
+10     Asphyxiate to Resuscitate       10028340
+11     Hollowed Bodies 8193780
diff --git a/makevenv.sh b/makevenv.sh
new file mode 100755 (executable)
index 0000000..2c6332d
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/bash
+virtualenv -p python3 .
+. bin/activate
+pip install --upgrade keras tensorflow h5py
+pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1.0-cp35-none-linux_x86_64.whl
+deactivate
diff --git a/mfcc.py b/mfcc.py
new file mode 100644 (file)
index 0000000..5e0b4b9
--- /dev/null
+++ b/mfcc.py
@@ -0,0 +1,7 @@
+from python_speech_features import mfcc
+import scipy.io.wavfile as wav
+import sys
+
+(rate, sig) = wav.read(sys.stdin.buffer)
+for i in mfcc(sig, rate, winlen=0.100, winstep=0.025, numcep=13, appendEnergy=True):
+    print(*i, sep='\t')
diff --git a/orig/01_-_High_Velocity_Impact_Spatter.flac b/orig/01_-_High_Velocity_Impact_Spatter.flac
new file mode 100644 (file)
index 0000000..29eb476
Binary files /dev/null and b/orig/01_-_High_Velocity_Impact_Spatter.flac differ
diff --git a/orig/02_-_Sadistic_Embodiment.flac b/orig/02_-_Sadistic_Embodiment.flac
new file mode 100644 (file)
index 0000000..9b6fb73
Binary files /dev/null and b/orig/02_-_Sadistic_Embodiment.flac differ
diff --git a/orig/03_-_Kill_or_Become.flac b/orig/03_-_Kill_or_Become.flac
new file mode 100644 (file)
index 0000000..9550048
Binary files /dev/null and b/orig/03_-_Kill_or_Become.flac differ
diff --git a/orig/04_-_A_Skeletal_Domain.flac b/orig/04_-_A_Skeletal_Domain.flac
new file mode 100644 (file)
index 0000000..07d2313
Binary files /dev/null and b/orig/04_-_A_Skeletal_Domain.flac differ
diff --git a/orig/05_-_Headlong_Into_Carnage.flac b/orig/05_-_Headlong_Into_Carnage.flac
new file mode 100644 (file)
index 0000000..b3e2428
Binary files /dev/null and b/orig/05_-_Headlong_Into_Carnage.flac differ
diff --git a/orig/06_-_The_Murderer's_Pact.flac b/orig/06_-_The_Murderer's_Pact.flac
new file mode 100644 (file)
index 0000000..f5c2db7
Binary files /dev/null and b/orig/06_-_The_Murderer's_Pact.flac differ
diff --git a/orig/07_-_Funeral_Cremation.flac b/orig/07_-_Funeral_Cremation.flac
new file mode 100644 (file)
index 0000000..294a8d3
Binary files /dev/null and b/orig/07_-_Funeral_Cremation.flac differ
diff --git a/orig/08_-_Icepick_Lobotomy.flac b/orig/08_-_Icepick_Lobotomy.flac
new file mode 100644 (file)
index 0000000..feab47e
Binary files /dev/null and b/orig/08_-_Icepick_Lobotomy.flac differ
diff --git a/orig/09_-_Vector_of_Cruelty.flac b/orig/09_-_Vector_of_Cruelty.flac
new file mode 100644 (file)
index 0000000..0be32cc
Binary files /dev/null and b/orig/09_-_Vector_of_Cruelty.flac differ
diff --git a/orig/10_-_Bloodstained_Cement.flac b/orig/10_-_Bloodstained_Cement.flac
new file mode 100644 (file)
index 0000000..de4f4ca
Binary files /dev/null and b/orig/10_-_Bloodstained_Cement.flac differ
diff --git a/orig/11_-_Asphyxiate_to_Resuscitate.flac b/orig/11_-_Asphyxiate_to_Resuscitate.flac
new file mode 100644 (file)
index 0000000..0309ca1
Binary files /dev/null and b/orig/11_-_Asphyxiate_to_Resuscitate.flac differ
diff --git a/orig/12_-_Hollowed_Bodies.flac b/orig/12_-_Hollowed_Bodies.flac
new file mode 100644 (file)
index 0000000..f3008ef
Binary files /dev/null and b/orig/12_-_Hollowed_Bodies.flac differ
diff --git a/preprocess.sh b/preprocess.sh
new file mode 100644 (file)
index 0000000..7522f1e
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/bash
+set -e
+
+MAXPROCS=4
+FREQUENCY=44100
+#FREQUENCY=22050
+
+rm -rf wav mfcc
+mkdir -p wav mfcc
+i=0
+for f in orig/*.flac; do
+       while [ $(jobs -p | wc -l) -ge $MAXPROCS ]; do sleep 1; done
+       
+       echo $f
+       BN="$(echo $f | grep -Po "(?<=/[0-9][0-9] - ).*(?=\.flac)")"
+       NUM="$(printf '%02d' "$i")"
+       WAV="wav/$NUM.wav"
+       MFCC="mfcc/$NUM.mfcc"
+
+       (       echo "Processing $f" &&
+               sox "$f" -V1 -c 1 -r $FREQUENCY $WAV &&
+               python mfcc.py < "$WAV" > "$MFCC"
+       ) &
+       i=$((i+1))
+done
+wait
+python segment.py
+python train.py
+python test.py
diff --git a/segment.py b/segment.py
new file mode 100644 (file)
index 0000000..5454ad0
--- /dev/null
@@ -0,0 +1,58 @@
+import sys
+import pympi
+import random
+
+testset = 0.10
+data = []
+
+
+def process(num, *args):
+    tg = 'textgrid/{:02d}.TextGrid'.format(int(num))
+
+    tgob = pympi.TextGrid(tg)
+    intervalit = tgob.get_tier('lyrics').get_intervals(sort=True)
+
+    with open('mfcc/{:02d}.mfcc'.format(int(num))) as mfcc:
+        (s, e, v) = next(intervalit)
+        currentframe = 0.0
+        for l in mfcc:
+            # Go to next interval
+            if currentframe > e:
+                try:
+                    (s, e, v) = next(intervalit)
+                except StopIteration:
+                    pass
+
+            label = 1 if v == '' else 0
+            data.append([label] + l.split('\t'))
+
+            # Increase time
+            currentframe += 0.025
+
+
+if __name__ == '__main__':
+    datafiles = []
+    with open('data.txt', 'r') as f:
+        for l in f:
+            s = l.strip().split('\t')
+            sys.stderr.write('Processing {}: {}\n'.format(s[0], s[1]))
+            process(*s)
+
+    sys.stderr.write('Shuffling {} samples\n'.format(len(data)))
+    random.shuffle(data)
+
+    splitpoint = int(len(data)*testset)
+    testset = data[:splitpoint]
+    trainset = data[splitpoint:]
+    del(data)
+
+    sys.stderr.write('Write testset: {} items\n'.format(splitpoint))
+    with open('test.txt', 'w') as f:
+        for d in testset:
+            f.write('\t'.join(map(str, d)))
+
+    sys.stderr.write('Write trainingset: {:d} items\n'.format(9*splitpoint))
+    with open('train.txt', 'w') as f:
+        for d in trainset:
+            f.write('\t'.join(map(str, d)))
+    f.close()
diff --git a/test.py b/test.py
new file mode 100644 (file)
index 0000000..72a787c
--- /dev/null
+++ b/test.py
@@ -0,0 +1,19 @@
+import numpy as np
+from keras.models import model_from_json
+
+with open('model.json', 'r') as f:
+    json = f.read()
+
+model = model_from_json(json)
+model.load_weights('./model.hdf5')
+model.compile(
+    loss='binary_crossentropy',
+    optimizer='rmsprop',
+    metrics=['accuracy'])
+
+model.summary()
+
+dat = np.genfromtxt('test.txt', dtype=float, delimiter='\t')[:, range(1, 14)]
+lab = np.genfromtxt('test.txt', dtype=int, delimiter='\t')[:, 0]
+
+print(model.evaluate(dat, lab, batch_size=32))
diff --git a/textgrid/00.TextGrid b/textgrid/00.TextGrid
new file mode 100644 (file)
index 0000000..3727876
--- /dev/null
@@ -0,0 +1,468 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 246.90666666666667 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 246.90666666666667 
+        intervals: size = 56 
+        intervals [1]:
+            xmin = 0 
+            xmax = 41.38151166987488 
+            text = "" 
+        intervals [2]:
+            xmin = 41.38151166987488 
+            xmax = 43.105590148159685 
+            text = "gse" 
+        intervals [3]:
+            xmin = 43.105590148159685 
+            xmax = 57.796793600471744 
+            text = "" 
+        intervals [4]:
+            xmin = 57.796793600471744 
+            xmax = 62.359899323685546 
+            text = "g" 
+        intervals [5]:
+            xmin = 62.359899323685546 
+            xmax = 64.58684807256236 
+            text = "" 
+        intervals [6]:
+            xmin = 64.58684807256236 
+            xmax = 69.45497935570768 
+            text = "g" 
+        intervals [7]:
+            xmin = 69.45497935570768 
+            xmax = 71.43542619336296 
+            text = "" 
+        intervals [8]:
+            xmin = 71.43542619336296 
+            xmax = 76.00993124841031 
+            text = "g" 
+        intervals [9]:
+            xmin = 76.00993124841031 
+            xmax = 78.22510841435671 
+            text = "" 
+        intervals [10]:
+            xmin = 78.22510841435671 
+            xmax = 83.28976384291913 
+            text = "g" 
+        intervals [11]:
+            xmin = 83.28976384291913 
+            xmax = 85.0085316209157 
+            text = "" 
+        intervals [12]:
+            xmin = 85.0085316209157 
+            xmax = 93.89357887536104 
+            text = "g" 
+        intervals [13]:
+            xmin = 93.89357887536104 
+            xmax = 95.37820861678006 
+            text = "s" 
+        intervals [14]:
+            xmin = 95.37820861678006 
+            xmax = 95.62151780624335 
+            text = "" 
+        intervals [15]:
+            xmin = 95.62151780624335 
+            xmax = 98.29777762201458 
+            text = "g" 
+        intervals [16]:
+            xmin = 98.29777762201458 
+            xmax = 100.04722638029578 
+            text = "s" 
+        intervals [17]:
+            xmin = 100.04722638029578 
+            xmax = 107.4152321607356 
+            text = "g" 
+        intervals [18]:
+            xmin = 107.4152321607356 
+            xmax = 109.47869500731302 
+            text = "" 
+        intervals [19]:
+            xmin = 109.47869500731302 
+            xmax = 113.91766157952567 
+            text = "g" 
+        intervals [20]:
+            xmin = 113.91766157952567 
+            xmax = 116.37625796643351 
+            text = "" 
+        intervals [21]:
+            xmin = 116.37625796643351 
+            xmax = 120.90557319008796 
+            text = "g" 
+        intervals [22]:
+            xmin = 120.90557319008796 
+            xmax = 123.21185186368196 
+            text = "" 
+        intervals [23]:
+            xmin = 123.21185186368196 
+            xmax = 128.12061677571802 
+            text = "g" 
+        intervals [24]:
+            xmin = 128.12061677571802 
+            xmax = 130.0351999659365 
+            text = "" 
+        intervals [25]:
+            xmin = 130.0351999659365 
+            xmax = 138.93466237331825 
+            text = "g" 
+        intervals [26]:
+            xmin = 138.93466237331825 
+            xmax = 140.2466183505077 
+            text = "e" 
+        intervals [27]:
+            xmin = 140.2466183505077 
+            xmax = 140.70887396291104 
+            text = "" 
+        intervals [28]:
+            xmin = 140.70887396291104 
+            xmax = 143.35062818792738 
+            text = "g" 
+        intervals [29]:
+            xmin = 143.35062818792738 
+            xmax = 144.68451464972094 
+            text = "e" 
+        intervals [30]:
+            xmin = 144.68451464972094 
+            xmax = 145.06328647968292 
+            text = "" 
+        intervals [31]:
+            xmin = 145.06328647968292 
+            xmax = 147.78353652879426 
+            text = "g" 
+        intervals [32]:
+            xmin = 147.78353652879426 
+            xmax = 153.26979754939927 
+            text = "" 
+        intervals [33]:
+            xmin = 153.26979754939927 
+            xmax = 153.52598491226763 
+            text = "g" 
+        intervals [34]:
+            xmin = 153.52598491226763 
+            xmax = 160.68656685836527 
+            text = "" 
+        intervals [35]:
+            xmin = 160.68656685836527 
+            xmax = 162.1568872378149 
+            text = "s" 
+        intervals [36]:
+            xmin = 162.1568872378149 
+            xmax = 163.5397952544606 
+            text = "g" 
+        intervals [37]:
+            xmin = 163.5397952544606 
+            xmax = 170.90691179186024 
+            text = "" 
+        intervals [38]:
+            xmin = 170.90691179186024 
+            xmax = 172.3492212091363 
+            text = "s" 
+        intervals [39]:
+            xmin = 172.3492212091363 
+            xmax = 173.80872890644255 
+            text = "g" 
+        intervals [40]:
+            xmin = 173.80872890644255 
+            xmax = 175.44739958220438 
+            text = "" 
+        intervals [41]:
+            xmin = 175.44739958220438 
+            xmax = 178.41234432436903 
+            text = "g" 
+        intervals [42]:
+            xmin = 178.41234432436903 
+            xmax = 180.173371150031 
+            text = "" 
+        intervals [43]:
+            xmin = 180.173371150031 
+            xmax = 186.1574482257786 
+            text = "g" 
+        intervals [44]:
+            xmin = 186.1574482257786 
+            xmax = 202.00798424753884 
+            text = "" 
+        intervals [45]:
+            xmin = 202.00798424753884 
+            xmax = 205.74043682816077 
+            text = "g" 
+        intervals [46]:
+            xmin = 205.74043682816077 
+            xmax = 206.43260067262096 
+            text = "" 
+        intervals [47]:
+            xmin = 206.43260067262096 
+            xmax = 211.66938371710896 
+            text = "g" 
+        intervals [48]:
+            xmin = 211.66938371710896 
+            xmax = 219.3929694736581 
+            text = "" 
+        intervals [49]:
+            xmin = 219.3929694736581 
+            xmax = 223.01734358187454 
+            text = "g" 
+        intervals [50]:
+            xmin = 223.01734358187454 
+            xmax = 223.7868618214056 
+            text = "" 
+        intervals [51]:
+            xmin = 223.7868618214056 
+            xmax = 228.00272674911025 
+            text = "g" 
+        intervals [52]:
+            xmin = 228.00272674911025 
+            xmax = 233.2728587748978 
+            text = "" 
+        intervals [53]:
+            xmin = 233.2728587748978 
+            xmax = 234.75454775281406 
+            text = "s" 
+        intervals [54]:
+            xmin = 234.75454775281406 
+            xmax = 236.17119195395668 
+            text = "g" 
+        intervals [55]:
+            xmin = 236.17119195395668 
+            xmax = 243.51424511257218 
+            text = "" 
+        intervals [56]:
+            xmin = 243.51424511257218 
+            xmax = 246.90666666666667 
+            text = "gse" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 246.90666666666667 
+        intervals: size = 56 
+        intervals [1]:
+            xmin = 0 
+            xmax = 41.38151166987488 
+            text = "" 
+        intervals [2]:
+            xmin = 41.38151166987488 
+            xmax = 43.105590148159685 
+            text = "High" 
+        intervals [3]:
+            xmin = 43.105590148159685 
+            xmax = 57.796793600471744 
+            text = "" 
+        intervals [4]:
+            xmin = 57.796793600471744 
+            xmax = 62.359899323685546 
+            text = "Climbing. Heights unimagined unattained. To drop bodies from the sky" 
+        intervals [5]:
+            xmin = 62.359899323685546 
+            xmax = 64.58684807256236 
+            text = "" 
+        intervals [6]:
+            xmin = 64.58684807256236 
+            xmax = 69.45497935570768 
+            text = "Falling. Alive in mid air moving fast. Heads exploding on the ground" 
+        intervals [7]:
+            xmin = 69.45497935570768 
+            xmax = 71.43542619336296 
+            text = "" 
+        intervals [8]:
+            xmin = 71.43542619336296 
+            xmax = 76.00993124841031 
+            text = "Throwing. Corrupted souls in front of trains. Just to watch the bodies fly" 
+        intervals [9]:
+            xmin = 76.00993124841031 
+            xmax = 78.22510841435671 
+            text = "" 
+        intervals [10]:
+            xmin = 78.22510841435671 
+            xmax = 83.28976384291913 
+            text = "Grinning. At the site of shredded innards. Brains exploded all around" 
+        intervals [11]:
+            xmin = 83.28976384291913 
+            xmax = 85.0085316209157 
+            text = "" 
+        intervals [12]:
+            xmin = 85.0085316209157 
+            xmax = 93.89357887536104 
+            text = "High velocity impact spatter. High velocity impact spatter." 
+        intervals [13]:
+            xmin = 93.89357887536104 
+            xmax = 95.37820861678006 
+            text = "High" 
+        intervals [14]:
+            xmin = 95.37820861678006 
+            xmax = 95.62151780624335 
+            text = "" 
+        intervals [15]:
+            xmin = 95.62151780624335 
+            xmax = 98.29777762201458 
+            text = "velocoty impact splatter." 
+        intervals [16]:
+            xmin = 98.29777762201458 
+            xmax = 100.04722638029578 
+            text = "High" 
+        intervals [17]:
+            xmin = 100.04722638029578 
+            xmax = 107.4152321607356 
+            text = "velocoty impact splatter. Slamming. You into walls excessive speed. Creates catastrophic sounds." 
+        intervals [18]:
+            xmin = 107.4152321607356 
+            xmax = 109.47869500731302 
+            text = "" 
+        intervals [19]:
+            xmin = 109.47869500731302 
+            xmax = 113.91766157952567 
+            text = "Scraping. Flesh blood and guts from off the pavement. Before stench of death sets in" 
+        intervals [20]:
+            xmin = 113.91766157952567 
+            xmax = 116.37625796643351 
+            text = "" 
+        intervals [21]:
+            xmin = 116.37625796643351 
+            xmax = 120.90557319008796 
+            text = "Piercing. Between the eyes and unexpected. Liquid red spraying behind" 
+        intervals [22]:
+            xmin = 120.90557319008796 
+            xmax = 123.21185186368196 
+            text = "" 
+        intervals [23]:
+            xmin = 123.21185186368196 
+            xmax = 128.12061677571802 
+            text = "Killing. Impact spatter brutal force. Something I will always need." 
+        intervals [24]:
+            xmin = 128.12061677571802 
+            xmax = 130.0351999659365 
+            text = "" 
+        intervals [25]:
+            xmin = 130.0351999659365 
+            xmax = 138.93466237331825 
+            text = "High velocity impact splatter. High velocity impact splatter." 
+        intervals [26]:
+            xmin = 138.93466237331825 
+            xmax = 140.2466183505077 
+            text = "High" 
+        intervals [27]:
+            xmin = 140.2466183505077 
+            xmax = 140.70887396291104 
+            text = "" 
+        intervals [28]:
+            xmin = 140.70887396291104 
+            xmax = 143.35062818792738 
+            text = "velocity impact splatter." 
+        intervals [29]:
+            xmin = 143.35062818792738 
+            xmax = 144.68451464972094 
+            text = "High   " 
+        intervals [30]:
+            xmin = 144.68451464972094 
+            xmax = 145.06328647968292 
+            text = "" 
+        intervals [31]:
+            xmin = 145.06328647968292 
+            xmax = 147.78353652879426 
+            text = "velocity impact splatter " 
+        intervals [32]:
+            xmin = 147.78353652879426 
+            xmax = 153.26979754939927 
+            text = "" 
+        intervals [33]:
+            xmin = 153.26979754939927 
+            xmax = 153.52598491226763 
+            text = "Uh" 
+        intervals [34]:
+            xmin = 153.52598491226763 
+            xmax = 160.68656685836527 
+            text = "" 
+        intervals [35]:
+            xmin = 160.68656685836527 
+            xmax = 162.1568872378149 
+            text = "High" 
+        intervals [36]:
+            xmin = 162.1568872378149 
+            xmax = 163.5397952544606 
+            text = "velocotiy impact splatter." 
+        intervals [37]:
+            xmin = 163.5397952544606 
+            xmax = 170.90691179186024 
+            text = "" 
+        intervals [38]:
+            xmin = 170.90691179186024 
+            xmax = 172.3492212091363 
+            text = "High" 
+        intervals [39]:
+            xmin = 172.3492212091363 
+            xmax = 173.80872890644255 
+            text = "velocity impact splatter." 
+        intervals [40]:
+            xmin = 173.80872890644255 
+            xmax = 175.44739958220438 
+            text = "" 
+        intervals [41]:
+            xmin = 175.44739958220438 
+            xmax = 178.41234432436903 
+            text = " A necro potion is made." 
+        intervals [42]:
+            xmin = 178.41234432436903 
+            xmax = 180.173371150031 
+            text = "" 
+        intervals [43]:
+            xmin = 180.173371150031 
+            xmax = 186.1574482257786 
+            text = "From the remains of the dead." 
+        intervals [44]:
+            xmin = 186.1574482257786 
+            xmax = 202.00798424753884 
+            text = "" 
+        intervals [45]:
+            xmin = 202.00798424753884 
+            xmax = 205.74043682816077 
+            text = "Daily ritual intake." 
+        intervals [46]:
+            xmin = 205.74043682816077 
+            xmax = 206.43260067262096 
+            text = "" 
+        intervals [47]:
+            xmin = 206.43260067262096 
+            xmax = 211.66938371710896 
+            text = "Drinking remains of the dead." 
+        intervals [48]:
+            xmin = 211.66938371710896 
+            xmax = 219.3929694736581 
+            text = "" 
+        intervals [49]:
+            xmin = 219.3929694736581 
+            xmax = 223.01734358187454 
+            text = "Death after life after death." 
+        intervals [50]:
+            xmin = 223.01734358187454 
+            xmax = 223.7868618214056 
+            text = "" 
+        intervals [51]:
+            xmin = 223.7868618214056 
+            xmax = 228.00272674911025 
+            text = "Only obtained in one way." 
+        intervals [52]:
+            xmin = 228.00272674911025 
+            xmax = 233.2728587748978 
+            text = "" 
+        intervals [53]:
+            xmin = 233.2728587748978 
+            xmax = 234.75454775281406 
+            text = "High" 
+        intervals [54]:
+            xmin = 234.75454775281406 
+            xmax = 236.17119195395668 
+            text = "velocity impact splatter." 
+        intervals [55]:
+            xmin = 236.17119195395668 
+            xmax = 243.51424511257218 
+            text = "" 
+        intervals [56]:
+            xmin = 243.51424511257218 
+            xmax = 246.90666666666667 
+            text = "High" 
diff --git a/textgrid/01.TextGrid b/textgrid/01.TextGrid
new file mode 100644 (file)
index 0000000..1c99259
--- /dev/null
@@ -0,0 +1,604 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 197.30666666666667 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 197.30666666666667 
+        intervals: size = 73 
+        intervals [1]:
+            xmin = 0 
+            xmax = 16.238570035796254 
+            text = "" 
+        intervals [2]:
+            xmin = 16.238570035796254 
+            xmax = 24.389793125404513 
+            text = "g" 
+        intervals [3]:
+            xmin = 24.389793125404513 
+            xmax = 25.72894122482198 
+            text = "" 
+        intervals [4]:
+            xmin = 25.72894122482198 
+            xmax = 26.39275193794119 
+            text = "g" 
+        intervals [5]:
+            xmin = 26.39275193794119 
+            xmax = 27.319309544706893 
+            text = "" 
+        intervals [6]:
+            xmin = 27.319309544706893 
+            xmax = 27.88660611504798 
+            text = "g" 
+        intervals [7]:
+            xmin = 27.88660611504798 
+            xmax = 28.842495885840858 
+            text = "" 
+        intervals [8]:
+            xmin = 28.842495885840858 
+            xmax = 29.420148274102615 
+            text = "g" 
+        intervals [9]:
+            xmin = 29.420148274102615 
+            xmax = 30.359792289823364 
+            text = "" 
+        intervals [10]:
+            xmin = 30.359792289823364 
+            xmax = 33.18308876409898 
+            text = "g" 
+        intervals [11]:
+            xmin = 33.18308876409898 
+            xmax = 42.30635367001355 
+            text = "" 
+        intervals [12]:
+            xmin = 42.30635367001355 
+            xmax = 43.172083420437716 
+            text = "g" 
+        intervals [13]:
+            xmin = 43.172083420437716 
+            xmax = 45.66037735335719 
+            text = "" 
+        intervals [14]:
+            xmin = 45.66037735335719 
+            xmax = 46.66314822879972 
+            text = "g" 
+        intervals [15]:
+            xmin = 46.66314822879972 
+            xmax = 49.206667885821325 
+            text = "" 
+        intervals [16]:
+            xmin = 49.206667885821325 
+            xmax = 50.02881179390365 
+            text = "g" 
+        intervals [17]:
+            xmin = 50.02881179390365 
+            xmax = 52.5857251618175 
+            text = "" 
+        intervals [18]:
+            xmin = 52.5857251618175 
+            xmax = 54.44729672222828 
+            text = "g" 
+        intervals [19]:
+            xmin = 54.44729672222828 
+            xmax = 55.09795883329724 
+            text = "" 
+        intervals [20]:
+            xmin = 55.09795883329724 
+            xmax = 56.79421315054716 
+            text = "g" 
+        intervals [21]:
+            xmin = 56.79421315054716 
+            xmax = 58.30873738838865 
+            text = "" 
+        intervals [22]:
+            xmin = 58.30873738838865 
+            xmax = 59.80078958737681 
+            text = "g" 
+        intervals [23]:
+            xmin = 59.80078958737681 
+            xmax = 61.40513935804181 
+            text = "" 
+        intervals [24]:
+            xmin = 61.40513935804181 
+            xmax = 66.7379892521374 
+            text = "g" 
+        intervals [25]:
+            xmin = 66.7379892521374 
+            xmax = 72.2031491728007 
+            text = "" 
+        intervals [26]:
+            xmin = 72.2031491728007 
+            xmax = 80.32052422138598 
+            text = "g" 
+        intervals [27]:
+            xmin = 80.32052422138598 
+            xmax = 81.58633895815234 
+            text = "" 
+        intervals [28]:
+            xmin = 81.58633895815234 
+            xmax = 82.25647924064893 
+            text = "g" 
+        intervals [29]:
+            xmin = 82.25647924064893 
+            xmax = 83.13236434671902 
+            text = "" 
+        intervals [30]:
+            xmin = 83.13236434671902 
+            xmax = 83.84113450500539 
+            text = "g" 
+        intervals [31]:
+            xmin = 83.84113450500539 
+            xmax = 84.70242993026142 
+            text = "" 
+        intervals [32]:
+            xmin = 84.70242993026142 
+            xmax = 85.32978016446586 
+            text = "g" 
+        intervals [33]:
+            xmin = 85.32978016446586 
+            xmax = 86.2905296413272 
+            text = "" 
+        intervals [34]:
+            xmin = 86.2905296413272 
+            xmax = 89.15167195442461 
+            text = "g" 
+        intervals [35]:
+            xmin = 89.15167195442461 
+            xmax = 98.16680796391782 
+            text = "" 
+        intervals [36]:
+            xmin = 98.16680796391782 
+            xmax = 98.89249167319122 
+            text = "g" 
+        intervals [37]:
+            xmin = 98.89249167319122 
+            xmax = 101.4867459876101 
+            text = "" 
+        intervals [38]:
+            xmin = 101.4867459876101 
+            xmax = 102.52411679824354 
+            text = "g" 
+        intervals [39]:
+            xmin = 102.52411679824354 
+            xmax = 105.02519769414948 
+            text = "" 
+        intervals [40]:
+            xmin = 105.02519769414948 
+            xmax = 105.94925295593913 
+            text = "g" 
+        intervals [41]:
+            xmin = 105.94925295593913 
+            xmax = 108.46511670957877 
+            text = "" 
+        intervals [42]:
+            xmin = 108.46511670957877 
+            xmax = 110.30406234756033 
+            text = "g" 
+        intervals [43]:
+            xmin = 110.30406234756033 
+            xmax = 110.97470915277142 
+            text = "" 
+        intervals [44]:
+            xmin = 110.97470915277142 
+            xmax = 112.60590614340725 
+            text = "g" 
+        intervals [45]:
+            xmin = 112.60590614340725 
+            xmax = 114.12022793053762 
+            text = "" 
+        intervals [46]:
+            xmin = 114.12022793053762 
+            xmax = 115.72824967566754 
+            text = "g" 
+        intervals [47]:
+            xmin = 115.72824967566754 
+            xmax = 117.27176483715321 
+            text = "" 
+        intervals [48]:
+            xmin = 117.27176483715321 
+            xmax = 122.58693349111158 
+            text = "g" 
+        intervals [49]:
+            xmin = 122.58693349111158 
+            xmax = 129.40023304212227 
+            text = "" 
+        intervals [50]:
+            xmin = 129.40023304212227 
+            xmax = 131.07966146823225 
+            text = "g" 
+        intervals [51]:
+            xmin = 131.07966146823225 
+            xmax = 134.55177096930268 
+            text = "" 
+        intervals [52]:
+            xmin = 134.55177096930268 
+            xmax = 138.83167055910607 
+            text = "g" 
+        intervals [53]:
+            xmin = 138.83167055910607 
+            xmax = 143.9033447184431 
+            text = "" 
+        intervals [54]:
+            xmin = 143.9033447184431 
+            xmax = 149.5873068712633 
+            text = "g" 
+        intervals [55]:
+            xmin = 149.5873068712633 
+            xmax = 163.58602386277258 
+            text = "" 
+        intervals [56]:
+            xmin = 163.58602386277258 
+            xmax = 164.15947034141692 
+            text = "g" 
+        intervals [57]:
+            xmin = 164.15947034141692 
+            xmax = 165.13265785665465 
+            text = "" 
+        intervals [58]:
+            xmin = 165.13265785665465 
+            xmax = 165.76321326987508 
+            text = "g" 
+        intervals [59]:
+            xmin = 165.76321326987508 
+            xmax = 166.68363155700303 
+            text = "" 
+        intervals [60]:
+            xmin = 166.68363155700303 
+            xmax = 167.3029537539389 
+            text = "g" 
+        intervals [61]:
+            xmin = 167.3029537539389 
+            xmax = 168.22203574323612 
+            text = "" 
+        intervals [62]:
+            xmin = 168.22203574323612 
+            xmax = 168.82170708082154 
+            text = "g" 
+        intervals [63]:
+            xmin = 168.82170708082154 
+            xmax = 169.81442635988628 
+            text = "" 
+        intervals [64]:
+            xmin = 169.81442635988628 
+            xmax = 172.65149642954512 
+            text = "g" 
+        intervals [65]:
+            xmin = 172.65149642954512 
+            xmax = 181.63918520695384 
+            text = "" 
+        intervals [66]:
+            xmin = 181.63918520695384 
+            xmax = 182.44771127332197 
+            text = "g" 
+        intervals [67]:
+            xmin = 182.44771127332197 
+            xmax = 185.0433936743622 
+            text = "" 
+        intervals [68]:
+            xmin = 185.0433936743622 
+            xmax = 186.0863260478107 
+            text = "g" 
+        intervals [69]:
+            xmin = 186.0863260478107 
+            xmax = 188.5827461571781 
+            text = "" 
+        intervals [70]:
+            xmin = 188.5827461571781 
+            xmax = 189.45066221747985 
+            text = "g" 
+        intervals [71]:
+            xmin = 189.45066221747985 
+            xmax = 192.23771751149263 
+            text = "" 
+        intervals [72]:
+            xmin = 192.23771751149263 
+            xmax = 194.17455937446624 
+            text = "g" 
+        intervals [73]:
+            xmin = 194.17455937446624 
+            xmax = 197.30666666666667 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 197.30666666666667 
+        intervals: size = 73 
+        intervals [1]:
+            xmin = 0 
+            xmax = 16.238570035796254 
+            text = "" 
+        intervals [2]:
+            xmin = 16.238570035796254 
+            xmax = 24.389793125404513 
+            text = "A sharpened sense of supreme evil. Triggered in the mind. A gruesome transformation of the body. And the soul. A dreaded life of worthlessness. Now has a new meaning. Wreak havoc like a vile wretch. Possessed until the end." 
+        intervals [3]:
+            xmin = 24.389793125404513 
+            xmax = 25.72894122482198 
+            text = "" 
+        intervals [4]:
+            xmin = 25.72894122482198 
+            xmax = 26.39275193794119 
+            text = "Anger" 
+        intervals [5]:
+            xmin = 26.39275193794119 
+            xmax = 27.319309544706893 
+            text = "" 
+        intervals [6]:
+            xmin = 27.319309544706893 
+            xmax = 27.88660611504798 
+            text = "Released" 
+        intervals [7]:
+            xmin = 27.88660611504798 
+            xmax = 28.842495885840858 
+            text = "" 
+        intervals [8]:
+            xmin = 28.842495885840858 
+            xmax = 29.420148274102615 
+            text = "Torture" 
+        intervals [9]:
+            xmin = 29.420148274102615 
+            xmax = 30.359792289823364 
+            text = "" 
+        intervals [10]:
+            xmin = 30.359792289823364 
+            xmax = 33.18308876409898 
+            text = "Returning" 
+        intervals [11]:
+            xmin = 33.18308876409898 
+            xmax = 42.30635367001355 
+            text = "" 
+        intervals [12]:
+            xmin = 42.30635367001355 
+            xmax = 43.172083420437716 
+            text = "Sadistic" 
+        intervals [13]:
+            xmin = 43.172083420437716 
+            xmax = 45.66037735335719 
+            text = "" 
+        intervals [14]:
+            xmin = 45.66037735335719 
+            xmax = 46.66314822879972 
+            text = "embodiment." 
+        intervals [15]:
+            xmin = 46.66314822879972 
+            xmax = 49.206667885821325 
+            text = "" 
+        intervals [16]:
+            xmin = 49.206667885821325 
+            xmax = 50.02881179390365 
+            text = "Sadistic" 
+        intervals [17]:
+            xmin = 50.02881179390365 
+            xmax = 52.5857251618175 
+            text = "" 
+        intervals [18]:
+            xmin = 52.5857251618175 
+            xmax = 54.44729672222828 
+            text = "embodiment" 
+        intervals [19]:
+            xmin = 54.44729672222828 
+            xmax = 55.09795883329724 
+            text = "" 
+        intervals [20]:
+            xmin = 55.09795883329724 
+            xmax = 56.79421315054716 
+            text = "Spreading the corruption" 
+        intervals [21]:
+            xmin = 56.79421315054716 
+            xmax = 58.30873738838865 
+            text = "" 
+        intervals [22]:
+            xmin = 58.30873738838865 
+            xmax = 59.80078958737681 
+            text = "Flowing is destruction" 
+        intervals [23]:
+            xmin = 59.80078958737681 
+            xmax = 61.40513935804181 
+            text = "" 
+        intervals [24]:
+            xmin = 61.40513935804181 
+            xmax = 66.7379892521374 
+            text = "To obliterate all that is good in this world" 
+        intervals [25]:
+            xmin = 66.7379892521374 
+            xmax = 72.2031491728007 
+            text = "" 
+        intervals [26]:
+            xmin = 72.2031491728007 
+            xmax = 80.32052422138598 
+            text = "A sharpened sense of supreme evil. Triggered in the mind. A gruesome transformation of the body. And the soul. A dreaded life of worthlessness. Now has a new meaning. Wreak havoc like a vile wretch. Possessed until the end." 
+        intervals [27]:
+            xmin = 80.32052422138598 
+            xmax = 81.58633895815234 
+            text = "" 
+        intervals [28]:
+            xmin = 81.58633895815234 
+            xmax = 82.25647924064893 
+            text = "Anger" 
+        intervals [29]:
+            xmin = 82.25647924064893 
+            xmax = 83.13236434671902 
+            text = "" 
+        intervals [30]:
+            xmin = 83.13236434671902 
+            xmax = 83.84113450500539 
+            text = "Release" 
+        intervals [31]:
+            xmin = 83.84113450500539 
+            xmax = 84.70242993026142 
+            text = "" 
+        intervals [32]:
+            xmin = 84.70242993026142 
+            xmax = 85.32978016446586 
+            text = "Torture" 
+        intervals [33]:
+            xmin = 85.32978016446586 
+            xmax = 86.2905296413272 
+            text = "" 
+        intervals [34]:
+            xmin = 86.2905296413272 
+            xmax = 89.15167195442461 
+            text = "Returning" 
+        intervals [35]:
+            xmin = 89.15167195442461 
+            xmax = 98.16680796391782 
+            text = " " 
+        intervals [36]:
+            xmin = 98.16680796391782 
+            xmax = 98.89249167319122 
+            text = "Sadistic" 
+        intervals [37]:
+            xmin = 98.89249167319122 
+            xmax = 101.4867459876101 
+            text = "" 
+        intervals [38]:
+            xmin = 101.4867459876101 
+            xmax = 102.52411679824354 
+            text = "embodiment" 
+        intervals [39]:
+            xmin = 102.52411679824354 
+            xmax = 105.02519769414948 
+            text = "" 
+        intervals [40]:
+            xmin = 105.02519769414948 
+            xmax = 105.94925295593913 
+            text = "Sadistic" 
+        intervals [41]:
+            xmin = 105.94925295593913 
+            xmax = 108.46511670957877 
+            text = "" 
+        intervals [42]:
+            xmin = 108.46511670957877 
+            xmax = 110.30406234756033 
+            text = "embodiment" 
+        intervals [43]:
+            xmin = 110.30406234756033 
+            xmax = 110.97470915277142 
+            text = "" 
+        intervals [44]:
+            xmin = 110.97470915277142 
+            xmax = 112.60590614340725 
+            text = "Spreading the corruption" 
+        intervals [45]:
+            xmin = 112.60590614340725 
+            xmax = 114.12022793053762 
+            text = "" 
+        intervals [46]:
+            xmin = 114.12022793053762 
+            xmax = 115.72824967566754 
+            text = "Flowing is destruction" 
+        intervals [47]:
+            xmin = 115.72824967566754 
+            xmax = 117.27176483715321 
+            text = "" 
+        intervals [48]:
+            xmin = 117.27176483715321 
+            xmax = 122.58693349111158 
+            text = "To obliterate all that is good in this world " 
+        intervals [49]:
+            xmin = 122.58693349111158 
+            xmax = 129.40023304212227 
+            text = "" 
+        intervals [50]:
+            xmin = 129.40023304212227 
+            xmax = 131.07966146823225 
+            text = "You were in the way" 
+        intervals [51]:
+            xmin = 131.07966146823225 
+            xmax = 134.55177096930268 
+            text = "" 
+        intervals [52]:
+            xmin = 134.55177096930268 
+            xmax = 138.83167055910607 
+            text = "The mutilation leads to death. Existence now irrelevant. Never will be in the way again" 
+        intervals [53]:
+            xmin = 138.83167055910607 
+            xmax = 143.9033447184431 
+            text = "" 
+        intervals [54]:
+            xmin = 143.9033447184431 
+            xmax = 149.5873068712633 
+            text = "The mutilation leads to death. Existence now irrelevant. Never will be in the way again" 
+        intervals [55]:
+            xmin = 149.5873068712633 
+            xmax = 163.58602386277258 
+            text = "" 
+        intervals [56]:
+            xmin = 163.58602386277258 
+            xmax = 164.15947034141692 
+            text = "Vicious" 
+        intervals [57]:
+            xmin = 164.15947034141692 
+            xmax = 165.13265785665465 
+            text = "" 
+        intervals [58]:
+            xmin = 165.13265785665465 
+            xmax = 165.76321326987508 
+            text = "Anger" 
+        intervals [59]:
+            xmin = 165.76321326987508 
+            xmax = 166.68363155700303 
+            text = "" 
+        intervals [60]:
+            xmin = 166.68363155700303 
+            xmax = 167.3029537539389 
+            text = "Released" 
+        intervals [61]:
+            xmin = 167.3029537539389 
+            xmax = 168.22203574323612 
+            text = "" 
+        intervals [62]:
+            xmin = 168.22203574323612 
+            xmax = 168.82170708082154 
+            text = "Torture" 
+        intervals [63]:
+            xmin = 168.82170708082154 
+            xmax = 169.81442635988628 
+            text = "" 
+        intervals [64]:
+            xmin = 169.81442635988628 
+            xmax = 172.65149642954512 
+            text = "Returning" 
+        intervals [65]:
+            xmin = 172.65149642954512 
+            xmax = 181.63918520695384 
+            text = "" 
+        intervals [66]:
+            xmin = 181.63918520695384 
+            xmax = 182.44771127332197 
+            text = "Sadistic" 
+        intervals [67]:
+            xmin = 182.44771127332197 
+            xmax = 185.0433936743622 
+            text = "" 
+        intervals [68]:
+            xmin = 185.0433936743622 
+            xmax = 186.0863260478107 
+            text = "embodiment" 
+        intervals [69]:
+            xmin = 186.0863260478107 
+            xmax = 188.5827461571781 
+            text = "" 
+        intervals [70]:
+            xmin = 188.5827461571781 
+            xmax = 189.45066221747985 
+            text = "Sadistic" 
+        intervals [71]:
+            xmin = 189.45066221747985 
+            xmax = 192.23771751149263 
+            text = "" 
+        intervals [72]:
+            xmin = 192.23771751149263 
+            xmax = 194.17455937446624 
+            text = "embodiment" 
+        intervals [73]:
+            xmin = 194.17455937446624 
+            xmax = 197.30666666666667 
+            text = "" 
diff --git a/textgrid/02.TextGrid b/textgrid/02.TextGrid
new file mode 100644 (file)
index 0000000..97c7037
--- /dev/null
@@ -0,0 +1,332 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 230.66666666666666 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 230.66666666666666 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 230.66666666666666 
+            text = " " 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 230.66666666666666 
+        intervals: size = 77 
+        intervals [1]:
+            xmin = 0 
+            xmax = 21.524106173646928 
+            text = "" 
+        intervals [2]:
+            xmin = 21.524106173646928 
+            xmax = 24.695431470289993 
+            text = "Viral contagion unleashed upon the earth " 
+        intervals [3]:
+            xmin = 24.695431470289993 
+            xmax = 25.44907665140001 
+            text = "" 
+        intervals [4]:
+            xmin = 25.44907665140001 
+            xmax = 26.884579916059995 
+            text = "Billions of infected dead" 
+        intervals [5]:
+            xmin = 26.884579916059995 
+            xmax = 27.050503970535978 
+            text = "" 
+        intervals [6]:
+            xmin = 27.050503970535978 
+            xmax = 28.520620688154608 
+            text = "soon rise " 
+        intervals [7]:
+            xmin = 28.520620688154608 
+            xmax = 29.406422549942715 
+            text = "" 
+        intervals [8]:
+            xmin = 29.406422549942715 
+            xmax = 32.56165577941343 
+            text = "Stalking the living to feast upon the flesh" 
+        intervals [9]:
+            xmin = 32.56165577941343 
+            xmax = 33.14272582125778 
+            text = "" 
+        intervals [10]:
+            xmin = 33.14272582125778 
+            xmax = 33.776983900464366 
+            text = "It's fight" 
+        intervals [11]:
+            xmin = 33.776983900464366 
+            xmax = 34.197146425508386 
+            text = "" 
+        intervals [12]:
+            xmin = 34.197146425508386 
+            xmax = 34.89028078210967 
+            text = "or flee" 
+        intervals [13]:
+            xmin = 34.89028078210967 
+            xmax = 35.11508111398036 
+            text = "" 
+        intervals [14]:
+            xmin = 35.11508111398036 
+            xmax = 36.47726407733965 
+            text = "to survive   " 
+        intervals [15]:
+            xmin = 36.47726407733965 
+            xmax = 37.472967083005 
+            text = "" 
+        intervals [16]:
+            xmin = 37.472967083005 
+            xmax = 40.40946117426822 
+            text = "Living out the days and nights in absolute fear " 
+        intervals [17]:
+            xmin = 40.40946117426822 
+            xmax = 41.42675102305211 
+            text = " " 
+        intervals [18]:
+            xmin = 41.42675102305211 
+            xmax = 43.80856406311059 
+            text = "Never knowing when and where the threat of the undead" 
+        intervals [19]:
+            xmin = 43.80856406311059 
+            xmax = 44.15111694977068 
+            text = "" 
+        intervals [20]:
+            xmin = 44.15111694977068 
+            xmax = 45.12792791563736 
+            text = "draws near" 
+        intervals [21]:
+            xmin = 45.12792791563736 
+            xmax = 45.45172894774875 
+            text = "" 
+        intervals [22]:
+            xmin = 45.45172894774875 
+            xmax = 45.9495011111767 
+            text = "Thoughts" 
+        intervals [23]:
+            xmin = 45.9495011111767 
+            xmax = 46.12345374893378 
+            text = "" 
+        intervals [24]:
+            xmin = 46.12345374893378 
+            xmax = 46.95575021574073 
+            text = "of those" 
+        intervals [25]:
+            xmin = 46.95575021574073 
+            xmax = 47.15646479776813 
+            text = "" 
+        intervals [26]:
+            xmin = 47.15646479776813 
+            xmax = 48.47315245586787 
+            text = "left behind" 
+        intervals [27]:
+            xmin = 48.47315245586787 
+            xmax = 49.05689869213924 
+            text = " " 
+        intervals [28]:
+            xmin = 49.05689869213924 
+            xmax = 52.602856307956635 
+            text = "Are slowly tormenting you mind" 
+        intervals [29]:
+            xmin = 52.602856307956635 
+            xmax = 65.99927711966734 
+            text = "" 
+        intervals [30]:
+            xmin = 65.99927711966734 
+            xmax = 68.83816911757134 
+            text = "Killing is essential to survive" 
+        intervals [31]:
+            xmin = 68.83816911757134 
+            xmax = 69.77483716703253 
+            text = "" 
+        intervals [32]:
+            xmin = 69.77483716703253 
+            xmax = 73.16750579324768 
+            text = "The world you once knew forever changed " 
+        intervals [33]:
+            xmin = 73.16750579324768 
+            xmax = 73.85261156656787 
+            text = " " 
+        intervals [34]:
+            xmin = 73.85261156656787 
+            xmax = 76.96982794806047 
+            text = "Scavenging just to stay alive " 
+        intervals [35]:
+            xmin = 76.96982794806047 
+            xmax = 77.87973405325134 
+            text = " " 
+        intervals [36]:
+            xmin = 77.87973405325134 
+            xmax = 81.70594410064567 
+            text = "Time to release your inner rage " 
+        intervals [37]:
+            xmin = 81.70594410064567 
+            xmax = 84.08059581037494 
+            text = " " 
+        intervals [38]:
+            xmin = 84.08059581037494 
+            xmax = 86.80496173709352 
+            text = "Fire up the chainsaw" 
+        intervals [39]:
+            xmin = 86.80496173709352 
+            xmax = 88.22869717227455 
+            text = "" 
+        intervals [40]:
+            xmin = 88.22869717227455 
+            xmax = 90.9355513356937 
+            text = "Hack all their heads off" 
+        intervals [41]:
+            xmin = 90.9355513356937 
+            xmax = 92.41281065941537 
+            text = "" 
+        intervals [42]:
+            xmin = 92.41281065941537 
+            xmax = 95.09254853382629 
+            text = "Fire up the chainsaw" 
+        intervals [43]:
+            xmin = 95.09254853382629 
+            xmax = 96.60192219067233 
+            text = "" 
+        intervals [44]:
+            xmin = 96.60192219067233 
+            xmax = 115.33339980284987 
+            text = "Hack their fucking heads off. If you want to live you have to kill or become. There's no other way you have to kill or become. If you want to live you have to kill or become. There´s no other way you have to kill or become" 
+        intervals [45]:
+            xmin = 115.33339980284987 
+            xmax = 117.52178093690061 
+            text = "" 
+        intervals [46]:
+            xmin = 117.52178093690061 
+            xmax = 120.28891537144398 
+            text = "Fire up the chainsaw" 
+        intervals [47]:
+            xmin = 120.28891537144398 
+            xmax = 121.65917752109209 
+            text = "" 
+        intervals [48]:
+            xmin = 121.65917752109209 
+            xmax = 124.08164638577006 
+            text = "Hack all their heads off" 
+        intervals [49]:
+            xmin = 124.08164638577006 
+            xmax = 125.84258231875711 
+            text = "" 
+        intervals [50]:
+            xmin = 125.84258231875711 
+            xmax = 128.30822463900552 
+            text = "Fire up the chainsaw" 
+        intervals [51]:
+            xmin = 128.30822463900552 
+            xmax = 129.99976953199706 
+            text = "" 
+        intervals [52]:
+            xmin = 129.99976953199706 
+            xmax = 134.17114360484672 
+            text = "Hack their fucking heads off " 
+        intervals [53]:
+            xmin = 134.17114360484672 
+            xmax = 160.60870645061837 
+            text = " " 
+        intervals [54]:
+            xmin = 160.60870645061837 
+            xmax = 163.7763049186295 
+            text = " Viral contagion unleashed upon the earth" 
+        intervals [55]:
+            xmin = 163.7763049186295 
+            xmax = 164.57497290842716 
+            text = "" 
+        intervals [56]:
+            xmin = 164.57497290842716 
+            xmax = 167.60904686952333 
+            text = "Billions of infected dead soon rise" 
+        intervals [57]:
+            xmin = 167.60904686952333 
+            xmax = 168.6278163146463 
+            text = "" 
+        intervals [58]:
+            xmin = 168.6278163146463 
+            xmax = 171.6735840723493 
+            text = "Stalking the living to feast upon the flesh" 
+        intervals [59]:
+            xmin = 171.6735840723493 
+            xmax = 172.23227662007437 
+            text = "" 
+        intervals [60]:
+            xmin = 172.23227662007437 
+            xmax = 175.8127458285741 
+            text = "It's fight or flee to survive" 
+        intervals [61]:
+            xmin = 175.8127458285741 
+            xmax = 178.67778296274165 
+            text = "" 
+        intervals [62]:
+            xmin = 178.67778296274165 
+            xmax = 181.41897394467432 
+            text = "Fire up the chainsaw" 
+        intervals [63]:
+            xmin = 181.41897394467432 
+            xmax = 182.8403322316024 
+            text = "" 
+        intervals [64]:
+            xmin = 182.8403322316024 
+            xmax = 185.38541285513807 
+            text = "Hack all their heads off" 
+        intervals [65]:
+            xmin = 185.38541285513807 
+            xmax = 187.03706826974746 
+            text = "" 
+        intervals [66]:
+            xmin = 187.03706826974746 
+            xmax = 190.177593246579 
+            text = "Fire up the chainsaw" 
+        intervals [67]:
+            xmin = 190.177593246579 
+            xmax = 191.22035378863026 
+            text = "" 
+        intervals [68]:
+            xmin = 191.22035378863026 
+            xmax = 209.9389354503699 
+            text = "Hack their fucking heads off.  If you want to live you have to kill or become. There´s no other way you have to kill or become. If you wan to live you have to kill or become. There's no other way you have to kill or become" 
+        intervals [69]:
+            xmin = 209.9389354503699 
+            xmax = 212.0543537409209 
+            text = "" 
+        intervals [70]:
+            xmin = 212.0543537409209 
+            xmax = 214.8293865868281 
+            text = "Fire up the chainsaw" 
+        intervals [71]:
+            xmin = 214.8293865868281 
+            xmax = 216.24397650096125 
+            text = "" 
+        intervals [72]:
+            xmin = 216.24397650096125 
+            xmax = 218.68594722228406 
+            text = "Hack all their heads off" 
+        intervals [73]:
+            xmin = 218.68594722228406 
+            xmax = 220.4592608945467 
+            text = "" 
+        intervals [74]:
+            xmin = 220.4592608945467 
+            xmax = 223.16853922810418 
+            text = "Fire up the chainsaw" 
+        intervals [75]:
+            xmin = 223.16853922810418 
+            xmax = 224.6237393790067 
+            text = "" 
+        intervals [76]:
+            xmin = 224.6237393790067 
+            xmax = 228.8660648716777 
+            text = "Hack their fucking heads off" 
+        intervals [77]:
+            xmin = 228.8660648716777 
+            xmax = 230.66666666666666 
+            text = "" 
diff --git a/textgrid/03.TextGrid b/textgrid/03.TextGrid
new file mode 100644 (file)
index 0000000..1f6a043
--- /dev/null
@@ -0,0 +1,196 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 218.77333333333334 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 218.77333333333334 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 218.77333333333334 
+            text = " " 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 218.77333333333334 
+        intervals: size = 43 
+        intervals [1]:
+            xmin = 0 
+            xmax = 42.12586971463391 
+            text = "" 
+        intervals [2]:
+            xmin = 42.12586971463391 
+            xmax = 45.662806689813024 
+            text = "Trapped beneath rotting remains. A slow decay of life takes its form" 
+        intervals [3]:
+            xmin = 45.662806689813024 
+            xmax = 46.65002677729038 
+            text = "" 
+        intervals [4]:
+            xmin = 46.65002677729038 
+            xmax = 50.7443921927228 
+            text = "A slow decay of life takes its form" 
+        intervals [5]:
+            xmin = 50.7443921927228 
+            xmax = 56.51817401214339 
+            text = "" 
+        intervals [6]:
+            xmin = 56.51817401214339 
+            xmax = 60.66408208697296 
+            text = "Withered death and bone emerge. From cemeteries of the earth. Replacing all that is known from this world" 
+        intervals [7]:
+            xmin = 60.66408208697296 
+            xmax = 64.97958397405421 
+            text = "" 
+        intervals [8]:
+            xmin = 64.97958397405421 
+            xmax = 68.2841733195047 
+            text = "Towering structures take shape. " 
+        intervals [9]:
+            xmin = 68.2841733195047 
+            xmax = 69.45844563408302 
+            text = "" 
+        intervals [10]:
+            xmin = 69.45844563408302 
+            xmax = 74.39049239352329 
+            text = "As more cities are laid to waste" 
+        intervals [11]:
+            xmin = 74.39049239352329 
+            xmax = 75.5439811273126 
+            text = "" 
+        intervals [12]:
+            xmin = 75.5439811273126 
+            xmax = 79.1148074182174 
+            text = "Survivors of this morbid fate. The reborn meek not live not dead. Are left to start a new" 
+        intervals [13]:
+            xmin = 79.1148074182174 
+            xmax = 79.82144916504329 
+            text = "" 
+        intervals [14]:
+            xmin = 79.82144916504329 
+            xmax = 83.29199493737428 
+            text = "Misshapen and half mutated. Not a zombie not a human. Evil creatures grew" 
+        intervals [15]:
+            xmin = 83.29199493737428 
+            xmax = 83.96746131301668 
+            text = "" 
+        intervals [16]:
+            xmin = 83.96746131301668 
+            xmax = 86.63430591274394 
+            text = "Not one thing left alive but them. The strongest will begin to reign" 
+        intervals [17]:
+            xmin = 86.63430591274394 
+            xmax = 87.25781333641385 
+            text = "" 
+        intervals [18]:
+            xmin = 87.25781333641385 
+            xmax = 93.76587892359048 
+            text = "A new society takes place. Where the way of the cannibal. Rules in this skeletal domain" 
+        intervals [19]:
+            xmin = 93.76587892359048 
+            xmax = 95.80266984091216 
+            text = "" 
+        intervals [20]:
+            xmin = 95.80266984091216 
+            xmax = 100.5755145784952 
+            text = "A kingdom of the damned" 
+        intervals [21]:
+            xmin = 100.5755145784952 
+            xmax = 105.7047972091433 
+            text = "" 
+        intervals [22]:
+            xmin = 105.7047972091433 
+            xmax = 109.74720367260318 
+            text = "Carnal war consuming them by. Eating flesh for nourishment. Solution for a short-term survival" 
+        intervals [23]:
+            xmin = 109.74720367260318 
+            xmax = 112.90215020144038 
+            text = "" 
+        intervals [24]:
+            xmin = 112.90215020144038 
+            xmax = 117.58178104490437 
+            text = "Slaughtered are the weakest first. Feeding those with evil thirst. As blood of the dead saturates the ground" 
+        intervals [25]:
+            xmin = 117.58178104490437 
+            xmax = 119.84719135090504 
+            text = "" 
+        intervals [26]:
+            xmin = 119.84719135090504 
+            xmax = 129.54512029661737 
+            text = "Again the end has begun. Another kingdom will be damned" 
+        intervals [27]:
+            xmin = 129.54512029661737 
+            xmax = 130.81291872474617 
+            text = "" 
+        intervals [28]:
+            xmin = 130.81291872474617 
+            xmax = 134.39756604512903 
+            text = "Survivors of this morbid fate. The reborn meek not live not dead. Are left to start a new" 
+        intervals [29]:
+            xmin = 134.39756604512903 
+            xmax = 135.06264063037693 
+            text = "" 
+        intervals [30]:
+            xmin = 135.06264063037693 
+            xmax = 138.47769413850804 
+            text = "Misshapen and half mutated. Not a zombie not a human. Evil creatures grew" 
+        intervals [31]:
+            xmin = 138.47769413850804 
+            xmax = 139.19472767572842 
+            text = "" 
+        intervals [32]:
+            xmin = 139.19472767572842 
+            xmax = 141.834242435931 
+            text = "Not one thing left alive but them. The strongest will begin to reign" 
+        intervals [33]:
+            xmin = 141.834242435931 
+            xmax = 142.48861301135295 
+            text = "" 
+        intervals [34]:
+            xmin = 142.48861301135295 
+            xmax = 146.9637332128667 
+            text = "A new society takes place. Where the way of the cannibal. Rules in this skeletal domain " 
+        intervals [35]:
+            xmin = 146.9637332128667 
+            xmax = 200.3436245494088 
+            text = "" 
+        intervals [36]:
+            xmin = 200.3436245494088 
+            xmax = 203.96573095313983 
+            text = "Survivors of this morbid fate. The reborn meek not live not dead. Are left to start a new" 
+        intervals [37]:
+            xmin = 203.96573095313983 
+            xmax = 204.6186957129961 
+            text = "" 
+        intervals [38]:
+            xmin = 204.6186957129961 
+            xmax = 208.10897668630864 
+            text = "Misshapen and half mutated. Not a zombie not a human. Evil creatures grew" 
+        intervals [39]:
+            xmin = 208.10897668630864 
+            xmax = 208.79890171559074 
+            text = "" 
+        intervals [40]:
+            xmin = 208.79890171559074 
+            xmax = 211.4350309587805 
+            text = "Not one thing left alive but them. The strongest will begin to reign" 
+        intervals [41]:
+            xmin = 211.4350309587805 
+            xmax = 212.08799571863676 
+            text = "" 
+        intervals [42]:
+            xmin = 212.08799571863676 
+            xmax = 216.61978284381698 
+            text = "A new society takes place. Where the way of the cannibal. Rules in this skeletal domain" 
+        intervals [43]:
+            xmin = 216.61978284381698 
+            xmax = 218.77333333333334 
+            text = "" 
diff --git a/textgrid/04.TextGrid b/textgrid/04.TextGrid
new file mode 100644 (file)
index 0000000..15078f8
--- /dev/null
@@ -0,0 +1,428 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 181.25333333333333 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 181.25333333333333 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 181.25333333333333 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 181.25333333333333 
+        intervals: size = 101 
+        intervals [1]:
+            xmin = 0 
+            xmax = 9.231295761745686 
+            text = "" 
+        intervals [2]:
+            xmin = 9.231295761745686 
+            xmax = 11.123292006544066 
+            text = "No hesitation as the bloodshed begins. " 
+        intervals [3]:
+            xmin = 11.123292006544066 
+            xmax = 11.80401023218581 
+            text = "" 
+        intervals [4]:
+            xmin = 11.80401023218581 
+            xmax = 12.484728457827556 
+            text = "Frenzied violence, " 
+        intervals [5]:
+            xmin = 12.484728457827556 
+            xmax = 13.085362186334978 
+            text = " " 
+        intervals [6]:
+            xmin = 13.085362186334978 
+            xmax = 13.495795234148384 
+            text = "raging death" 
+        intervals [7]:
+            xmin = 13.495795234148384 
+            xmax = 14.066397276230434 
+            text = "" 
+        intervals [8]:
+            xmin = 14.066397276230434 
+            xmax = 16.752230792521182 
+            text = "devastation as the killers. savagely murder all in sight" 
+        intervals [9]:
+            xmin = 16.752230792521182 
+            xmax = 18.81440659373 
+            text = "" 
+        intervals [10]:
+            xmin = 18.81440659373 
+            xmax = 20.572561315062593 
+            text = "Mutilators swarming hacking off limbs." 
+        intervals [11]:
+            xmin = 20.572561315062593 
+            xmax = 21.113131670719273 
+            text = "" 
+        intervals [12]:
+            xmin = 21.113131670719273 
+            xmax = 21.903966079920714 
+            text = "Falling bodies," 
+        intervals [13]:
+            xmin = 21.903966079920714 
+            xmax = 22.35444137630128 
+            text = "" 
+        intervals [14]:
+            xmin = 22.35444137630128 
+            xmax = 23.035159601943025 
+            text = "severed heads" 
+        intervals [15]:
+            xmin = 23.035159601943025 
+            xmax = 23.465613774040012 
+            text = "" 
+        intervals [16]:
+            xmin = 23.465613774040012 
+            xmax = 26.301505559625024 
+            text = "Pure destruction by the mob. Butchering all that they can see" 
+        intervals [17]:
+            xmin = 26.301505559625024 
+            xmax = 27.873163815886112 
+            text = "" 
+        intervals [18]:
+            xmin = 27.873163815886112 
+            xmax = 29.21417838480393 
+            text = "Honing their insanity" 
+        intervals [19]:
+            xmin = 29.21417838480393 
+            xmax = 31.45654430456497 
+            text = "" 
+        intervals [20]:
+            xmin = 31.45654430456497 
+            xmax = 33.188371555094704 
+            text = "Headlong into carnage without fear" 
+        intervals [21]:
+            xmin = 33.188371555094704 
+            xmax = 35.31351342861259 
+            text = "" 
+        intervals [22]:
+            xmin = 35.31351342861259 
+            xmax = 37.595921596940784 
+            text = "Ruthless human weapons with no conscience, unaware" 
+        intervals [23]:
+            xmin = 37.595921596940784 
+            xmax = 39.71435636585732 
+            text = "" 
+        intervals [24]:
+            xmin = 39.71435636585732 
+            xmax = 41.666415983506425 
+            text = "Rampaging killers slash with furious hate. " 
+        intervals [25]:
+            xmin = 41.666415983506425 
+            xmax = 42.3171025227228 
+            text = " " 
+        intervals [26]:
+            xmin = 42.3171025227228 
+            xmax = 43.05788412121528 
+            text = "Bones are breaking" 
+        intervals [27]:
+            xmin = 43.05788412121528 
+            xmax = 43.50135174443293 
+            text = "" 
+        intervals [28]:
+            xmin = 43.50135174443293 
+            xmax = 44.172059407932885 
+            text = "blood is spilled " 
+        intervals [29]:
+            xmin = 44.172059407932885 
+            xmax = 44.702619201447774 
+            text = " " 
+        intervals [30]:
+            xmin = 44.702619201447774 
+            xmax = 47.55222576479707 
+            text = "Mutilation feeds their hunger. Brutally killing satisfies " 
+        intervals [31]:
+            xmin = 47.55222576479707 
+            xmax = 49.25352038129885 
+            text = "" 
+        intervals [32]:
+            xmin = 49.25352038129885 
+            xmax = 51.09546381538827 
+            text = "Relentless slaughter innards hang from their blades" 
+        intervals [33]:
+            xmin = 51.09546381538827 
+            xmax = 51.79620316531359 
+            text = "" 
+        intervals [34]:
+            xmin = 51.79620316531359 
+            xmax = 52.49694251523891 
+            text = "Disembowelment" 
+        intervals [35]:
+            xmin = 52.49694251523891 
+            xmax = 52.93740724947769 
+            text = "" 
+        intervals [36]:
+            xmin = 52.93740724947769 
+            xmax = 53.6481571615448 
+            text = "of their pray" 
+        intervals [37]:
+            xmin = 53.6481571615448 
+            xmax = 54.27832162887501 
+            text = " " 
+        intervals [38]:
+            xmin = 54.27832162887501 
+            xmax = 56.570740359344995 
+            text = "In the bloodbath all their vile. Dreams will come to pass " 
+        intervals [39]:
+            xmin = 56.570740359344995 
+            xmax = 58.462736604143366 
+            text = "" 
+        intervals [40]:
+            xmin = 58.462736604143366 
+            xmax = 59.783730048777635 
+            text = "Weaponized psychopathy" 
+        intervals [41]:
+            xmin = 59.783730048777635 
+            xmax = 62.036106530680456 
+            text = "" 
+        intervals [42]:
+            xmin = 62.036106530680456 
+            xmax = 63.537690851949 
+            text = "Headlong into carnage seeking blood" 
+        intervals [43]:
+            xmin = 63.537690851949 
+            xmax = 65.74622068014163 
+            text = "  " 
+        intervals [44]:
+            xmin = 65.74622068014163 
+            xmax = 69.23970648858543 
+            text = "Seething minds distorted by the violence and pain. Driven by adrenaline" 
+        intervals [45]:
+            xmin = 69.23970648858543 
+            xmax = 71.44503304875816 
+            text = "" 
+        intervals [46]:
+            xmin = 71.44503304875816 
+            xmax = 73.13681805072072 
+            text = "Headlong into carnage they attack" 
+        intervals [47]:
+            xmin = 73.13681805072072 
+            xmax = 75.19198617876661 
+            text = "" 
+        intervals [48]:
+            xmin = 75.19198617876661 
+            xmax = 77.34425703925152 
+            text = "Merciless and brutal take the head off of your neck" 
+        intervals [49]:
+            xmin = 77.34425703925152 
+            xmax = 84.27717106124614 
+            text = "" 
+        intervals [50]:
+            xmin = 84.27717106124614 
+            xmax = 90.37360340559641 
+            text = "*" 
+        intervals [51]:
+            xmin = 90.37360340559641 
+            xmax = 98.69448172871844 
+            text = "" 
+        intervals [52]:
+            xmin = 98.69448172871844 
+            xmax = 100.51640403852427 
+            text = "Sweat flies while throats are cut " 
+        intervals [53]:
+            xmin = 100.51640403852427 
+            xmax = 101.13705889131528 
+            text = "" 
+        intervals [54]:
+            xmin = 101.13705889131528 
+            xmax = 101.97794611122565 
+            text = "Tendons snapping" 
+        intervals [55]:
+            xmin = 101.97794611122565 
+            xmax = 102.29828409976294 
+            text = "" 
+        intervals [56]:
+            xmin = 102.29828409976294 
+            xmax = 103.19923469252407 
+            text = "sinew tearing" 
+        intervals [57]:
+            xmin = 103.19923469252407 
+            xmax = 103.52958324320315 
+            text = "" 
+        intervals [58]:
+            xmin = 103.52958324320315 
+            xmax = 105.31766946144062 
+            text = "Blood pours from gaping wounds" 
+        intervals [59]:
+            xmin = 105.31766946144062 
+            xmax = 105.7481236335376 
+            text = "" 
+        intervals [60]:
+            xmin = 105.7481236335376 
+            xmax = 106.5689897291644 
+            text = "Sadistic chaos" 
+        intervals [61]:
+            xmin = 106.5689897291644 
+            xmax = 106.9794227769778 
+            text = "" 
+        intervals [62]:
+            xmin = 106.9794227769778 
+            xmax = 107.31978188979868 
+            text = "grips" 
+        intervals [63]:
+            xmin = 107.31978188979868 
+            xmax = 107.6000776297688 
+            text = "" 
+        intervals [64]:
+            xmin = 107.6000776297688 
+            xmax = 110.02573674658147 
+            text = "you. Bones crack from heavy blows" 
+        intervals [65]:
+            xmin = 110.02573674658147 
+            xmax = 110.53627541581278 
+            text = "" 
+        intervals [66]:
+            xmin = 110.53627541581278 
+            xmax = 111.36715207358137 
+            text = "Fractured cheekbones" 
+        intervals [67]:
+            xmin = 111.36715207358137 
+            xmax = 111.75756399711119 
+            text = "" 
+        intervals [68]:
+            xmin = 111.75756399711119 
+            xmax = 112.57802933465595 
+            text = "shattered skull" 
+        intervals [69]:
+            xmin = 112.57802933465595 
+            xmax = 112.91838844747681 
+            text = "" 
+        intervals [70]:
+            xmin = 112.91838844747681 
+            xmax = 114.64020513586475 
+            text = "Bludgeoning without remorse" 
+        intervals [71]:
+            xmin = 114.64020513586475 
+            xmax = 115.23082830223036 
+            text = "" 
+        intervals [72]:
+            xmin = 115.23082830223036 
+            xmax = 116.74552626414007 
+            text = "Eyes bulge and spurt out" 
+        intervals [73]:
+            xmin = 116.74552626414007 
+            xmax = 117.30611774408032 
+            text = "" 
+        intervals [74]:
+            xmin = 117.30611774408032 
+            xmax = 117.79663528902805 
+            text = "blood" 
+        intervals [75]:
+            xmin = 117.79663528902805 
+            xmax = 138.6500349088814 
+            text = "" 
+        intervals [76]:
+            xmin = 138.6500349088814 
+            xmax = 140.52201002939623 
+            text = "Intensive killing many thousands have died" 
+        intervals [77]:
+            xmin = 140.52201002939623 
+            xmax = 141.16909254251058 
+            text = "" 
+        intervals [78]:
+            xmin = 141.16909254251058 
+            xmax = 141.91988470314487 
+            text = "Bodies rotting" 
+        intervals [79]:
+            xmin = 141.91988470314487 
+            xmax = 142.3403283131001 
+            text = "" 
+        intervals [80]:
+            xmin = 142.3403283131001 
+            xmax = 143.01103597660003 
+            text = "stench of death" 
+        intervals [81]:
+            xmin = 143.01103597660003 
+            xmax = 143.491542959406 
+            text = "" 
+        intervals [82]:
+            xmin = 143.491542959406 
+            xmax = 146.24064314325526 
+            text = "Desolation as the killers. Scavenge the corpses of the slain " 
+        intervals [83]:
+            xmin = 146.24064314325526 
+            xmax = 148.05906161647965 
+            text = "" 
+        intervals [84]:
+            xmin = 148.05906161647965 
+            xmax = 149.93103673699446 
+            text = "Insane desire, killing cannot end" 
+        intervals [85]:
+            xmin = 149.93103673699446 
+            xmax = 150.44467848472516 
+            text = "" 
+        intervals [86]:
+            xmin = 150.44467848472516 
+            xmax = 151.32560795320273 
+            text = "Psychotic evil" 
+        intervals [87]:
+            xmin = 151.32560795320273 
+            xmax = 151.6659670660236 
+            text = "" 
+        intervals [88]:
+            xmin = 151.6659670660236 
+            xmax = 152.33667472952357 
+            text = "mania" 
+        intervals [89]:
+            xmin = 152.33667472952357 
+            xmax = 152.89726620946382 
+            text = "" 
+        intervals [90]:
+            xmin = 152.89726620946382 
+            xmax = 155.74987566179198 
+            text = "Stimulation by the blood. Searching for people they can kill " 
+        intervals [91]:
+            xmin = 155.74987566179198 
+            xmax = 157.32153391805306 
+            text = " " 
+        intervals [92]:
+            xmin = 157.32153391805306 
+            xmax = 158.6157991338023 
+            text = "Weaponized psychopathy " 
+        intervals [93]:
+            xmin = 158.6157991338023 
+            xmax = 160.82813336713804 
+            text = "" 
+        intervals [94]:
+            xmin = 160.82813336713804 
+            xmax = 162.37977049911555 
+            text = "Headlong into carnage seeking blood" 
+        intervals [95]:
+            xmin = 162.37977049911555 
+            xmax = 164.6383531380171 
+            text = "" 
+        intervals [96]:
+            xmin = 164.6383531380171 
+            xmax = 167.98188089337512 
+            text = "Seething minds distorted by the violence and pain. Driven by adrenaline" 
+        intervals [97]:
+            xmin = 167.98188089337512 
+            xmax = 170.1971178261691 
+            text = "" 
+        intervals [98]:
+            xmin = 170.1971178261691 
+            xmax = 171.778786644572 
+            text = "Headlong into carnage they attack" 
+        intervals [99]:
+            xmin = 171.778786644572 
+            xmax = 174.01734815918996 
+            text = "" 
+        intervals [100]:
+            xmin = 174.01734815918996 
+            xmax = 176.1107085366409 
+            text = "Merciless and brutal take the head off of your neck " 
+        intervals [101]:
+            xmin = 176.1107085366409 
+            xmax = 181.25333333333333 
+            text = "" 
diff --git a/textgrid/05.TextGrid b/textgrid/05.TextGrid
new file mode 100644 (file)
index 0000000..7f06a87
--- /dev/null
@@ -0,0 +1,444 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 305.2266666666667 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 305.2266666666667 
+        intervals: size = 5 
+        intervals [1]:
+            xmin = 0 
+            xmax = 39.7708443115504 
+            text = "" 
+        intervals [2]:
+            xmin = 39.7708443115504 
+            xmax = 41.133954811545856 
+            text = "s" 
+        intervals [3]:
+            xmin = 41.133954811545856 
+            xmax = 117.02392626265296 
+            text = "" 
+        intervals [4]:
+            xmin = 117.02392626265296 
+            xmax = 118.09915725810653 
+            text = "s" 
+        intervals [5]:
+            xmin = 118.09915725810653 
+            xmax = 305.2266666666667 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 305.2266666666667 
+        intervals: size = 101 
+        intervals [1]:
+            xmin = 0 
+            xmax = 16.566456549675426 
+            text = "" 
+        intervals [2]:
+            xmin = 16.566456549675426 
+            xmax = 18.19218466893607 
+            text = "Coercion and threats" 
+        intervals [3]:
+            xmin = 18.19218466893607 
+            xmax = 18.617375100127315 
+            text = "" 
+        intervals [4]:
+            xmin = 18.617375100127315 
+            xmax = 19.755384783609763 
+            text = "Made there demands" 
+        intervals [5]:
+            xmin = 19.755384783609763 
+            xmax = 20.13055281113145 
+            text = "" 
+        intervals [6]:
+            xmin = 20.13055281113145 
+            xmax = 22.256504967087675 
+            text = "Held the past over my head" 
+        intervals [7]:
+            xmin = 22.256504967087675 
+            xmax = 23.25695304047884 
+            text = "" 
+        intervals [8]:
+            xmin = 23.25695304047884 
+            xmax = 32.405922992174695 
+            text = "One mistake has made me there tool. Blackmailing a means to the end, I'm forced into the pact. Murderer" 
+        intervals [9]:
+            xmin = 32.405922992174695 
+            xmax = 33.25630385455719 
+            text = "" 
+        intervals [10]:
+            xmin = 33.25630385455719 
+            xmax = 36.86591969058329 
+            text = "Is that what I am?" 
+        intervals [11]:
+            xmin = 36.86591969058329 
+            xmax = 38.1665021859918 
+            text = "" 
+        intervals [12]:
+            xmin = 38.1665021859918 
+            xmax = 39.7708443115504 
+            text = "Homi-" 
+        intervals [13]:
+            xmin = 39.7708443115504 
+            xmax = 41.133954811545856 
+            text = "cide" 
+        intervals [14]:
+            xmin = 41.133954811545856 
+            xmax = 44.660534270249705 
+            text = "How can I stop this?" 
+        intervals [15]:
+            xmin = 44.660534270249705 
+            xmax = 46.373174658407265 
+            text = "" 
+        intervals [16]:
+            xmin = 46.373174658407265 
+            xmax = 49.174429263902525 
+            text = "Not a violent man but now I'm forced to kill" 
+        intervals [17]:
+            xmin = 49.174429263902525 
+            xmax = 49.61212529601116 
+            text = "" 
+        intervals [18]:
+            xmin = 49.61212529601116 
+            xmax = 51.92566146572822 
+            text = "Seems to be no other way" 
+        intervals [19]:
+            xmin = 51.92566146572822 
+            xmax = 52.91310241870481 
+            text = "" 
+        intervals [20]:
+            xmin = 52.91310241870481 
+            xmax = 61.93326588827543 
+            text = "Trapped by an accident, tragic and fatal. The crime was unintentional, but this I cannot prove. Murderer" 
+        intervals [21]:
+            xmin = 61.93326588827543 
+            xmax = 62.74612994790575 
+            text = "" 
+        intervals [22]:
+            xmin = 62.74612994790575 
+            xmax = 65.7135825734598 
+            text = "Is there no way out?" 
+        intervals [23]:
+            xmin = 65.7135825734598 
+            xmax = 67.77700672482908 
+            text = "" 
+        intervals [24]:
+            xmin = 67.77700672482908 
+            xmax = 69.40273484408972 
+            text = "Sui-" 
+        intervals [25]:
+            xmin = 69.40273484408972 
+            xmax = 70.52786282518521 
+            text = "cide" 
+        intervals [26]:
+            xmin = 70.52786282518521 
+            xmax = 71.0280868618808 
+            text = "" 
+        intervals [27]:
+            xmin = 71.0280868618808 
+            xmax = 73.88736664286353 
+            text = "Is that the answer?" 
+        intervals [28]:
+            xmin = 73.88736664286353 
+            xmax = 80.34375650634165 
+            text = "" 
+        intervals [29]:
+            xmin = 80.34375650634165 
+            xmax = 82.49471986413265 
+            text = "Desperation" 
+        intervals [30]:
+            xmin = 82.49471986413265 
+            xmax = 84.98333444669318 
+            text = "" 
+        intervals [31]:
+            xmin = 84.98333444669318 
+            xmax = 86.78764076890235 
+            text = "Deal has been made" 
+        intervals [32]:
+            xmin = 86.78764076890235 
+            xmax = 89.4763449661411 
+            text = "" 
+        intervals [33]:
+            xmin = 89.4763449661411 
+            xmax = 99.60475309959132 
+            text = "No turning back. I'm bound to kill by the murderer's pact. Steel myself for the task at hand. Preparing the tools that I need" 
+        intervals [34]:
+            xmin = 99.60475309959132 
+            xmax = 100.5007783441182 
+            text = "" 
+        intervals [35]:
+            xmin = 100.5007783441182 
+            xmax = 101.92641684870061 
+            text = "Sharpen the blades, " 
+        intervals [36]:
+            xmin = 101.92641684870061 
+            xmax = 102.18053078710402 
+            text = "" 
+        intervals [37]:
+            xmin = 102.18053078710402 
+            xmax = 103.31854047058647 
+            text = "make the kill quick" 
+        intervals [38]:
+            xmin = 103.31854047058647 
+            xmax = 103.77724578447427 
+            text = "" 
+        intervals [39]:
+            xmin = 103.77724578447427 
+            xmax = 109.65037538654786 
+            text = "Extortion drove me to the dead, I take from it no joy. Murderer" 
+        intervals [40]:
+            xmin = 109.65037538654786 
+            xmax = 110.41321704250862 
+            text = "" 
+        intervals [41]:
+            xmin = 110.41321704250862 
+            xmax = 113.07215637275787 
+            text = "Now I will do this" 
+        intervals [42]:
+            xmin = 113.07215637275787 
+            xmax = 115.39819814339232 
+            text = "" 
+        intervals [43]:
+            xmin = 115.39819814339232 
+            xmax = 117.02392626265296 
+            text = "Homi-" 
+        intervals [44]:
+            xmin = 117.02392626265296 
+            xmax = 118.09915725810653 
+            text = "cide" 
+        intervals [45]:
+            xmin = 118.09915725810653 
+            xmax = 118.58687569388472 
+            text = "" 
+        intervals [46]:
+            xmin = 118.58687569388472 
+            xmax = 122.7549914255358 
+            text = "I have made choice" 
+        intervals [47]:
+            xmin = 122.7549914255358 
+            xmax = 128.094381497764 
+            text = "" 
+        intervals [48]:
+            xmin = 128.094381497764 
+            xmax = 130.08277204362895 
+            text = "Sins of the past " 
+        intervals [49]:
+            xmin = 130.08277204362895 
+            xmax = 132.56250623340486 
+            text = "" 
+        intervals [50]:
+            xmin = 132.56250623340486 
+            xmax = 134.62593038477414 
+            text = "Haunt me today" 
+        intervals [51]:
+            xmin = 134.62593038477414 
+            xmax = 137.00199455907818 
+            text = "" 
+        intervals [52]:
+            xmin = 137.00199455907818 
+            xmax = 138.91084867033925 
+            text = "Should have confessed" 
+        intervals [53]:
+            xmin = 138.91084867033925 
+            xmax = 141.66995822595524 
+            text = "" 
+        intervals [54]:
+            xmin = 141.66995822595524 
+            xmax = 143.53329276264628 
+            text = "Motive concealed" 
+        intervals [55]:
+            xmin = 143.53329276264628 
+            xmax = 146.27576998971497 
+            text = "" 
+        intervals [56]:
+            xmin = 146.27576998971497 
+            xmax = 147.9515205126452 
+            text = "Undetected" 
+        intervals [57]:
+            xmin = 147.9515205126452 
+            xmax = 150.77741021850565 
+            text = "" 
+        intervals [58]:
+            xmin = 150.77741021850565 
+            xmax = 152.92837357629668 
+            text = "Hunting him down" 
+        intervals [59]:
+            xmin = 152.92837357629668 
+            xmax = 155.22902804362676 
+            text = "" 
+        intervals [60]:
+            xmin = 155.22902804362676 
+            xmax = 157.2424297913265 
+            text = "His life will end" 
+        intervals [61]:
+            xmin = 157.2424297913265 
+            xmax = 157.49254180967426 
+            text = "" 
+        intervals [62]:
+            xmin = 157.49254180967426 
+            xmax = 161.65627997764017 
+            text = "I'm bound to kill by the murderer's pact. Thrust of the blade repulses" 
+        intervals [63]:
+            xmin = 161.65627997764017 
+            xmax = 161.9814256014923 
+            text = "" 
+        intervals [64]:
+            xmin = 161.9814256014923 
+            xmax = 163.84476013818335 
+            text = "Commit the heinous crime" 
+        intervals [65]:
+            xmin = 163.84476013818335 
+            xmax = 164.33247857396157 
+            text = "" 
+        intervals [66]:
+            xmin = 164.33247857396157 
+            xmax = 166.16204693406075 
+            text = "Stabbing him repeatedly" 
+        intervals [67]:
+            xmin = 166.16204693406075 
+            xmax = 166.57473176433462 
+            text = "" 
+        intervals [68]:
+            xmin = 166.57473176433462 
+            xmax = 167.36258462213016 
+            text = "Gouge his neck, " 
+        intervals [69]:
+            xmin = 167.36258462213016 
+            xmax = 167.7002358468997 
+            text = "" 
+        intervals [70]:
+            xmin = 167.7002358468997 
+            xmax = 168.56312231019956 
+            text = "slash his face" 
+        intervals [71]:
+            xmin = 168.56312231019956 
+            xmax = 168.85075113129952 
+            text = "" 
+        intervals [72]:
+            xmin = 168.85075113129952 
+            xmax = 170.58465224774486 
+            text = "See his look of terror" 
+        intervals [73]:
+            xmin = 170.58465224774486 
+            xmax = 170.97232587618393 
+            text = "" 
+        intervals [74]:
+            xmin = 170.97232587618393 
+            xmax = 172.6855932018663 
+            text = "He knows his time has come" 
+        intervals [75]:
+            xmin = 172.6855932018663 
+            xmax = 173.29786612732116 
+            text = "" 
+        intervals [76]:
+            xmin = 173.29786612732116 
+            xmax = 175.3112678750209 
+            text = "Cannot show him mercy" 
+        intervals [77]:
+            xmin = 175.3112678750209 
+            xmax = 175.64891909979042 
+            text = "" 
+        intervals [78]:
+            xmin = 175.64891909979042 
+            xmax = 176.42426635666857 
+            text = "Make him die" 
+        intervals [79]:
+            xmin = 176.42426635666857 
+            xmax = 176.77442318235546 
+            text = "" 
+        intervals [80]:
+            xmin = 176.77442318235546 
+            xmax = 177.86241046216838 
+            text = "finish it" 
+        intervals [81]:
+            xmin = 177.86241046216838 
+            xmax = 178.08751127868138 
+            text = "" 
+        intervals [82]:
+            xmin = 178.08751127868138 
+            xmax = 178.587735315377 
+            text = "*" 
+        intervals [83]:
+            xmin = 178.587735315377 
+            xmax = 217.45986266533833 
+            text = "" 
+        intervals [84]:
+            xmin = 217.45986266533833 
+            xmax = 219.49100098330177 
+            text = "Blood on the knife" 
+        intervals [85]:
+            xmin = 219.49100098330177 
+            xmax = 222.02020915146446 
+            text = "" 
+        intervals [86]:
+            xmin = 222.02020915146446 
+            xmax = 223.9568759197552 
+            text = "His body slumps" 
+        intervals [87]:
+            xmin = 223.9568759197552 
+            xmax = 226.48159955731413 
+            text = "" 
+        intervals [88]:
+            xmin = 226.48159955731413 
+            xmax = 228.3474126633503 
+            text = "Corpse left to rot" 
+        intervals [89]:
+            xmin = 228.3474126633503 
+            xmax = 231.0063637885866 
+            text = "" 
+        intervals [90]:
+            xmin = 231.0063637885866 
+            xmax = 232.91458173794177 
+            text = "The dead is done" 
+        intervals [91]:
+            xmin = 232.91458173794177 
+            xmax = 235.5738496931017 
+            text = "" 
+        intervals [92]:
+            xmin = 235.5738496931017 
+            xmax = 237.38029601849126 
+            text = "But in my mind" 
+        intervals [93]:
+            xmin = 237.38029601849126 
+            xmax = 239.99834039849347 
+            text = "" 
+        intervals [94]:
+            xmin = 239.99834039849347 
+            xmax = 242.46630227965952 
+            text = "There is no peace" 
+        intervals [95]:
+            xmin = 242.46630227965952 
+            xmax = 244.56534202395022 
+            text = "" 
+        intervals [96]:
+            xmin = 244.56534202395022 
+            xmax = 247.52992494338056 
+            text = "Two dark secrets" 
+        intervals [97]:
+            xmin = 247.52992494338056 
+            xmax = 249.04732152984525 
+            text = "" 
+        intervals [98]:
+            xmin = 249.04732152984525 
+            xmax = 250.99370383818754 
+            text = "That I must keep" 
+        intervals [99]:
+            xmin = 250.99370383818754 
+            xmax = 251.46439759902847 
+            text = "" 
+        intervals [100]:
+            xmin = 251.46439759902847 
+            xmax = 253.62930074341116 
+            text = "I'm bound to kill by the murderer's pact " 
+        intervals [101]:
+            xmin = 253.62930074341116 
+            xmax = 305.2266666666667 
+            text = "" 
diff --git a/textgrid/06.TextGrid b/textgrid/06.TextGrid
new file mode 100644 (file)
index 0000000..880873e
--- /dev/null
@@ -0,0 +1,220 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 221.89333333333335 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 221.89333333333335 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 221.89333333333335 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 221.89333333333335 
+        intervals: size = 49 
+        intervals [1]:
+            xmin = 0 
+            xmax = 59.484797587766984 
+            text = "" 
+        intervals [2]:
+            xmin = 59.484797587766984 
+            xmax = 61.515630084974546 
+            text = "Stand before the corpse" 
+        intervals [3]:
+            xmin = 61.515630084974546 
+            xmax = 61.952947997352574 
+            text = "" 
+        intervals [4]:
+            xmin = 61.952947997352574 
+            xmax = 63.8014702800307 
+            text = "Of the man I killed" 
+        intervals [5]:
+            xmin = 63.8014702800307 
+            xmax = 64.35106034209292 
+            text = "" 
+        intervals [6]:
+            xmin = 64.35106034209292 
+            xmax = 66.4200973300619 
+            text = "His mother is behind me" 
+        intervals [7]:
+            xmin = 66.4200973300619 
+            xmax = 66.94971430650448 
+            text = "" 
+        intervals [8]:
+            xmin = 66.94971430650448 
+            xmax = 71.35243407722362 
+            text = "Puts her hand on my shoulder. Torment deep inside" 
+        intervals [9]:
+            xmin = 71.35243407722362 
+            xmax = 71.82555857617899 
+            text = "" 
+        intervals [10]:
+            xmin = 71.82555857617899 
+            xmax = 76.12941651129553 
+            text = "To be unleashed on those inside. Starting with this bitch" 
+        intervals [11]:
+            xmin = 76.12941651129553 
+            xmax = 76.6166641296227 
+            text = "" 
+        intervals [12]:
+            xmin = 76.6166641296227 
+            xmax = 83.08676626785406 
+            text = "I grab her arm and smash. Her body on her lifeless son" 
+        intervals [13]:
+            xmin = 83.08676626785406 
+            xmax = 89.46175888925518 
+            text = "" 
+        intervals [14]:
+            xmin = 89.46175888925518 
+            xmax = 91.21308320548792 
+            text = "A day of mourning fuels annihilation" 
+        intervals [15]:
+            xmin = 91.21308320548792 
+            xmax = 93.22562771596971 
+            text = "" 
+        intervals [16]:
+            xmin = 93.22562771596971 
+            xmax = 95.2240491070797 
+            text = "i will kill them all by funeral cremation" 
+        intervals [17]:
+            xmin = 95.2240491070797 
+            xmax = 96.81295888189669 
+            text = "" 
+        intervals [18]:
+            xmin = 96.81295888189669 
+            xmax = 98.58541036305785 
+            text = "A day of mourning fuels annihilation" 
+        intervals [19]:
+            xmin = 98.58541036305785 
+            xmax = 100.61913955259733 
+            text = "" 
+        intervals [20]:
+            xmin = 100.61913955259733 
+            xmax = 102.50959869559249 
+            text = "i will kill them all by funeral cremation" 
+        intervals [21]:
+            xmin = 102.50959869559249 
+            xmax = 104.28205017675364 
+            text = "" 
+        intervals [22]:
+            xmin = 104.28205017675364 
+            xmax = 106.22651986655084 
+            text = "Relatives must die" 
+        intervals [23]:
+            xmin = 106.22651986655084 
+            xmax = 106.72082904456391 
+            text = "" 
+        intervals [24]:
+            xmin = 106.72082904456391 
+            xmax = 108.52152676446867 
+            text = "Of the man i killed" 
+        intervals [25]:
+            xmin = 108.52152676446867 
+            xmax = 109.12175933777026 
+            text = "" 
+        intervals [26]:
+            xmin = 109.12175933777026 
+            xmax = 111.0059842313079 
+            text = "One by one destroyed" 
+        intervals [27]:
+            xmin = 111.0059842313079 
+            xmax = 111.52147808837869 
+            text = "" 
+        intervals [28]:
+            xmin = 111.52147808837869 
+            xmax = 115.98940651672768 
+            text = "Nothing left when it is over. Torment deep inside" 
+        intervals [29]:
+            xmin = 115.98940651672768 
+            xmax = 116.54020817222796 
+            text = "" 
+        intervals [30]:
+            xmin = 116.54020817222796 
+            xmax = 121.00565466989181 
+            text = "To be unleashed on those inside. Ending with kids" 
+        intervals [31]:
+            xmin = 121.00565466989181 
+            xmax = 121.37285577355867 
+            text = "" 
+        intervals [32]:
+            xmin = 121.37285577355867 
+            xmax = 128.06103895182463 
+            text = "Blood is flowing from their bodies. Out of misery" 
+        intervals [33]:
+            xmin = 128.06103895182463 
+            xmax = 134.2578379606216 
+            text = "" 
+        intervals [34]:
+            xmin = 134.2578379606216 
+            xmax = 144.41871139802322 
+            text = "Out of their misery. In with my cruelty. Erase the present. To forget the past. Chaotic fury. Was driven by fear" 
+        intervals [35]:
+            xmin = 144.41871139802322 
+            xmax = 144.91969790335256 
+            text = "" 
+        intervals [36]:
+            xmin = 144.91969790335256 
+            xmax = 149.65800445259228 
+            text = "Fear so intense. My whole family was slaughtered by me" 
+        intervals [37]:
+            xmin = 149.65800445259228 
+            xmax = 190.19823572504066 
+            text = "A day of mourning fuels annihilation" 
+        intervals [38]:
+            xmin = 190.19823572504066 
+            xmax = 191.89274397124905 
+            text = "" 
+        intervals [39]:
+            xmin = 191.89274397124905 
+            xmax = 193.9624647576893 
+            text = "" 
+        intervals [40]:
+            xmin = 193.9624647576893 
+            xmax = 195.89731479473403 
+            text = "i will kill them all by funeral cremation" 
+        intervals [41]:
+            xmin = 195.89731479473403 
+            xmax = 197.51113217207532 
+            text = "" 
+        intervals [42]:
+            xmin = 197.51113217207532 
+            xmax = 199.334745808471 
+            text = "A day of mourning fuels annihilation" 
+        intervals [43]:
+            xmin = 199.334745808471 
+            xmax = 201.32548012135234 
+            text = "" 
+        intervals [44]:
+            xmin = 201.32548012135234 
+            xmax = 203.27013006104863 
+            text = "i will kill them all by funeral cremation" 
+        intervals [45]:
+            xmin = 203.27013006104863 
+            xmax = 204.98884556791714 
+            text = "" 
+        intervals [46]:
+            xmin = 204.98884556791714 
+            xmax = 215.2215244966487 
+            text = "Out of their misery. In with my cruelty. Erase the present. To forget the past. Chaotic fury. Was driven by fear" 
+        intervals [47]:
+            xmin = 215.2215244966487 
+            xmax = 215.68146244919097 
+            text = "" 
+        intervals [48]:
+            xmin = 215.68146244919097 
+            xmax = 220.39790301607954 
+            text = "Fear so intense. My whole family was slaughtered by me" 
+        intervals [49]:
+            xmin = 220.39790301607954 
+            xmax = 221.89333333333335 
+            text = "" 
diff --git a/textgrid/07.TextGrid b/textgrid/07.TextGrid
new file mode 100644 (file)
index 0000000..aeaabbd
--- /dev/null
@@ -0,0 +1,308 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 196.24 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 196.24 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 196.24 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 196.24 
+        intervals: size = 71 
+        intervals [1]:
+            xmin = 0 
+            xmax = 17.127508033734166 
+            text = "" 
+        intervals [2]:
+            xmin = 17.127508033734166 
+            xmax = 23.375717594754672 
+            text = "Ominous nefarious completely insane. Doctor butcher and his dungeon of death" 
+        intervals [3]:
+            xmin = 23.375717594754672 
+            xmax = 24.88831845117348 
+            text = "" 
+        intervals [4]:
+            xmin = 24.88831845117348 
+            xmax = 25.778164194030634 
+            text = "Unorthodox" 
+        intervals [5]:
+            xmin = 25.778164194030634 
+            xmax = 26.15384283810851 
+            text = "" 
+        intervals [6]:
+            xmin = 26.15384283810851 
+            xmax = 28.496891223541564 
+            text = "therapies performed on the brain" 
+        intervals [7]:
+            xmin = 28.496891223541564 
+            xmax = 28.922001268156 
+            text = "" 
+        intervals [8]:
+            xmin = 28.922001268156 
+            xmax = 31.8582264600278 
+            text = "Prolific practitioner of pain" 
+        intervals [9]:
+            xmin = 31.8582264600278 
+            xmax = 52.580111164551816 
+            text = "" 
+        intervals [10]:
+            xmin = 52.580111164551816 
+            xmax = 54.87372814944831 
+            text = "Laying out the tools of his trade" 
+        intervals [11]:
+            xmin = 54.87372814944831 
+            xmax = 55.338383314492 
+            text = "" 
+        intervals [12]:
+            xmin = 55.338383314492 
+            xmax = 57.889043582178616 
+            text = "Psychosurgery. Scalpel" 
+        intervals [13]:
+            xmin = 57.889043582178616 
+            xmax = 58.23506338593455 
+            text = "" 
+        intervals [14]:
+            xmin = 58.23506338593455 
+            xmax = 58.88755787301717 
+            text = "ice-pick" 
+        intervals [15]:
+            xmin = 58.88755787301717 
+            xmax = 59.15920243769613 
+            text = "" 
+        intervals [16]:
+            xmin = 59.15920243769613 
+            xmax = 60.57294049304181 
+            text = "and drill" 
+        intervals [17]:
+            xmin = 60.57294049304181 
+            xmax = 62.21406299085569 
+            text = "" 
+        intervals [18]:
+            xmin = 62.21406299085569 
+            xmax = 69.65326063333619 
+            text = "Subject securely restrained. Electroshock is engaged. Proceed for the final phase" 
+        intervals [19]:
+            xmin = 69.65326063333619 
+            xmax = 71.55142641394019 
+            text = "" 
+        intervals [20]:
+            xmin = 71.55142641394019 
+            xmax = 72.37206819604614 
+            text = "Cranial" 
+        intervals [21]:
+            xmin = 72.37206819604614 
+            xmax = 72.79717824066059 
+            text = "" 
+        intervals [22]:
+            xmin = 72.79717824066059 
+            xmax = 75.1105677857717 
+            text = "penetration" 
+        intervals [23]:
+            xmin = 75.1105677857717 
+            xmax = 81.7542285510847 
+            text = "" 
+        intervals [24]:
+            xmin = 81.7542285510847 
+            xmax = 88.53621670470106 
+            text = "Ominous nefarious completely insane. Doctor butcher and his dungeon of death" 
+        intervals [25]:
+            xmin = 88.53621670470106 
+            xmax = 89.57435664916788 
+            text = "" 
+        intervals [26]:
+            xmin = 89.57435664916788 
+            xmax = 90.44434929861139 
+            text = "Unorthodox" 
+        intervals [27]:
+            xmin = 90.44434929861139 
+            xmax = 90.79036910236732 
+            text = "" 
+        intervals [28]:
+            xmin = 90.79036910236732 
+            xmax = 93.20262144855157 
+            text = "therapies performed on the brain" 
+        intervals [29]:
+            xmin = 93.20262144855157 
+            xmax = 93.5387549722002 
+            text = "" 
+        intervals [30]:
+            xmin = 93.5387549722002 
+            xmax = 96.6232743656817 
+            text = "Prolific practitioner of pain" 
+        intervals [31]:
+            xmin = 96.6232743656817 
+            xmax = 122.50464038617721 
+            text = "" 
+        intervals [32]:
+            xmin = 122.50464038617721 
+            xmax = 123.56255289085863 
+            text = "Brain cutter" 
+        intervals [33]:
+            xmin = 123.56255289085863 
+            xmax = 123.92834525482918 
+            text = "" 
+        intervals [34]:
+            xmin = 123.92834525482918 
+            xmax = 125.10481258759937 
+            text = "Soul killer" 
+        intervals [35]:
+            xmin = 125.10481258759937 
+            xmax = 125.51015007199918 
+            text = "" 
+        intervals [36]:
+            xmin = 125.51015007199918 
+            xmax = 128.01137893914924 
+            text = "Thousands of subjects lobotomised" 
+        intervals [37]:
+            xmin = 128.01137893914924 
+            xmax = 128.57489690526606 
+            text = "" 
+        intervals [38]:
+            xmin = 128.57489690526606 
+            xmax = 129.65250143696312 
+            text = "Brain cutter" 
+        intervals [39]:
+            xmin = 129.65250143696312 
+            xmax = 129.9589761202898 
+            text = "" 
+        intervals [40]:
+            xmin = 129.9589761202898 
+            xmax = 131.10578461273806 
+            text = "Soul killer " 
+        intervals [41]:
+            xmin = 131.10578461273806 
+            xmax = 131.42222610937105 
+            text = "" 
+        intervals [42]:
+            xmin = 131.42222610937105 
+            xmax = 133.9036824163065 
+            text = "the butcher has altered their lives" 
+        intervals [43]:
+            xmin = 133.9036824163065 
+            xmax = 134.59572202381838 
+            text = "" 
+        intervals [44]:
+            xmin = 134.59572202381838 
+            xmax = 135.722757956052 
+            text = "Brain cutter" 
+        intervals [45]:
+            xmin = 135.722757956052 
+            xmax = 135.98968751894944 
+            text = "" 
+        intervals [46]:
+            xmin = 135.98968751894944 
+            xmax = 137.28479021300737 
+            text = "Soul killer" 
+        intervals [47]:
+            xmin = 137.28479021300737 
+            xmax = 137.55171977590481 
+            text = "" 
+        intervals [48]:
+            xmin = 137.55171977590481 
+            xmax = 139.8453367608013 
+            text = "Thousands of subjects lobotomised" 
+        intervals [49]:
+            xmin = 139.8453367608013 
+            xmax = 140.49034342210692 
+            text = "" 
+        intervals [50]:
+            xmin = 140.49034342210692 
+            xmax = 141.5778342339113 
+            text = "Brain cutter" 
+        intervals [51]:
+            xmin = 141.5778342339113 
+            xmax = 141.95351287798914 
+            text = "" 
+        intervals [52]:
+            xmin = 141.95351287798914 
+            xmax = 143.15963905108129 
+            text = "Soul killer" 
+        intervals [53]:
+            xmin = 143.15963905108129 
+            xmax = 143.436454894086 
+            text = "" 
+        intervals [54]:
+            xmin = 143.436454894086 
+            xmax = 146.09586424295307 
+            text = "The butcher has altered their lives" 
+        intervals [55]:
+            xmin = 146.09586424295307 
+            xmax = 165.1987155573291 
+            text = "" 
+        intervals [56]:
+            xmin = 165.1987155573291 
+            xmax = 167.69994442447916 
+            text = "Laying out the tools of his trade" 
+        intervals [57]:
+            xmin = 167.69994442447916 
+            xmax = 167.9668739873766 
+            text = "" 
+        intervals [58]:
+            xmin = 167.9668739873766 
+            xmax = 169.45970228358078 
+            text = "Psychosurgery" 
+        intervals [59]:
+            xmin = 169.45970228358078 
+            xmax = 169.76617696690747 
+            text = "" 
+        intervals [60]:
+            xmin = 169.76617696690747 
+            xmax = 170.55707937549246 
+            text = "Scalpel," 
+        intervals [61]:
+            xmin = 170.55707937549246 
+            xmax = 170.87344033892646 
+            text = "" 
+        intervals [62]:
+            xmin = 170.87344033892646 
+            xmax = 171.5457073862237 
+            text = "ice-pick" 
+        intervals [63]:
+            xmin = 171.5457073862237 
+            xmax = 171.78305864199822 
+            text = "" 
+        intervals [64]:
+            xmin = 171.78305864199822 
+            xmax = 173.40440857959746 
+            text = "and drill" 
+        intervals [65]:
+            xmin = 173.40440857959746 
+            xmax = 174.8478054752651 
+            text = "" 
+        intervals [66]:
+            xmin = 174.8478054752651 
+            xmax = 182.2782751113639 
+            text = "Another subject securely restrained. Electroshock is engaged. Repeat the process longer" 
+        intervals [67]:
+            xmin = 182.2782751113639 
+            xmax = 184.1665546118606 
+            text = "" 
+        intervals [68]:
+            xmin = 184.1665546118606 
+            xmax = 188.155440496889 
+            text = "Cranial penetration" 
+        intervals [69]:
+            xmin = 188.155440496889 
+            xmax = 192.36133232117572 
+            text = "" 
+        intervals [70]:
+            xmin = 192.36133232117572 
+            xmax = 194.51654138456985 
+            text = "Ice-pick lobotomy" 
+        intervals [71]:
+            xmin = 194.51654138456985 
+            xmax = 196.24 
+            text = "" 
diff --git a/textgrid/08.TextGrid b/textgrid/08.TextGrid
new file mode 100644 (file)
index 0000000..13590b5
--- /dev/null
@@ -0,0 +1,484 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 205.14666666666668 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 205.14666666666668 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 205.14666666666668 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 205.14666666666668 
+        intervals: size = 115 
+        intervals [1]:
+            xmin = 0 
+            xmax = 17.40159548429302 
+            text = "" 
+        intervals [2]:
+            xmin = 17.40159548429302 
+            xmax = 18.547122077747908 
+            text = "Inborn" 
+        intervals [3]:
+            xmin = 18.547122077747908 
+            xmax = 18.796149598064186 
+            text = "" 
+        intervals [4]:
+            xmin = 18.796149598064186 
+            xmax = 20.132597290428226 
+            text = "lack of conscience" 
+        intervals [5]:
+            xmin = 20.132597290428226 
+            xmax = 20.547643157622026 
+            text = "" 
+        intervals [6]:
+            xmin = 20.547643157622026 
+            xmax = 22.855298179219556 
+            text = "i think but cannot feel" 
+        intervals [7]:
+            xmin = 22.855298179219556 
+            xmax = 23.403158723915375 
+            text = "" 
+        intervals [8]:
+            xmin = 23.403158723915375 
+            xmax = 24.47397706127538 
+            text = "Affectations" 
+        intervals [9]:
+            xmin = 24.47397706127538 
+            xmax = 24.673199077528405 
+            text = "" 
+        intervals [10]:
+            xmin = 24.673199077528405 
+            xmax = 25.820867822974556 
+            text = "Manipulations" 
+        intervals [11]:
+            xmin = 25.820867822974556 
+            xmax = 26.235913690168356 
+            text = "" 
+        intervals [12]:
+            xmin = 26.235913690168356 
+            xmax = 28.576772381141392 
+            text = "Victims bend to my will" 
+        intervals [13]:
+            xmin = 28.576772381141392 
+            xmax = 30.85122373336342 
+            text = "" 
+        intervals [14]:
+            xmin = 30.85122373336342 
+            xmax = 32.86004573058141 
+            text = "Passed through generations" 
+        intervals [15]:
+            xmin = 32.86004573058141 
+            xmax = 35.03702816598511 
+            text = "" 
+        intervals [16]:
+            xmin = 35.03702816598511 
+            xmax = 37.02094741117148 
+            text = "Murderous ways" 
+        intervals [17]:
+            xmin = 37.02094741117148 
+            xmax = 38.97996390432622 
+            text = "" 
+        intervals [18]:
+            xmin = 38.97996390432622 
+            xmax = 41.129901496390104 
+            text = "Proclivity for violence" 
+        intervals [19]:
+            xmin = 41.129901496390104 
+            xmax = 43.13256466757239 
+            text = "" 
+        intervals [20]:
+            xmin = 43.13256466757239 
+            xmax = 45.29910409432403 
+            text = "No remorse or shame" 
+        intervals [21]:
+            xmin = 45.29910409432403 
+            xmax = 45.63114078807907 
+            text = "" 
+        intervals [22]:
+            xmin = 45.63114078807907 
+            xmax = 48.47835543702855 
+            text = "Murder, a fascination" 
+        intervals [23]:
+            xmin = 48.47835543702855 
+            xmax = 48.81566919404154 
+            text = "" 
+        intervals [24]:
+            xmin = 48.81566919404154 
+            xmax = 50.9407040340738 
+            text = "Dispatching those who trust" 
+        intervals [25]:
+            xmin = 50.9407040340738 
+            xmax = 51.59647650424001 
+            text = "" 
+        intervals [26]:
+            xmin = 51.59647650424001 
+            xmax = 52.62243499609641 
+            text = "My compulsion" 
+        intervals [27]:
+            xmin = 52.62243499609641 
+            xmax = 52.9378698551637 
+            text = "" 
+        intervals [28]:
+            xmin = 52.9378698551637 
+            xmax = 53.942280853772694 
+            text = "Fleeting fulfilment" 
+        intervals [29]:
+            xmin = 53.942280853772694 
+            xmax = 54.4237340597175 
+            text = "" 
+        intervals [30]:
+            xmin = 54.4237340597175 
+            xmax = 56.98041660163132 
+            text = "No joy will ever last" 
+        intervals [31]:
+            xmin = 56.98041660163132 
+            xmax = 58.93113217744218 
+            text = "" 
+        intervals [32]:
+            xmin = 58.93113217744218 
+            xmax = 61.105532153015496 
+            text = "The soulless walk among you" 
+        intervals [33]:
+            xmin = 61.105532153015496 
+            xmax = 63.031344976794735 
+            text = "" 
+        intervals [34]:
+            xmin = 63.031344976794735 
+            xmax = 64.99036146994948 
+            text = "Concealed by deceit" 
+        intervals [35]:
+            xmin = 64.99036146994948 
+            xmax = 67.44149538769551 
+            text = "" 
+        intervals [36]:
+            xmin = 67.44149538769551 
+            xmax = 69.58313206241553 
+            text = "Smiling when I face you" 
+        intervals [37]:
+            xmin = 69.58313206241553 
+            xmax = 71.74137057182331 
+            text = "" 
+        intervals [38]:
+            xmin = 71.74137057182331 
+            xmax = 73.51990897472092 
+            text = "Slashing when I turn" 
+        intervals [39]:
+            xmin = 73.51990897472092 
+            xmax = 74.23378786629426 
+            text = "" 
+        intervals [40]:
+            xmin = 74.23378786629426 
+            xmax = 75.80266124428682 
+            text = "This vector of cruelty" 
+        intervals [41]:
+            xmin = 75.80266124428682 
+            xmax = 76.32561903695103 
+            text = "" 
+        intervals [42]:
+            xmin = 76.32561903695103 
+            xmax = 77.80318232416096 
+            text = "Denied me a soul" 
+        intervals [43]:
+            xmin = 77.80318232416096 
+            xmax = 78.43405204229553 
+            text = "" 
+        intervals [44]:
+            xmin = 78.43405204229553 
+            xmax = 79.8701107427861 
+            text = "Genetic mutation" 
+        intervals [45]:
+            xmin = 79.8701107427861 
+            xmax = 80.22705018857276 
+            text = "" 
+        intervals [46]:
+            xmin = 80.22705018857276 
+            xmax = 81.93918125271937 
+            text = "Driving me" 
+        intervals [47]:
+            xmin = 81.93918125271937 
+            xmax = 82.61155555757333 
+            text = "" 
+        intervals [48]:
+            xmin = 82.61155555757333 
+            xmax = 84.19703077025365 
+            text = "Your place cannot move me" 
+        intervals [49]:
+            xmin = 84.19703077025365 
+            xmax = 84.76149314963722 
+            text = "" 
+        intervals [50]:
+            xmin = 84.76149314963722 
+            xmax = 86.048135337938 
+            text = "No mercy to give" 
+        intervals [51]:
+            xmin = 86.048135337938 
+            xmax = 86.87822707232561 
+            text = "" 
+        intervals [52]:
+            xmin = 86.87822707232561 
+            xmax = 90.8344105148769 
+            text = "I seek domination. A master of pain" 
+        intervals [53]:
+            xmin = 90.8344105148769 
+            xmax = 91.15814629128806 
+            text = "" 
+        intervals [54]:
+            xmin = 91.15814629128806 
+            xmax = 92.72701966928064 
+            text = "This vector of cruelty" 
+        intervals [55]:
+            xmin = 92.72701966928064 
+            xmax = 93.24167654460095 
+            text = "" 
+        intervals [56]:
+            xmin = 93.24167654460095 
+            xmax = 94.52001781555786 
+            text = "Emotionless, cold" 
+        intervals [57]:
+            xmin = 94.52001781555786 
+            xmax = 95.3750123019771 
+            text = "" 
+        intervals [58]:
+            xmin = 95.3750123019771 
+            xmax = 96.7911150373023 
+            text = "No human connection" 
+        intervals [59]:
+            xmin = 96.7911150373023 
+            xmax = 97.1397535657451 
+            text = "" 
+        intervals [60]:
+            xmin = 97.1397535657451 
+            xmax = 99.30629299249674 
+            text = "Weakening" 
+        intervals [61]:
+            xmin = 99.30629299249674 
+            xmax = 99.62172785156403 
+            text = "" 
+        intervals [62]:
+            xmin = 99.62172785156403 
+            xmax = 101.26530948565149 
+            text = "Cold-blooded and wilful" 
+        intervals [63]:
+            xmin = 101.26530948565149 
+            xmax = 101.61394801409428 
+            text = "" 
+        intervals [64]:
+            xmin = 101.61394801409428 
+            xmax = 103.20772414411849 
+            text = "I slaughtered them all" 
+        intervals [65]:
+            xmin = 103.20772414411849 
+            xmax = 103.83859386225306 
+            text = "" 
+        intervals [66]:
+            xmin = 103.83859386225306 
+            xmax = 108.34252755222295 
+            text = "They thought I'd protect them. But I made them die" 
+        intervals [67]:
+            xmin = 108.34252755222295 
+            xmax = 111.33085779601832 
+            text = "" 
+        intervals [68]:
+            xmin = 111.33085779601832 
+            xmax = 112.51184126802077 
+            text = "Legacy" 
+        intervals [69]:
+            xmin = 112.51184126802077 
+            xmax = 113.07630364740434 
+            text = "" 
+        intervals [70]:
+            xmin = 113.07630364740434 
+            xmax = 114.44595500914389 
+            text = "abnormality" 
+        intervals [71]:
+            xmin = 114.44595500914389 
+            xmax = 114.67007977742854 
+            text = "" 
+        intervals [72]:
+            xmin = 114.67007977742854 
+            xmax = 115.91521737900995 
+            text = "The ladder twists," 
+        intervals [73]:
+            xmin = 115.91521737900995 
+            xmax = 116.63739718792716 
+            text = "" 
+        intervals [74]:
+            xmin = 116.63739718792716 
+            xmax = 119.30985220413302 
+            text = "and the rungs are broken. Impregnate," 
+        intervals [75]:
+            xmin = 119.30985220413302 
+            xmax = 120.09843935180125 
+            text = "" 
+        intervals [76]:
+            xmin = 120.09843935180125 
+            xmax = 122.995459504814 
+            text = "and the vector spreads. Momentum shifts," 
+        intervals [77]:
+            xmin = 122.995459504814 
+            xmax = 123.60142647091695 
+            text = "" 
+        intervals [78]:
+            xmin = 123.60142647091695 
+            xmax = 126.63351451060372 
+            text = "and I start controlling. Parasite," 
+        intervals [79]:
+            xmin = 126.63351451060372 
+            xmax = 127.18967597264341 
+            text = "" 
+        intervals [80]:
+            xmin = 127.18967597264341 
+            xmax = 128.60083192110235 
+            text = "of morality" 
+        intervals [81]:
+            xmin = 128.60083192110235 
+            xmax = 128.80835485469925 
+            text = "" 
+        intervals [82]:
+            xmin = 128.80835485469925 
+            xmax = 130.18630713378266 
+            text = "Malevolent," 
+        intervals [83]:
+            xmin = 130.18630713378266 
+            xmax = 131.09110712426516 
+            text = "" 
+        intervals [84]:
+            xmin = 131.09110712426516 
+            xmax = 133.74404654382792 
+            text = "eyes are empty. Merciless," 
+        intervals [85]:
+            xmin = 133.74404654382792 
+            xmax = 134.41642084868187 
+            text = "" 
+        intervals [86]:
+            xmin = 134.41642084868187 
+            xmax = 135.9022850532357 
+            text = "I cannot care" 
+        intervals [87]:
+            xmin = 135.9022850532357 
+            xmax = 167.5649458540952 
+            text = "" 
+        intervals [88]:
+            xmin = 167.5649458540952 
+            xmax = 168.9927036372419 
+            text = "This vector of cruelty" 
+        intervals [89]:
+            xmin = 168.9927036372419 
+            xmax = 169.5073605125622 
+            text = "" 
+        intervals [90]:
+            xmin = 169.5073605125622 
+            xmax = 170.98492379977216 
+            text = "Denied me a soul" 
+        intervals [91]:
+            xmin = 170.98492379977216 
+            xmax = 171.63239535259447 
+            text = "" 
+        intervals [92]:
+            xmin = 171.63239535259447 
+            xmax = 172.979507263605 
+            text = "Genetic mutation" 
+        intervals [93]:
+            xmin = 172.979507263605 
+            xmax = 173.3198448747039 
+            text = "" 
+        intervals [94]:
+            xmin = 173.3198448747039 
+            xmax = 175.23735678113928 
+            text = "driving me" 
+        intervals [95]:
+            xmin = 175.23735678113928 
+            xmax = 175.8267219125545 
+            text = "" 
+        intervals [96]:
+            xmin = 175.8267219125545 
+            xmax = 177.37069253851544 
+            text = "Your pleas cannot move me" 
+        intervals [97]:
+            xmin = 177.37069253851544 
+            xmax = 177.9434558352429 
+            text = "" 
+        intervals [98]:
+            xmin = 177.9434558352429 
+            xmax = 179.31524928829057 
+            text = "No mercy to give" 
+        intervals [99]:
+            xmin = 179.31524928829057 
+            xmax = 180.04573001455165 
+            text = "" 
+        intervals [100]:
+            xmin = 180.04573001455165 
+            xmax = 184.11317951305094 
+            text = "I seek domination. A master of pain" 
+        intervals [101]:
+            xmin = 184.11317951305094 
+            xmax = 184.3705079507111 
+            text = "" 
+        intervals [102]:
+            xmin = 184.3705079507111 
+            xmax = 185.87297398995267 
+            text = "This vector of cruelty " 
+        intervals [103]:
+            xmin = 185.87297398995267 
+            xmax = 186.48938499044093 
+            text = "" 
+        intervals [104]:
+            xmin = 186.48938499044093 
+            xmax = 187.88393910421212 
+            text = "Emotionless, cold" 
+        intervals [105]:
+            xmin = 187.88393910421212 
+            xmax = 188.5480124917222 
+            text = "" 
+        intervals [106]:
+            xmin = 188.5480124917222 
+            xmax = 189.92596477080562 
+            text = "No human connection" 
+        intervals [107]:
+            xmin = 189.92596477080562 
+            xmax = 190.34101063799943 
+            text = "" 
+        intervals [108]:
+            xmin = 190.34101063799943 
+            xmax = 192.4992491474072 
+            text = "Weakening" 
+        intervals [109]:
+            xmin = 192.4992491474072 
+            xmax = 192.781480337099 
+            text = "" 
+        intervals [110]:
+            xmin = 192.781480337099 
+            xmax = 194.40846013649872 
+            text = "Cold-blooded and wilful" 
+        intervals [111]:
+            xmin = 194.40846013649872 
+            xmax = 194.85066196489612 
+            text = "" 
+        intervals [112]:
+            xmin = 194.85066196489612 
+            xmax = 196.35312800413772 
+            text = "i slaughtered them all" 
+        intervals [113]:
+            xmin = 196.35312800413772 
+            xmax = 197.05870597836716 
+            text = "" 
+        intervals [114]:
+            xmin = 197.05870597836716 
+            xmax = 201.47479400530923 
+            text = "They thought I'd protect them. But I made them die " 
+        intervals [115]:
+            xmin = 201.47479400530923 
+            xmax = 205.14666666666668 
+            text = "" 
diff --git a/textgrid/09.TextGrid b/textgrid/09.TextGrid
new file mode 100644 (file)
index 0000000..022659d
--- /dev/null
@@ -0,0 +1,460 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 221.98666666666668 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 221.98666666666668 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 221.98666666666668 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 221.98666666666668 
+        intervals: size = 109 
+        intervals [1]:
+            xmin = 0 
+            xmax = 14.306802625224796 
+            text = "" 
+        intervals [2]:
+            xmin = 14.306802625224796 
+            xmax = 15.286940574997264 
+            text = "Stalking his prey" 
+        intervals [3]:
+            xmin = 15.286940574997264 
+            xmax = 15.530075570289657 
+            text = "" 
+        intervals [4]:
+            xmin = 15.530075570289657 
+            xmax = 17.04207132226424 
+            text = "He prepares for the ambush" 
+        intervals [5]:
+            xmin = 17.04207132226424 
+            xmax = 17.300402254762407 
+            text = "" 
+        intervals [6]:
+            xmin = 17.300402254762407 
+            xmax = 18.03740520924248 
+            text = "I hear his steps " 
+        intervals [7]:
+            xmin = 18.03740520924248 
+            xmax = 18.37931379637241 
+            text = "" 
+        intervals [8]:
+            xmin = 18.37931379637241 
+            xmax = 19.876113611141214 
+            text = "But without trepidation" 
+        intervals [9]:
+            xmin = 19.876113611141214 
+            xmax = 20.111650637830724 
+            text = "" 
+        intervals [10]:
+            xmin = 20.111650637830724 
+            xmax = 21.023406870177205 
+            text = "Hyper aware" 
+        intervals [11]:
+            xmin = 21.023406870177205 
+            xmax = 21.43369717473312 
+            text = "" 
+        intervals [12]:
+            xmin = 21.43369717473312 
+            xmax = 23.102179524469253 
+            text = "I will strike back" 
+        intervals [13]:
+            xmin = 23.102179524469253 
+            xmax = 23.39090233137897 
+            text = "" 
+        intervals [14]:
+            xmin = 23.39090233137897 
+            xmax = 24.67495902526693 
+            text = "When he brandished the blade" 
+        intervals [15]:
+            xmin = 24.67495902526693 
+            xmax = 27.84331193267095 
+            text = "" 
+        intervals [16]:
+            xmin = 27.84331193267095 
+            xmax = 29.805750552665312 
+            text = "Gave his intentions away" 
+        intervals [17]:
+            xmin = 29.805750552665312 
+            xmax = 31.87239801265067 
+            text = "" 
+        intervals [18]:
+            xmin = 31.87239801265067 
+            xmax = 32.6929786217625 
+            text = "Back to the wall," 
+        intervals [19]:
+            xmin = 32.6929786217625 
+            xmax = 32.89812377404046 
+            text = "" 
+        intervals [20]:
+            xmin = 32.89812377404046 
+            xmax = 33.81747797498983 
+            text = "i have no choice" 
+        intervals [21]:
+            xmin = 33.81747797498983 
+            xmax = 34.05764309710339 
+            text = "" 
+        intervals [22]:
+            xmin = 34.05764309710339 
+            xmax = 35.59243275488663 
+            text = "It's time to fight or die" 
+        intervals [23]:
+            xmin = 35.59243275488663 
+            xmax = 36.29144586635226 
+            text = "" 
+        intervals [24]:
+            xmin = 36.29144586635226 
+            xmax = 38.335299420528955 
+            text = "I will respond with overwhelming force" 
+        intervals [25]:
+            xmin = 38.335299420528955 
+            xmax = 38.5480425414098 
+            text = "" 
+        intervals [26]:
+            xmin = 38.5480425414098 
+            xmax = 40.67743451599534 
+            text = "A switch turns on and I must survive" 
+        intervals [27]:
+            xmin = 40.67743451599534 
+            xmax = 40.94336341709639 
+            text = "" 
+        intervals [28]:
+            xmin = 40.94336341709639 
+            xmax = 41.779139963413996 
+            text = "Fearless resolve" 
+        intervals [29]:
+            xmin = 41.779139963413996 
+            xmax = 42.21222417377858 
+            text = "" 
+        intervals [30]:
+            xmin = 42.21222417377858 
+            xmax = 43.61784836531273 
+            text = "As I spring into action" 
+        intervals [31]:
+            xmin = 43.61784836531273 
+            xmax = 43.95215898383978 
+            text = "" 
+        intervals [32]:
+            xmin = 43.95215898383978 
+            xmax = 44.68916193831985 
+            text = "Quickly disarm" 
+        intervals [33]:
+            xmin = 44.68916193831985 
+            xmax = 45.02347255684689 
+            text = "" 
+        intervals [34]:
+            xmin = 45.02347255684689 
+            xmax = 49.66286150003221 
+            text = "And remove his advantage. Only one thing on my mind. Stop his attack" 
+        intervals [35]:
+            xmin = 49.66286150003221 
+            xmax = 49.951584306941925 
+            text = "" 
+        intervals [36]:
+            xmin = 49.951584306941925 
+            xmax = 51.129269440389464 
+            text = "Now he's on the defence" 
+        intervals [37]:
+            xmin = 51.129269440389464 
+            xmax = 54.398356705408105 
+            text = "" 
+        intervals [38]:
+            xmin = 54.398356705408105 
+            xmax = 56.42701432237903 
+            text = "Momentum is shifting my way" 
+        intervals [39]:
+            xmin = 56.42701432237903 
+            xmax = 58.805178495082764 
+            text = "" 
+        intervals [40]:
+            xmin = 58.805178495082764 
+            xmax = 62.60612356230351 
+            text = "A savage brawl, I hear his voice. Pure terror in his cries" 
+        intervals [41]:
+            xmin = 62.60612356230351 
+            xmax = 62.925238243624776 
+            text = "" 
+        intervals [42]:
+            xmin = 62.925238243624776 
+            xmax = 65.09825726405055 
+            text = "Break his balance, slam him to the ground" 
+        intervals [43]:
+            xmin = 65.09825726405055 
+            xmax = 65.28820647912274 
+            text = "" 
+        intervals [44]:
+            xmin = 65.28820647912274 
+            xmax = 67.4080397193283 
+            text = "Following through to stay alive" 
+        intervals [45]:
+            xmin = 67.4080397193283 
+            xmax = 67.56759705998894 
+            text = "" 
+        intervals [46]:
+            xmin = 67.56759705998894 
+            xmax = 68.95238822248486 
+            text = "Landing multiple blows" 
+        intervals [47]:
+            xmin = 68.95238822248486 
+            xmax = 71.93079191481671 
+            text = "" 
+        intervals [48]:
+            xmin = 71.93079191481671 
+            xmax = 73.88346984575877 
+            text = "The blood is starting to spray" 
+        intervals [49]:
+            xmin = 73.88346984575877 
+            xmax = 75.92168619710961 
+            text = "" 
+        intervals [50]:
+            xmin = 75.92168619710961 
+            xmax = 76.78785461783878 
+            text = "Will not stop" 
+        intervals [51]:
+            xmin = 76.78785461783878 
+            xmax = 77.0157936759254 
+            text = "" 
+        intervals [52]:
+            xmin = 77.0157936759254 
+            xmax = 77.97313771988921 
+            text = "till I am sure" 
+        intervals [53]:
+            xmin = 77.97313771988921 
+            xmax = 78.23906662099026 
+            text = "" 
+        intervals [54]:
+            xmin = 78.23906662099026 
+            xmax = 79.88022783921394 
+            text = "The threat has been put down" 
+        intervals [55]:
+            xmin = 79.88022783921394 
+            xmax = 80.52605517045937 
+            text = "" 
+        intervals [56]:
+            xmin = 80.52605517045937 
+            xmax = 82.50625602447363 
+            text = "Raining with forearm thrusts" 
+        intervals [57]:
+            xmin = 82.50625602447363 
+            xmax = 82.80257679998624 
+            text = "" 
+        intervals [58]:
+            xmin = 82.80257679998624 
+            xmax = 86.32803423172598 
+            text = "Torrents of blood flow from his eyes" 
+        intervals [59]:
+            xmin = 86.32803423172598 
+            xmax = 92.43116378562156 
+            text = "" 
+        intervals [60]:
+            xmin = 92.43116378562156 
+            xmax = 94.45222343398962 
+            text = "Blood-" 
+        intervals [61]:
+            xmin = 94.45222343398962 
+            xmax = 94.68972122645616 
+            text = "" 
+        intervals [62]:
+            xmin = 94.68972122645616 
+            xmax = 96.50563572254624 
+            text = "stained" 
+        intervals [63]:
+            xmin = 96.50563572254624 
+            xmax = 96.65759509460399 
+            text = "" 
+        intervals [64]:
+            xmin = 96.65759509460399 
+            xmax = 99.81835003340514 
+            text = "cement" 
+        intervals [65]:
+            xmin = 99.81835003340514 
+            xmax = 107.16754643817427 
+            text = "" 
+        intervals [66]:
+            xmin = 107.16754643817427 
+            xmax = 112.97199087441551 
+            text = "*" 
+        intervals [67]:
+            xmin = 112.97199087441551 
+            xmax = 126.13816021199132 
+            text = "" 
+        intervals [68]:
+            xmin = 126.13816021199132 
+            xmax = 127.80971330462656 
+            text = "No weakness to exploit" 
+        intervals [69]:
+            xmin = 127.80971330462656 
+            xmax = 128.387158918446 
+            text = "" 
+        intervals [70]:
+            xmin = 128.387158918446 
+            xmax = 129.77194996994854 
+            text = "His ambush failed" 
+        intervals [71]:
+            xmin = 129.77194996994854 
+            xmax = 130.59253057906037 
+            text = "" 
+        intervals [72]:
+            xmin = 130.59253057906037 
+            xmax = 132.34766132632737 
+            text = "Hammer fists break facial bones" 
+        intervals [73]:
+            xmin = 132.34766132632737 
+            xmax = 132.82633334830928 
+            text = "" 
+        intervals [74]:
+            xmin = 132.82633334830928 
+            xmax = 135.0449401803524 
+            text = "Knuckles bleed from shards of teeth" 
+        intervals [75]:
+            xmin = 135.0449401803524 
+            xmax = 135.44763251630542 
+            text = "" 
+        intervals [76]:
+            xmin = 135.44763251630542 
+            xmax = 137.03520437794413 
+            text = "Smash his skull onto pavement" 
+        intervals [77]:
+            xmin = 137.03520437794413 
+            xmax = 137.4302987452943 
+            text = "" 
+        intervals [78]:
+            xmin = 137.4302987452943 
+            xmax = 138.9878823088862 
+            text = " Make the bastard pay" 
+        intervals [79]:
+            xmin = 138.9878823088862 
+            xmax = 139.7020913575576 
+            text = "" 
+        intervals [80]:
+            xmin = 139.7020913575576 
+            xmax = 141.3376153729554 
+            text = "Don't stop until it cracks" 
+        intervals [81]:
+            xmin = 141.3376153729554 
+            xmax = 141.74790567751134 
+            text = "" 
+        intervals [82]:
+            xmin = 141.74790567751134 
+            xmax = 143.96651250955446 
+            text = "And spills out his brain" 
+        intervals [83]:
+            xmin = 143.96651250955446 
+            xmax = 151.23213125969178 
+            text = "" 
+        intervals [84]:
+            xmin = 151.23213125969178 
+            xmax = 153.07843763019343 
+            text = "Blood-" 
+        intervals [85]:
+            xmin = 153.07843763019343 
+            xmax = 153.53431574636667 
+            text = "" 
+        intervals [86]:
+            xmin = 153.53431574636667 
+            xmax = 160.1796693225538 
+            text = "stained cement" 
+        intervals [87]:
+            xmin = 160.1796693225538 
+            xmax = 170.5725801200757 
+            text = "" 
+        intervals [88]:
+            xmin = 170.5725801200757 
+            xmax = 172.37329867896003 
+            text = "When he chose me as prey" 
+        intervals [89]:
+            xmin = 172.37329867896003 
+            xmax = 175.0553815957793 
+            text = "" 
+        intervals [90]:
+            xmin = 175.0553815957793 
+            xmax = 177.31393903661385 
+            text = "A fatal mistake was made " 
+        intervals [91]:
+            xmin = 177.31393903661385 
+            xmax = 178.99309009785196 
+            text = "" 
+        intervals [92]:
+            xmin = 178.99309009785196 
+            xmax = 182.86045611672165 
+            text = "Consequences of his choice led to his bloody end" 
+        intervals [93]:
+            xmin = 182.86045611672165 
+            xmax = 183.46265640212678 
+            text = "" 
+        intervals [94]:
+            xmin = 183.46265640212678 
+            xmax = 185.0810237145418 
+            text = "?" 
+        intervals [95]:
+            xmin = 185.0810237145418 
+            xmax = 185.79523276321322 
+            text = "" 
+        intervals [96]:
+            xmin = 185.79523276321322 
+            xmax = 189.8525479971551 
+            text = "?" 
+        intervals [97]:
+            xmin = 189.8525479971551 
+            xmax = 192.5769113938909 
+            text = "" 
+        intervals [98]:
+            xmin = 192.5769113938909 
+            xmax = 194.60556901086184 
+            text = "?" 
+        intervals [99]:
+            xmin = 194.60556901086184 
+            xmax = 196.50537418041034 
+            text = "" 
+        intervals [100]:
+            xmin = 196.50537418041034 
+            xmax = 198.1617313358398 
+            text = "?" 
+        intervals [101]:
+            xmin = 198.1617313358398 
+            xmax = 198.83795054149678 
+            text = "" 
+        intervals [102]:
+            xmin = 198.83795054149678 
+            xmax = 200.28916254464826 
+            text = "?" 
+        intervals [103]:
+            xmin = 200.28916254464826 
+            xmax = 201.08694924795145 
+            text = "" 
+        intervals [104]:
+            xmin = 201.08694924795145 
+            xmax = 203.06704918012613 
+            text = "?" 
+        intervals [105]:
+            xmin = 203.06704918012613 
+            xmax = 203.31018417541853 
+            text = "" 
+        intervals [106]:
+            xmin = 203.31018417541853 
+            xmax = 205.7491320969454 
+            text = "?" 
+        intervals [107]:
+            xmin = 205.7491320969454 
+            xmax = 210.165512621 
+            text = "" 
+        intervals [108]:
+            xmin = 210.165512621 
+            xmax = 216.43921960231685 
+            text = "*" 
+        intervals [109]:
+            xmin = 216.43921960231685 
+            xmax = 221.98666666666668 
+            text = "" 
diff --git a/textgrid/10.TextGrid b/textgrid/10.TextGrid
new file mode 100644 (file)
index 0000000..f6a31f6
--- /dev/null
@@ -0,0 +1,692 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 227.4 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 227.4 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 227.4 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 227.4 
+        intervals: size = 167 
+        intervals [1]:
+            xmin = 0 
+            xmax = 5.66004324706896 
+            text = "" 
+        intervals [2]:
+            xmin = 5.66004324706896 
+            xmax = 6.611560881066706 
+            text = "die every day" 
+        intervals [3]:
+            xmin = 6.611560881066706 
+            xmax = 7.037239822592014 
+            text = "" 
+        intervals [4]:
+            xmin = 7.037239822592014 
+            xmax = 8.539636086798982 
+            text = "dying for years now" 
+        intervals [5]:
+            xmin = 8.539636086798982 
+            xmax = 9.009134919363659 
+            text = "" 
+        intervals [6]:
+            xmin = 9.009134919363659 
+            xmax = 9.929352631190426 
+            text = "kill every day" 
+        intervals [7]:
+            xmin = 9.929352631190426 
+            xmax = 10.392591479320908 
+            text = "" 
+        intervals [8]:
+            xmin = 10.392591479320908 
+            xmax = 11.538168630778722 
+            text = "killing for years" 
+        intervals [9]:
+            xmin = 11.538168630778722 
+            xmax = 12.245546871842835 
+            text = "" 
+        intervals [10]:
+            xmin = 12.245546871842835 
+            xmax = 13.323880391109363 
+            text = "" 
+        intervals [11]:
+            xmin = 13.323880391109363 
+            xmax = 13.630619628384952 
+            text = "" 
+        intervals [12]:
+            xmin = 13.630619628384952 
+            xmax = 15.195615736933878 
+            text = "?" 
+        intervals [13]:
+            xmin = 15.195615736933878 
+            xmax = 15.671374553932752 
+            text = "" 
+        intervals [14]:
+            xmin = 15.671374553932752 
+            xmax = 16.86703158086413 
+            text = "kill every day" 
+        intervals [15]:
+            xmin = 16.86703158086413 
+            xmax = 17.837329168164466 
+            text = "" 
+        intervals [16]:
+            xmin = 17.837329168164466 
+            xmax = 18.36275275475763 
+            text = "you" 
+        intervals [17]:
+            xmin = 18.36275275475763 
+            xmax = 18.631932085428044 
+            text = "" 
+        intervals [18]:
+            xmin = 18.631932085428044 
+            xmax = 19.289230451018593 
+            text = "ave died" 
+        intervals [19]:
+            xmin = 19.289230451018593 
+            xmax = 19.58344971942579 
+            text = "" 
+        intervals [20]:
+            xmin = 19.58344971942579 
+            xmax = 21.38006525203996 
+            text = "and i brought you back" 
+        intervals [21]:
+            xmin = 21.38006525203996 
+            xmax = 21.855824069038835 
+            text = "" 
+        intervals [22]:
+            xmin = 21.855824069038835 
+            xmax = 22.306542948300926 
+            text = "while" 
+        intervals [23]:
+            xmin = 22.306542948300926 
+            xmax = 22.444262605853233 
+            text = "" 
+        intervals [24]:
+            xmin = 22.444262605853233 
+            xmax = 23.769015945071793 
+            text = "you see the dark" 
+        intervals [25]:
+            xmin = 23.769015945071793 
+            xmax = 23.99437538470284 
+            text = "" 
+        intervals [26]:
+            xmin = 23.99437538470284 
+            xmax = 25.590671415422744 
+            text = "i see the light" 
+        intervals [27]:
+            xmin = 25.590671415422744 
+            xmax = 25.99131041921127 
+            text = "" 
+        intervals [28]:
+            xmin = 25.99131041921127 
+            xmax = 26.924048099906432 
+            text = "die every day" 
+        intervals [29]:
+            xmin = 26.924048099906432 
+            xmax = 27.355987025865936 
+            text = "" 
+        intervals [30]:
+            xmin = 27.355987025865936 
+            xmax = 28.87268553976122 
+            text = "dying for years now" 
+        intervals [31]:
+            xmin = 28.87268553976122 
+            xmax = 29.36722431006268 
+            text = "" 
+        intervals [32]:
+            xmin = 29.36722431006268 
+            xmax = 30.33126191292882 
+            text = "kill everyday" 
+        intervals [33]:
+            xmin = 30.33126191292882 
+            xmax = 30.74442088558574 
+            text = "" 
+        intervals [34]:
+            xmin = 30.74442088558574 
+            xmax = 31.793817953615548 
+            text = "killing for years" 
+        intervals [35]:
+            xmin = 31.793817953615548 
+            xmax = 32.51869355459202 
+            text = "" 
+        intervals [36]:
+            xmin = 32.51869355459202 
+            xmax = 33.685094214403335 
+            text = "?" 
+        intervals [37]:
+            xmin = 33.685094214403335 
+            xmax = 33.98776780334171 
+            text = "" 
+        intervals [38]:
+            xmin = 33.98776780334171 
+            xmax = 35.56019400928988 
+            text = "?" 
+        intervals [39]:
+            xmin = 35.56019400928988 
+            xmax = 36.04004238199707 
+            text = "" 
+        intervals [40]:
+            xmin = 36.04004238199707 
+            xmax = 41.714133265462806 
+            text = "kill every day. You have died and I brought you back" 
+        intervals [41]:
+            xmin = 41.714133265462806 
+            xmax = 42.23089305145516 
+            text = "" 
+        intervals [42]:
+            xmin = 42.23089305145516 
+            xmax = 45.75414700226724 
+            text = "while you see the dark i see the light" 
+        intervals [43]:
+            xmin = 45.75414700226724 
+            xmax = 46.07158515651968 
+            text = "" 
+        intervals [44]:
+            xmin = 46.07158515651968 
+            xmax = 49.939901268805315 
+            text = "a light so dark controlling me" 
+        intervals [45]:
+            xmin = 49.939901268805315 
+            xmax = 50.464043337454704 
+            text = "" 
+        intervals [46]:
+            xmin = 50.464043337454704 
+            xmax = 54.48191181808803 
+            text = "altering who I’m supposed to be" 
+        intervals [47]:
+            xmin = 54.48191181808803 
+            xmax = 55.36778573693207 
+            text = "die every day" 
+        intervals [48]:
+            xmin = 55.36778573693207 
+            xmax = 56.305335634375346 
+            text = "" 
+        intervals [49]:
+            xmin = 56.305335634375346 
+            xmax = 56.72612574582626 
+            text = "" 
+        intervals [50]:
+            xmin = 56.72612574582626 
+            xmax = 57.79655673109614 
+            text = "kill every day" 
+        intervals [51]:
+            xmin = 57.79655673109614 
+            xmax = 58.669571208033126 
+            text = "" 
+        intervals [52]:
+            xmin = 58.669571208033126 
+            xmax = 60.448701328378235 
+            text = "?" 
+        intervals [53]:
+            xmin = 60.448701328378235 
+            xmax = 60.88425600514322 
+            text = "" 
+        intervals [54]:
+            xmin = 60.88425600514322 
+            xmax = 62.02850981698344 
+            text = "kill every day" 
+        intervals [55]:
+            xmin = 62.02850981698344 
+            xmax = 63.955285590469224 
+            text = "" 
+        intervals [56]:
+            xmin = 63.955285590469224 
+            xmax = 65.76604710218315 
+            text = "?" 
+        intervals [57]:
+            xmin = 65.76604710218315 
+            xmax = 66.16469036566296 
+            text = "" 
+        intervals [58]:
+            xmin = 66.16469036566296 
+            xmax = 67.24250363358989 
+            text = "killing for years" 
+        intervals [59]:
+            xmin = 67.24250363358989 
+            xmax = 68.10623070446283 
+            text = "" 
+        intervals [60]:
+            xmin = 68.10623070446283 
+            xmax = 69.89274310746498 
+            text = "?" 
+        intervals [61]:
+            xmin = 69.89274310746498 
+            xmax = 70.35234975560806 
+            text = "" 
+        intervals [62]:
+            xmin = 70.35234975560806 
+            xmax = 73.97705054021161 
+            text = "killing for years" 
+        intervals [63]:
+            xmin = 73.97705054021161 
+            xmax = 79.30158145933987 
+            text = "" 
+        intervals [64]:
+            xmin = 79.30158145933987 
+            xmax = 81.13238755828422 
+            text = "?" 
+        intervals [65]:
+            xmin = 81.13238755828422 
+            xmax = 81.50150169113591 
+            text = "" 
+        intervals [66]:
+            xmin = 81.50150169113591 
+            xmax = 82.5497858284347 
+            text = "kill every day" 
+        intervals [67]:
+            xmin = 82.5497858284347 
+            xmax = 83.494718008535 
+            text = "" 
+        intervals [68]:
+            xmin = 83.494718008535 
+            xmax = 85.27585261685395 
+            text = "?" 
+        intervals [69]:
+            xmin = 85.27585261685395 
+            xmax = 85.66711359767673 
+            text = "" 
+        intervals [70]:
+            xmin = 85.66711359767673 
+            xmax = 87.1066587157983 
+            text = "kill every day" 
+        intervals [71]:
+            xmin = 87.1066587157983 
+            xmax = 88.73814318300275 
+            text = "" 
+        intervals [72]:
+            xmin = 88.73814318300275 
+            xmax = 90.52675784674554 
+            text = "?" 
+        intervals [73]:
+            xmin = 90.52675784674554 
+            xmax = 90.94016567553943 
+            text = "" 
+        intervals [74]:
+            xmin = 90.94016567553943 
+            xmax = 92.06227263940855 
+            text = "killing for years" 
+        intervals [75]:
+            xmin = 92.06227263940855 
+            xmax = 92.91861742762445 
+            text = "" 
+        intervals [76]:
+            xmin = 92.91861742762445 
+            xmax = 94.71989439594067 
+            text = "?" 
+        intervals [77]:
+            xmin = 94.71989439594067 
+            xmax = 95.14278676813224 
+            text = "" 
+        intervals [78]:
+            xmin = 95.14278676813224 
+            xmax = 99.44665755718287 
+            text = "killing for years. you have died" 
+        intervals [79]:
+            xmin = 99.44665755718287 
+            xmax = 99.92352371424796 
+            text = "" 
+        intervals [80]:
+            xmin = 99.92352371424796 
+            xmax = 103.54084221619448 
+            text = "while you see the dark. i see the light. " 
+        intervals [81]:
+            xmin = 103.54084221619448 
+            xmax = 103.83613352247582 
+            text = "" 
+        intervals [82]:
+            xmin = 103.83613352247582 
+            xmax = 104.45585417459935 
+            text = "a light" 
+        intervals [83]:
+            xmin = 104.45585417459935 
+            xmax = 104.76591004619476 
+            text = "" 
+        intervals [84]:
+            xmin = 104.76591004619476 
+            xmax = 105.51152059455517 
+            text = "so dark" 
+        intervals [85]:
+            xmin = 105.51152059455517 
+            xmax = 105.88063472740686 
+            text = "" 
+        intervals [86]:
+            xmin = 105.88063472740686 
+            xmax = 107.6450002824379 
+            text = "controlling me" 
+        intervals [87]:
+            xmin = 107.6450002824379 
+            xmax = 108.2134360470295 
+            text = "" 
+        intervals [88]:
+            xmin = 108.2134360470295 
+            xmax = 112.16765065385793 
+            text = "altering who I’m supposed to be" 
+        intervals [89]:
+            xmin = 112.16765065385793 
+            xmax = 113.08305370333011 
+            text = "" 
+        intervals [90]:
+            xmin = 113.08305370333011 
+            xmax = 113.72531229449204 
+            text = "Choking" 
+        intervals [91]:
+            xmin = 113.72531229449204 
+            xmax = 114.43102921392519 
+            text = "" 
+        intervals [92]:
+            xmin = 114.43102921392519 
+            xmax = 115.11758150102932 
+            text = "strangeling" 
+        intervals [93]:
+            xmin = 115.11758150102932 
+            xmax = 115.73769324422015 
+            text = "" 
+        intervals [94]:
+            xmin = 115.73769324422015 
+            xmax = 116.40948096601021 
+            text = "breathless" 
+        intervals [95]:
+            xmin = 116.40948096601021 
+            xmax = 117.12556238374248 
+            text = "" 
+        intervals [96]:
+            xmin = 117.12556238374248 
+            xmax = 117.84164380147475 
+            text = "asphyxiate" 
+        intervals [97]:
+            xmin = 117.84164380147475 
+            xmax = 118.56510750186405 
+            text = "" 
+        intervals [98]:
+            xmin = 118.56510750186405 
+            xmax = 119.39930544210885 
+            text = "lifeless" 
+        intervals [99]:
+            xmin = 119.39930544210885 
+            xmax = 119.92344751075825 
+            text = "" 
+        intervals [100]:
+            xmin = 119.92344751075825 
+            xmax = 120.67644034177569 
+            text = "gasping" 
+        intervals [101]:
+            xmin = 120.67644034177569 
+            xmax = 121.38513947685091 
+            text = "" 
+        intervals [102]:
+            xmin = 121.38513947685091 
+            xmax = 122.17694884456051 
+            text = "breathing" 
+        intervals [103]:
+            xmin = 122.17694884456051 
+            xmax = 122.6789440652388 
+            text = "" 
+        intervals [104]:
+            xmin = 122.6789440652388 
+            xmax = 123.43931917891327 
+            text = "resuscitate" 
+        intervals [105]:
+            xmin = 123.43931917891327 
+            xmax = 124.15540059664553 
+            text = "" 
+        intervals [106]:
+            xmin = 124.15540059664553 
+            xmax = 124.86409973172077 
+            text = "Choking" 
+        intervals [107]:
+            xmin = 124.86409973172077 
+            xmax = 125.45468234428347 
+            text = "" 
+        intervals [108]:
+            xmin = 125.45468234428347 
+            xmax = 126.24458658858607 
+            text = "asphyxiate" 
+        intervals [109]:
+            xmin = 126.24458658858607 
+            xmax = 126.90160974506207 
+            text = "" 
+        intervals [110]:
+            xmin = 126.90160974506207 
+            xmax = 127.58816203216621 
+            text = "gasping" 
+        intervals [111]:
+            xmin = 127.58816203216621 
+            xmax = 128.1344509487867 
+            text = "" 
+        intervals [112]:
+            xmin = 128.1344509487867 
+            xmax = 128.91887803383926 
+            text = "resuscitate" 
+        intervals [113]:
+            xmin = 128.91887803383926 
+            xmax = 129.57590119031525 
+            text = "" 
+        intervals [114]:
+            xmin = 129.57590119031525 
+            xmax = 130.42486369587414 
+            text = "starling" 
+        intervals [115]:
+            xmin = 130.42486369587414 
+            xmax = 130.99329946046572 
+            text = "" 
+        intervals [116]:
+            xmin = 130.99329946046572 
+            xmax = 131.7536745741402 
+            text = "asphyxiate" 
+        intervals [117]:
+            xmin = 131.7536745741402 
+            xmax = 132.44022686124433 
+            text = "" 
+        intervals [118]:
+            xmin = 132.44022686124433 
+            xmax = 133.29657164946025 
+            text = "lifeless" 
+        intervals [119]:
+            xmin = 133.29657164946025 
+            xmax = 133.76165545685336 
+            text = "" 
+        intervals [120]:
+            xmin = 133.76165545685336 
+            xmax = 136.1849492917674 
+            text = "resuscitate" 
+        intervals [121]:
+            xmin = 136.1849492917674 
+            xmax = 143.4067268537533 
+            text = "" 
+        intervals [122]:
+            xmin = 143.4067268537533 
+            xmax = 144.03422087960118 
+            text = "Choking" 
+        intervals [123]:
+            xmin = 144.03422087960118 
+            xmax = 144.68386175342013 
+            text = "" 
+        intervals [124]:
+            xmin = 144.68386175342013 
+            xmax = 145.43685458443758 
+            text = "asphyxiate" 
+        intervals [125]:
+            xmin = 145.43685458443758 
+            xmax = 146.21937654608314 
+            text = "" 
+        intervals [126]:
+            xmin = 146.21937654608314 
+            xmax = 146.91331111584432 
+            text = "gasping" 
+        intervals [127]:
+            xmin = 146.91331111584432 
+            xmax = 147.40054177120854 
+            text = "" 
+        intervals [128]:
+            xmin = 147.40054177120854 
+            xmax = 148.27903340739553 
+            text = "resuscitate" 
+        intervals [129]:
+            xmin = 148.27903340739553 
+            xmax = 148.89176286792934 
+            text = "" 
+        intervals [130]:
+            xmin = 148.89176286792934 
+            xmax = 149.7850190694304 
+            text = "strangeling" 
+        intervals [131]:
+            xmin = 149.7850190694304 
+            xmax = 150.2427205941665 
+            text = "" 
+        intervals [132]:
+            xmin = 150.2427205941665 
+            xmax = 150.97547170061983 
+            text = "asphyxiate" 
+        intervals [133]:
+            xmin = 150.97547170061983 
+            xmax = 151.72108224898025 
+            text = "" 
+        intervals [134]:
+            xmin = 151.72108224898025 
+            xmax = 152.46669279734064 
+            text = "lifeless" 
+        intervals [135]:
+            xmin = 152.46669279734064 
+            xmax = 153.05727540990335 
+            text = "" 
+        intervals [136]:
+            xmin = 153.05727540990335 
+            xmax = 153.95791389406145 
+            text = "resuscitate" 
+        intervals [137]:
+            xmin = 153.95791389406145 
+            xmax = 154.39346857082643 
+            text = "" 
+        intervals [138]:
+            xmin = 154.39346857082643 
+            xmax = 155.16860824981498 
+            text = "asphyxiate" 
+        intervals [139]:
+            xmin = 155.16860824981498 
+            xmax = 155.80348455831987 
+            text = "" 
+        intervals [140]:
+            xmin = 155.80348455831987 
+            xmax = 156.56385967199435 
+            text = "resuscitate" 
+        intervals [141]:
+            xmin = 156.56385967199435 
+            xmax = 157.15444228455704 
+            text = "" 
+        intervals [142]:
+            xmin = 157.15444228455704 
+            xmax = 157.8502819777252 
+            text = "asphyxiate " 
+        intervals [143]:
+            xmin = 157.8502819777252 
+            xmax = 158.5368342648293 
+            text = "" 
+        intervals [144]:
+            xmin = 158.5368342648293 
+            xmax = 161.29042569590288 
+            text = "resuscitate" 
+        intervals [145]:
+            xmin = 161.29042569590288 
+            xmax = 182.62355566229414 
+            text = "" 
+        intervals [146]:
+            xmin = 182.62355566229414 
+            xmax = 186.08584622844296 
+            text = "You have died and. I brought you back" 
+        intervals [147]:
+            xmin = 186.08584622844296 
+            xmax = 186.58754813082075 
+            text = "" 
+        intervals [148]:
+            xmin = 186.58754813082075 
+            xmax = 188.44788336039323 
+            text = "while you see the dark " 
+        intervals [149]:
+            xmin = 188.44788336039323 
+            xmax = 188.69888097073238 
+            text = "" 
+        intervals [150]:
+            xmin = 188.69888097073238 
+            xmax = 190.44848196044936 
+            text = "i see the light" 
+        intervals [151]:
+            xmin = 190.44848196044936 
+            xmax = 207.3276037246414 
+            text = "" 
+        intervals [152]:
+            xmin = 207.3276037246414 
+            xmax = 207.85174579329077 
+            text = "you" 
+        intervals [153]:
+            xmin = 207.85174579329077 
+            xmax = 208.14703709957212 
+            text = "" 
+        intervals [154]:
+            xmin = 208.14703709957212 
+            xmax = 208.76714884276296 
+            text = "have died" 
+        intervals [155]:
+            xmin = 208.76714884276296 
+            xmax = 209.12149841030057 
+            text = "" 
+        intervals [156]:
+            xmin = 209.12149841030057 
+            xmax = 210.90801081330272 
+            text = "and I brought you back" 
+        intervals [157]:
+            xmin = 210.90801081330272 
+            xmax = 211.410006033981 
+            text = "" 
+        intervals [158]:
+            xmin = 211.410006033981 
+            xmax = 215.0489825200645 
+            text = "while you see the dark. I see the light" 
+        intervals [159]:
+            xmin = 215.0489825200645 
+            xmax = 215.43286121823027 
+            text = "" 
+        intervals [160]:
+            xmin = 215.43286121823027 
+            xmax = 217.37440155703013 
+            text = "a light so dark controlling me" 
+        intervals [161]:
+            xmin = 217.37440155703013 
+            xmax = 217.57372318877003 
+            text = "" 
+        intervals [162]:
+            xmin = 217.57372318877003 
+            xmax = 219.3353454176779 
+            text = "altering who I’m supposed to be" 
+        intervals [163]:
+            xmin = 219.3353454176779 
+            xmax = 219.5272847667608 
+            text = "" 
+        intervals [164]:
+            xmin = 219.5272847667608 
+            xmax = 221.39500227899032 
+            text = "a light so dark controlling me" 
+        intervals [165]:
+            xmin = 221.39500227899032 
+            xmax = 221.57217706275912 
+            text = "" 
+        intervals [166]:
+            xmin = 221.57217706275912 
+            xmax = 223.79424414252625 
+            text = "altering who I’m supposed to be " 
+        intervals [167]:
+            xmin = 223.79424414252625 
+            xmax = 227.4 
+            text = "" 
diff --git a/textgrid/11.TextGrid b/textgrid/11.TextGrid
new file mode 100644 (file)
index 0000000..e850ba4
--- /dev/null
@@ -0,0 +1,348 @@
+File type = "ooTextFile"
+Object class = "TextGrid"
+
+xmin = 0 
+xmax = 185.8 
+tiers? <exists> 
+size = 2 
+item []: 
+    item [1]:
+        class = "IntervalTier" 
+        name = "type" 
+        xmin = 0 
+        xmax = 185.8 
+        intervals: size = 1 
+        intervals [1]:
+            xmin = 0 
+            xmax = 185.8 
+            text = "" 
+    item [2]:
+        class = "IntervalTier" 
+        name = "lyrics" 
+        xmin = 0 
+        xmax = 185.8 
+        intervals: size = 81 
+        intervals [1]:
+            xmin = 0 
+            xmax = 17.66102497762822 
+            text = "" 
+        intervals [2]:
+            xmin = 17.66102497762822 
+            xmax = 20.428443553012816 
+            text = "Putrid mess lays in the woods" 
+        intervals [3]:
+            xmin = 20.428443553012816 
+            xmax = 21.403629146243578 
+            text = "" 
+        intervals [4]:
+            xmin = 21.403629146243578 
+            xmax = 24.006320425474325 
+            text = "removed of organs and meat" 
+        intervals [5]:
+            xmin = 24.006320425474325 
+            xmax = 25.10839913232429 
+            text = "" 
+        intervals [6]:
+            xmin = 25.10839913232429 
+            xmax = 27.85605043217042 
+            text = "13 mounds of bony flesh" 
+        intervals [7]:
+            xmin = 27.85605043217042 
+            xmax = 28.837825117247334 
+            text = "" 
+        intervals [8]:
+            xmin = 28.837825117247334 
+            xmax = 31.427338212785777 
+            text = "hollowed out except for maggots" 
+        intervals [9]:
+            xmin = 31.427338212785777 
+            xmax = 32.48988235438582 
+            text = "" 
+        intervals [10]:
+            xmin = 32.48988235438582 
+            xmax = 32.839104222231974 
+            text = "that" 
+        intervals [11]:
+            xmin = 32.839104222231974 
+            xmax = 33.13561335530889 
+            text = "" 
+        intervals [12]:
+            xmin = 33.13561335530889 
+            xmax = 33.53095886607812 
+            text = "dwell" 
+        intervals [13]:
+            xmin = 33.53095886607812 
+            xmax = 33.76816617253966 
+            text = "" 
+        intervals [14]:
+            xmin = 33.76816617253966 
+            xmax = 35.92279920623195 
+            text = "deep inside the skulls. of victims that they cleaned" 
+        intervals [15]:
+            xmin = 35.92279920623195 
+            xmax = 36.25225379853964 
+            text = "" 
+        intervals [16]:
+            xmin = 36.25225379853964 
+            xmax = 38.68773041238581 
+            text = "how did this horror unfold" 
+        intervals [17]:
+            xmin = 38.68773041238581 
+            xmax = 41.68746755675506 
+            text = "" 
+        intervals [18]:
+            xmin = 41.68746755675506 
+            xmax = 42.22118399629352 
+            text = "No" 
+        intervals [19]:
+            xmin = 42.22118399629352 
+            xmax = 42.39250038429351 
+            text = "" 
+        intervals [20]:
+            xmin = 42.39250038429351 
+            xmax = 42.735133160293515 
+            text = "trace" 
+        intervals [21]:
+            xmin = 42.735133160293515 
+            xmax = 42.89986045644736 
+            text = "" 
+        intervals [22]:
+            xmin = 42.89986045644736 
+            xmax = 45.29170079660119 
+            text = "of evidence was left behind. at this scene of gore" 
+        intervals [23]:
+            xmin = 45.29170079660119 
+            xmax = 45.522319011216574 
+            text = "" 
+        intervals [24]:
+            xmin = 45.522319011216574 
+            xmax = 46.431613685985795 
+            text = "will the truth" 
+        intervals [25]:
+            xmin = 46.431613685985795 
+            xmax = 46.761068278293486 
+            text = "" 
+        intervals [26]:
+            xmin = 46.761068278293486 
+            xmax = 47.769199330755015 
+            text = "ever be" 
+        intervals [27]:
+            xmin = 47.769199330755015 
+            xmax = 47.99056648112429 
+            text = "" 
+        intervals [28]:
+            xmin = 47.99056648112429 
+            xmax = 48.97234116620121 
+            text = "told" 
+        intervals [29]:
+            xmin = 48.97234116620121 
+            xmax = 49.901403116508895 
+            text = "" 
+        intervals [30]:
+            xmin = 49.901403116508895 
+            xmax = 51.86495248666273 
+            text = "Only time will tell" 
+        intervals [31]:
+            xmin = 51.86495248666273 
+            xmax = 53.558349091124256 
+            text = "" 
+        intervals [32]:
+            xmin = 53.558349091124256 
+            xmax = 54.50887867133969 
+            text = "will there be" 
+        intervals [33]:
+            xmin = 54.50887867133969 
+            xmax = 54.818565988108915 
+            text = "" 
+        intervals [34]:
+            xmin = 54.818565988108915 
+            xmax = 55.74103884657045 
+            text = "more to find" 
+        intervals [35]:
+            xmin = 55.74103884657045 
+            xmax = 56.03095888780122 
+            text = "" 
+        intervals [36]:
+            xmin = 56.03095888780122 
+            xmax = 57.94838461503197 
+            text = "some more hollowed bodies" 
+        intervals [37]:
+            xmin = 57.94838461503197 
+            xmax = 58.45574468718581 
+            text = "" 
+        intervals [38]:
+            xmin = 58.45574468718581 
+            xmax = 59.461388370416586 
+            text = "will there be" 
+        intervals [39]:
+            xmin = 59.461388370416586 
+            xmax = 59.75789750349351 
+            text = "" 
+        intervals [40]:
+            xmin = 59.75789750349351 
+            xmax = 60.746261280416576 
+            text = "more to find" 
+        intervals [41]:
+            xmin = 60.746261280416576 
+            xmax = 61.00982495426273 
+            text = "" 
+        intervals [42]:
+            xmin = 61.00982495426273 
+            xmax = 64.85545452477041 
+            text = "some more hollowed bodies. with their untold stories" 
+        intervals [43]:
+            xmin = 64.85545452477041 
+            xmax = 68.71836270098581 
+            text = "" 
+        intervals [44]:
+            xmin = 68.71836270098581 
+            xmax = 71.90748315452424 
+            text = "Cadavers rot. cadavers rot hollowed" 
+        intervals [45]:
+            xmin = 71.90748315452424 
+            xmax = 75.83628224920119 
+            text = "" 
+        intervals [46]:
+            xmin = 75.83628224920119 
+            xmax = 81.44778843447808 
+            text = "Cadavers rot. cadavers rot hollowed. 13 more corpses are found" 
+        intervals [47]:
+            xmin = 81.44778843447808 
+            xmax = 82.61807211227811 
+            text = "" 
+        intervals [48]:
+            xmin = 82.61807211227811 
+            xmax = 85.37231250397039 
+            text = "13 miles exactly south" 
+        intervals [49]:
+            xmin = 85.37231250397039 
+            xmax = 86.3145526379704 
+            text = "" 
+        intervals [50]:
+            xmin = 86.3145526379704 
+            xmax = 88.88386195004733 
+            text = "26 more to the north" 
+        intervals [51]:
+            xmin = 88.88386195004733 
+            xmax = 90.02377483943194 
+            text = "" 
+        intervals [52]:
+            xmin = 90.02377483943194 
+            xmax = 92.68559334210886 
+            text = "2 stacks of 13 humans" 
+        intervals [53]:
+            xmin = 92.68559334210886 
+            xmax = 93.75961531303193 
+            text = "" 
+        intervals [54]:
+            xmin = 93.75961531303193 
+            xmax = 94.77433545733962 
+            text = "13" 
+        intervals [55]:
+            xmin = 94.77433545733962 
+            xmax = 94.95883002903192 
+            text = "" 
+        intervals [56]:
+            xmin = 94.95883002903192 
+            xmax = 97.00973794755504 
+            text = "miles apart from one another. in a line" 
+        intervals [57]:
+            xmin = 97.00973794755504 
+            xmax = 97.41826164201657 
+            text = "" 
+        intervals [58]:
+            xmin = 97.41826164201657 
+            xmax = 99.84963653324732 
+            text = "why did this horror unfold" 
+        intervals [59]:
+            xmin = 99.84963653324732 
+            xmax = 103.10412279513967 
+            text = "" 
+        intervals [60]:
+            xmin = 103.10412279513967 
+            xmax = 106.33936689160119 
+            text = "2 more. 1 to the west. 1 to the east make 6 in total" 
+        intervals [61]:
+            xmin = 106.33936689160119 
+            xmax = 106.74130149421656 
+            text = "" 
+        intervals [62]:
+            xmin = 106.74130149421656 
+            xmax = 109.98483503689351 
+            text = "will the truth ever be told" 
+        intervals [63]:
+            xmin = 109.98483503689351 
+            xmax = 111.10498065073966 
+            text = "" 
+        intervals [64]:
+            xmin = 111.10498065073966 
+            xmax = 113.31891551104732 
+            text = "Only if I tell" 
+        intervals [65]:
+            xmin = 113.31891551104732 
+            xmax = 114.80146117643193 
+            text = "" 
+        intervals [66]:
+            xmin = 114.80146117643193 
+            xmax = 119.2265816230627 
+            text = "will there be more to find. some more hollowed bodies" 
+        intervals [67]:
+            xmin = 119.2265816230627 
+            xmax = 119.71417441967809 
+            text = "" 
+        intervals [68]:
+            xmin = 119.71417441967809 
+            xmax = 126.05903335960119 
+            text = "will there be more to find some more hollowed bodies. with their untold stories" 
+        intervals [69]:
+            xmin = 126.05903335960119 
+            xmax = 129.94170881135508 
+            text = "" 
+        intervals [70]:
+            xmin = 129.94170881135508 
+            xmax = 133.1571856322781 
+            text = "Cadavers rot. cadavers rot hollowed out" 
+        intervals [71]:
+            xmin = 133.1571856322781 
+            xmax = 137.0530392677243 
+            text = "" 
+        intervals [72]:
+            xmin = 137.0530392677243 
+            xmax = 140.43494373917045 
+            text = "Cadavers rot. cadavers rot hollowed out." 
+        intervals [73]:
+            xmin = 140.43494373917045 
+            xmax = 140.7841656070166 
+            text = "" 
+        intervals [74]:
+            xmin = 140.7841656070166 
+            xmax = 142.7413000239935 
+            text = "Bodies were found" 
+        intervals [75]:
+            xmin = 142.7413000239935 
+            xmax = 144.18431113830115 
+            text = "" 
+        intervals [76]:
+            xmin = 144.18431113830115 
+            xmax = 145.79374990313198 
+            text = "hollowed bodies" 
+        intervals [77]:
+            xmin = 145.79374990313198 
+            xmax = 147.53985924236272 
+            text = "" 
+        intervals [78]:
+            xmin = 147.53985924236272 
+            xmax = 149.37162677559348 
+            text = "bodies were found" 
+        intervals [79]:
+            xmin = 149.37162677559348 
+            xmax = 150.97277609420883 
+            text = "" 
+        intervals [80]:
+            xmin = 150.97277609420883 
+            xmax = 153.53344545313192 
+            text = "hollowed bodies" 
+        intervals [81]:
+            xmin = 153.53344545313192 
+            xmax = 185.8 
+            text = "" 
diff --git a/train.py b/train.py
new file mode 100644 (file)
index 0000000..e9df911
--- /dev/null
+++ b/train.py
@@ -0,0 +1,27 @@
+import numpy as np
+from keras.models import Sequential
+from keras.layers import Dense, Dropout  # , Activation
+
+model = Sequential()
+
+model.add(Dense(26, input_shape=(13,), activation='relu'))
+model.add(Dropout(0.5))
+model.add(Dense(1, activation='sigmoid'))
+
+model.compile(
+    loss='binary_crossentropy',
+    optimizer='rmsprop',
+    metrics=['accuracy'])
+
+model.summary()
+
+dat = np.genfromtxt('train.txt', dtype=float, delimiter='\t')[:, range(1, 14)]
+lab = np.genfromtxt('train.txt', dtype=int, delimiter='\t')[:, 0]
+
+model.fit(dat, lab, epochs=10, batch_size=32)
+
+with open('model.json', 'w') as f:
+    f.write(model.to_json())
+model.save_weights('model.hdf5')
+
+