kiamehr74 commited on
Commit
80b0c72
1 Parent(s): 3131d33

first commit (data files added)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. coarsewsd_20.py +86 -0
  2. data/LICENSE +5 -0
  3. data/README.txt +21 -0
  4. data/apple/classes_map.txt +1 -0
  5. data/apple/test.data.txt +0 -0
  6. data/apple/test.gold.txt +1032 -0
  7. data/apple/train.data.txt +0 -0
  8. data/apple/train.gold.txt +2358 -0
  9. data/arm/classes_map.txt +1 -0
  10. data/arm/test.data.txt +164 -0
  11. data/arm/test.gold.txt +164 -0
  12. data/arm/train.data.txt +423 -0
  13. data/arm/train.gold.txt +423 -0
  14. data/bank/classes_map.txt +1 -0
  15. data/bank/test.data.txt +455 -0
  16. data/bank/test.gold.txt +455 -0
  17. data/bank/train.data.txt +0 -0
  18. data/bank/train.gold.txt +1107 -0
  19. data/bass/classes_map.txt +1 -0
  20. data/bass/test.data.txt +0 -0
  21. data/bass/test.gold.txt +1391 -0
  22. data/bass/train.data.txt +0 -0
  23. data/bass/train.gold.txt +3173 -0
  24. data/bow/classes_map.txt +1 -0
  25. data/bow/test.data.txt +215 -0
  26. data/bow/test.gold.txt +215 -0
  27. data/bow/train.data.txt +523 -0
  28. data/bow/train.gold.txt +523 -0
  29. data/chair/classes_map.txt +1 -0
  30. data/chair/test.data.txt +130 -0
  31. data/chair/test.gold.txt +130 -0
  32. data/chair/train.data.txt +271 -0
  33. data/chair/train.gold.txt +271 -0
  34. data/club/classes_map.txt +1 -0
  35. data/club/test.data.txt +202 -0
  36. data/club/test.gold.txt +202 -0
  37. data/club/train.data.txt +388 -0
  38. data/club/train.gold.txt +388 -0
  39. data/crane/classes_map.txt +1 -0
  40. data/crane/test.data.txt +157 -0
  41. data/crane/test.gold.txt +157 -0
  42. data/crane/train.data.txt +372 -0
  43. data/crane/train.gold.txt +372 -0
  44. data/deck/classes_map.txt +1 -0
  45. data/deck/test.data.txt +99 -0
  46. data/deck/test.gold.txt +99 -0
  47. data/deck/train.data.txt +170 -0
  48. data/deck/train.gold.txt +170 -0
  49. data/digit/classes_map.txt +1 -0
  50. data/digit/test.data.txt +42 -0
coarsewsd_20.py ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # @title Gold cwsd20 temp
3
+ import json
4
+ import datasets
5
+
6
+
7
+ _CITATION = """\
8
+ @misc{loureiro2021analysis,
9
+ title={Analysis and Evaluation of Language Models for Word Sense Disambiguation},
10
+ author={Daniel Loureiro and Kiamehr Rezaee and Mohammad Taher Pilehvar and Jose Camacho-Collados},
11
+ year={2021},
12
+ eprint={2008.11608},
13
+ archivePrefix={arXiv},
14
+ primaryClass={cs.CL}
15
+ }
16
+ """
17
+
18
+ _DESCRIPTION = """\
19
+ The CoarseWSD-20 dataset is a coarse-grained sense disambiguation built from Wikipedia
20
+ (nouns only) targetting 2 to 5 senses of 20 ambiguous words. It was specifically designed
21
+ to provide an ideal setting for evaluating WSD models (e.g. no senses in test sets missing
22
+ from training), both quantitavely and qualitatively.
23
+ """
24
+
25
+ path = "/content/CoarseWSD-20/apple/train.data.txt"
26
+
27
+
28
+
29
+ class CWSD20(datasets.GeneratorBasedBuilder):
30
+ """TODO(WiCTSV): Short description of my dataset."""
31
+
32
+ # TODO(WiCTSV): Set up version.
33
+ VERSION = datasets.Version("1.0.0")
34
+
35
+ def _info(self):
36
+ # TODO(WiCTSV): Specifies the datasets.DatasetInfo object
37
+ return datasets.DatasetInfo(
38
+ # This is the description that will appear on the datasets page.
39
+ description=_DESCRIPTION,
40
+ # datasets.features.FeatureConnectors
41
+ features=datasets.Features(
42
+ {
43
+ "idx": datasets.Value("int32"),
44
+ "sentence": datasets.Value("string"),
45
+ # "idx": datasets.Value("int32"),
46
+ # "word": datasets.Value("string"),
47
+ # "start1": datasets.Value("int32"),
48
+ # "start2": datasets.Value("int32"),
49
+ # "end1": datasets.Value("int32"),
50
+ # "end2": datasets.Value("int32"),
51
+ # "label": datasets.Value("int32")
52
+ }
53
+ ),
54
+ # If there's a common (input, target) tuple from the features,
55
+ # specify them here. They'll be used if as_supervised=True in
56
+ # builder.as_dataset.
57
+ supervised_keys=None,
58
+ # Homepage of the dataset for documentation
59
+ homepage="https://github.com/google-research-datasets/boolean-questions",
60
+ citation=_CITATION,
61
+ )
62
+
63
+ def _split_generators(self, dl_manager):
64
+ """Returns SplitGenerators."""
65
+ # TODO(WiCTSV): Downloads the data and defines the splits
66
+ # dl_manager is a datasets.download.DownloadManager that can be used to
67
+ # download and extract URLs
68
+ # urls_to_download = _URLS
69
+ dl = path
70
+
71
+ return [datasets.SplitGenerator(name=datasets.Split.TRAIN,
72
+ gen_kwargs={"ex": dl})]
73
+
74
+ def _generate_examples(self, ex):
75
+ """Yields examples."""
76
+ with open(ex, encoding="utf-8") as exf:
77
+ for id_, exi in enumerate(exf):
78
+ example = {}
79
+ # 'word', 'sentence1', 'sentence2', 'start1', 'start2', 'end1', 'end2', 'idx', 'label'
80
+ parts = exi.split("\t")
81
+ idx = parts[0]
82
+ sent = parts[1]
83
+ example["sentence"] = sent
84
+ example["idx"] = idx
85
+
86
+ yield id_, example
data/LICENSE ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ This dataset is licensed under a Creative Commons Attribution-NonCommercial 4.0 License
2
+ https://creativecommons.org/licenses/by-nc/4.0/
3
+
4
+ Full license available at:
5
+ https://creativecommons.org/licenses/by-nc/4.0/legalcode
data/README.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This folder contains the CoarseWSD-20 dataset (v1.0, Aug 2020) released with this paper:
2
+
3
+ Language Models and Word Sense Disambiguation: An Overview and Analysis
4
+ https://arxiv.org/abs/2008.11608
5
+ Daniel Loureiro* (dloureiro@fc.up.pt)
6
+ Kiamehr Rezaee* (k_rezaee@comp.iust.ac.ir)
7
+ Mohammad Taher Pilehvar (pilehvar@teias.institute)
8
+ Jose Camacho-Collados (camachocolladosj@cardiff.ac.uk)
9
+ (*first authors)
10
+
11
+ In the CoarseWSD-20 dataset each word has a specific folder with the following set of files:
12
+ - class_map.txt: A dictionary mapping sense labels to sense number.
13
+ - train.data.txt: Single tokenized and uncased sentence per line. First token is the position of the ambiguous word.
14
+ - train.gold.txt: Correct class/sense number for the ambiguous word in the same line at train.data.txt.
15
+ - test.data.txt: Single tokenized and uncased sentence per line. First token is the position of the ambiguous word.
16
+ - test.gold.txt: Correct class/sense number for the ambiguous word in the same line at test.data.txt.
17
+
18
+ There's also a Python module to read the dataset available at:
19
+ https://github.com/danlou/bert-disambiguation/blob/master/coarsewsd20_reader.py
20
+
21
+ For any questions, create an issue on GitHub (https://github.com/danlou/bert-disambiguation/), or contact the first authors.
data/apple/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "apple_apple_inc.", "1": "apple_apple"}
data/apple/test.data.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/apple/test.gold.txt ADDED
@@ -0,0 +1,1032 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 1
5
+ 1
6
+ 1
7
+ 1
8
+ 0
9
+ 1
10
+ 0
11
+ 1
12
+ 1
13
+ 1
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 1
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 1
27
+ 0
28
+ 1
29
+ 0
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 1
36
+ 0
37
+ 0
38
+ 0
39
+ 0
40
+ 0
41
+ 0
42
+ 1
43
+ 0
44
+ 0
45
+ 0
46
+ 0
47
+ 1
48
+ 0
49
+ 1
50
+ 1
51
+ 0
52
+ 1
53
+ 1
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 1
62
+ 1
63
+ 0
64
+ 1
65
+ 1
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 1
72
+ 1
73
+ 1
74
+ 1
75
+ 0
76
+ 0
77
+ 1
78
+ 0
79
+ 1
80
+ 0
81
+ 1
82
+ 1
83
+ 1
84
+ 0
85
+ 1
86
+ 1
87
+ 0
88
+ 0
89
+ 0
90
+ 1
91
+ 0
92
+ 0
93
+ 1
94
+ 0
95
+ 1
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 0
101
+ 0
102
+ 0
103
+ 0
104
+ 0
105
+ 1
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 1
111
+ 1
112
+ 0
113
+ 0
114
+ 0
115
+ 0
116
+ 0
117
+ 1
118
+ 0
119
+ 1
120
+ 1
121
+ 1
122
+ 0
123
+ 1
124
+ 0
125
+ 1
126
+ 0
127
+ 1
128
+ 0
129
+ 1
130
+ 0
131
+ 0
132
+ 0
133
+ 1
134
+ 1
135
+ 0
136
+ 0
137
+ 0
138
+ 0
139
+ 1
140
+ 1
141
+ 1
142
+ 1
143
+ 0
144
+ 0
145
+ 1
146
+ 1
147
+ 1
148
+ 0
149
+ 0
150
+ 0
151
+ 1
152
+ 0
153
+ 0
154
+ 0
155
+ 1
156
+ 1
157
+ 0
158
+ 0
159
+ 1
160
+ 0
161
+ 1
162
+ 1
163
+ 0
164
+ 0
165
+ 0
166
+ 0
167
+ 0
168
+ 0
169
+ 1
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 1
175
+ 1
176
+ 0
177
+ 1
178
+ 1
179
+ 0
180
+ 1
181
+ 1
182
+ 0
183
+ 0
184
+ 0
185
+ 0
186
+ 0
187
+ 1
188
+ 0
189
+ 1
190
+ 0
191
+ 0
192
+ 0
193
+ 1
194
+ 0
195
+ 0
196
+ 0
197
+ 0
198
+ 1
199
+ 0
200
+ 0
201
+ 1
202
+ 0
203
+ 1
204
+ 0
205
+ 0
206
+ 0
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 1
213
+ 0
214
+ 0
215
+ 0
216
+ 1
217
+ 1
218
+ 1
219
+ 0
220
+ 0
221
+ 0
222
+ 0
223
+ 0
224
+ 0
225
+ 0
226
+ 1
227
+ 1
228
+ 0
229
+ 0
230
+ 0
231
+ 1
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 0
237
+ 1
238
+ 0
239
+ 1
240
+ 0
241
+ 0
242
+ 1
243
+ 1
244
+ 0
245
+ 1
246
+ 1
247
+ 0
248
+ 0
249
+ 0
250
+ 1
251
+ 1
252
+ 1
253
+ 0
254
+ 0
255
+ 1
256
+ 1
257
+ 1
258
+ 1
259
+ 0
260
+ 1
261
+ 0
262
+ 1
263
+ 0
264
+ 1
265
+ 0
266
+ 0
267
+ 0
268
+ 0
269
+ 0
270
+ 0
271
+ 1
272
+ 0
273
+ 0
274
+ 1
275
+ 0
276
+ 1
277
+ 1
278
+ 0
279
+ 1
280
+ 0
281
+ 0
282
+ 0
283
+ 0
284
+ 1
285
+ 0
286
+ 1
287
+ 1
288
+ 1
289
+ 0
290
+ 1
291
+ 1
292
+ 0
293
+ 0
294
+ 1
295
+ 0
296
+ 0
297
+ 0
298
+ 0
299
+ 0
300
+ 0
301
+ 0
302
+ 1
303
+ 1
304
+ 0
305
+ 1
306
+ 0
307
+ 1
308
+ 0
309
+ 0
310
+ 1
311
+ 0
312
+ 0
313
+ 0
314
+ 1
315
+ 1
316
+ 0
317
+ 0
318
+ 0
319
+ 1
320
+ 0
321
+ 0
322
+ 1
323
+ 0
324
+ 0
325
+ 0
326
+ 1
327
+ 1
328
+ 0
329
+ 0
330
+ 1
331
+ 0
332
+ 0
333
+ 1
334
+ 0
335
+ 1
336
+ 1
337
+ 0
338
+ 0
339
+ 0
340
+ 0
341
+ 0
342
+ 0
343
+ 0
344
+ 1
345
+ 0
346
+ 0
347
+ 0
348
+ 0
349
+ 0
350
+ 0
351
+ 1
352
+ 1
353
+ 0
354
+ 0
355
+ 0
356
+ 0
357
+ 1
358
+ 1
359
+ 1
360
+ 0
361
+ 0
362
+ 0
363
+ 1
364
+ 1
365
+ 0
366
+ 1
367
+ 1
368
+ 1
369
+ 0
370
+ 1
371
+ 0
372
+ 0
373
+ 0
374
+ 1
375
+ 0
376
+ 0
377
+ 0
378
+ 0
379
+ 0
380
+ 0
381
+ 0
382
+ 0
383
+ 0
384
+ 0
385
+ 0
386
+ 0
387
+ 0
388
+ 0
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 1
394
+ 0
395
+ 0
396
+ 0
397
+ 0
398
+ 1
399
+ 0
400
+ 0
401
+ 0
402
+ 0
403
+ 1
404
+ 1
405
+ 1
406
+ 1
407
+ 0
408
+ 0
409
+ 1
410
+ 1
411
+ 1
412
+ 1
413
+ 1
414
+ 0
415
+ 1
416
+ 1
417
+ 1
418
+ 1
419
+ 0
420
+ 1
421
+ 0
422
+ 0
423
+ 0
424
+ 1
425
+ 0
426
+ 0
427
+ 0
428
+ 1
429
+ 0
430
+ 0
431
+ 0
432
+ 1
433
+ 0
434
+ 1
435
+ 1
436
+ 1
437
+ 1
438
+ 0
439
+ 0
440
+ 1
441
+ 0
442
+ 1
443
+ 1
444
+ 1
445
+ 0
446
+ 0
447
+ 1
448
+ 0
449
+ 0
450
+ 1
451
+ 1
452
+ 1
453
+ 0
454
+ 0
455
+ 1
456
+ 1
457
+ 0
458
+ 0
459
+ 0
460
+ 1
461
+ 1
462
+ 1
463
+ 0
464
+ 0
465
+ 1
466
+ 1
467
+ 1
468
+ 1
469
+ 1
470
+ 1
471
+ 1
472
+ 0
473
+ 0
474
+ 0
475
+ 0
476
+ 0
477
+ 1
478
+ 0
479
+ 0
480
+ 1
481
+ 0
482
+ 0
483
+ 0
484
+ 0
485
+ 0
486
+ 0
487
+ 0
488
+ 0
489
+ 1
490
+ 0
491
+ 0
492
+ 0
493
+ 1
494
+ 1
495
+ 0
496
+ 0
497
+ 1
498
+ 0
499
+ 0
500
+ 1
501
+ 0
502
+ 0
503
+ 0
504
+ 1
505
+ 1
506
+ 0
507
+ 1
508
+ 0
509
+ 0
510
+ 1
511
+ 0
512
+ 1
513
+ 1
514
+ 1
515
+ 1
516
+ 0
517
+ 0
518
+ 1
519
+ 1
520
+ 1
521
+ 1
522
+ 1
523
+ 1
524
+ 1
525
+ 0
526
+ 0
527
+ 1
528
+ 1
529
+ 1
530
+ 1
531
+ 1
532
+ 1
533
+ 1
534
+ 0
535
+ 0
536
+ 0
537
+ 0
538
+ 1
539
+ 1
540
+ 1
541
+ 0
542
+ 0
543
+ 1
544
+ 0
545
+ 1
546
+ 1
547
+ 1
548
+ 0
549
+ 1
550
+ 0
551
+ 1
552
+ 1
553
+ 1
554
+ 1
555
+ 1
556
+ 1
557
+ 0
558
+ 1
559
+ 1
560
+ 0
561
+ 1
562
+ 1
563
+ 0
564
+ 0
565
+ 0
566
+ 0
567
+ 1
568
+ 0
569
+ 0
570
+ 0
571
+ 0
572
+ 1
573
+ 1
574
+ 0
575
+ 0
576
+ 0
577
+ 0
578
+ 0
579
+ 0
580
+ 0
581
+ 1
582
+ 1
583
+ 1
584
+ 1
585
+ 0
586
+ 0
587
+ 1
588
+ 1
589
+ 1
590
+ 1
591
+ 0
592
+ 0
593
+ 0
594
+ 0
595
+ 0
596
+ 1
597
+ 0
598
+ 0
599
+ 0
600
+ 1
601
+ 0
602
+ 0
603
+ 1
604
+ 0
605
+ 1
606
+ 0
607
+ 1
608
+ 0
609
+ 0
610
+ 0
611
+ 0
612
+ 0
613
+ 0
614
+ 0
615
+ 0
616
+ 1
617
+ 1
618
+ 1
619
+ 1
620
+ 0
621
+ 0
622
+ 0
623
+ 0
624
+ 1
625
+ 0
626
+ 0
627
+ 0
628
+ 1
629
+ 0
630
+ 0
631
+ 0
632
+ 0
633
+ 0
634
+ 1
635
+ 0
636
+ 0
637
+ 0
638
+ 0
639
+ 0
640
+ 0
641
+ 1
642
+ 0
643
+ 0
644
+ 1
645
+ 0
646
+ 0
647
+ 0
648
+ 0
649
+ 1
650
+ 0
651
+ 1
652
+ 0
653
+ 1
654
+ 0
655
+ 0
656
+ 0
657
+ 0
658
+ 0
659
+ 0
660
+ 0
661
+ 0
662
+ 1
663
+ 1
664
+ 1
665
+ 0
666
+ 0
667
+ 1
668
+ 0
669
+ 0
670
+ 0
671
+ 1
672
+ 1
673
+ 1
674
+ 0
675
+ 0
676
+ 0
677
+ 1
678
+ 1
679
+ 0
680
+ 0
681
+ 0
682
+ 0
683
+ 0
684
+ 0
685
+ 0
686
+ 0
687
+ 1
688
+ 1
689
+ 1
690
+ 0
691
+ 0
692
+ 0
693
+ 0
694
+ 1
695
+ 0
696
+ 0
697
+ 0
698
+ 0
699
+ 1
700
+ 0
701
+ 1
702
+ 1
703
+ 1
704
+ 0
705
+ 1
706
+ 0
707
+ 0
708
+ 1
709
+ 0
710
+ 1
711
+ 1
712
+ 1
713
+ 0
714
+ 1
715
+ 1
716
+ 1
717
+ 0
718
+ 0
719
+ 0
720
+ 0
721
+ 0
722
+ 0
723
+ 0
724
+ 0
725
+ 0
726
+ 0
727
+ 1
728
+ 0
729
+ 0
730
+ 1
731
+ 1
732
+ 1
733
+ 1
734
+ 0
735
+ 1
736
+ 0
737
+ 1
738
+ 0
739
+ 0
740
+ 0
741
+ 1
742
+ 1
743
+ 0
744
+ 0
745
+ 1
746
+ 1
747
+ 0
748
+ 1
749
+ 0
750
+ 0
751
+ 0
752
+ 0
753
+ 0
754
+ 0
755
+ 0
756
+ 0
757
+ 1
758
+ 0
759
+ 1
760
+ 0
761
+ 0
762
+ 0
763
+ 0
764
+ 0
765
+ 0
766
+ 0
767
+ 0
768
+ 1
769
+ 1
770
+ 0
771
+ 0
772
+ 0
773
+ 1
774
+ 1
775
+ 1
776
+ 0
777
+ 1
778
+ 0
779
+ 1
780
+ 1
781
+ 0
782
+ 1
783
+ 1
784
+ 1
785
+ 1
786
+ 1
787
+ 1
788
+ 0
789
+ 0
790
+ 0
791
+ 0
792
+ 1
793
+ 1
794
+ 0
795
+ 0
796
+ 0
797
+ 1
798
+ 1
799
+ 0
800
+ 0
801
+ 0
802
+ 0
803
+ 1
804
+ 1
805
+ 0
806
+ 0
807
+ 0
808
+ 0
809
+ 0
810
+ 1
811
+ 1
812
+ 0
813
+ 0
814
+ 0
815
+ 1
816
+ 0
817
+ 1
818
+ 0
819
+ 0
820
+ 0
821
+ 0
822
+ 1
823
+ 0
824
+ 0
825
+ 1
826
+ 0
827
+ 0
828
+ 0
829
+ 1
830
+ 0
831
+ 1
832
+ 0
833
+ 0
834
+ 0
835
+ 0
836
+ 0
837
+ 0
838
+ 1
839
+ 0
840
+ 0
841
+ 1
842
+ 0
843
+ 1
844
+ 0
845
+ 1
846
+ 1
847
+ 1
848
+ 0
849
+ 1
850
+ 0
851
+ 1
852
+ 1
853
+ 1
854
+ 1
855
+ 0
856
+ 0
857
+ 1
858
+ 1
859
+ 0
860
+ 1
861
+ 1
862
+ 0
863
+ 0
864
+ 1
865
+ 1
866
+ 1
867
+ 0
868
+ 0
869
+ 0
870
+ 0
871
+ 0
872
+ 0
873
+ 0
874
+ 0
875
+ 0
876
+ 0
877
+ 0
878
+ 0
879
+ 1
880
+ 0
881
+ 1
882
+ 0
883
+ 0
884
+ 0
885
+ 0
886
+ 0
887
+ 0
888
+ 0
889
+ 0
890
+ 0
891
+ 0
892
+ 1
893
+ 0
894
+ 0
895
+ 0
896
+ 0
897
+ 0
898
+ 1
899
+ 1
900
+ 0
901
+ 0
902
+ 1
903
+ 0
904
+ 1
905
+ 1
906
+ 0
907
+ 0
908
+ 0
909
+ 0
910
+ 0
911
+ 0
912
+ 0
913
+ 1
914
+ 1
915
+ 0
916
+ 0
917
+ 0
918
+ 1
919
+ 0
920
+ 0
921
+ 1
922
+ 0
923
+ 0
924
+ 1
925
+ 1
926
+ 1
927
+ 0
928
+ 0
929
+ 0
930
+ 0
931
+ 0
932
+ 1
933
+ 0
934
+ 0
935
+ 0
936
+ 0
937
+ 0
938
+ 0
939
+ 0
940
+ 1
941
+ 1
942
+ 1
943
+ 0
944
+ 1
945
+ 1
946
+ 1
947
+ 1
948
+ 1
949
+ 0
950
+ 0
951
+ 1
952
+ 1
953
+ 1
954
+ 1
955
+ 0
956
+ 1
957
+ 0
958
+ 0
959
+ 1
960
+ 0
961
+ 0
962
+ 0
963
+ 1
964
+ 0
965
+ 0
966
+ 0
967
+ 1
968
+ 0
969
+ 0
970
+ 0
971
+ 1
972
+ 1
973
+ 0
974
+ 0
975
+ 0
976
+ 1
977
+ 0
978
+ 0
979
+ 0
980
+ 0
981
+ 1
982
+ 0
983
+ 0
984
+ 1
985
+ 0
986
+ 0
987
+ 1
988
+ 0
989
+ 1
990
+ 0
991
+ 0
992
+ 1
993
+ 1
994
+ 0
995
+ 1
996
+ 0
997
+ 1
998
+ 0
999
+ 0
1000
+ 1
1001
+ 0
1002
+ 0
1003
+ 0
1004
+ 0
1005
+ 0
1006
+ 0
1007
+ 0
1008
+ 1
1009
+ 1
1010
+ 1
1011
+ 1
1012
+ 1
1013
+ 0
1014
+ 0
1015
+ 0
1016
+ 1
1017
+ 0
1018
+ 1
1019
+ 1
1020
+ 1
1021
+ 1
1022
+ 0
1023
+ 0
1024
+ 0
1025
+ 0
1026
+ 0
1027
+ 0
1028
+ 1
1029
+ 1
1030
+ 0
1031
+ 0
1032
+ 0
data/apple/train.data.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/apple/train.gold.txt ADDED
@@ -0,0 +1,2358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 1
4
+ 0
5
+ 0
6
+ 1
7
+ 1
8
+ 0
9
+ 0
10
+ 1
11
+ 0
12
+ 0
13
+ 0
14
+ 1
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 1
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 1
26
+ 0
27
+ 0
28
+ 1
29
+ 1
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 0
36
+ 0
37
+ 1
38
+ 0
39
+ 1
40
+ 0
41
+ 0
42
+ 0
43
+ 1
44
+ 0
45
+ 0
46
+ 0
47
+ 1
48
+ 0
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 1
55
+ 1
56
+ 1
57
+ 1
58
+ 0
59
+ 1
60
+ 1
61
+ 0
62
+ 1
63
+ 0
64
+ 0
65
+ 1
66
+ 0
67
+ 0
68
+ 0
69
+ 1
70
+ 0
71
+ 0
72
+ 1
73
+ 1
74
+ 0
75
+ 0
76
+ 0
77
+ 1
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 0
84
+ 1
85
+ 0
86
+ 0
87
+ 0
88
+ 1
89
+ 0
90
+ 0
91
+ 1
92
+ 0
93
+ 0
94
+ 1
95
+ 1
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 1
101
+ 0
102
+ 0
103
+ 1
104
+ 1
105
+ 1
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 1
112
+ 1
113
+ 1
114
+ 0
115
+ 0
116
+ 0
117
+ 0
118
+ 1
119
+ 0
120
+ 1
121
+ 0
122
+ 1
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 1
128
+ 0
129
+ 1
130
+ 1
131
+ 0
132
+ 0
133
+ 0
134
+ 0
135
+ 0
136
+ 0
137
+ 1
138
+ 1
139
+ 1
140
+ 0
141
+ 1
142
+ 0
143
+ 0
144
+ 0
145
+ 0
146
+ 0
147
+ 0
148
+ 1
149
+ 0
150
+ 1
151
+ 1
152
+ 0
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 0
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 1
165
+ 1
166
+ 0
167
+ 0
168
+ 0
169
+ 0
170
+ 1
171
+ 0
172
+ 1
173
+ 0
174
+ 1
175
+ 0
176
+ 0
177
+ 0
178
+ 1
179
+ 1
180
+ 0
181
+ 1
182
+ 1
183
+ 0
184
+ 1
185
+ 0
186
+ 0
187
+ 0
188
+ 0
189
+ 1
190
+ 1
191
+ 0
192
+ 1
193
+ 0
194
+ 1
195
+ 0
196
+ 0
197
+ 1
198
+ 0
199
+ 0
200
+ 0
201
+ 1
202
+ 0
203
+ 1
204
+ 0
205
+ 1
206
+ 1
207
+ 0
208
+ 1
209
+ 0
210
+ 0
211
+ 1
212
+ 1
213
+ 0
214
+ 1
215
+ 1
216
+ 0
217
+ 1
218
+ 0
219
+ 0
220
+ 1
221
+ 0
222
+ 0
223
+ 1
224
+ 0
225
+ 1
226
+ 0
227
+ 0
228
+ 0
229
+ 0
230
+ 1
231
+ 0
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 1
237
+ 1
238
+ 0
239
+ 1
240
+ 0
241
+ 0
242
+ 0
243
+ 1
244
+ 1
245
+ 1
246
+ 0
247
+ 0
248
+ 1
249
+ 0
250
+ 1
251
+ 1
252
+ 1
253
+ 1
254
+ 1
255
+ 1
256
+ 1
257
+ 0
258
+ 1
259
+ 1
260
+ 1
261
+ 0
262
+ 0
263
+ 0
264
+ 0
265
+ 0
266
+ 0
267
+ 0
268
+ 0
269
+ 0
270
+ 0
271
+ 1
272
+ 0
273
+ 1
274
+ 1
275
+ 0
276
+ 0
277
+ 0
278
+ 0
279
+ 0
280
+ 0
281
+ 0
282
+ 1
283
+ 1
284
+ 0
285
+ 0
286
+ 0
287
+ 0
288
+ 0
289
+ 0
290
+ 1
291
+ 0
292
+ 1
293
+ 0
294
+ 0
295
+ 0
296
+ 0
297
+ 0
298
+ 0
299
+ 0
300
+ 0
301
+ 1
302
+ 0
303
+ 0
304
+ 1
305
+ 1
306
+ 1
307
+ 0
308
+ 0
309
+ 0
310
+ 0
311
+ 0
312
+ 0
313
+ 0
314
+ 0
315
+ 0
316
+ 1
317
+ 0
318
+ 1
319
+ 0
320
+ 0
321
+ 1
322
+ 0
323
+ 0
324
+ 1
325
+ 1
326
+ 0
327
+ 0
328
+ 1
329
+ 0
330
+ 0
331
+ 1
332
+ 1
333
+ 0
334
+ 1
335
+ 0
336
+ 1
337
+ 0
338
+ 1
339
+ 0
340
+ 0
341
+ 1
342
+ 1
343
+ 1
344
+ 0
345
+ 1
346
+ 0
347
+ 0
348
+ 1
349
+ 0
350
+ 0
351
+ 0
352
+ 0
353
+ 0
354
+ 0
355
+ 0
356
+ 1
357
+ 0
358
+ 1
359
+ 0
360
+ 0
361
+ 0
362
+ 1
363
+ 0
364
+ 1
365
+ 0
366
+ 0
367
+ 1
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 0
373
+ 1
374
+ 0
375
+ 0
376
+ 1
377
+ 1
378
+ 0
379
+ 0
380
+ 1
381
+ 0
382
+ 0
383
+ 0
384
+ 1
385
+ 1
386
+ 0
387
+ 1
388
+ 0
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 1
394
+ 1
395
+ 1
396
+ 0
397
+ 1
398
+ 1
399
+ 1
400
+ 1
401
+ 0
402
+ 0
403
+ 1
404
+ 1
405
+ 0
406
+ 0
407
+ 1
408
+ 1
409
+ 1
410
+ 1
411
+ 1
412
+ 0
413
+ 0
414
+ 1
415
+ 1
416
+ 1
417
+ 0
418
+ 0
419
+ 0
420
+ 0
421
+ 0
422
+ 0
423
+ 0
424
+ 0
425
+ 1
426
+ 1
427
+ 0
428
+ 0
429
+ 1
430
+ 0
431
+ 0
432
+ 0
433
+ 0
434
+ 0
435
+ 0
436
+ 0
437
+ 1
438
+ 1
439
+ 0
440
+ 0
441
+ 0
442
+ 0
443
+ 0
444
+ 0
445
+ 0
446
+ 0
447
+ 0
448
+ 1
449
+ 0
450
+ 0
451
+ 0
452
+ 0
453
+ 0
454
+ 0
455
+ 0
456
+ 0
457
+ 1
458
+ 1
459
+ 0
460
+ 1
461
+ 0
462
+ 0
463
+ 0
464
+ 1
465
+ 0
466
+ 1
467
+ 0
468
+ 1
469
+ 1
470
+ 1
471
+ 0
472
+ 0
473
+ 1
474
+ 1
475
+ 0
476
+ 1
477
+ 0
478
+ 1
479
+ 0
480
+ 0
481
+ 0
482
+ 1
483
+ 1
484
+ 1
485
+ 0
486
+ 0
487
+ 0
488
+ 0
489
+ 0
490
+ 0
491
+ 0
492
+ 0
493
+ 1
494
+ 1
495
+ 0
496
+ 0
497
+ 0
498
+ 1
499
+ 0
500
+ 0
501
+ 0
502
+ 1
503
+ 0
504
+ 0
505
+ 0
506
+ 0
507
+ 1
508
+ 0
509
+ 0
510
+ 0
511
+ 1
512
+ 1
513
+ 0
514
+ 1
515
+ 1
516
+ 0
517
+ 0
518
+ 1
519
+ 1
520
+ 1
521
+ 1
522
+ 0
523
+ 0
524
+ 1
525
+ 1
526
+ 1
527
+ 1
528
+ 1
529
+ 0
530
+ 1
531
+ 1
532
+ 1
533
+ 0
534
+ 0
535
+ 0
536
+ 0
537
+ 1
538
+ 1
539
+ 1
540
+ 1
541
+ 1
542
+ 0
543
+ 0
544
+ 1
545
+ 0
546
+ 0
547
+ 0
548
+ 1
549
+ 1
550
+ 0
551
+ 0
552
+ 1
553
+ 0
554
+ 0
555
+ 1
556
+ 1
557
+ 0
558
+ 0
559
+ 1
560
+ 1
561
+ 0
562
+ 1
563
+ 1
564
+ 1
565
+ 1
566
+ 1
567
+ 1
568
+ 1
569
+ 0
570
+ 0
571
+ 0
572
+ 0
573
+ 0
574
+ 0
575
+ 1
576
+ 0
577
+ 1
578
+ 1
579
+ 0
580
+ 0
581
+ 1
582
+ 0
583
+ 0
584
+ 0
585
+ 1
586
+ 1
587
+ 0
588
+ 1
589
+ 1
590
+ 0
591
+ 1
592
+ 0
593
+ 1
594
+ 0
595
+ 0
596
+ 1
597
+ 1
598
+ 0
599
+ 0
600
+ 1
601
+ 1
602
+ 1
603
+ 0
604
+ 1
605
+ 0
606
+ 1
607
+ 0
608
+ 0
609
+ 1
610
+ 1
611
+ 1
612
+ 0
613
+ 0
614
+ 0
615
+ 0
616
+ 0
617
+ 1
618
+ 0
619
+ 0
620
+ 0
621
+ 0
622
+ 1
623
+ 1
624
+ 0
625
+ 0
626
+ 0
627
+ 0
628
+ 0
629
+ 0
630
+ 0
631
+ 1
632
+ 0
633
+ 1
634
+ 0
635
+ 0
636
+ 0
637
+ 0
638
+ 0
639
+ 1
640
+ 1
641
+ 1
642
+ 1
643
+ 1
644
+ 0
645
+ 1
646
+ 1
647
+ 0
648
+ 1
649
+ 0
650
+ 1
651
+ 1
652
+ 0
653
+ 0
654
+ 0
655
+ 1
656
+ 0
657
+ 0
658
+ 0
659
+ 1
660
+ 1
661
+ 0
662
+ 0
663
+ 0
664
+ 0
665
+ 0
666
+ 1
667
+ 0
668
+ 0
669
+ 1
670
+ 0
671
+ 1
672
+ 1
673
+ 0
674
+ 1
675
+ 0
676
+ 0
677
+ 0
678
+ 1
679
+ 0
680
+ 0
681
+ 1
682
+ 0
683
+ 1
684
+ 0
685
+ 0
686
+ 0
687
+ 0
688
+ 1
689
+ 0
690
+ 0
691
+ 1
692
+ 1
693
+ 1
694
+ 1
695
+ 1
696
+ 1
697
+ 1
698
+ 1
699
+ 0
700
+ 1
701
+ 0
702
+ 0
703
+ 0
704
+ 0
705
+ 0
706
+ 1
707
+ 1
708
+ 0
709
+ 1
710
+ 0
711
+ 0
712
+ 0
713
+ 1
714
+ 0
715
+ 1
716
+ 0
717
+ 0
718
+ 1
719
+ 1
720
+ 0
721
+ 1
722
+ 1
723
+ 0
724
+ 0
725
+ 1
726
+ 0
727
+ 0
728
+ 1
729
+ 0
730
+ 0
731
+ 0
732
+ 0
733
+ 0
734
+ 0
735
+ 0
736
+ 1
737
+ 1
738
+ 0
739
+ 1
740
+ 0
741
+ 1
742
+ 1
743
+ 0
744
+ 0
745
+ 0
746
+ 0
747
+ 0
748
+ 1
749
+ 0
750
+ 1
751
+ 1
752
+ 0
753
+ 1
754
+ 0
755
+ 0
756
+ 1
757
+ 1
758
+ 1
759
+ 0
760
+ 0
761
+ 0
762
+ 0
763
+ 0
764
+ 0
765
+ 1
766
+ 0
767
+ 0
768
+ 1
769
+ 0
770
+ 1
771
+ 1
772
+ 0
773
+ 0
774
+ 1
775
+ 1
776
+ 1
777
+ 1
778
+ 0
779
+ 0
780
+ 1
781
+ 0
782
+ 0
783
+ 0
784
+ 1
785
+ 1
786
+ 0
787
+ 0
788
+ 1
789
+ 1
790
+ 0
791
+ 1
792
+ 0
793
+ 1
794
+ 0
795
+ 1
796
+ 0
797
+ 1
798
+ 0
799
+ 0
800
+ 0
801
+ 1
802
+ 0
803
+ 0
804
+ 0
805
+ 0
806
+ 0
807
+ 1
808
+ 1
809
+ 1
810
+ 0
811
+ 0
812
+ 1
813
+ 1
814
+ 0
815
+ 0
816
+ 0
817
+ 0
818
+ 0
819
+ 0
820
+ 1
821
+ 0
822
+ 1
823
+ 1
824
+ 1
825
+ 0
826
+ 0
827
+ 1
828
+ 0
829
+ 1
830
+ 1
831
+ 0
832
+ 0
833
+ 1
834
+ 0
835
+ 1
836
+ 0
837
+ 0
838
+ 0
839
+ 1
840
+ 1
841
+ 0
842
+ 0
843
+ 0
844
+ 1
845
+ 0
846
+ 1
847
+ 0
848
+ 0
849
+ 0
850
+ 0
851
+ 1
852
+ 1
853
+ 0
854
+ 0
855
+ 1
856
+ 0
857
+ 0
858
+ 0
859
+ 0
860
+ 0
861
+ 0
862
+ 1
863
+ 0
864
+ 1
865
+ 0
866
+ 1
867
+ 1
868
+ 0
869
+ 0
870
+ 1
871
+ 1
872
+ 1
873
+ 0
874
+ 1
875
+ 0
876
+ 1
877
+ 0
878
+ 0
879
+ 0
880
+ 0
881
+ 1
882
+ 0
883
+ 1
884
+ 0
885
+ 0
886
+ 0
887
+ 0
888
+ 0
889
+ 0
890
+ 1
891
+ 1
892
+ 0
893
+ 0
894
+ 1
895
+ 1
896
+ 1
897
+ 1
898
+ 0
899
+ 0
900
+ 0
901
+ 1
902
+ 1
903
+ 0
904
+ 1
905
+ 0
906
+ 0
907
+ 0
908
+ 0
909
+ 0
910
+ 1
911
+ 1
912
+ 0
913
+ 0
914
+ 1
915
+ 0
916
+ 0
917
+ 1
918
+ 1
919
+ 1
920
+ 0
921
+ 0
922
+ 1
923
+ 0
924
+ 0
925
+ 0
926
+ 1
927
+ 0
928
+ 0
929
+ 0
930
+ 0
931
+ 0
932
+ 1
933
+ 1
934
+ 1
935
+ 0
936
+ 1
937
+ 1
938
+ 0
939
+ 1
940
+ 1
941
+ 1
942
+ 0
943
+ 0
944
+ 0
945
+ 0
946
+ 1
947
+ 0
948
+ 0
949
+ 0
950
+ 0
951
+ 0
952
+ 1
953
+ 1
954
+ 1
955
+ 0
956
+ 1
957
+ 0
958
+ 0
959
+ 0
960
+ 0
961
+ 1
962
+ 0
963
+ 1
964
+ 1
965
+ 0
966
+ 0
967
+ 1
968
+ 0
969
+ 0
970
+ 0
971
+ 0
972
+ 0
973
+ 1
974
+ 0
975
+ 0
976
+ 1
977
+ 0
978
+ 0
979
+ 0
980
+ 1
981
+ 0
982
+ 1
983
+ 1
984
+ 1
985
+ 0
986
+ 0
987
+ 0
988
+ 1
989
+ 0
990
+ 0
991
+ 0
992
+ 0
993
+ 1
994
+ 0
995
+ 1
996
+ 0
997
+ 1
998
+ 1
999
+ 1
1000
+ 1
1001
+ 1
1002
+ 0
1003
+ 0
1004
+ 0
1005
+ 0
1006
+ 0
1007
+ 0
1008
+ 0
1009
+ 0
1010
+ 1
1011
+ 1
1012
+ 0
1013
+ 1
1014
+ 0
1015
+ 1
1016
+ 0
1017
+ 0
1018
+ 0
1019
+ 1
1020
+ 1
1021
+ 0
1022
+ 0
1023
+ 0
1024
+ 1
1025
+ 0
1026
+ 1
1027
+ 0
1028
+ 0
1029
+ 0
1030
+ 0
1031
+ 0
1032
+ 0
1033
+ 0
1034
+ 1
1035
+ 0
1036
+ 1
1037
+ 0
1038
+ 0
1039
+ 0
1040
+ 0
1041
+ 1
1042
+ 1
1043
+ 0
1044
+ 1
1045
+ 0
1046
+ 0
1047
+ 0
1048
+ 0
1049
+ 1
1050
+ 0
1051
+ 0
1052
+ 1
1053
+ 0
1054
+ 1
1055
+ 0
1056
+ 1
1057
+ 1
1058
+ 1
1059
+ 0
1060
+ 0
1061
+ 0
1062
+ 0
1063
+ 0
1064
+ 0
1065
+ 0
1066
+ 0
1067
+ 1
1068
+ 0
1069
+ 0
1070
+ 0
1071
+ 1
1072
+ 0
1073
+ 0
1074
+ 0
1075
+ 0
1076
+ 1
1077
+ 0
1078
+ 0
1079
+ 0
1080
+ 0
1081
+ 0
1082
+ 1
1083
+ 1
1084
+ 0
1085
+ 0
1086
+ 1
1087
+ 1
1088
+ 0
1089
+ 1
1090
+ 0
1091
+ 0
1092
+ 0
1093
+ 1
1094
+ 1
1095
+ 0
1096
+ 0
1097
+ 0
1098
+ 1
1099
+ 0
1100
+ 0
1101
+ 1
1102
+ 0
1103
+ 1
1104
+ 0
1105
+ 1
1106
+ 0
1107
+ 0
1108
+ 0
1109
+ 0
1110
+ 0
1111
+ 0
1112
+ 1
1113
+ 0
1114
+ 1
1115
+ 1
1116
+ 0
1117
+ 1
1118
+ 0
1119
+ 0
1120
+ 0
1121
+ 0
1122
+ 0
1123
+ 0
1124
+ 0
1125
+ 0
1126
+ 0
1127
+ 0
1128
+ 0
1129
+ 0
1130
+ 1
1131
+ 0
1132
+ 0
1133
+ 1
1134
+ 1
1135
+ 1
1136
+ 0
1137
+ 1
1138
+ 0
1139
+ 0
1140
+ 0
1141
+ 0
1142
+ 1
1143
+ 0
1144
+ 0
1145
+ 0
1146
+ 0
1147
+ 0
1148
+ 0
1149
+ 0
1150
+ 0
1151
+ 1
1152
+ 0
1153
+ 0
1154
+ 1
1155
+ 0
1156
+ 0
1157
+ 0
1158
+ 1
1159
+ 1
1160
+ 0
1161
+ 1
1162
+ 1
1163
+ 0
1164
+ 1
1165
+ 1
1166
+ 0
1167
+ 1
1168
+ 0
1169
+ 1
1170
+ 0
1171
+ 0
1172
+ 0
1173
+ 0
1174
+ 0
1175
+ 0
1176
+ 0
1177
+ 1
1178
+ 1
1179
+ 1
1180
+ 0
1181
+ 1
1182
+ 1
1183
+ 0
1184
+ 0
1185
+ 0
1186
+ 1
1187
+ 0
1188
+ 0
1189
+ 0
1190
+ 0
1191
+ 0
1192
+ 0
1193
+ 0
1194
+ 0
1195
+ 1
1196
+ 0
1197
+ 0
1198
+ 1
1199
+ 1
1200
+ 1
1201
+ 0
1202
+ 1
1203
+ 1
1204
+ 0
1205
+ 1
1206
+ 0
1207
+ 0
1208
+ 1
1209
+ 1
1210
+ 0
1211
+ 0
1212
+ 1
1213
+ 1
1214
+ 0
1215
+ 0
1216
+ 0
1217
+ 0
1218
+ 0
1219
+ 0
1220
+ 0
1221
+ 0
1222
+ 0
1223
+ 0
1224
+ 1
1225
+ 1
1226
+ 0
1227
+ 0
1228
+ 0
1229
+ 1
1230
+ 1
1231
+ 1
1232
+ 1
1233
+ 0
1234
+ 0
1235
+ 1
1236
+ 0
1237
+ 0
1238
+ 0
1239
+ 0
1240
+ 0
1241
+ 0
1242
+ 1
1243
+ 0
1244
+ 0
1245
+ 0
1246
+ 0
1247
+ 0
1248
+ 1
1249
+ 0
1250
+ 1
1251
+ 1
1252
+ 0
1253
+ 0
1254
+ 1
1255
+ 1
1256
+ 1
1257
+ 0
1258
+ 0
1259
+ 0
1260
+ 1
1261
+ 0
1262
+ 0
1263
+ 0
1264
+ 0
1265
+ 0
1266
+ 0
1267
+ 0
1268
+ 1
1269
+ 1
1270
+ 0
1271
+ 0
1272
+ 1
1273
+ 0
1274
+ 1
1275
+ 1
1276
+ 0
1277
+ 0
1278
+ 0
1279
+ 1
1280
+ 1
1281
+ 1
1282
+ 0
1283
+ 1
1284
+ 1
1285
+ 0
1286
+ 0
1287
+ 1
1288
+ 1
1289
+ 0
1290
+ 0
1291
+ 1
1292
+ 1
1293
+ 1
1294
+ 1
1295
+ 0
1296
+ 0
1297
+ 0
1298
+ 0
1299
+ 0
1300
+ 1
1301
+ 1
1302
+ 0
1303
+ 0
1304
+ 0
1305
+ 0
1306
+ 0
1307
+ 1
1308
+ 0
1309
+ 1
1310
+ 0
1311
+ 1
1312
+ 0
1313
+ 0
1314
+ 0
1315
+ 0
1316
+ 1
1317
+ 0
1318
+ 0
1319
+ 0
1320
+ 0
1321
+ 1
1322
+ 0
1323
+ 0
1324
+ 0
1325
+ 0
1326
+ 1
1327
+ 1
1328
+ 1
1329
+ 0
1330
+ 1
1331
+ 0
1332
+ 0
1333
+ 0
1334
+ 0
1335
+ 0
1336
+ 0
1337
+ 1
1338
+ 1
1339
+ 1
1340
+ 1
1341
+ 0
1342
+ 0
1343
+ 0
1344
+ 1
1345
+ 0
1346
+ 0
1347
+ 0
1348
+ 1
1349
+ 1
1350
+ 0
1351
+ 0
1352
+ 0
1353
+ 1
1354
+ 1
1355
+ 1
1356
+ 1
1357
+ 0
1358
+ 1
1359
+ 0
1360
+ 0
1361
+ 1
1362
+ 0
1363
+ 0
1364
+ 1
1365
+ 1
1366
+ 1
1367
+ 1
1368
+ 0
1369
+ 0
1370
+ 0
1371
+ 0
1372
+ 0
1373
+ 0
1374
+ 1
1375
+ 1
1376
+ 1
1377
+ 1
1378
+ 0
1379
+ 0
1380
+ 0
1381
+ 1
1382
+ 0
1383
+ 0
1384
+ 0
1385
+ 1
1386
+ 0
1387
+ 1
1388
+ 0
1389
+ 0
1390
+ 0
1391
+ 1
1392
+ 0
1393
+ 1
1394
+ 0
1395
+ 0
1396
+ 0
1397
+ 1
1398
+ 0
1399
+ 0
1400
+ 1
1401
+ 1
1402
+ 1
1403
+ 0
1404
+ 0
1405
+ 0
1406
+ 0
1407
+ 0
1408
+ 0
1409
+ 0
1410
+ 0
1411
+ 1
1412
+ 0
1413
+ 0
1414
+ 0
1415
+ 0
1416
+ 0
1417
+ 1
1418
+ 0
1419
+ 0
1420
+ 1
1421
+ 0
1422
+ 1
1423
+ 0
1424
+ 1
1425
+ 0
1426
+ 1
1427
+ 0
1428
+ 0
1429
+ 0
1430
+ 1
1431
+ 1
1432
+ 1
1433
+ 0
1434
+ 1
1435
+ 0
1436
+ 1
1437
+ 0
1438
+ 1
1439
+ 0
1440
+ 0
1441
+ 0
1442
+ 1
1443
+ 0
1444
+ 1
1445
+ 0
1446
+ 0
1447
+ 0
1448
+ 1
1449
+ 1
1450
+ 1
1451
+ 1
1452
+ 0
1453
+ 1
1454
+ 0
1455
+ 0
1456
+ 0
1457
+ 0
1458
+ 0
1459
+ 0
1460
+ 1
1461
+ 1
1462
+ 0
1463
+ 0
1464
+ 1
1465
+ 1
1466
+ 0
1467
+ 0
1468
+ 1
1469
+ 1
1470
+ 0
1471
+ 1
1472
+ 0
1473
+ 0
1474
+ 1
1475
+ 1
1476
+ 0
1477
+ 0
1478
+ 0
1479
+ 0
1480
+ 1
1481
+ 0
1482
+ 0
1483
+ 0
1484
+ 0
1485
+ 0
1486
+ 0
1487
+ 0
1488
+ 0
1489
+ 0
1490
+ 1
1491
+ 1
1492
+ 1
1493
+ 0
1494
+ 0
1495
+ 1
1496
+ 0
1497
+ 1
1498
+ 1
1499
+ 0
1500
+ 0
1501
+ 1
1502
+ 0
1503
+ 0
1504
+ 1
1505
+ 0
1506
+ 1
1507
+ 1
1508
+ 0
1509
+ 1
1510
+ 1
1511
+ 0
1512
+ 0
1513
+ 0
1514
+ 0
1515
+ 1
1516
+ 0
1517
+ 0
1518
+ 0
1519
+ 0
1520
+ 0
1521
+ 0
1522
+ 1
1523
+ 1
1524
+ 0
1525
+ 0
1526
+ 0
1527
+ 1
1528
+ 1
1529
+ 1
1530
+ 1
1531
+ 0
1532
+ 0
1533
+ 0
1534
+ 0
1535
+ 0
1536
+ 0
1537
+ 1
1538
+ 1
1539
+ 1
1540
+ 0
1541
+ 0
1542
+ 0
1543
+ 0
1544
+ 1
1545
+ 0
1546
+ 0
1547
+ 1
1548
+ 0
1549
+ 1
1550
+ 0
1551
+ 1
1552
+ 0
1553
+ 1
1554
+ 0
1555
+ 0
1556
+ 0
1557
+ 1
1558
+ 1
1559
+ 1
1560
+ 0
1561
+ 0
1562
+ 0
1563
+ 0
1564
+ 1
1565
+ 1
1566
+ 1
1567
+ 0
1568
+ 1
1569
+ 1
1570
+ 0
1571
+ 0
1572
+ 0
1573
+ 1
1574
+ 0
1575
+ 1
1576
+ 0
1577
+ 1
1578
+ 0
1579
+ 0
1580
+ 0
1581
+ 0
1582
+ 1
1583
+ 0
1584
+ 1
1585
+ 1
1586
+ 1
1587
+ 0
1588
+ 0
1589
+ 1
1590
+ 1
1591
+ 0
1592
+ 1
1593
+ 0
1594
+ 0
1595
+ 1
1596
+ 0
1597
+ 0
1598
+ 0
1599
+ 1
1600
+ 0
1601
+ 1
1602
+ 1
1603
+ 0
1604
+ 1
1605
+ 1
1606
+ 0
1607
+ 1
1608
+ 0
1609
+ 0
1610
+ 0
1611
+ 0
1612
+ 0
1613
+ 0
1614
+ 1
1615
+ 0
1616
+ 0
1617
+ 0
1618
+ 0
1619
+ 0
1620
+ 0
1621
+ 1
1622
+ 0
1623
+ 0
1624
+ 0
1625
+ 1
1626
+ 1
1627
+ 0
1628
+ 0
1629
+ 1
1630
+ 0
1631
+ 0
1632
+ 1
1633
+ 0
1634
+ 1
1635
+ 0
1636
+ 0
1637
+ 1
1638
+ 1
1639
+ 0
1640
+ 0
1641
+ 0
1642
+ 0
1643
+ 0
1644
+ 0
1645
+ 1
1646
+ 1
1647
+ 1
1648
+ 1
1649
+ 0
1650
+ 0
1651
+ 0
1652
+ 0
1653
+ 0
1654
+ 1
1655
+ 0
1656
+ 0
1657
+ 0
1658
+ 0
1659
+ 1
1660
+ 1
1661
+ 1
1662
+ 1
1663
+ 1
1664
+ 0
1665
+ 0
1666
+ 1
1667
+ 0
1668
+ 0
1669
+ 0
1670
+ 0
1671
+ 0
1672
+ 0
1673
+ 1
1674
+ 0
1675
+ 1
1676
+ 0
1677
+ 0
1678
+ 1
1679
+ 0
1680
+ 0
1681
+ 0
1682
+ 0
1683
+ 0
1684
+ 1
1685
+ 1
1686
+ 1
1687
+ 0
1688
+ 0
1689
+ 0
1690
+ 0
1691
+ 0
1692
+ 0
1693
+ 0
1694
+ 0
1695
+ 0
1696
+ 1
1697
+ 0
1698
+ 1
1699
+ 0
1700
+ 1
1701
+ 1
1702
+ 0
1703
+ 0
1704
+ 0
1705
+ 0
1706
+ 0
1707
+ 0
1708
+ 1
1709
+ 1
1710
+ 0
1711
+ 0
1712
+ 1
1713
+ 0
1714
+ 1
1715
+ 0
1716
+ 1
1717
+ 0
1718
+ 0
1719
+ 1
1720
+ 0
1721
+ 0
1722
+ 0
1723
+ 0
1724
+ 1
1725
+ 1
1726
+ 0
1727
+ 1
1728
+ 1
1729
+ 0
1730
+ 0
1731
+ 0
1732
+ 1
1733
+ 0
1734
+ 0
1735
+ 1
1736
+ 0
1737
+ 1
1738
+ 0
1739
+ 0
1740
+ 0
1741
+ 1
1742
+ 0
1743
+ 0
1744
+ 1
1745
+ 0
1746
+ 1
1747
+ 1
1748
+ 0
1749
+ 0
1750
+ 0
1751
+ 0
1752
+ 1
1753
+ 1
1754
+ 0
1755
+ 0
1756
+ 0
1757
+ 0
1758
+ 0
1759
+ 0
1760
+ 0
1761
+ 1
1762
+ 0
1763
+ 0
1764
+ 1
1765
+ 0
1766
+ 1
1767
+ 0
1768
+ 1
1769
+ 1
1770
+ 1
1771
+ 0
1772
+ 1
1773
+ 0
1774
+ 0
1775
+ 1
1776
+ 1
1777
+ 1
1778
+ 0
1779
+ 0
1780
+ 0
1781
+ 0
1782
+ 1
1783
+ 1
1784
+ 0
1785
+ 0
1786
+ 0
1787
+ 1
1788
+ 1
1789
+ 0
1790
+ 0
1791
+ 0
1792
+ 0
1793
+ 0
1794
+ 0
1795
+ 1
1796
+ 1
1797
+ 0
1798
+ 0
1799
+ 0
1800
+ 0
1801
+ 0
1802
+ 0
1803
+ 0
1804
+ 0
1805
+ 0
1806
+ 0
1807
+ 0
1808
+ 0
1809
+ 0
1810
+ 1
1811
+ 1
1812
+ 1
1813
+ 1
1814
+ 1
1815
+ 0
1816
+ 1
1817
+ 0
1818
+ 1
1819
+ 0
1820
+ 0
1821
+ 1
1822
+ 1
1823
+ 0
1824
+ 0
1825
+ 0
1826
+ 0
1827
+ 0
1828
+ 0
1829
+ 0
1830
+ 0
1831
+ 0
1832
+ 1
1833
+ 0
1834
+ 1
1835
+ 1
1836
+ 1
1837
+ 0
1838
+ 0
1839
+ 1
1840
+ 1
1841
+ 0
1842
+ 0
1843
+ 0
1844
+ 0
1845
+ 1
1846
+ 0
1847
+ 0
1848
+ 1
1849
+ 0
1850
+ 0
1851
+ 1
1852
+ 0
1853
+ 1
1854
+ 1
1855
+ 0
1856
+ 0
1857
+ 0
1858
+ 0
1859
+ 0
1860
+ 1
1861
+ 0
1862
+ 0
1863
+ 0
1864
+ 0
1865
+ 0
1866
+ 1
1867
+ 0
1868
+ 1
1869
+ 0
1870
+ 0
1871
+ 0
1872
+ 0
1873
+ 1
1874
+ 1
1875
+ 0
1876
+ 0
1877
+ 0
1878
+ 1
1879
+ 0
1880
+ 1
1881
+ 1
1882
+ 0
1883
+ 0
1884
+ 1
1885
+ 0
1886
+ 1
1887
+ 1
1888
+ 0
1889
+ 0
1890
+ 1
1891
+ 0
1892
+ 0
1893
+ 1
1894
+ 0
1895
+ 0
1896
+ 0
1897
+ 1
1898
+ 0
1899
+ 1
1900
+ 0
1901
+ 1
1902
+ 1
1903
+ 1
1904
+ 0
1905
+ 0
1906
+ 0
1907
+ 0
1908
+ 0
1909
+ 1
1910
+ 1
1911
+ 1
1912
+ 0
1913
+ 0
1914
+ 1
1915
+ 1
1916
+ 1
1917
+ 0
1918
+ 0
1919
+ 0
1920
+ 0
1921
+ 1
1922
+ 1
1923
+ 0
1924
+ 0
1925
+ 0
1926
+ 1
1927
+ 1
1928
+ 0
1929
+ 0
1930
+ 0
1931
+ 1
1932
+ 0
1933
+ 0
1934
+ 0
1935
+ 1
1936
+ 1
1937
+ 0
1938
+ 0
1939
+ 0
1940
+ 1
1941
+ 1
1942
+ 1
1943
+ 1
1944
+ 0
1945
+ 1
1946
+ 0
1947
+ 1
1948
+ 0
1949
+ 0
1950
+ 0
1951
+ 0
1952
+ 0
1953
+ 1
1954
+ 0
1955
+ 1
1956
+ 1
1957
+ 0
1958
+ 1
1959
+ 1
1960
+ 1
1961
+ 1
1962
+ 1
1963
+ 1
1964
+ 0
1965
+ 1
1966
+ 0
1967
+ 0
1968
+ 0
1969
+ 1
1970
+ 1
1971
+ 0
1972
+ 0
1973
+ 0
1974
+ 0
1975
+ 0
1976
+ 0
1977
+ 0
1978
+ 0
1979
+ 0
1980
+ 0
1981
+ 1
1982
+ 0
1983
+ 0
1984
+ 0
1985
+ 1
1986
+ 0
1987
+ 0
1988
+ 0
1989
+ 0
1990
+ 0
1991
+ 1
1992
+ 1
1993
+ 0
1994
+ 0
1995
+ 0
1996
+ 1
1997
+ 1
1998
+ 0
1999
+ 0
2000
+ 1
2001
+ 1
2002
+ 0
2003
+ 0
2004
+ 0
2005
+ 0
2006
+ 1
2007
+ 1
2008
+ 0
2009
+ 0
2010
+ 0
2011
+ 0
2012
+ 1
2013
+ 0
2014
+ 1
2015
+ 1
2016
+ 1
2017
+ 1
2018
+ 0
2019
+ 0
2020
+ 0
2021
+ 0
2022
+ 0
2023
+ 1
2024
+ 0
2025
+ 0
2026
+ 0
2027
+ 0
2028
+ 1
2029
+ 0
2030
+ 0
2031
+ 1
2032
+ 0
2033
+ 0
2034
+ 0
2035
+ 0
2036
+ 0
2037
+ 1
2038
+ 1
2039
+ 1
2040
+ 1
2041
+ 1
2042
+ 0
2043
+ 0
2044
+ 0
2045
+ 1
2046
+ 0
2047
+ 0
2048
+ 1
2049
+ 1
2050
+ 0
2051
+ 0
2052
+ 0
2053
+ 1
2054
+ 0
2055
+ 1
2056
+ 1
2057
+ 0
2058
+ 1
2059
+ 1
2060
+ 0
2061
+ 0
2062
+ 1
2063
+ 1
2064
+ 0
2065
+ 0
2066
+ 0
2067
+ 0
2068
+ 0
2069
+ 0
2070
+ 0
2071
+ 0
2072
+ 0
2073
+ 1
2074
+ 1
2075
+ 1
2076
+ 0
2077
+ 0
2078
+ 0
2079
+ 1
2080
+ 0
2081
+ 1
2082
+ 1
2083
+ 0
2084
+ 0
2085
+ 0
2086
+ 0
2087
+ 0
2088
+ 1
2089
+ 0
2090
+ 0
2091
+ 1
2092
+ 1
2093
+ 1
2094
+ 0
2095
+ 0
2096
+ 0
2097
+ 0
2098
+ 0
2099
+ 0
2100
+ 0
2101
+ 1
2102
+ 1
2103
+ 0
2104
+ 1
2105
+ 1
2106
+ 1
2107
+ 0
2108
+ 0
2109
+ 0
2110
+ 0
2111
+ 1
2112
+ 0
2113
+ 0
2114
+ 1
2115
+ 0
2116
+ 0
2117
+ 1
2118
+ 0
2119
+ 1
2120
+ 0
2121
+ 0
2122
+ 0
2123
+ 0
2124
+ 1
2125
+ 0
2126
+ 0
2127
+ 0
2128
+ 0
2129
+ 0
2130
+ 0
2131
+ 0
2132
+ 1
2133
+ 0
2134
+ 0
2135
+ 1
2136
+ 0
2137
+ 0
2138
+ 0
2139
+ 1
2140
+ 0
2141
+ 0
2142
+ 0
2143
+ 0
2144
+ 1
2145
+ 0
2146
+ 0
2147
+ 1
2148
+ 1
2149
+ 0
2150
+ 0
2151
+ 0
2152
+ 0
2153
+ 1
2154
+ 1
2155
+ 0
2156
+ 1
2157
+ 1
2158
+ 1
2159
+ 0
2160
+ 0
2161
+ 1
2162
+ 0
2163
+ 1
2164
+ 0
2165
+ 0
2166
+ 1
2167
+ 0
2168
+ 1
2169
+ 0
2170
+ 0
2171
+ 0
2172
+ 1
2173
+ 0
2174
+ 1
2175
+ 0
2176
+ 0
2177
+ 1
2178
+ 0
2179
+ 1
2180
+ 0
2181
+ 0
2182
+ 0
2183
+ 1
2184
+ 1
2185
+ 0
2186
+ 1
2187
+ 1
2188
+ 0
2189
+ 0
2190
+ 1
2191
+ 1
2192
+ 0
2193
+ 0
2194
+ 1
2195
+ 0
2196
+ 0
2197
+ 0
2198
+ 0
2199
+ 1
2200
+ 0
2201
+ 0
2202
+ 0
2203
+ 1
2204
+ 0
2205
+ 1
2206
+ 1
2207
+ 1
2208
+ 0
2209
+ 1
2210
+ 0
2211
+ 1
2212
+ 0
2213
+ 0
2214
+ 0
2215
+ 1
2216
+ 0
2217
+ 0
2218
+ 0
2219
+ 1
2220
+ 0
2221
+ 1
2222
+ 0
2223
+ 0
2224
+ 1
2225
+ 0
2226
+ 0
2227
+ 1
2228
+ 1
2229
+ 1
2230
+ 0
2231
+ 0
2232
+ 0
2233
+ 0
2234
+ 0
2235
+ 1
2236
+ 0
2237
+ 1
2238
+ 0
2239
+ 0
2240
+ 1
2241
+ 1
2242
+ 0
2243
+ 1
2244
+ 0
2245
+ 1
2246
+ 1
2247
+ 0
2248
+ 1
2249
+ 0
2250
+ 1
2251
+ 0
2252
+ 1
2253
+ 0
2254
+ 0
2255
+ 1
2256
+ 1
2257
+ 0
2258
+ 1
2259
+ 0
2260
+ 1
2261
+ 0
2262
+ 0
2263
+ 0
2264
+ 1
2265
+ 1
2266
+ 0
2267
+ 0
2268
+ 0
2269
+ 0
2270
+ 0
2271
+ 1
2272
+ 0
2273
+ 1
2274
+ 0
2275
+ 1
2276
+ 1
2277
+ 0
2278
+ 0
2279
+ 1
2280
+ 0
2281
+ 1
2282
+ 0
2283
+ 0
2284
+ 0
2285
+ 1
2286
+ 0
2287
+ 0
2288
+ 0
2289
+ 1
2290
+ 0
2291
+ 0
2292
+ 1
2293
+ 0
2294
+ 1
2295
+ 1
2296
+ 0
2297
+ 0
2298
+ 1
2299
+ 0
2300
+ 1
2301
+ 0
2302
+ 0
2303
+ 0
2304
+ 0
2305
+ 0
2306
+ 0
2307
+ 1
2308
+ 1
2309
+ 1
2310
+ 1
2311
+ 0
2312
+ 0
2313
+ 0
2314
+ 1
2315
+ 0
2316
+ 1
2317
+ 0
2318
+ 0
2319
+ 1
2320
+ 0
2321
+ 1
2322
+ 1
2323
+ 1
2324
+ 0
2325
+ 0
2326
+ 0
2327
+ 0
2328
+ 0
2329
+ 0
2330
+ 0
2331
+ 0
2332
+ 0
2333
+ 0
2334
+ 1
2335
+ 0
2336
+ 0
2337
+ 1
2338
+ 1
2339
+ 0
2340
+ 0
2341
+ 0
2342
+ 1
2343
+ 0
2344
+ 1
2345
+ 1
2346
+ 0
2347
+ 1
2348
+ 1
2349
+ 1
2350
+ 1
2351
+ 0
2352
+ 1
2353
+ 0
2354
+ 0
2355
+ 0
2356
+ 1
2357
+ 0
2358
+ 0
data/arm/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "arm_arm_architecture", "1": "arm_arm"}
data/arm/test.data.txt ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 15 a competition handcycle a handcycle is a type of human-powered land vehicle powered by the arm rather than the legs , as on a bicycle .
2
+ 12 backtrack 5 is a live distribution , but there is also an arm version available for the android operating system , allowing tablets and smartphone to be used for mobile penetration testing of wi-fi networks .
3
+ 13 with government 's help , mahant also collected gun , pistol and other arm and ammunition .
4
+ 5 it is based around an arm texas instruments omap 730 processor running at 200 mhz .
5
+ 21 many of the processors in the family combine a dsp core based on the tms320 c6000 vliw dsp family and an arm cpu core into a single system on chip .
6
+ 20 compcert is a formally verified optimizing compiler for a subset of the c programming language which currently targets powerpc , arm and 32-bit x86 architectures .
7
+ 35 these images have been described as centering '' on a stock of clearly defined subjects which he carefully extracts one by one from their context '' , as for instance with the photograph of an arm that filled an entire exhibition hall in the kunsthalle basel in 1983 .
8
+ 11 the technology can be adapted to any mobile devices having an arm - based cpu with trustzone capabilities .
9
+ 45 the goals of the genivi baselines are : to verify the genivi software architecture buildability to integrate the genivi software components together to verify the impact of the genivi software architecture on software dependencies and platform licenses the genivi software baselines are compatible with both arm and x86 architectures .
10
+ 43 location the college is located in bangalore 's it corridor , situated on the ring road with neighbors like intel , ebay , paypal , flextronics , lg , inmobi , ancient group , salarpuria , wipro , accenture , nokia , and arm .
11
+ 16 the company showcased internet explorer 10 ( ie10 ) , which was actually running on an arm processor .
12
+ 9 as with the chest fly , the hand and arm move through an arc while the elbow is kept at a constant angle .
13
+ 19 the established technique is to dip the needle in the vaccine , and then puncture a person 's upper arm fifteen times in a small circular area .
14
+ 8 jamvm currently supports the cpus : amd64 , arm , x86 , mips , powerpc and sparc .
15
+ 35 go 's '' gc '' compiler targets the linux , mac os x , freebsd , netbsd , openbsd , plan 9 , and microsoft windows operating systems and the i386 , amd64 , and arm processor architectures .
16
+ 22 at the consumer electronics show in january 2011 , it was announced that the next version of windows would add support for arm system-on-chip alongside the existing x86 processors produced by vendors , especially amd and intel .
17
+ 0 arm - based windows rt devices must have secure boot permanently enabled .
18
+ 11 jpg segger j-link pro : jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host .
19
+ 22 it greatly improved on the second generation nokia 9110 communicator , providing color main screen , changing to symbian os platform and arm processor .
20
+ 16 ibm had planned for workplace os to run on several processor architectures , including powerpc , arm , and x86 computers , and ranging in size from pda to workstation to large servers .
21
+ 14 in 2008 , hp modified the design so that new production runs contain an arm processor which runs an emulated version of previous chips .
22
+ 24 each plastic figure features nine parts ( widely referred to as tools in the toy industry ) : head , torso , hip , arm , hand , and leg ; these nine tools allow eight points of articulation : swivel head , swivel waist , ball joint arms , swivel wrist , and ball joint legs .
23
+ 34 as of 2014 , most personal computer and smartphone in people 's homes that use multicore central processing unit ( such as amd fx , intel core i7 , or the multicore varieties of arm - based chips ) are also parallel computer using the mimd ( multiple instructions - multiple data ) paradigm , a technology previously only used in digital electronic supercomputer .
24
+ 16 kgdb is available for the following architectures under linux : x86 , x86-64 , powerpc , arm , mips , and s390 .
25
+ 22 the chicken is a popular rhythm and blues dance started in america in the 1950s , in which the dancers flapped their arm and kicked back their feet in an imitation of a chicken .
26
+ 1 an arm port was merged during the 3.9 kernel merge window .
27
+ 31 over its numerous generations , digic has evolved from a system involving a number of discrete integrated circuit to a single chip system , many of which are based around the arm instruction set .
28
+ 25 most computing platform and microprocessor instruction set architectures are also supported , like x86 ( ia-32 and x86-64 ) , ppc ( powerpc ) , arm , dec alpha , sparc , and mips architecture .
29
+ 16 the arm11 chip at the heart of the pi is based on version 6 of the arm .
30
+ 3 along with the arm core a dsp coprocessor is included .
31
+ 16 zender suggests a translation like '' tree - armed chaak '' or '' trees are the arm of chaak '' .
32
+ 9 symptoms infants born with this condition have very short arm and leg , a narrow chest , and a prominent , rounded abdomen .
33
+ 17 finger and thumb are the most common but the ear , scalp , nose , face , arm and penis have all been replanted .
34
+ 5 supported platforms include variants of arm and xscale , blackfin , freescale coldfire , mips , powerpc , and x86 computer architectures .
35
+ 27 qemu supports the emulation of various architectures , including : ia-32 ( x86 ) pcs x86-64 pcs mips r4000 sun 's sparc sun4m sun 's sparc sun4u arm development boards ( integrator/cp and versatile/pb ) sh4 shix board powerpc ( prep and power macintosh ) etrax cris microblaze the qemu website provides a complete list of supported architectures .
36
+ 15 other versions were produced for the arthur and risc os operating systems for acorn 's arm - based machines , the torch xxx , and for digital research 's flexos .
37
+ 19 one of the first such computers on the market , the device has a 1.2 ghz marvell kirkwood 6281 arm - compatible cpu , a.k.a. feroceon .
38
+ 16 one , , has extremely long leg , while the other , , has extremely long arm .
39
+ 4 support is available for arm , mips , x86 , and hitachi superh ( sh3 , sh4 ) processors .
40
+ 15 it was designed to run mainly on x86 - based computers , but ports for arm and powerpc microprocessor architectures are under development ( alpha versions for arm7 tdmi core and powerpc open firmware based architectures are available ) .
41
+ 19 depending on the context , the term may refer to one of two variations of the technique , either arm can be used to apply the choke in both cases .
42
+ 19 sps has created a preservation solution called kryoflux , which is a software-programmable fdc system that runs on small arm - based devices that connects to a floppy disk drive and a host pc over usb .
43
+ 29 the first generation of the ford 's sync computer was designed in cooperation with continental ag and is built around a 400 mhz freescale i. mx31l processor with an arm 11 cpu core , uses 256mb of 133 mhz mobile ddr sdram from micron and 2gb of samsung nand flash memory , runs the windows embedded automotive operating system , and uses speech technology by nuance communications .
44
+ 47 arx was a mach-like operating system written in modula-2+ developed by acorn computers ltd in the acorn research centre ( arc ) uk and later olivetti research center and later on software technology laboratory ( when olivetti bought out acorn ) at palo alto for their new arm risc processors based archimedes computers range .
45
+ 20 both men and women have visible hair on the head , eyebrow , eyelash , armpits , pubic region , arm , and legs ; and men also have thicker hair on their face , abdomen , back and chest .
46
+ 25 most computing platform and microprocessor instruction set architectures are also supported , like x86 ( ia-32 and x86-64 ) , ppc ( powerpc ) , arm , dec alpha , sparc , and mips .
47
+ 17 the twitching can occur in any voluntary muscle group but is most common in the eyelid , arm , legs , and feet .
48
+ 25 almost any area of the body can be waxed , including eyebrow , face , pubic area ( called bikini waxing ) , leg , arm , back , abdomen and feet .
49
+ 6 acorn computers developed and delivered an arm - based touch screen tablet computer for this program , branded the newspad .
50
+ 10 most tablets released since mid-2010 use a version of an arm processor for longer battery life .
51
+ 3 android supports low-cost arm systems .
52
+ 6 jtag / swd debug probe for arm microcontrollers with usb interface to host .
53
+ 17 the ncos operating system used in this first implementation was based on risc os and ran on arm hardware .
54
+ 9 he also contributed to debian 's ports to the arm and mips platforms , by porting debian to several embedded devices and network attached storage ( nas ) devices .
55
+ 1 debian arm packages can also be used if they are modified with the maemo-optify tool .
56
+ 8 he has a pac-man tattoo on his right arm , as well as a tattoo in honor of snk on his back .
57
+ 6 it supports i386 , x86-64 , arm ( big/little endian ) , avr32 , blackfin , h8300 , m68k , mips ( big/little endian ) , powerpc , superh ( big/little endian ) , sparc , and v850 processors .
58
+ 12 the human body consists of the legs , the torso , the arm , the neck , and the head .
59
+ 22 the only smartphone ( pda / cellphone hybrid ) in the tungsten series , instead of running palm os 5 on an arm - compatible processor , it used palm os 4 with a low-power motorola dragonball processor , to increase the battery life .
60
+ 19 internals controller board for my book world edition this drive runs busybox on linux on an oxford semiconductor 0xe800 arm chip which has the arm926ej-s core .
61
+ 12 v8 compiles javascript to native machine code ( ia-32 , x86-64 , arm , or mips isas ) before executing it , instead of more traditional techniques such as interpreting bytecode or compiling the whole program to machine code and executing it from a filesystem .
62
+ 17 skytone announced another device called alpha 680 running android that features a 533 mhz jade tech z228 arm cpu .
63
+ 38 1.9 megapixel camera with fixed focus lens , led flash , self-portrait mirror , and macro mode location finding by detection of cell towers and wi-fi networks ( through google maps mobile ) samsung sc32442a ( 400 mhz arm arm920t processor ) ati imageon graphics processing unit ram : 64 mb dram rom : 128 mb flash memory removable media : microsd , up to 8 gb ( microsdhc , up to 32 gb if running windows mobile 6 ) operating system : windows mobile 5.0 stock rom with windows mobile 6 available to upgrade through htc e-club .
64
+ 11 combatants typically take turns punching each other in the shoulder , arm , or face , until one participant gives in .
65
+ 24 related products in the early 1990s , the company produced a hard candy named orange arm-cicle ( a play on the words icicle and arm because of its pointed shape and use of locomotion , much like a spinning or rotating lollipop ) .
66
+ 106 pgi milestones 1989 - pgi founded 1991 - pipelining i860 compilers 1994 - parallel i860 compilers 1996 - asci red tflops compilers 1997 - linux/x86 compilers 1998 - openmp for linux/x86 1999 - sse / simd vectorization 2001 - vliw st100 compilers 2003 - 64-bit linux/x86 compilers 2004 - asci red storm compilers 2005 - pgi unified binary technology 2006 - pgi visual fortran 2007 - 64-bit mac os compilers 2008 - pgi accelerator compilers 2009 - cuda fortran compiler 2010 - cuda x86 compiler 2011 - avx / fma vectorization 2012 - openacc standard directives for gpu computing 2012 - pgi opencl compiler for multi-core arm cpus .
67
+ 48 '' schedule loss of use of a member ( workers ' compensation law ) under workers ' compensation law , a schedule loss of use is the set amount of compensation an employee may receive for the inability to use a particular body member , such as an arm , hand , finger , leg , foot , or toe .
68
+ 10 monkey can perform well on x86 and x86-64 , and arm architectures running linux embedded variants .
69
+ 3 x arch linux arm ( hard-float or armhf version ) kali linux ( armhf debian 7 based - focused on security testing ) there exists also three gnu/linux based operating systems specialized on media playback : xbmc geexbox volumio ( armhf debian 7 based ) both the bootloader ( u-boot ) and the kernel are open source and can be found on gitorious and github .
70
+ 10 the linux kernel can read device tree information in the arm , x86 , microblaze , powerpc , and sparc architectures .
71
+ 3 it combines an arm cortex-a8 cpu with a powervr gpu , and emphasizes power efficiency .
72
+ 18 the acorn computers acorn archimedes , later named the risc pc , used a custom-designed microprocessor : the arm .
73
+ 23 in the case of the davinci dsp family from texas instruments , this scheme would allow passing of messages and data between an arm client and a dsp server .
74
+ 23 the wave is a slim touchscreen phone powered by samsung 's '' hummingbird '' cpu ( s5pc110 ) , which includes 1 ghz arm cortex-8 cpu and a powerful built-in powervr sgx 540 graphics engine , '' super lcd '' screen and 720p high-definition video capture capabilities .
75
+ 12 current client versions of windows run on ia-32 , x86-64 and 32-bit arm microprocessor .
76
+ 20 it is also officially supported but considered in development state on mips , ps3 cell processor , system z/s390 , arm , and superh .
77
+ 34 c24x : 16 bit , fixed point , 20 to 40 mhz c28x : 32 bit , fixed or floating point , 100 to 150 mhz stellaris ( rebranded as tiva in 2013 ) arm cortex-m3 based 32-bit mcu family hercules : transportation and industrial safety mcu 's based on the cortex-r4f and cortex-m3 in the past , ti has also sold microcontrollers based on arm7 ( tms470 ) and 8051 cores .
78
+ 1 the arm first appeared in 1985 .
79
+ 55 for instance , any device which is to be classified as a pocket pc must : run microsoft 's windows mobile , pocket pc edition come bundled with a specific suite of applications in rom include a touchscreen include a directional pad or touchpad include a set of hardware application buttons be based on an arm version 4 compatible cpu , intel xscale cpu , mips cpu or sh3 cpu .
80
+ 26 ; notes ffmpeg has an implementation of an atrac3 decoder , which was converted to fixed precision and implemented in the rockbox series of firmwares for arm , coldfire and mips processors .
81
+ 4 eidos chose the new arm - based computers from the uk and implemented an editing system , launched in europe in 1990 at the international broadcasting convention .
82
+ 47 architectures prominent 32-bit instruction set architectures used in general-purpose computing include the ibm system/360 and its 32-bit successors , the dec vax , the ns320xx , the motorola 68000 family , the intel ia-32 32-bit version of the x86 architecture , and the 32-bit versions of the arm , sparc , mips , powerpc and pa-risc architectures .
83
+ 67 a jumping jack ( canada & us ) or star jump ( uk and other commonwealth nations ) , also called side-straddle hop in the us military , is a physical jumping exercise performed by jumping to a position with the legs spread wide and the hand touching overhead , sometimes in a clap , and then returning to a position with the feet together and the arm at the sides .
84
+ 7 ( in contrast , a 100 mhz arm cpu ( from 2008 ) switches in less than 3 microseconds .
85
+ 12 well-known risc families include dec alpha , amd 29k , arc , arm , atmel avr , blackfin , intel i860 and i960 , mips , motorola 88000 , pa-risc , power ( including powerpc ) , superh , and sparc .
86
+ 11 in 2014 a unofficial version for the pandora handheld and the arm architecture became available by static recompilation and reverse engineering of the original x86 version .
87
+ 9 since october 2010 , wine also works on the arm platform when used as winelib ( which lets developers compile windows code on linux using wine as a library ) .
88
+ 12 gdb target processors ( as of 2003 ) include : alpha , arm , avr , h8/300 , altera nios/nios ii , system/370 , system 390 , x86 and its 64-bit extension x86-64 , ia-64 '' itanium '' , motorola 68000 , mips , pa-risc , powerpc , superh , sparc , and vax .
89
+ 17 the game boy advance ( also referred to as gba ) featured a 32 bit 16.8 mhz arm .
90
+ 7 two notable examples of this are the arm compliant amulet and the mips r3000 compatible minimips .
91
+ 28 the dragonball 's major design win was in earlier versions of the palm computing platform ; however , from palm os 5 onwards it has been superseded by arm - based processors from texas instruments and intel .
92
+ 50 postgresql works on any of the following instruction set architecture : x86 and x86-64 on windows and other operatings systems ; other than windows : ia-64 itanium , powerpc , powerpc 64 , s/390 , s/390x , sparc , sparc 64 , alpha , armv8-a ( 64-bit ) and older arm ( 32-bit ) , mips , mipsel , m68k , and pa-risc .
93
+ 6 the a3000 used an 8 mhz arm 2 and was supplied with of ram .
94
+ 63 ) -1 = bbc b with new 1.00 + os ( including 1.20 ) 1 = electron 251 = bbc b + 64/128 253 = master 128 245 = compact 160 = archimedes ( arthur os ) ( obsolete ) 161 = archimedes/a3000 ( riscos ) ??? = acorn a5000 acorn archimedes ( risc os ) with the move to the 32 bit arm cpu and the removal of the 16kb limit on the basic code size many new features were added .
95
+ 8 the in-line 6502 assembler was replaced by an arm assembler .
96
+ 12 this comprises an inflatable ( riva-rocci ) cuff placed around the upper arm at roughly the same vertical height as the heart , attached to a mercury or aneroid manometer .
97
+ 30 the 6502 instruction set includes brk ( opcode $ 00 ) , which is technically a software interrupt ( similar in spirit to the swi mnemonic of the 6800 and arm processors ) .
98
+ 20 portability is achieved through native code generation support for major architectures : ia-32 , amd64 , power , sparc , arm , and arm64 .
99
+ 10 at the time of publishing clogger , he was learning arm assembly language in addition to setting up a vehicle restoration business for old buses .
100
+ 3 krait is an arm - based central processing unit included in qualcomm snapdragon s4 and snapdragon 400/600/800 ( krait 200 , krait 300 , krait 400 and krait 450 ) system on chip .
101
+ 6 jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host .
102
+ 24 information is written and read from a dataflash device using any microcontroller , such as the atmel avr , the microchip pic or the arm .
103
+ 5 function during abduction of the arm the middle and inferior ligaments become taut while the superior ligament relaxes .
104
+ 15 february 27 , 2012 : the portland group released the pgi opencl compiler for multi-core arm cpus .
105
+ 5 inline assembler for x86 and arm .
106
+ 14 in the human body , the upper and lower limb are commonly called the arm and the legs .
107
+ 7 it works for intel , amd , arm and ultrasparc processors .
108
+ 19 in addition , it is common for the gregory brothers to alter footage by superimposing their own mouth or arm onto individuals who were in the original video clip ; compare syncro-vox .
109
+ 8 winrt applications natively support both the x86 and arm architectures , and also run inside a sandboxed environment to allow for greater security and stability .
110
+ 5 currently , xnu runs on arm , ia-32 , and x86-64 processors , both single processor and smp models .
111
+ 18 they possess six limbs , and usually use one pair for locomotion and the other two pairs as arm .
112
+ 23 in december 2012 , the company announced the shipment of its first 28 nm cyclone v soc devices , which have a dual-core arm cortex-a9 processor system with fpga logic on a single chip .
113
+ 31 nine is the number of tools ( a toy industry term for parts of a figure ) used in a standard kubrick figure : head , torso , hips , two arm , two hand , and two leg ; the english word brick is collector 's jargon for lego elements , and refers to the similarity of kubricks to lego minifigures .
114
+ 43 the group/school/department is notable for the following achievements : the world 's first stored program digital computer ( the small-scale experimental machine ) virtual memory using paging ( see atlas computer ) manchester encoding the amulet microprocessor series ( asynchronous implementations of the arm computer architecture ) see also the history of the school .
115
+ 14 currently , rosenkränzer works at linaro , an organization dedicated to improving linux on arm processors and also for rosa laboratories , a company delivering their own custom brand of mandriva linux for the russian government .
116
+ 32 a simple '' hello , world ! '' program in the assembly format : back ends : instruction set and microarchitecture support at version 3.4 llvm supports many instruction set , including arm , hexagon , mips , nvidia ptx ( called '' nvptx ' in llvm documentation ) , powerpc , r600 , sparc , z/architecture ( called '' systemz '' in llvm documentation ) , x86 / x86-64 , and xcore .
117
+ 3 the lifter 's arm are relaxed and just outside the legs with the bar up against the shins .
118
+ 20 x continued slowly but steadily , and in late 2003 a working powerpc port became available , followed by an arm port in summer 2004 , a sparc port in fall 2004 , and an amd64 port which made the compiler available for a 64-bit platform in early 2004 .
119
+ 8 various brachial plexus block exist for shoulder and arm procedures .
120
+ 7 most newton devices were based on the arm 610 risc processor and all featured handwriting recognition software .
121
+ 14 carrots or cherries are often used for the nose , as are sticks for arm and stone for eyes ( traditionally lumps of coal or , if coal is not in wide use in the area , charcoal ) .
122
+ 64 in a recent csoonline article by joan goodchild she reported a survey that found '' when asked what are the greatest barriers to enabling employees to use personal devices at work , 83 percent of it respondents cited '' security concerns '' this shortcoming may soon be remedied by the chip manufacturers with technologies such as intel 's '' trusted execution technology '' and arm 's '' trust zone '' -- these technologies being designed to increase the trustworthiness of both enterprise and consumer devices .
123
+ 19 boomerang dysplasia is a lethal form of osteochondrodysplasia known for a characteristic congenital feature in which bone of the arm and leg are malformed into the shape of a boomerang .
124
+ 47 debug the application software on the target system using the debugger faults can be debugged using the ide on the development host supported hardware the following processor architectures are supported , with a large set of board support package ( bsp ) for various boards : powerpc arm x86 x86-64 mips64 sparc superh sh4 symmetric multiprocessing is supported if a multi-core processor is used .
125
+ 8 hardware the palm tx featured a 312 mhz arm - based intel xscale pxa 270 microprocessor ; a 320x480 transreflective screen that supported 65,000 colors ; 802.11b wi-fi with an internal antenna ; 128 mb of non-volatile storage , of which 100 mb is user accessible ; an sdio and mmc compatible sd expansion card slot ; standard 3.5 mm headphone jack ; infrared i/o port ; single speaker capable of full audio playback ; and an athena connector , referred to as a ` multiconnector , ' with separate data and power input .
126
+ 41 paget -- schroetter disease , also known as paget -- von schrötter disease , is a form of upper extremity deep vein thrombosis ( dvt ) , a medical condition in which blood clot form in the deep vein of the arm .
127
+ 15 the device is usually its jaw , but in some animals evolution converted leg into arm to handle objects ; see opabinia for a very early example of a nose turned into a grab .
128
+ 4 it has hydraulically activated arm , grasping claw , and jaw , and a flame thrower in the head to give the effect of breathing fire out of its nostrils .
129
+ 18 the devices were manufactured by several manufacturers , based on a mix of : x86 , mips , arm , and superh hardware .
130
+ 13 bracing and support össur manufactures a range of braces and support products for arm , leg , and torso .
131
+ 7 the same series unified support for the arm processor .
132
+ 14 cavium is a fabless semiconductor company based in san jose , california specializing in arm - based and mips - based network , video and security processors and socs .
133
+ 2 technical specifications arm 600 mhz ( overclocked to 720 mhz ) cortex-a8 superscalar microprocessor core : texas instruments omap3530 system-on-chip 512 mb ddr-333 sdram 256 mb nand flash memory dsp core video processor at 430 mhz opengl es 2.0 compliant freescale-based 3d accelerometer integrated ralink-based wi-fi 802.11 b/g/n integrated bluetooth 2.0 1024x600 resolution touchscreen lcd , 8.9 '' widescreen , 16.7 million colors sdhc card slot ( currently supporting up to 32 gb of storage ) headphone output , microphone input standard qwerty keyboard and touchpad usb 2.0 otg port ( 480mbit/s ) 6 × usb 2.0 host ports ( 480 mbit/s ) jtag debugging interface runs the linux kernel ( 2.6 .
134
+ 21 most major league pitchers throw at speeds between 60 and 100 mph , putting high amounts of stress on the pitching arm .
135
+ 25 mips , pa-risc , etrax cris , superh , and sparc are risc architectures that each have a single branch delay slot ; powerpc , arm , and the more recently designed alpha do not have any .
136
+ 32 that is , most other instruction sets , such as the ibm system/360 instruction set of that era , and later instruction set designs such as the x86 , ppc , and arm instruction set architectures , are essentially traditional instruction set based architectures rather than holistic designs like the original burroughs systems .
137
+ 11 intramuscular injections are often given in the deltoid muscle of the arm , the vastus lateralis muscle of the leg , and the ventrogluteal and dorsogluteal muscles of the buttocks .
138
+ 22 symptom location : in addition to the back , sarno states that tms symptoms can occur in the neck , knee , arm , wrists , and other parts of the body .
139
+ 42 on lars gustavsson , creative director at dice , said to polygon.com commercial games for non-x86 instruction sets some companies ported games to linux running on instruction set other than x86 , such as alpha , powerpc , sparc , mips or arm .
140
+ 1 broke arm at howell , new jersey nbl race on july 15 , 1984 .
141
+ 28 other releases are marked '' special purpose '' -- the '' smolensk '' for x86-64 pcs , '' tula '' for networking hardware , '' novorossiysk '' for arm mobile devices and '' murmansk '' for ibm system z mainframes .
142
+ 0 arm , x86 and power architecture based solutions were investigated and a solution based on freescale 's power architecture based dual core p5020 / quad core p5040 processor came out on top at the time of decision in 2012 .
143
+ 10 omap 1 the omap 1 family started with a ti-enhanced arm core , and then changed to a standard arm926 core .
144
+ 9 it works on many architectures , including x86 , arm , powerpc , amd64 , ia-64 , sparc , alpha , pa-risc , mips and motorola 68k .
145
+ 19 as a result , pocket pc 2000 was released on multiple cpu architectures ; sh-3 , mips , and arm .
146
+ 67 system requirements pc version epsxe 's stated system requirements are : processor : pentium 200 mhz , recommended pentium 3 at 1 ghz ram : 256 mb ram , recommended 512 mb ram video card : 3d capable video card with support for opengl , directx , or glide operating system : windows or linux cd-rom : 16x or faster ( optional ) android version processor : arm or x86 ( intel atom ) operating system : android 2.2 or newer reception retro gamer called epsxe '' the best free playstation emulator '' .
147
+ 12 the core muscles of the torso are trained before the shoulder and arm muscles that assist them .
148
+ 6 unlike these companies , which use arm - based cpus designed from the beginning to consume very low power , intel has adapted the x86 based atom line cpu developed for low power usage in netbooks , to even lower power usage .
149
+ 40 keil provides a broad range of development tools like ansi c compiler , macro assemblers , debuggers and simulators , linker , ide , library managers , real-time operating systems and evaluation boards for intel 8051 , intel mcs-251 , arm , and xc16x / c16x / st10 families .
150
+ 20 she typically trains five days a week in the off-season and on-season focusing on her chest , back , and arm as primary muscle groups in order to make them match her strong legs and shoulder .
151
+ 6 for instance , in 2014 a arm architecture version of the 1998 video game starcraft was generated by static recompilation from the original x86 version .
152
+ 17 limb perfusion is a medical technique that may be used to deliver anticancer drug directly to an arm or leg .
153
+ 9 what is inside application processor ( intel atom , arm , etc. ) high level operating system ( hlos ) , widget based voip software for ip calls examples the media phone can be used by wireline telecom operators for value-added ip services delivery .
154
+ 31 even without source access , legacy binary code can be executed in systems running on processors with hardware virtualization support such as the amd-v , intel vt technologies and the latest arm processors with virtualization support .
155
+ 0 arm , mips , x86 , fr-v and many others including cpus supported by open source rtos ecos and rtems , both of which include the support for µitron compatible apis .
156
+ 4 cacao supports alpha , arm , mips ( 32 and 64-bit ) , powerpc ( 32 and 64-bit ) , s390 , sparc64 , x86 and x86-64 architectures .
157
+ 17 he had been working on 3d landscape algorithms on the bbc micro and then wrote lander using arm code .
158
+ 20 symbian was originally developed by symbian ltd . , as a descendant of psion 's epoc and runs exclusively on arm processors , although an unreleased x86 port existed .
159
+ 35 in january 2012 , microsoft confirmed it would require hardware manufacturers to enable secure boot on windows 8 devices , and that x86 / 64 devices must provide the option to turn it off while arm - based devices must not provide the option to turn it off .
160
+ 8 risc systems such as powerpc , sparc , arm or mips use the load/store architecture .
161
+ 5 some other architectures such as arm and mips also have simd extensions .
162
+ 3 the company introduced arm - based , 32-bit mcus in early 2012 .
163
+ 21 if , for example , a person makes a movement of their hand to touch or grasp something and unexpected their arm is pushed -- their brain automatically reorganizes the movement so it so achieves its intended aim .
164
+ 23 the wave is a slim touchscreen phone powered by samsung 's '' hummingbird '' cpu ( s5pc110 ) , which includes 1 ghz arm cortex-a8 cpu and a built-in powervr sgx 540 graphics engine .
data/arm/test.gold.txt ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 0
3
+ 1
4
+ 0
5
+ 0
6
+ 0
7
+ 1
8
+ 0
9
+ 0
10
+ 0
11
+ 0
12
+ 1
13
+ 1
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 1
23
+ 0
24
+ 0
25
+ 1
26
+ 0
27
+ 0
28
+ 0
29
+ 0
30
+ 0
31
+ 1
32
+ 1
33
+ 1
34
+ 0
35
+ 0
36
+ 0
37
+ 0
38
+ 1
39
+ 0
40
+ 0
41
+ 1
42
+ 0
43
+ 0
44
+ 0
45
+ 1
46
+ 0
47
+ 1
48
+ 1
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 1
57
+ 0
58
+ 1
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 1
65
+ 1
66
+ 0
67
+ 1
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 1
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 1
97
+ 0
98
+ 0
99
+ 0
100
+ 0
101
+ 0
102
+ 0
103
+ 1
104
+ 0
105
+ 0
106
+ 1
107
+ 0
108
+ 1
109
+ 0
110
+ 0
111
+ 1
112
+ 0
113
+ 1
114
+ 0
115
+ 0
116
+ 0
117
+ 1
118
+ 0
119
+ 1
120
+ 0
121
+ 1
122
+ 0
123
+ 1
124
+ 0
125
+ 0
126
+ 1
127
+ 1
128
+ 1
129
+ 0
130
+ 1
131
+ 0
132
+ 0
133
+ 0
134
+ 1
135
+ 0
136
+ 0
137
+ 1
138
+ 1
139
+ 0
140
+ 1
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 0
146
+ 0
147
+ 1
148
+ 0
149
+ 0
150
+ 1
151
+ 0
152
+ 1
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 0
160
+ 0
161
+ 0
162
+ 0
163
+ 1
164
+ 0
data/arm/train.data.txt ADDED
@@ -0,0 +1,423 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 13 risc os , the computer operating system developed by acorn computers for their arm - based acorn archimedes range , was originally released in 1987 as , soon followed by , and .
2
+ 5 thus , its wing and arm bones were probably reduced , a process known to have taken as little as 10,000 years in some island rail .
3
+ 24 sccs usually occur on portions of the body commonly exposed to the sun ; the face , ears , neck , hand , or arm .
4
+ 11 the tube was also used during the initial development of the arm processor .
5
+ 15 instructions are given conditional execution flag in similar to some risc processors ( notably the arm ) , thus providing a constant runtime .
6
+ 6 it began as a producer of arm computers and manufactured the acorn - branded range of desktop computers that run risc os .
7
+ 10 dr. nicolaes tulp is pictured explaining the musculature of the arm to medical professionals .
8
+ 77 specifications camera 3.2 mp ( up to 2048x1536 ) , with autofocus and qvga @ 15fps video recording networks gsm 900/1800/1900 + umts 2100 , gprs connectivity bluetooth 2.0 + edr a2dp supported usb 2.0 wi-fi 802.11 b ( 11 mbit/s ) storage 8 gb , no slot dimensions 109 x 55 x 16 mm operating system symbian 9.1 , uiq 3.0 display 2.6 inches qvga ( 240х320 pixel ) 262k colors touchscreen hardware philips nexperia pnx4008 arm 9 processor at 208 mhz 128 mb ram 256 mb rom gallery file : sony ericsson w960 in hand .
9
+ 11 a limb infarction is an area of tissue death of an arm or leg .
10
+ 68 ( os from microware for intel x86 based microcomputers ; based on os-9 , written in c ) osf/1 ( developed into a commercial offering by digital equipment corporation ) openstep qnx ( posix , microkernel os ; usually a real time embedded os ) rhapsody ( an early form of os x ) risc ix - derived from bsd 4.3 , by acorn computers , for their arm family of machines .
11
+ 15 each of the following cpus served as the basis for a family of processors : arm dec pdp-6 , which led to the ka10 family ( used in pdp-10 , decsystem-20 ) dec pdp-11 ( influenced vax and m68000 ) intel 8008 , 8080 and 8085 zilog z80 x86-16 instruction set first used in the intel 8086 intel 8088 ( variant used in the first and early ibm pc ) intel 80186 intel 80286 ( the first x86 processor with protected mode , used in the ibm at ) x86-32 intel 80386 intel 80486 intel pentium and xeon cpus x86-64 the original specification was created by amd .
12
+ 9 samsung electronics announced support of usb 3.0 with its arm - based exynos 5 dual platform intended for handheld devices .
13
+ 15 the nickname of the architecture is '' bitsy , '' after the name of the arm - based chipsets used in many of the machines .
14
+ 11 xively partner network xively has partnered with chipset companies such as arm , atmel and ti as well as solution providers and iot industry alliances like oasis .
15
+ 9 omap variants omap variants , these also have an arm processor in the same chip , see main article on texas instruments omap .
16
+ 30 replantation has been defined by the american society for surgery of the hand as '' the surgical reattachment of a body part , most commonly a finger , hand or arm , that has been completely cut from a person 's body '' .
17
+ 10 art is a cross-platform runtime which supports the x86 , arm , and mips architectures in both 32-bit and 64-bit environments .
18
+ 5 currently emulated processor architectures include arm , mips , m88k , powerpc , and superh .
19
+ 7 it is the first version to support arm devices and replaced the kadak amx68000 kernel with the custom mck kernel , named for its developer , that was written in-house by palm .
20
+ 3 chessmachine , an arm - based dedicated computer , which could run two engines : '' the king '' , which later became the chessmaster engine , was also used in the tasc r30 dedicated computer .
21
+ 29 the irish mythology includes the fomorians , who are almost without exception described as being deformed , possessing only one of what most have two of ( eye , arm , leg , etc. ) or having larger than normal limbs .
22
+ 7 limbs some plethysmograph devices are attached to arm , leg or other extremities and used to determine circulatory capacity .
23
+ 13 the compiler can emit fast native code translations of javascript functions on the arm , x86 , and x86-64 platforms .
24
+ 11 the international ` gt-i9000 ' reference version features a 1 ghz arm '' hummingbird '' processor , a powervr graphics processor , 8 or 16 gb of internal flash memory , a 480 × 800 pixel super amoled capacitive touchscreen display , wi-fi connectivity , a 5 - megapixel primary camera and a 0.3-megapixel secondary front-facing camera .
25
+ 19 some processor architectures , such as the motorola 68000 , motorola 6809 , wdc 65c816 , knuth's mmix , arm and x86-64 allow referencing data by offset from the program counter .
26
+ 31 carlo calls righetto ( vittorio congia ) the paparazzi photographer who snapped the picture at the last second and he goes back to the original and sees a moving hand - arm in the far left of the frame .
27
+ 57 the source code has also been fork to provide compatibility on a number of non - x86 pc computer platforms , including the palm os , playstation portable , android , ios , symbian , maemo , blackberry playbook , wii , and the gp2x , on various computing architecture including powerpc , sparc , mips and arm .
28
+ 32 the opening poem of double persephone , '' formal garden , '' a '' girl with the gorgon touch '' walks through the title location searching for '' a living wrist and arm '' , but all she finds is a '' a line of statue '' with '' marble flesh .
29
+ 12 when holding a typical mouse , ulna and radius bones on the arm are crossed .
30
+ 4 history name the acronym arm , first used in 1983 , originally stood for '' acorn risc machine '' , the processor from acorn computers , its first risc processor used in the original acorn archimedes and one of the first risc processors .
31
+ 2 born without arm and legs due to a genetic disorder called tetra-amelia syndrome , ototake is most notable for his 1998 memoir ( isbn 4770027648 ) .
32
+ 16 systems running a microsoft operating system but using an intel microprocessor based on the itanium or arm architecture , however , are not considered to be wintel systems .
33
+ 28 it is cross-platform and has been ported to various operating systems ( windows , linux , mac os x ) and hardware architectures ( x86 , x86-64 , arm , mips ) .
34
+ 14 the digic ii and digic iii asic contain embedded 32-bit processors based on the arm instruction set .
35
+ 15 the vidc20 was a video display controller chip created as an accompanying chip to the arm cpu as used in riscpc computer systems .
36
+ 7 it supports the x86 , powerpc , arm architectures , and is released under the terms of a bsd style license .
37
+ 20 her & ste argue over the children and ste even shows part of his violent side as he grabs her arm .
38
+ 10 windows runs on ia-32 , x86-64 , and on 32-bit arm ( armv7 ) processors .
39
+ 31 in 1966 , hiroshi yamauchi , president of nintendo at the time , came to a hanafuda factory yokoi was working at and took notice of a toy , an extending arm , that yokoi made for his own amusement during spare time as the company 's machine maintenance man .
40
+ 14 media processors the zms processors are based on a low-power multicore architecture including dual arm cores for handling traditional cpu tasks plus a closely coupled , fully programmable simd array processor to do the heavy lifting for intensive media processing tasks such as ; 2d graphics , 3d graphics , video decode/encode , image processing and floating point ( 32-bit ieee ) .
41
+ 0 arm - based products have a particularly rich third party market , and a number of those vendors have expanded to non-arm platforms like mips and powerpc .
42
+ 19 the main torso is ganbaruger , though revolger adds onto it , and forms the head , and lower arm at least .
43
+ 25 typical processors that dspnano runs on today include : microchip pic microcontroller ( 24 , 30 , 33 and 32 ) , renesas m16c , arm and more .
44
+ 16 most common places are the abdomen ( especially near the navel ) , breast , upper arm , underarms , back , thigh ( both inner and outer ) , hips , and buttocks .
45
+ 16 on the human body , the limb can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
46
+ 23 the upper limb or upper extremity is the region in an animal extending from the deltoid region to the hand , including the arm , axilla and shoulder .
47
+ 23 ; embedded systems in addition to widely used x86 and x86-64 platforms , freebsd supports a number of less-used hardware platforms such as arm , powerpc and mips .
48
+ 7 cpu : 400 mhz to 1000 mhz arm marvell armada 610 at 0.8 watt , with integrated graphics controller 1024 to 2048 mb of ddr3 ( ) 1024 kb ( 1 mb ) flash rom with open-source open firmware 4-8 gb of slc nand flash memory ( upgradable , microsd ) accelerometer average battery life 5-10 hrs screen 1200 × 900 7.5 inch ( 19 cm ) diagonal lcd ( 200 dpi ) that uses 0.1 to 1.0 w depending on mode .
49
+ 26 the procedure consists in the removal of the breast , the lining over the chest muscles and a part of the lymph nodes from under the arm .
50
+ 22 implementations the following embedded hardware technologies can be used to support tee implementations : amd : platform security processor ( psp ) arm : trustzone intel x86-64 instruction set : sgx software guard extensions mips : virtualization several tee implementations are available from different tee providers : commercial implementations ( t-base , a commercial implementation from trustonic that has been qualified by globalplatform securitee , a commercial implementation from solacia that has been qualified by globalplatform open-source implementations op-tee , an open source implementation from stmicroelectronics under bsd license tlk , an open-source implementation from nvidia under bsd license t6 , and open-source implementation and research topic under gpl license open tee , an open source implementation and research project from the university of helsinki and sponsored by intel .
51
+ 11 linkstation linkstation hg the linkstation is a powerpc , mips or arm based network attached storage appliance sold in north america , europe and japan , that is significantly notable among the linux community both in japan and in the us/europe for being '' hackable '' into a generic linux appliance and made to do tasks other than the file storage task for which it was designed .
52
+ 7 gsm - based blackberry handhelds incorporate an arm 7 , 9 or 11 processor .
53
+ 6 wilson giving a public presentation on arm development in 2009 since the demise of acorn computers , wilson has made a small number of public appearances to talk about her time there .
54
+ 6 widely used eabis include powerpc , arm eabi2 and mips eabi .
55
+ 8 the logo of this brand is a muscular arm holding a hammer .
56
+ 36 it is supported under a variety of real-time and near-real-time operating systems including embedded windows xp , linux , vxworks and threadx , and on a variety of hardware architectures , including intel , freescale and arm , with or without a system-on-a-chip ( soc ) around the cpu .
57
+ 13 version 9 is the most recent version currently available for the linux / arm - based nokia 770 / n800 / n810 internet tablets running maemo os2008 , classic mac os and windows 95/nt .
58
+ 4 the hardware includes an arm - based qualcomm snapdragon processor and 1gb of ram .
59
+ 9 in 2010 , freescale also launched kinetis , an arm - based product line , leading some industry observers to speculate about the future of the coldfire range , given that freescale would have several competing cpu ranges .
60
+ 25 the threat of post-pc devices have also affected the producers of the x86 processor typically used by pcs ; many smartphones and tablets utilize low-power arm processors manufactured by companies such as nvidia and qualcomm instead of the x86 processors sold by companies such as intel and amd .
61
+ 14 1987 : acorn archimedes ( europe ) , launched with an 8 mhz 32-bit arm 2 microprocessor , with between 512kb and 4mb of ram , and an optional 20 or 40mb hard drive .
62
+ 24 the axilla ( or armpit , underarm , or oxter ) is the area on the human body directly under the joint where the arm connects to the shoulder .
63
+ 7 most companies developing software with vrtx use arm , mips , powerpc or other risc microprocessor .
64
+ 30 ) location finding by detection of cell towers and wi-fi networks and with internal gps antenna processor : qualcomm msm7201a ( gsm ) msm7501a ( cdma ) ( 528 mhz arm arm1136ej-s processor ) ram : 288 mb dram ( 192 mb for the verizon sku ) rom : 512 mb flash memory removable media : microsdhc , supports up to 32 gb .
65
+ 11 its largest business is designing processors ( cpu ) bearing the arm name , although it also designs software development tools under the ds-5 , realview and keil brands , systems and platforms , system-on-a-chip ( soc ) infrastructure and software .
66
+ 5 early minimo development centered around arm devices ( such as hewlett-packard 's ipaq ) with around 64 mb of ram , running familiar linux and the gpe palmtop environment ( where it is was the default browser ) .
67
+ 14 one swims mostly upon one side , making an overhand movement , lifting the arm alternately out of the water .
68
+ 8 it supports a variety of architectures , including arm , mips , powerpc , ia32 and sparc .
69
+ 35 inside , she sees a large stone snake decorating the wall , and in the middle of the cave , she sees a man with long hair and beard chained ( by both of his arm and by his neck ) , on his knee , and apparently sleep ( his eye are closed and he is snoring ) .
70
+ 2 the upper arm is divided into two compartments , an anterior and a posterior , by the lateral intermuscular septum and the medial intermuscular septum .
71
+ 33 inclusion body myositis ( ibm ) is an inflammatory muscle disease , characterized by slowly progressive weakness and wasting of both distal and proximal muscles , most apparent in the muscles of the arm and legs .
72
+ 6 the pain may radiate into the arm and hand as well as the legs or feet , and may include symptoms other than pain .
73
+ 28 after world war ii , soviet armies were known as combined arms armies ( obshchevoyskovyye armiyi ) , sometimes translated during the early cold war as all - arm armies .
74
+ 20 the anterior humeral circumflex artery ( anterior circumflex artery , anterior circumflex humeral artery ) is an artery in the arm .
75
+ 16 the limbs of the human body , can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
76
+ 111 x freebsd 's opencrypto api ( aesni ( 4 ) driver ) hytrust openssl 1.0.1 and above oracle database 11g release 2 patchset 1 ( 11.2.0.2 ) transparent data encryption pgp whole disk encryption : 10.1.0 + on windows , 10.2.0 + on mac os x safeguard enterprise 6.0 by sophos ( utimaco ) secretagent 6.1.1 and above from information security corp. securedoc 5.2 by winmagic truecrypt 7.0 and above vormetric encryption 5 and above winrar 5.10 and above hardware acceleration in other architectures aes support with unprivileged processor instructions is also available in the latest sparc processors ( t4 , t5 , m5 , and forward ) and in latest arm processors .
77
+ 30 oberon-07 compilers have been developed for use with 32-bit windows ( ) , ( compiles code for both windows and linux ) , ( produces javascript code ) , 32-bit arm , cortex-m3 and cortex-m4 microcontrollers , and a wirth-designed risc processor implemented using a xilinx fpga spartan-3 board .
78
+ 4 central processing units ; arm armware ; mips spim : open virtual platforms ' ovpsim 500 mips mips32 , enables you to develop software on your pc using virtual platforms , emulators including mips processors running at up to 500 mips for mips32 processors running many oses including linux .
79
+ 15 ) da variants da variants ( target '' digital audio '' ) da25x is an arm processor and a c55x core .
80
+ 18 the most popular current meaning refers to a closed-chain bodyweight movement where the body is suspended by the arm , gripping something , and pulls up .
81
+ 21 2012 january 8 -- it is announced that the new generation of google tv devices will run on a variety of arm soc designs .
82
+ 18 because pe is used on windows ce , it continues to support several variants of the mips , arm ( including thumb ) , and superh isas .
83
+ 14 the humerus ( , plural : humeri ) is a long bone in the arm or forelimb that runs from the shoulder to the elbow .
84
+ 8 the main cpu in this smartphone is an arm compatible chip ( omap 1710 ( armv5 architecture , arm9 core ) ) running at 220 mhz , an unprecedented speed for a smartphone at its release .
85
+ 6 non-x86 pc/104 cpu boards based on arm or powerpc are also commercially available .
86
+ 21 since the release of specification 1.20 ( september 10th , 2010 ) qseven modules can be indifferently based on x86 or arm architectures .
87
+ 12 there are/were native versions for the ceres , intel ia-32 , and arm platforms .
88
+ 11 ecos runs on a wide variety of hardware platforms , including arm , calmrisc , fr-v , hitachi h8 , ia-32 , motorola 68000 , matsushita am3x , mips , nec v8xx , nios ii , powerpc , sparc , and superh .
89
+ 6 jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host jtag and/or swd debug interface host adapters ( in alphabetical order ) : colinkex by coocox i-jet by iar j-link by segger supports jtag and swd .
90
+ 107 continuing the above example , jumping to the second byte of the '' mov '' instruction results in an '' inc '' instruction : 1 : 44 inc % esp inc esp 2 : 33 22 xor ( % edx ) , % esp xor esp , dword ptr ( edx ) 4 : 11 35 11 22 33 44 adc % esi ,0 x44332211 adc dword ptr ds : 0x44332211 , esi a : 35 11 22 33 44 xor $ 0x44332211 , % eax xor eax ,0 x44332211 computer hardware that allows jumping into the middle of an instruction includes x86 , x86-64 , and arm .
91
+ 4 with the introduction of arm cortex-a9 multi-core soc , low-cost symmetric multiprocessing embedded systems began to flourish in the form of smartphone and tablet computer with a multi-core processor .
92
+ 16 rtai supports several architectures : x86 ( with and without fpu and tsc ) x86-64 powerpc arm ( strongarm ; arm7 : clps711x-family , cirrus logic ep7xxx , cs89712 , pxa25x ) mips rtai provides deterministic response to interrupts , posix compliant and native rtai real-time tasks .
93
+ 20 in progressive cases , the brachial plexus is also affected , causing pain and weakness in the muscles of the arm and hand ( thoracic outlet syndrome ) .
94
+ 10 both versions have jit compilation support on 32-bit/64-bit x86 and arm processors .
95
+ 10 for embedded systems , this is still a concern ; arm , mips and power architecture have all added 16-bit instructions to their architectures , which were originally 32-bit only .
96
+ 6 ( current hp calculators use an arm processor to emulate a saturn processor .
97
+ 21 using the ios sdk , xcode can also be used to compile and debug applications for ios that run on the arm processor .
98
+ 10 this includes kinetis , coldfire , powerpc , arc , arm , strongarm , xscale cpus .
99
+ 26 design and construction minifigures generally feature six parts ( widely referred to as tools in the toy industry ) : head , torso , hip , arm , hand , and leg ; these six parts allow seven points of articulation : swivel head , swivel arms , swivel wrists , and swivel legs .
100
+ 12 rockbox also provides support for multicore and asymmetric multiprocessor systems based on arm , coldfire , mips and sh .
101
+ 8 native ports include : x86 , mips , arm , powerpc , sparc .
102
+ 40 however , the 6502 performed reasonably well compared to other contemporary processors such as the z80 , which used a much faster clock rate , and the 6502 has been credited as being inspirational to risc processors such as the arm .
103
+ 35 despite being initially written for a single computer architecture , open64 has proven that it can generate efficient code for cisc , risc , and vliw architectures , including mips , x86 , ia-64 , arm , and others .
104
+ 16 in human anatomy , the brachial veins are venae comitantes of the brachial artery in the arm proper .
105
+ 5 it sometimes occurs in the arm or penis .
106
+ 23 his wombat project followed the approach taken with the project at dresden , but was a multi-architecture paravirtualized linux running on x86 , arm and mips hardware .
107
+ 4 some such as the arm with thumb-extension have mixed variable encoding , that is two fixed , usually 32-bit and 16-bit encodings , where instructions can not be mixed freely but must be switched between on a branch ( or exception boundary in armv8 ) .
108
+ 3 in computing in arm assembly language it is used to denote an immediate value .
109
+ 5 the compiler supports powerpc , arm , mips , sh , coldfire , tricore , intel , and more architectures .
110
+ 4 products celestial semiconductor 's arm - based chipsets are used on two out of the three different set-top boxes used in the deployment of digital terrestrial television ( dtt ) in argentina , using the isdb-tb standard .
111
+ 12 pigment is known to work on linux ( x86 , powerpc and arm ) , solaris ( x86 and sparc ) , os x , and microsoft windows .
112
+ 16 however , they have come under competitive pressure from via on the x86 side , and arm and xscale taking much of the low-end business .
113
+ 15 hardware the device has two usb 2.0 ports for connecting hard disks and uses an arm - compatible intel xscale ixp420 cpu .
114
+ 31 he was , nevertheless , severely injured : according to 18th century genealogist felgueiras gayo , he returned covered in wounds , and contemporary authors record that he lost his right arm or hand in the battle .
115
+ 24 a gals screen is an examination used by doctors and other healthcare professionals to detect locomotor abnormalities and functional disability relating to gait , arm , legs and the spine .
116
+ 13 it is available for a number of computer architecture , including 68k , arm , avr32 , blackfin , microblaze , mips , nios , ppc and x86 .
117
+ 7 ski jacket a ski jacket covers the arm and torso .
118
+ 9 many of these home consumer devices are built around arm , powerpc or mips processors running an embedded linux operating system .
119
+ 9 it has many features similar to those of the arm cortex-a8 core and it is based on the armv7 instruction set , but theoretically has much higher performance for multimedia-related simd operations .
120
+ 0 arm buds and a tail are visible .
121
+ 26 xtratum is a bare-metal hypervisor specially designed for embedded real-time systems available for the instruction set x86 , leon2 and leon3 ( sparc v8 ) , arm cortex-r4f processors .
122
+ 22 it is made by codegen , inc. it is written in ansi c and supports the x86 , powerpc , sparc , arm , mips architectures .
123
+ 9 another example is used by the linux kernel on arm .
124
+ 17 the server base system architecture ( sbsa ) is a standardized platform for server based on 64-bit arm processors .
125
+ 25 os-9 went on to versions for the 68000 family of processors and , rewritten mostly in c , to the intel 80x86 , powerpc , arm , mips , and some of the hitachi superh ( sh ) series processors .
126
+ 85 despite the difficulty of doing so , numerous asynchronous cpus have been built , including : the ordvac and the ( identical ) illiac i ( 1951 ) the johnniac ( 1953 ) the weizac ( 1955 ) the illiac ii ( 1962 ) the victoria university of manchester built atlas the honeywell cpus 6180 ( 1972 ) and series 60 level 68 ( 1981 ) upon which multics ran asynchronously the caltech asynchronous microprocessor , the world-first asynchronous microprocessor ( 1988 ) ; the arm - implementing amulet ( 1993 and 2000 ) ; the asynchronous implementation of mips r3000 , dubbed ( 1998 ) ; several versions of the xap processor experimented with different asynchronous design styles : a bundled data xap , a 1-of-4 xap , and a 1-of-2 ( dual-rail ) xap ( 2003 ?
127
+ 10 its functions are to move the scapulae and support the arm .
128
+ 24 project scope the yocto project has the aim and objective of attempting to improve the lives of developers of customised linux systems supporting the arm , mips , powerpc and x86 / x86 64 architectures .
129
+ 9 although master shake does not have a nose , arm or any reproductive organ , he does have two yellow hands with only four finger connected to each side of him .
130
+ 40 the main differences are : real-time guarantees ( each api call is quick , but more importantly , time-bound ) multiple threads inside the kernel as well as outside pluggable memory models , allowing better support for later generations of arm instruction set .
131
+ 1 this arm powered calculator also has some limited scientific functions which is relatively rare in financial calculators .
132
+ 6 in 1900 he lost his left arm when he fired a cannon .
133
+ 22 think comes along with kortex , a library of already existing system components , implementing various functions on various targets ( e.g. arm , powerpc , x86 , hitachi h8 , avr ) .
134
+ 25 joey comes out to his father , who gives him a black eye and , when joey attempts to steal his wallet , injures his arm .
135
+ 22 the zero flag is a single bit flag that is a central feature on most conventional cpu architectures ( including x86 , arm , pdp-11 , 68000 and numerous others ) .
136
+ 22 the cemetery is also known for the common ivy , which grows on the tree and its stem are thick as an arm of an adult human .
137
+ 5 the chips are based on arm controllers integrated with low-noise radio receivers to decode gps signals at very low signal levels ( typically -160 dbm ) .
138
+ 25 the c6 nerve root shares a common branch from c5 , and has a role in innervating many muscles of the rotator cuff and distal arm , including : subclavius supraspinatus infraspinatus biceps brachii brachialis deltoid teres minor brachioradialis serratus anterior subscapularis pectoralis major coracobrachialis teres major supinator extensor carpi radialis brevis extensor carpi radialis longus latissimus dorsi damage to the c6 motor neuron , by way of impingement , ischemia , trauma , or degeneration of nerve tissue , can cause denervation of one or more of the associated muscles .
139
+ 5 based on their own 32-bit arm risc processor , the systems were shipped with a gui os called arthur .
140
+ 7 the project has been ported to the arm and amd64 processor architectures , and partially implements windows api functionality .
141
+ 20 windows ce 5.0 is billed as a low-cost , compact , fast-to-market , real-time operating system available for x86 , arm , mips , and superh microprocessor - based systems .
142
+ 13 these areas include the sides and back of the neck , the inner arm , the axilla ( armpits ) and sides of the thorax .
143
+ 28 image of a wrist with peripheral veins visible the peripheral vascular system consists of the veins and arteries not in the chest or abdomen ( i.e. in the arm , hand , leg and feet ) .
144
+ 11 conditional execution some computer architectures have conditional instructions ( such as arm , but no longer for all instructions in 64-bit mode ) or conditional load instructions ( such as x86 ) which can in some cases obviate the need for conditional branches and avoid flushing the instruction pipeline .
145
+ 8 yiddish ( ) der hekht means spear , arm .
146
+ 6 bi-endian hardware some architectures ( including arm versions 3 and above , powerpc , alpha , sparc v9 , mips , pa-risc , superh sh-4 and ia-64 ) feature a setting which allows for switchable endianness in data segments , code segments or both .
147
+ 19 the infant 's head size and spontaneous reflexes such as sucking , swallowing , crying , and moving the arm and leg may all seem normal , depending on the severity of the condition .
148
+ 36 with the second brother down , selene turns her attention towards the third brother , who charges at her , but she response with the last weapon on her , a shuriken , severing his left arm clean off .
149
+ 16 supported hardware mer can be compiled for a number of instruction set such as x86 , arm or mips .
150
+ 0 arm defines its version of iommu as system memory management unit ( smmu ) to complement its virtualization architecture .
151
+ 3 eka2 runs on arm cpus and the '' wins '' emulator .
152
+ 57 given three machines a , b , and c , one uses machine a ( e.g. running windows xp on an ia-32 processor ) to build a cross compiler that runs on machine b ( e.g. running mac os x on an x86-64 processor ) to create executables for machine c ( e.g. running android on an arm processor ) .
153
+ 21 in a few cases , dcis may cause : a lump or thickening in or near the breast or under the arm a change in the size or shape of the breast nipple discharge or nipple tenderness ; the nipple may also be inverted , or pulled back into the breast ridges or pitting of the breast ; the skin may look like the skin of an orange a change in the way the skin of the breast , areola , or nipple looks or feels such as warmth , swelling , redness or scaliness .
154
+ 7 capros currently runs on intel ia-32 and arm microprocessors .
155
+ 1 the arm processor would have allowed them to achieve longer battery life than many larger devices using x86 processors .
156
+ 8 internally , the device features a quad core arm cortex-a9 core processor and a quad core powervr sgx543mp4 + graphics processing unit as well as livearea as its main user interface , which succeeds the xrossmediabar for the playstation portable .
157
+ 15 pc-on-a-stick is a term describing a pc in a usb stick format , generally using arm system on a chip .
158
+ 8 communications convergence processing ( ccp ) mindspeed 's arm - based processing solutions include low-power , multi-core digital signal processor system-on-chip ( soc ) solutions for residential and enterprise platforms ( the comcerto ® product line ) and carrier-grade voip systems .
159
+ 10 ports have been made to embedded architectures , such as arm and superh ; these tasks were easily achieved with bootstrap , a tool developed especially to automate making ports .
160
+ 7 it works for intel , amd and arm processors .
161
+ 18 kryoflux consists of a small hardware device , which is a software-programmable fdc system that runs on small arm - based devices that connects to a floppy disk drive and a host pc over usb , and software for accessing the device .
162
+ 15 in 1992 , acorn once more won the queen 's award for technology for the arm .
163
+ 18 that is true for most system-on-a-chip processors , both with higher end 32-bit processors such as those using arm , mips , or powerpc and with other microcontrollers such as the avr , pic , and msp430 .
164
+ 16 spinnaker ( spiking neural network architecture ) , designed at the university of manchester , uses arm processors as the building blocks of a massively parallel computing platform based on a six-layer thalamocortical model .
165
+ 5 planned new features included : arm as primary architecture replacement of the gnome-packagekit frontends with a new application installer , tentatively named gnome-software version history releases of red hat linux are listed here .
166
+ 4 terminal hair growth on arm is a secondary sexual characteristic in boys and appears in the last stages of puberty .
167
+ 13 e1 .31 ( streaming dmx over acn ) is supported on linux ( arm ; i386 , x86-64 ) , and macintosh ( powerpc ; i386 , x86-64 ) by the open lighting architecture .
168
+ 7 processor ti dm3730 processor - 1 ghz arm cortex-a8 core ` hd capable ' tms320c64x+ core ( 800 mhz up to 720p @ 30 fps ) imagination technologies powervr sgx 2d/3d graphics processor supporting dual independent displays 512 mb lpddr ram 4 gb microsd card supplied with the beagleboard-xm and loaded with the angstrom distribution peripheral connections dvi-d ( hdmi connector chosen for size - maximum resolution is 1400x1050 ) s-video usb otg ( mini ab ) 4 usb ports ethernet port microsd/mmc card slot stereo in and out jacks rs-232 port jtag connector power socket ( 5 v barrel connector type ) camera port expansion port development boot code stored on the usd card boot from usd/mmc only alternative boot source button .
169
+ 31 he was a white man between thirty and sixty , standing at five feet nine inches to five feet eleven inches with a case of myositis ossificans on one of his arm .
170
+ 36 applied micro circuits corporation ( also known as appliedmicro or amcc or apm ) is a fabless semiconductor company designing network and embedded power architecture ( including a power architecture license ) , and server processor arm ( including an armv8-a license ) , optical transport and storage solutions .
171
+ 50 even so , several asynchronous cpus have been built , including the ordvac and the identical illiac i ( 1951 ) the illiac ii ( 1962 ) , the fastest computer in the world at the time the caltech asynchronous microprocessor , the world-first asynchronous microprocessor ( 1988 ) the arm - implementing amulet ( 1993 and 2000 ) the asynchronous implementation of mips r3000 , dubbed ( 1998 ) the seaforth multi-core processor from charles h. moore optical communication one interesting possibility would be to eliminate the front side bus .
172
+ 15 the efm32 chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m4f , cortex-m3 , or cortex-m0+ .
173
+ 3 it has two arm and its flat , circular base has a diameter of 45 cm .
174
+ 21 masd also can compile saturn assembly language and , with the latest rom revision for the 49g + / 50g , arm assembly language on the calculator itself .
175
+ 9 there is an ongoing project to port wine to arm processors , which may in the future be used as a base for a winece running windows ce programs .
176
+ 10 paddles are often used with pull buoy to build up arm strength .
177
+ 17 it has been successfully built on ubuntu 11.04 ( natty narwhal ) on powerpc , x86 , arm and amd64 architectures .
178
+ 17 kuro box the kuro box the kuro box is the name for a series of powerpc and arm processor based computer intended for use as a network-attached storage device .
179
+ 17 this ranges from arteries serving the brain to those bringing blood to the lung , kidney , arm and leg .
180
+ 18 the maxwell microarchitecture , the successor to kepler microarchitecture , will for the first time feature an integrated arm cpu of its own .
181
+ 7 accordingly , it is comparable to the arm coresight debug architecture .
182
+ 95 unofficial ports unofficial ports are available as part of the unstable distribution : : dec alpha architecture : armv8-a architecture : hp pa-risc architecture : gnu hurd kernel on ia-32 architecture : motorola 68k architecture on amiga , atari , macintosh and various embedded vme systems : powerpcspe architecture , incompatible with powerpc : powerpc64 architecture supporting 64-bit powerpc cpus with vmx : little-endian powerpc64 architecture supporting power7+ and power8 cpus : hitachi superh architecture : sun sparc architecture with 64-bit userland : x32 abi userland for x86-64 embedded systems debian supports a variety of arm - based nas devices .
183
+ 10 hardware support helenos runs on several different cpu architectures including arm , x86-64 , ia-32 , ia-64 ( itanium ) , mips , powerpc ( 32-bit only ) , and sparc v9 .
184
+ 11 they are modeled after a tyrannosaurus rex and have hydraulically activated arm , grasping claw , and jaw , as well as flame thrower set up in the head to give the effect of breathing fire from the mouth .
185
+ 12 the compilers target 32 - and 64-bit platforms , including arc , arm , blackfin , coldfire , mips , powerpc , superh , starcore , x86 , v850 , and xscale .
186
+ 37 the original method used 11 body areas to assess hair growth , but was decreased to 9 body areas in the modified method : upper lip chin chest upper back lower back upper abdomen lower abdomen upper arm forearm ( deleted in the modified method ) thigh leg ( deleted in the modified method ) in the modified method , hair growth is rated from 0 ( no growth of terminal hair ) to 4 ( extensive hair growth ) in each of the nine locations .
187
+ 5 while not the first 64-bit arm cpu , it is the first to ship in a consumer smartphone or tablet computer .
188
+ 14 leg restraints limb restraints are physical restraint that are applied to a person 's arm or leg .
189
+ 17 a popular finishing trick for some routines is for the dog to jump into the trainer 's arm , or over his or her back .
190
+ 16 currently , fpc can generate code for x86 , x86-64 , powerpc , sparc , and arm processors , and for various operating systems , including microsoft windows , linux , freebsd , mac os and mac os x ( with an xcode integration kit ) .
191
+ 23 the igepv2 board is a low-power , fanless single-board computer based on the omap 3 series ( also known as cortex-a8 ) of arm - compatible processors .
192
+ 11 select oem 's include this in their products for x86 and arm based thin client .
193
+ 8 expeed 4 expeed 4 uses a processor with arm central controller , and is used in the nikon d5300 and nikon d3300 .
194
+ 5 each brick has a 32-bit arm microcontroller , a usb connector and connectors for more bricks and bricklets .
195
+ 26 one common design style uses a small system module , perhaps the size of a business card , holding high density bga chips such as an arm - based system-on-a-chip processor and peripherals , external flash memory for storage , and dram for runtime memory .
196
+ 3 its 123 mhz arm -9 processor can handle many applications at a time , and it can calculate 16000 fibonacci numbers in 35 seconds , as calculated using .
197
+ 2 x is arm - based ) , and even radiation hardened versions in the critical control systems of the space shuttle .
198
+ 8 the name aiyara originally referred to the first arm - based cluster built by wichai srisuruk and chanwit kaewkasi at suranaree university of technology .
199
+ 22 the evostream media server can be run on standard x86 based computer architectures as well as other embedded platforms , such as arm and mips .
200
+ 0 arm and powerpc architectures are also supported .
201
+ 12 the brachialis ( brachialis anticus ) is a muscle in the upper arm that flexes the elbow joint .
202
+ 25 among the components created by opencores contributors are : openrisc - a highly configurable risc central processing unit amber ( processor core ) - an arm - compatible risc central processing unit a zilog z80 clone usb 2.0 controller tri ethernet controller , 10/100/1000 mbit encryption units , for example des , aes & rsa hypertransport tunnel a pic16f84 core zet : an x86 compatible core openrisc asic in april 2011 opencores opened donations for a new project to develop a complete system on a chip design based on the openrisc processor and implement it into an asic - component .
203
+ 12 windows rt , the only edition of windows 8 for systems with arm processors , only supports applications included with the system ( such as a special version of office 2013 ) , supplied through windows update , or windows store apps , to ensure that the system only runs applications that are optimized for the architecture .
204
+ 5 the main cpu is an arm compatible chip ( arm4t architecture ) running at 123 mhz .
205
+ 4 '' windmilling '' the arm or rotating the hand from the wrist are examples of circumductive movement .
206
+ 7 this technology has been used to implement arm , mips and power architecture cores , which intrinsity licences under the name of fastcores ; the first implementation was fastmath , a mips - based dsp - like microprocessor implemented in 130 nm technology and introduced in 2002 .
207
+ 19 atmel arm-based processors are microcontroller and microprocessor integrated circuit , by atmel , that are based on various 32-bit arm processor cores , with atmel-designed peripherals and tool support .
208
+ 8 amulet is a series of microprocessors implementing the arm processor architecture .
209
+ 29 the bell labs technical journal paper introducing inferno listed the several dimensions of portability and versatility provided by the os : portability across processors : it currently runs on arm , sgi mips , hp pa-risc , ibm powerpc , sun sparc , and intel x86 architectures and is readily portable to others .
210
+ 2 opensolaris on arm port opensolaris on mips port derivatives illumos , a fully open source fork of the project , started in 2010 by a community of sun opensolaris engineers and the nexentaos support .
211
+ 18 os-9000 has also been ported to the powerpc , mips , some versions of advanced risc machines ' arm processor , and some of the hitachi sh family of processors .
212
+ 7 the compilers used were eabi - enabled arm versions of the standard gcc tool chain .
213
+ 15 the term diplegia can refer to any bodily area , such as the face , arm , or leg .
214
+ 12 saturn assembly , and , on the 49g + / 50g , arm assembly and c , are also programmable using desktop based compilers .
215
+ 12 simics can simulate systems such as alpha , x86-64 , ia-64 , arm , mips ( 32 - and 64-bit ) , msp430 , powerpc ( 32 - and 64-bit ) , power , sparc-v8 and v9 , and x86 cpus .
216
+ 29 they do n't lift off or push the rib cage into the mat , paying particular attention to the placement of the rib cage when inhaling or while performing arm movements overhead .
217
+ 24 brachial plexus block s are regional anesthesia techniques that are sometimes employed as an alternative to general anesthesia for surgery of the shoulder , arm , forearm , wrist and hand .
218
+ 6 now there is support for the arm isa also .
219
+ 3 she has four arm and wing , and wears a black and purple bathing suit .
220
+ 33 various versions of nt family operating systems have been released for a variety of processor architectures , initially ia-32 , mips , and dec alpha , with powerpc , itanium , x86-64 and arm supported in later releases .
221
+ 11 gafner focuses on her chest , shoulders , back , and arm in order to bring up her upper body to match her strong legs ( brainum , 224 ) .
222
+ 1 an arm processor is included .
223
+ 26 most processors ( including those of the intel / amd x86-32 / x86-64 family , the motorola 68000 family , the aim powerpc family , the arm family , and the sun sparc family ) set the signaled/quiet bit to non-zero if the nan is quiet , and to zero if the nan is signaling .
224
+ 16 sweating is an essential function that helps the body stay cool and commonly occurs under the arm , on the feet , and on the palms of the hands .
225
+ 26 his website closed , and it remains to be seen if he will continue work on nulldc or if he will release source code related to arm and powerpc devices .
226
+ 3 the company 's arm - based processing solutions include low-power , multi-core digital signal processor system-on-chip ( soc ) solutions for fixed and mobile ( 3g / 4g ) carrier infrastructure ( the transcede ® family ) and picochip 's socs for 3g ( hspa ) femtocells and small cell .
227
+ 20 the amsterdam compiler kit ( ack ) targets architectures of the 1980s , including 6502 , 6800 , 680x0 , arm , x86 , zilog z80 and z8000 .
228
+ 1 the arm , leg and torso are all represented by straight lines .
229
+ 24 new features include sctp , ufs journaling , an experimental port of sun 's zfs file system , gcc4 , improved support for the arm architecture , jemalloc ( a memory allocator optimized for parallel computation , which was ported to firefox 3 ) , and major updates and optimizations relating to network , audio , and smp performance .
230
+ 9 the make controller kit with an atmel at91sam7x256 ( arm ) microcontroller .
231
+ 8 crawling is a mode of locomotion involving the arm and leg .
232
+ 26 technique although the name implies that the paint is applied with the fingers , expert use of this medium makes use of the hand and lower arm too .
233
+ 3 ports to the arm and powerpc are in development .
234
+ 15 hardware platforms include variations of x86 , ultrasparc , itanium , power architecture , and arm .
235
+ 22 the phone will be sold at a price of hardware processors the nokia asha 303 is powered by the same 1 ghz arm 11 processor found in symbian belle phones such as the nokia 500 , 600 and 700 but lack the dedicated broadcom gpu which is not supported by the nokia series 40 operating system .
236
+ 1 an arm implementation was released in march 2010 .
237
+ 24 the replacement for the hp-48 , the hp-49 series initially used the saturn cpu , but starting with the hp-49g+ model the calculators use arm cpus that emulate the saturn architecture .
238
+ 12 in the late 1990s , intel replaced their entire risc line with arm - based designs , known as the xscale .
239
+ 12 it does not fully support many high-end apps and games designed for arm processors until these apps or games are ported and recompiled for intel compatibility .
240
+ 4 in 2012 freescale announced arm based qoriq offerings beginning in 2013 .
241
+ 10 specifications palm os : 5.0 cpu : intel xscale pxa263 arm cpu at 200 mhz memory : 16 mb ram , 11 mb available to user and 5 mb reserved for system use display : 480 x 320 , 16bit color sound : internal audio amplifier and speaker , built-in microphone , headphone out ( with connector for audio player remote control widget ) .
242
+ 3 amputation of the arm , leg , jaw , or half of the pelvis ( called a hemipelvectomy ) may be necessary in some cases .
243
+ 4 it also revealed that arm devices ( windows rt ) would be required to have secure boot permanently enabled , with no way for users to disable it .
244
+ 34 a hickey , kiss mark , love bite , or bug bite is a bruise or bruise like mark caused by the kissing or suckling of the skin , usually on the neck or arm .
245
+ 41 this includes the intel x86 family ( including the intel quark soc ) , mips , powerpc ( and bae rad ) , freescale coldfire , intel i960 , sparc , fujitsu fr-v , sh-4 and the closely related family of arm , strongarm and xscale cpus .
246
+ 4 from version 3.7.0 the arm / android platform support was added .
247
+ 17 cpus officially supported by vasm include m680x0 family , coldfire family , 80x86 family , powerpc , arm family , z80 family , c16x / st 10 , 6502 etc. .
248
+ 44 technique description when a practitioner is in north-south position , ( with opponent lying supine , practitioner is prone , positioned 180 degrees their opposite , contacting the opponent chest - to-chest ) , the practitioner will encircle the opponent 's neck with either arm .
249
+ 8 solutions to reduce heat include using lower power-consumption arm or intel atom processors .
250
+ 7 system requirements meego provides support for both arm and intel x86 processors with ssse3 enabled and uses btrfs as the default file system .
251
+ 18 the reverse prayer position , a technique used in bdsm play , involves restraint of a person 's arm by binding them behind the person 's back , with the hands placed between the shoulders , with the fingers of both hands straight , extended , and the palms of the hands touching each other .
252
+ 15 in relation to the elbow , a concentric contraction of the biceps would cause the arm to bend at the elbow as the hand moved from the leg to the shoulder ( a biceps curl ) .
253
+ 30 hardware support chrome os is initially intended for secondary devices like netbooks , not as a user 's primary pc , and will run on hardware incorporating an x86 or arm - based processor .
254
+ 14 a fly or flye is a strength training exercise in which the hand and arm move through an arc while the elbow is kept at a constant angle .
255
+ 25 cicadas are benign to humans under normal circumstances and do not bite or sting in a true sense , but may mistake a person 's arm or other part of their body for a tree or plant limb and attempt to feed .
256
+ 7 any accessible vein can be used although arm and hand veins are used most commonly , with leg and foot veins used to a much lesser extent .
257
+ 23 at91cap emulation board at91cap ( at91cap customizable atmel microcontrollers ) is a family of atmel microcontroller based on the 32-bit risc microprocessors from arm .
258
+ 37 mono-specific enhancements native interop services and com interop security - code execution engine the mono runtime contains a code execution engine that translates ecma cil byte codes into native code and supports a number of processors : arm , mips ( in 32-bit mode only ) , sparc , powerpc , s390 ( in 64-bit mode ) , x86 , x86-64 and ia-64 for 64-bit modes .
259
+ 4 a pillow between the arm and torso may provide support and increase comfort .
260
+ 13 it replaces the vivante gc800 gpu of the older rk291x series with an arm mali-400 gpu .
261
+ 12 it is available for a number of different computer architecture , including arm , blackfin , mips , nios and x86 .
262
+ 13 used by the following devices : rio karma portalplayer 5020 system-on-a-chip containing two arm cpu cores , each running at 75 mhz .
263
+ 11 vukićević made many important contributions to firefox mobile/fennec , including an arm backend for the tracemonkey javascript engine and the initial port of fennec to android .
264
+ 4 the compilers keil ( arm ) and tasking ( altium ) are currently supported .
265
+ 5 1991 -- ported to the arm chessmachine and named gideon , it won the world microcomputer chess championship .
266
+ 12 the college crest consists of a shield on which is depicted an arm holding a cross , while underneath is the latin phrase '' in hoc signo vinces '' , which translates to '' in this sign you will conquer '' .
267
+ 22 notable employees henry samueli gottfried ungerboeck , inventor of trellis coded modulation henry t. nicholas iii sophie wilson , designer of the arm cpu instruction set larry wall , creator of the perl programming language eben upton , creator of the raspberry pi single-board computer scott mcgregor , president and ceo broadcom and linux some free and open source drivers are available and included in the linux kernel source tree for the 802.11 b/g/a / n family of wireless chips broadcom produces .
268
+ 13 first released in 1987 , it was specifically designed to run on the arm chipset , which acorn had designed concurrently for use in its new line of archimedes personal computers .
269
+ 6 the stmp3700 is using a single arm processor core clocked up to a maximum of 300 mhz the system on chip was developed in 2007 for use in portable media players .
270
+ 23 other contemporary machines such as the pdp-11 , and practically all modern architectures , allow for immediate loads , although many such as arm restrict the range of values that can be loaded immediately .
271
+ 24 static recompilation is another approach based on the original binary , potentially leading to better performance than emulation ; an example is the 2014 arm architecture version of starcraft for the pandora .
272
+ 7 latitude on runs montavista linux on an arm - based subprocessor .
273
+ 5 these chipsets are based on arm technology and support android , window embedded compact and linux .
274
+ 15 the stm32 chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m7 , cortex-m4f , cortex-m3 , cortex-m0+ , or cortex-m0 .
275
+ 10 it is even possible to run programs written for the arm processor thus bypassing the emulation layer completely .
276
+ 26 today , os-9 is a product name used by both a motorola 68000 - series machine language os and a portable ( powerpc , x86 , arm , mips , sh4 , etc. ) version written in c , originally known as os-9000 .
277
+ 29 pgi has more recently participated in the specification of the new standard openacc directives for gpu computing , and has released a compiler for the opencl language on multi-core arm processors .
278
+ 15 the lpc chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m4f , cortex-m3 , cortex-m0+ , or cortex-m0 .
279
+ 22 the phone will be sold at a price of hardware processors the nokia asha 302 is powered by the same 1 ghz arm 11 processor found in some symbian^3 phones such as the nokia 500 , 600 and 700 but lack the dedicated broadcom gpu which is not supported by the nokia series 40 operating system .
280
+ 8 revopad devices are based on android os and arm based rockchip , , mediatek and allwinner soc .
281
+ 44 utility sleep studies can help diagnose or rule out : sleep-related breathing disorders , such as sleep apnea sleep-related seizure disorders sleep-related movement disorders , such as periodic limb movement disorder , which is repeated muscle twitching of the feet , legs , or arm during sleep .
282
+ 24 a rapid sequence of taps delivered first near the wrist and then near the elbow creates the sensation of sequential taps hopping up the arm from the wrist towards the elbow , although no physical stimulus was applied between the two actual stimulus locations .
283
+ 14 cpu : the msm7200a ( pvt32a ) or msm7201a ( pvt32b ) is an arm - based , dual-core cpu / gpu from qualcomm and contains many built-in features , including 3g and a gpu capable of up to 4 million triangles/sec .
284
+ 62 features risc ix running on the acorn a680 x11 ( initially release 2 ) with ardent window manager , tom 's window manager and ultrix window manager available by default system v virtual memory extensions , compatible with the '' system v interface definition '' c compiler with ansi c and pcc ( berkeley ) compatibility sun network file system version 3.2 arm assembler later versions upgraded the x11 server to release 4 , and was certified to conform to the x/open portability guide 3 base profile .
285
+ 34 in linux 2.2 / 2.4 only 32-bit x86 and ia64 are supported ; in linux 2.6 there is wider support : x86 ( 32 and 64 bit ) , dec alpha , mips , arm , sparc64 , ppc64 , avr32 .
286
+ 5 currently , xnu runs on arm , ia-32 , and x86-64 based processors , both single processor and smp models .
287
+ 18 the okl4 microvisor is a type i hypervisor and runs on single - and multi-core platforms based on arm , x86 and mips processors .
288
+ 14 meatwad does not have a nose or ears , but he does have retractable arm that only appear when needed .
289
+ 12 choices has been ported to and runs on sparc , x86 and arm .
290
+ 15 ) the tegra system-on-a-chip ( soc ) integrates eight specialized processors , including a multi-core arm cpu , a gpu , and dedicated audio , video and image processors .
291
+ 18 a list of the currently known to work unix versions are found below : linux on i386 , arm , powerpc , sparc and x86-64 cpus freebsd 7 .
292
+ 78 its design was heavily influenced by work on the modula-2+ language in use at src and at the acorn computers research center ( arc , later orc when olivetti bought out acorn ) at the time , which was the language in which the operating system for the dec firefly multiprocessor vax workstation was written and in which the acorn compiler for acorn modula-2 extended language ( camel ) at arc for the arx operating system project of arm based acorn archimedes range of computers were written .
293
+ 41 in a similar manner , subroutine call instructions can be indirect , with the address of the subroutine to be called specified in memory : sparc : jmpl % o7 mips : jal $ ra x86 : jmp \* % eax arm : mov pc , r2 ia64 : br .
294
+ 7 one contends that he had the longest arm in boxing history , with the ability to touch his knee without bending down .
295
+ 16 it was the first palm pda to use a version of palm os 5 and an arm processor , which meant that it had the software and processing power for high-quality real-time video playback and mp3 playback .
296
+ 6 boxee is not yet available for arm , powerpc , or mips processor architecture .
297
+ 15 the vidc1 was a video display controller chip created as an accompanying chip to the arm cpu as used in acorn archimedes computer systems , its successor the vidc20 was used in the later riscpc 's .
298
+ 29 the curve 8520 featured a 512 mhz processor , while blackberry 8000 series smartphones , such as the 8700 and the pearl , are based on the 312 mhz arm xscale armv5te pxa900 .
299
+ 34 event on may 29 , 2012 , when wu was driving a bus from wuxi to hangzhou on an expressway , a piece of iron broke through the glass and hit his abdomen and arm .
300
+ 9 limb : limb infarction is an infarction of an arm or leg .
301
+ 33 the more recent dragonball mx series microcontrollers , later renamed the freescale i.mx ( mc9328mx/mcimx ) series , are intended for similar application to the earlier dragonball devices but are based on an arm 9 or arm11 processor core instead of a 68000 core .
302
+ 33 technical specifications operating system android , officially 2.1 , can be upgraded to custom 2.2 roms power 4.2 v 1150 mah ( 4.3 wh ) internal rechargeable removable lithium-ion battery cpu 768 mhz arm 6-capable processor , underclock to 528 mhz storage capacity flash memory : 256mb with microsd slot supporting up to 16 gb memory 192 mb ddr sdram ( some models have 256 mb ) display 320 x 480 px , 3.5 in ( 89 mm ) , hvga , transflective tft input '' capacitive '' touchscreen display without multi-touch feature , on-screen qwerty keyboard , volume controls , 3-axis accelerometer , 4 front-facing physical buttons camera 3.2 megapixel cmos sensor with auto focus ( rear-facing camera ) .
303
+ 19 a slave interface is similar to programmed i/o through which the software ( running on embedded cpu , e.g. arm ) can write/read i/o registers or ( less commonly ) local memory blocks inside the device .
304
+ 13 body armour - is designed to protect the wearer 's upper body , arm , shoulders and back from impact during falls .
305
+ 11 architectures rtems has been ported to various target processor architectures : arm atmel avr blackfin freescale coldfire texas instruments c3x/c4x dsps h8/300 intel 80386 , pentium , and above members of the x86 architecture lattice mico32 68k mips nios ii powerpc renesas m32c renesas m32r renesas superh sparc erc32 leon sparc v9 uses rtems is used in many application domains .
306
+ 7 generally , smarc modules are based on arm processors , they can , however , also be fitted with other low-power soc architectures , like , for example , ones based on x86 socs .
307
+ 17 the edition , whilst visually indistinguishable from normal versions of office 2013 , contains special optimizations for arm - based devices , such as changes to reduce battery usage ( including , for example , freezing the animation of the blinking cursor for text editing during periods of inactivity ) , enabling touch mode by default to improve usability on tablets , and using the graphics portion of a device 's soc for hardware acceleration .
308
+ 10 the at sign ( @ ) is used on the arm platform .
309
+ 7 a tight cord was wound around the arm of the condemned .
310
+ 23 the code of zero-assembler hotspot was used for all the non - x86 ports of hotspot ( ppc , ia-64 , s390 and arm ) from version 1.6 of icedtea7 .
311
+ 13 the aakash is a low-cost tablet computer with a 7-inch touch screen , arm 11 processor and 256 mb ram running under the android 2.2 operating system .
312
+ 62 uefi firmware provides several technical advantages over a traditional bios system : ability to boot from large disks ( over 2 tb ) with a guid partition table ( gpt ) cpu-independent architecture cpu-independent drivers flexible pre-os environment , including network capability modular design compatibility processor compatibility as of version 2.4 , processor bindings exist for itanium , x86 , x86-64 , arm ( aarch32 ) and arm64 ( aarch64 ) .
313
+ 21 it is designed to be used on systems with at least 32 mb of ram , and can work on linux arm , x86 , or power architecture , and windows xp and windows xp embedded architectures .
314
+ 12 the primary membranes attached to the extremely long fourth finger of each arm and extended along the sides of the body to the ankles .
315
+ 49 current development goals include : developing a new ( acoustic model ) trainer implementing speaker adaptation ( e.g. mllr ) improving configuration management creating a graph-based ui for graphical system design pocketsphinx a version of sphinx that can be used in embedded systems ( e.g. , based on an arm processor ) .
316
+ 7 gxemul with le ( 4 ) emulating arm , mips , m88k , powerpc , and superh cpu .
317
+ 41 mf file ; for example : lib : the directory containing the compiled code that is specific to a software layer of a processor , the directory is split into more directories within it : armeabi : compiled code for all arm based processors only armeabi-v7a : compiled code for all armv7 and above based processors only x86 : compiled code for x86 processors only mips : compiled code for mips processors only res : the directory containing resources not compiled into resources .
318
+ 29 hardware the maemo operating system is designed for nokia internet tablet , which feature very similar specifications to nokia 's high-end n-series and e-series cellphones , with ti omap arm socs , large screens , and expandable internal storage .
319
+ 10 the lump continues to grow , eventually becoming a full-sized arm .
320
+ 4 he has hair and arm of gold .
321
+ 23 the code of zero-assembler hotspot is used for all the non - x86 ports of hotspot ( ppc , ia-64 , s390 and arm ) since version 1.6 .
322
+ 17 the flexing and stretching in bowling works tendon , joint , ligament , and muscle in the arm and promotes weight loss .
323
+ 10 the choice was limited to x86 , powerpc , and arm processor architectures because of a program decision to use the linux operating system .
324
+ 4 architectures intel x86 and arm are the primary architecture supported by fedora .
325
+ 11 its products include microcontrollers ( 8-bit avr , 32-bit avr , arm - based , automotive grade , and intel 8051 derivatives ) radio frequency ( rf ) devices including wi-fi , eeprom , and flash memory devices , symmetric and asymmetric security chips , touch sensors and controllers , and application-specific products .
326
+ 10 a scooter is useful for persons without the stamina or arm / shoulder flexibility necessary to use a manual wheelchair .
327
+ 22 it features a samsung exynos 5250 system on chip , a dual-core 1.7 ghz cortex a15 central processing unit and a quad-core arm mali t604 graphics processing unit .
328
+ 26 in comparison to its predecessor , the nokia e72 is said to have a higher level of performance ( likely due to the faster 600 mhz arm processor ) and also includes a 5-megapixel auto focusing camera .
329
+ 26 current and future development developers are currently working on longene 2.0 , which will support the windows applications run on non-x86 architecture machine , such as arm architecture machine and loongson architecture machine .
330
+ 16 the protocol layers forming the kernel exists on the baseband processor , typically consisting of an arm processor and a digital signal processor .
331
+ 21 she challenged the finger - centric approach of much classical piano teaching and instead advocated a holistic attitude in which the arm and torso are the conductors of a musical image conceived first in the mind .
332
+ 14 embedded versions of the 68000 often compete with processors derived from the powerpc , arm , mips , and superh architectures , among others .
333
+ 13 the sidestroke allows the swimmer increased endurance because , instead of working both arm and legs simultaneously in the same way , the side stroke uses them simultaneously but differently .
334
+ 6 its action is to draw the arm towards the chest .
335
+ 20 on windows nt operating systems , pe currently supports the ia-32 , ia-64 , x86-64 ( amd64/intel64 ) , and arm instruction set architecture ( isas ) .
336
+ 7 the amber processor core is an open-source arm - compatible 32-bit risc processor .
337
+ 6 most players use texas instruments tms320da25x arm plus digital signal processor as their cpu and support some version of creative 's environmental audio extensions ( eax ) .
338
+ 22 newly released version 2.0 supports backends for sparc ( 32-bit ) , x86 ( 32 - and 64-bit ) , mips , arm , ia64 , hppa and powerpc ( 32-bit ) .
339
+ 2 support for arm v7a and v8a virtualization extensions came with xen 4.3 .
340
+ 6 manipulation generally includes first placing the arm under traction and unlocking the fragments .
341
+ 21 , architectures that provide support for hardware counters include x86 , powerpc 64 , ultrasparc ( iii and iv ) , arm ( v5 , v6 , v7 , cortex-a8 and -a9 ) , alpha ev56 and superh .
342
+ 15 the hind legs are fused together to form a fluke , but the hands and arm are still human like , the only engineered sentient species with the exception of the vacuumorphs and the aquamorphs .
343
+ 22 other hardware tlbs ( for example , the tlb in the intel 80486 and later x86 processors , and the tlb in arm processors ) allow the flushing of individual entries from the tlb indexed by virtual address .
344
+ 33 inclusion newlib is included in commercial gcc distributions by atollic , codesourcery , code red , kpit , red hat and others , and receives support from major embedded-processor architecture vendors such as arm and renesas .
345
+ 20 ports atmel : avr ( atmega , atxmega ) ( atmega328p , atmega644 , atxmega256a1 ) texas instruments : msp430 arm : cortex-m3 ( untested ) ports for other modern microcontrollers are planned for future releases .
346
+ 32 history the linux kernel has been ported to a variety of cpus which are not only primarily used as the processor of a desktop or server computer , but also arc , arm , avr32 , etrax cris , fr-v , h8300 , ip7000 , m68k , mips , mn10300 , powerpc , superh , and xtensa processors .
347
+ 8 ( this did not carry on to the arm - based ti-nspire , for which jailbreaks using ndless have been found but are still actively fought against by texas instruments .
348
+ 10 heat cramps are associated with cramping in the abdomen , arm and calves .
349
+ 25 it is measured by keeping a measuring tape horizontal and wrapping it around the body so that it goes over the nipple and under the arm .
350
+ 16 the openness of the linux software platform will always keep the door open for x86 and arm competitors such as mips and others to design and sell a hardware platform , or various peripherals .
351
+ 13 the current version of windows embedded compact supports intel x86 and compatibles and arm processors with board support packages ( bsp ) directly .
352
+ 31 in september 2011 vu + day in amsterdam it was publicly announced that the next-generation vu + dvb satellite receivers to be released publicly in the end of 2012 will be arm - powered and use xbmc media center software for its main gui , a openembedded - based development-project that they call '' xbmc4stb '' ( xbmc for set-top-boxes ) , with beta releases of both the software and new hardware said to be made available to xbmc developers before they will be release to the public .
353
+ 20 arkos is a linux distribution based on arch linux , designed primarily for hosting web sites and services on cheap arm - based devices such as raspberry pi , cubieboard 2 , cubietruck or beaglebone black , with plans to expand to other platforms such as x86 .
354
+ 100 some of the most commonly used fastboot commands include : flash rewrites a partition with a binary image stored on the host computer erase erases a specific partition reboot reboots the device into either the main operating system , the system recovery partition or back into its bootloader devices displays a list of all devices ( with the serial number ) connected to the host computer format formats a specific partition ; the file system of the partition must be recognized by the device native development kit libraries written in c , c++ and other languages can be compiled to arm , mips or x86 native code and installed using the android native development kit .
355
+ 1 the arm processor core has a high ips per watt figure , and thus dominates the mobile phone market , but requires video acceleration coprocessors and display controllers for a complete system .
356
+ 12 darwin is now only available as source code , except for the arm variant , which has not been released in any form separately from ios .
357
+ 12 reception the older , original surface and surface 2 , with their arm - based processors and windows rt operating system , are pitched against the ipad and other tablet computer .
358
+ 33 by this marketing initiative and an associated $ 300 million fund , intel hopes to influence the slumping pc market against rising competition from tablet computer , which are typically powered by competing arm - based processors .
359
+ 3 amber is an arm - compatible 32-bit risc processor .
360
+ 51 the words are as follows : the words circle and dot are accompanied by the corresponding shape meaning in the shape of two circles with dots in the middle being traced ( or , in some cases , drawn with a pen or marker ) on the recipient 's hand or arm .
361
+ 60 stephen byram '' steve '' furber cbe , frs , freng ( born 21 march 1953 ) is the icl professor of computer engineering at the school of computer science at the university of manchester and is probably best known for his work at acorn computers , where he was one of the designers of the bbc micro and the arm 32-bit risc microprocessor .
362
+ 16 the linux kernel runs on a highly diverse range of computer architecture : in the hand-held arm - based ipaq and the mainframe ibm system z9 , system z10 ; in devices ranging from mobile phones to supercomputer .
363
+ 21 if written in some '' high-level '' languages , apps written for windows runtime can be compatible with both intel and arm versions of windows , otherwise they are not binary code compatible .
364
+ 16 gnash , however , can be compiled and executed on many architectures , including x86 , arm , irix , and powerpc .
365
+ 4 it uses a 32-bit arm - microcontroller .
366
+ 12 acorn was rescued from obscurity , and went on to develop the arm processor ( acorn risc machine ) to power follow-on designs .
367
+ 14 holt -- oram syndrome is an autosomal dominant disorder that affects bones in the arm and hand ( the upper limbs ) and may also cause heart problems .
368
+ 16 additionally , there are powerpc ports for mac os x and linux , and a 32-bit arm port for linux .
369
+ 36 precise software technologies inc. was acquired by arc international in march , 2000 and continued to develop , license and sell mqx on many new processor architectures including freescale coldfire , ibm / freescale powerpc and arm .
370
+ 15 most high performance 32-bit and 64-bit processors ( some notable exceptions are older or embedded arm and 32-bit mips cpus ) have integrated floating point hardware , which is often , but not always , based on 64-bit units of data .
371
+ 10 after several iterations , the plan changed to use an arm microprocessor and an fpga on which a custom designed gpu was implemented .
372
+ 15 in scouring wool clothing , blanket or coarse linen , when the strength of the arm and manual friction are found insufficient , highland women put them in a tub with a prop -- or quantity of water , then , with petticoat tucked up , they commence the operation of posting , which they continue until every part of the clothes receives an effectual cleansing .
373
+ 3 they use an arm compatible main cpu ( arm4t architecture ) running at 104 mhz .
374
+ 24 in a push towards mobile devices , microsoft demonstrated an early version of the next release of the windows operating system , running on arm - based devices .
375
+ 21 the combination of a compact 16-bit instruction encoding with a more powerful 32-bit instruction encoding is not unique to sh-5 ; arm processors have a 16-bit thumb mode , and mips processors have a mips-16 mode .
376
+ 52 all reference designs share the same set of interfaces : ethernet connector rs-232 ports power connector nearly all i/o pins of the microcontroller are available on an expansion port the designs mainly differ in the used microcontroller ( ethernut 1 & 2 : 8-bit avr , ethernut 3 & 5 : 32-bit arm ) and the available memory size .
377
+ 29 technology the 2008 peek device was designed by peek in partnership with ideo and byd , and its architecture is based on the texas instruments locosto chipset with an arm core .
378
+ 26 the newly ported forth at 3do had to run on many different systems including sun , sgi , macintosh , pc , amiga , the 3do arm based opera system , and the 3do powerpc based m2 system .
379
+ 11 x86 , m68k , power architecture , mips , sparc , arm , itanium , pa-risc , and dec alpha processors are all two 's complement .
380
+ 29 ( again , the line blurs with high-end calculators , which use processor chips associated with computer and embedded systems design , particularly the z80 , mc68000 , and arm architectures , as well as some custom designs specifically made for the calculator market .
381
+ 20 it has suffered persistent and expensive vandalism - a hand with a pointing finger has been lopped off the right arm , and a gavel prized away from the left .
382
+ 0 arm , x86 and power architecture based solutions were investigated and a solution based on freescale 's power architecture based dual core p5020 / quad core p5040 processor came out on top .
383
+ 18 lldb is known to work on os x , linux and freebsd and supports i386 , x86-64 and arm instruction set .
384
+ 42 chips admtek adm8628 atmel at91sam7 , at91cap7 , at91m , at91r nxp lpc2100 , lpc2200 , lpc2300 , lpc2400 , lh7 stmicroelectronics str7 samsung s3c46q0x01-ee8x , s3c44b0x netsilicon ns7520 cirrus logic cl-ps7110 products the make controller kit with an atmel at91sam7x256 ( arm ) microcontroller .
385
+ 14 a link register , in many instruction set architecture such as the powerpc , arm , and the pa-risc , is a special purpose register which holds the address to return to when a function call completes .
386
+ 10 however , mazinger will be unable to punch until its arm return .
387
+ 12 devices the first commercial device to use a pixel qi display , arm - based adam tablet by notion ink , was released mid-january 2011 .
388
+ 29 cross section of the thigh/upper leg showing the different fascia in different colors on the human body , the limb can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
389
+ 18 google native client ( nacl ) is a sandboxing technology for running a subset of intel x86 , arm or mips native code in a sandbox .
390
+ 11 dslinux is compiled using a gcc - based cross-compilation toolchain for arm processors .
391
+ 11 it went on to sell millions , at the time outselling arm or any other risc core .
392
+ 1 144-mhz arm processor .
393
+ 8 approach him from behind , putting both your arm under his armpit .
394
+ 44 elisabeth louise vigée-lebrun , madame vigée-lebrun et sa fille , by louise élisabeth vigée le brun , 1789 a group hug among young men show their close friendship a hug is a near universal form of physical intimacy in which two people put their arm around the neck , back , or waist of one another and hold each other closely .
395
+ 29 xen-hvm xen , a virtual machine monitor , can run in hvm ( hardware virtual machine ) mode , using intel vt-x or amd-v hardware x86 virtualization extensions and arm cortex-a7 and cortex-a15 virtualization extension .
396
+ 4 the device includes an arm cortex-m3 hard processor core ( with up to 512kb of flash and 64kb of ram ) and analog peripherals such as a multi-channel adc and dacs in addition to their flash-based fpga fabric .
397
+ 18 this includes the powerpc , x86 family , mips , sh-4 , and the closely inter-related family of arm , strongarm and xscale cpus .
398
+ 41 it runs well on what ( by intel atom standards ) are relatively underpowered opengl 1.3 ( with glsl support ) , opengl es 2.0 or direct3d ( directx ) 9.0 capable systems that are ia-32 / x86 , x86-64 , arm , or powerpc g4 or later cpu based .
399
+ 6 the css is based around an arm xscale processor .
400
+ 0 arm processor support was added later .
401
+ 7 there is now the beginning of an arm version , currently targeting the windows mobile platforms .
402
+ 3 it forms the arm , wings and chest of ganbaruger .
403
+ 35 after a chapter on evolution , the following 22 chapters are dedicated respectively to : hair , brow , ear , eye , nose , cheek , lip , mouth , neck , shoulder , arm , hand , breast , waist , hip , belly , back , pubic hair , genital , buttock , legs , and feet .
404
+ 13 its high performance was due to much of the system being written in arm assembly language .
405
+ 8 freescale have also announced plans for a low-cost arm - based netbook design , running android .
406
+ 14 smaller portable devices use processors with different and incompatible instruction sets , such as arm .
407
+ 28 atmel used the independent benchmark consortium eembc to benchmark the architecture with various compilers and consistently outperformed both armv5 16-bit ( thumb ) code and armv5 32-bit ( arm ) code by as much as 50 % on code-size and 3x on performance .
408
+ 10 xen is currently available for the ia-32 , x86-64 and arm instruction set .
409
+ 23 the isa that nemesis supports include x86 ( intel i486 , pentium , pentium pro , and pentium ii ) , alpha and arm ( strongarm sa-110 ) .
410
+ 21 it is designed to be used on systems with at least 8 mb of ram , and can work on linux arm , powerpc , or mips architecture .
411
+ 5 the indilinx barefoot is an arm - based sata controller used in high performance ssds .
412
+ 10 the calculator system did not run directly on the new arm processor , but rather on an emulation layer for the older saturn processors found in previous hp calculators .
413
+ 7 this still leaves x86 , mips , arm and powerpc as widely deployed architectures on medium - to high-end embedded systems .
414
+ 24 an exynos 4 quad ( 4412 ) , on the circuit board of a samsung galaxy s iii smartphone exynos is a series of arm - based system-on-chips ( socs ) developed and manufactured by samsung electronics and is a continuation of samsung 's earlier s3c , s5l and s5p line of socs .
415
+ 18 skeletal similarities include the neck , the pubis , the wrist ( semi-lunate carpal ) , the ' arm ' and pectoral girdle , the shoulder blade , the clavicle and the breast bone .
416
+ 66 the ultrabook would be a thin ( less than 0.8 inches thick ) notebook that utilized intel processors , and would emphasize portability and a longer battery life than other laptops by this marketing initiative and an associated $ 300 million fund , intel hoped to influence the slumping pc market against rising competition from smartphone and tablet computer , which are typically powered by competing arm - based processors .
417
+ 22 specifications generic : edition 4.1 ( 1997-03-18 ) ( october 2009 ) version 1.5 draft 2 ( may 1998 ) amd64 : arm : ia-32 : ia-64 : ( september 2000 ) m32r : version 1.2 ( 2004-08-26 ) mips : ( 2003-06-11 ) motorola 6800 : pa-risc : version 1.43 ( october 6 , 1997 ) powerpc : 32-bit implementation ( 1995-10-01 ) version 1.9 ( 2004 ) sparc : s/390 : zseries : symbian os 9 : 86open 86open was a project to form consensus on a common binary file format for unix and unix-like operating system on the common pc compatible x86 architecture , so as to encourage software developers to port to the architecture .
418
+ 21 all tungstens , with the exception of the tungsten w , run under palm os 5 '' garnet '' on an arm processor and have non-user-replaceable lithium-ion batteries .
419
+ 27 from 1990 to 2003 hp manufactured the hp-48 series of graphing rpn calculators and in 2006 introduced the hp-50g with a 131x80 lcd and a 75 mhz arm cpu that emulates the saturn cpu of the hp-48 series .
420
+ 11 xeroderma occurs most commonly on the scalp , lower legs , arm , hands , the knuckle , the sides of the abdomen , and thigh .
421
+ 3 the 6502 , arm and powerpc processors use this convention .
422
+ 76 the great leap toward 64-bit computing and the maintenance of backward compatibility with 32-bit and 16-bit software enabled the x86 architecture to become an extremely flexible platform today , with x86 chips being utilized from small low-power systems ( for example , intel quark and intel atom ) to fast gaming desktop computers ( for example , intel core i7 and amd fx ) , and even dominate large supercomputing cluster , effectively leaving only the arm 32-bit and 64-bit risc architecture as a competitor in the smartphone and tablet market .
423
+ 6 windows embedded compact is available for arm , mips , superh and x86 processor architectures .
data/arm/train.gold.txt ADDED
@@ -0,0 +1,423 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 1
3
+ 1
4
+ 0
5
+ 0
6
+ 0
7
+ 1
8
+ 0
9
+ 1
10
+ 0
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 1
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 1
22
+ 1
23
+ 0
24
+ 0
25
+ 0
26
+ 1
27
+ 0
28
+ 1
29
+ 1
30
+ 0
31
+ 1
32
+ 0
33
+ 0
34
+ 0
35
+ 0
36
+ 0
37
+ 1
38
+ 0
39
+ 1
40
+ 0
41
+ 0
42
+ 1
43
+ 0
44
+ 1
45
+ 1
46
+ 1
47
+ 0
48
+ 0
49
+ 1
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 1
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 1
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 1
68
+ 0
69
+ 1
70
+ 1
71
+ 1
72
+ 1
73
+ 1
74
+ 1
75
+ 1
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 1
81
+ 0
82
+ 0
83
+ 1
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 1
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 1
100
+ 0
101
+ 0
102
+ 0
103
+ 0
104
+ 1
105
+ 1
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 0
112
+ 0
113
+ 0
114
+ 1
115
+ 1
116
+ 0
117
+ 1
118
+ 0
119
+ 0
120
+ 1
121
+ 0
122
+ 0
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 1
128
+ 0
129
+ 1
130
+ 0
131
+ 0
132
+ 1
133
+ 0
134
+ 1
135
+ 0
136
+ 1
137
+ 0
138
+ 1
139
+ 0
140
+ 0
141
+ 0
142
+ 1
143
+ 1
144
+ 0
145
+ 1
146
+ 0
147
+ 1
148
+ 1
149
+ 0
150
+ 0
151
+ 0
152
+ 0
153
+ 1
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 0
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 0
165
+ 0
166
+ 1
167
+ 0
168
+ 0
169
+ 1
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 0
175
+ 0
176
+ 1
177
+ 0
178
+ 0
179
+ 1
180
+ 0
181
+ 0
182
+ 0
183
+ 0
184
+ 1
185
+ 0
186
+ 1
187
+ 0
188
+ 1
189
+ 1
190
+ 0
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 0
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 1
202
+ 0
203
+ 0
204
+ 0
205
+ 1
206
+ 0
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 0
213
+ 1
214
+ 0
215
+ 0
216
+ 1
217
+ 1
218
+ 0
219
+ 1
220
+ 0
221
+ 1
222
+ 0
223
+ 0
224
+ 1
225
+ 0
226
+ 0
227
+ 0
228
+ 1
229
+ 0
230
+ 0
231
+ 1
232
+ 1
233
+ 0
234
+ 0
235
+ 0
236
+ 0
237
+ 0
238
+ 0
239
+ 0
240
+ 0
241
+ 0
242
+ 1
243
+ 0
244
+ 1
245
+ 0
246
+ 0
247
+ 0
248
+ 1
249
+ 0
250
+ 0
251
+ 1
252
+ 1
253
+ 0
254
+ 1
255
+ 1
256
+ 1
257
+ 0
258
+ 0
259
+ 1
260
+ 0
261
+ 0
262
+ 0
263
+ 0
264
+ 0
265
+ 0
266
+ 1
267
+ 0
268
+ 0
269
+ 0
270
+ 0
271
+ 0
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 0
277
+ 0
278
+ 0
279
+ 0
280
+ 0
281
+ 1
282
+ 1
283
+ 0
284
+ 0
285
+ 0
286
+ 0
287
+ 0
288
+ 1
289
+ 0
290
+ 0
291
+ 0
292
+ 0
293
+ 0
294
+ 1
295
+ 0
296
+ 0
297
+ 0
298
+ 0
299
+ 1
300
+ 1
301
+ 0
302
+ 0
303
+ 0
304
+ 1
305
+ 0
306
+ 0
307
+ 0
308
+ 0
309
+ 1
310
+ 0
311
+ 0
312
+ 0
313
+ 0
314
+ 1
315
+ 0
316
+ 0
317
+ 0
318
+ 0
319
+ 1
320
+ 1
321
+ 0
322
+ 1
323
+ 0
324
+ 0
325
+ 0
326
+ 1
327
+ 0
328
+ 0
329
+ 0
330
+ 0
331
+ 1
332
+ 0
333
+ 1
334
+ 1
335
+ 0
336
+ 0
337
+ 0
338
+ 0
339
+ 0
340
+ 1
341
+ 0
342
+ 1
343
+ 0
344
+ 0
345
+ 0
346
+ 0
347
+ 0
348
+ 1
349
+ 1
350
+ 0
351
+ 0
352
+ 0
353
+ 0
354
+ 0
355
+ 0
356
+ 0
357
+ 0
358
+ 0
359
+ 0
360
+ 1
361
+ 0
362
+ 0
363
+ 0
364
+ 0
365
+ 0
366
+ 0
367
+ 1
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 1
373
+ 0
374
+ 0
375
+ 0
376
+ 0
377
+ 0
378
+ 0
379
+ 0
380
+ 0
381
+ 1
382
+ 0
383
+ 0
384
+ 0
385
+ 0
386
+ 1
387
+ 0
388
+ 1
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 1
394
+ 1
395
+ 0
396
+ 0
397
+ 0
398
+ 0
399
+ 0
400
+ 0
401
+ 0
402
+ 1
403
+ 1
404
+ 0
405
+ 0
406
+ 0
407
+ 0
408
+ 0
409
+ 0
410
+ 0
411
+ 0
412
+ 0
413
+ 0
414
+ 0
415
+ 1
416
+ 0
417
+ 0
418
+ 0
419
+ 0
420
+ 1
421
+ 0
422
+ 0
423
+ 0
data/bank/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "bank_bank", "1": "bank_bank_(geography)"}
data/bank/test.data.txt ADDED
@@ -0,0 +1,455 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 53 information requests and orders sections 95 to 105 establish a system of applications for information whereby a creditor can apply to the court for an information order to obtain information about the debtor 's means from the department for work and pensions , hm revenue and customs , and third parties such as bank and credit reference agencies .
2
+ 19 the fallo of the 262-page decision declared the forfeiture in favor of the government : p542 .701 million ( bank accounts including interest ) , p189 million ( jose velarde accounts including interest ) and the boracay mansion in new manila , quezon city .
3
+ 15 during the 1960s , care attacked policies such as the common de facto policy of bank not to employ māori and compulsory pregnancy test for recent immigrants from samoa .
4
+ 11 in addition , many new customer conveniences were added including in-store bank , pharmacies , chinese kitchens , coffee shops , photo processing , and dry cleaning services .
5
+ 17 furthermore there is a butcher 's shop in each as well as branches of the kreissparkasse/vr - bank .
6
+ 11 the hypo group alpe adria ( hgaa ) is an austria bank group with numerous cross-border activities in the alps - adriatic region .
7
+ 9 haider also advocated the creation of heavier punishments for bank managers and proposed the creation of a special legal court against financial crimes , in one of his last interviews to the austrian kleine zeitung daily .
8
+ 20 these interests include real estate , pharmaceuticals , furniture , timber holdings , insurance , contract , consumer goods , bank and financial services , textile , and energy via the m. j. wytrwal coal & oil company in upstate new york .
9
+ 13 banque de tunisie 's headquarters banque de tunisie ( bt ) is a bank in tunisia .
10
+ 25 as waterfront residential and commercial development encroached on maritime industrial uses within the city , waterfront industries were finding it harder to receive loan from bank to upgrade and expand their operations .
11
+ 13 société tunisienne de banque 's headquarters société tunisienne de banque is a state-controlled bank in tunisia .
12
+ 32 gantz wiley research founded in 1986 , gantz wiley research in minneapolis , minnesota , is a survey data analysis firm which conducts surveys of employees and clients for customers ranging from bank to discount stores .
13
+ 6 it also has a slovak commercial bank and insurance company .
14
+ 8 security trust company of rochester is a former bank headquartered in rochester , new york .
15
+ 33 the coverage protects the merchant against fraud in a transaction where the use of the credit card was unauthorized , and covers claims arising out of the merchant 's liability to the service bank .
16
+ 10 economy the village has a post office , a slovakia bank and insurance company and a number of food stores .
17
+ 19 larger australian and papuan specimens will catch and eat wallabies , and cuscus , waiting by creek and river bank for prey seeking drinking water .
18
+ 18 most of her money was in bonds and solid canadian blue-chip stock , such as those of the bank and insurance companies , that appreciated over the decades .
19
+ 10 big four is the colloquial name for the four main bank in several countries , where the banking industry is dominated by just four institutions and where the phrase has gained currency .
20
+ 10 head office of nordlandsbanken in bodø nordlandsbanken is a norwegian bank serving the county of nordland .
21
+ 12 in 1858 he was invited to madison to take a position as bank clerk in the office of samuel d. hastings , then wisconsin state treasurer and a fellow temperance advocate .
22
+ 13 since september 2010 burkovskis has been chairman and managing director of the lithuanian bank turto bankas .
23
+ 6 these are lists of the largest bank in the world , as measured by total assets and market capitalization .
24
+ 10 he was assigned to the standing committee on insurance , bank and banking ; and to the joint committee on penal and charitable institution .
25
+ 20 a higher spread ( high libor ) is typically interpreted as indication of a decreased willingness to lend by major bank , while a lower spread indicates higher liquidity in the market .
26
+ 19 it began with just a few john deere employees who were looking for alternative financial options to what commercial bank had to offer .
27
+ 41 a credit crunch ( also known as a credit squeeze or credit crisis ) is a reduction in the general availability of loan ( or credit ) or a sudden tightening of the conditions required to obtain a loan from the bank .
28
+ 20 ewout irrgang ( born july 20 , 1976 in utrecht ) is a former dutch politician , anti-globalization activist and bank employee .
29
+ 12 a § 1441 qualified intermediary ( qi ) is generally a foreign bank or other foreign financial institution that signs an agreement with the internal revenue service ( irs ) .
30
+ 13 westpac ( a portmanteau of '' western-pacific '' ) , is an australian bank and financial-services provider headquartered in sydney .
31
+ 35 other spaces allow various other actions for the player to chose to participate in with their money as well , including the option to invest them in a stock market , keep money safe in bank , or gamble money in a casino .
32
+ 18 robert s. stevens ( march 27 , 1824 february 23 , 1893 ) was an american politician , bank president , railroad executive , lawyer , kansas state senator and u.s. representative from new york .
33
+ 5 it was created by 38 bank of leading industrialized countries in 1983 in response to the international debt crisis of the early 1980s .
34
+ 19 the police and the army had conducted the raid after allegations that fatah al-islam members tried to rob a bank on sunday and '' take control of several security strongholds in the north '' according to ahmad fatfat , lebanese minister of youth and sports in prime minister fouad siniora 's cabinet .
35
+ 10 origins the date of establishment of the carmarthen and furnace bank is unknown .
36
+ 17 it appeared that the plane had sheared off the tops of pine trees while in a steep bank and crashed into the mountain below the summit .
37
+ 6 david morris & sons was a bank which was established in carmarthenshire , wales in the 18th century .
38
+ 10 the trust was incorporated in delaware , and a delaware bank was the trustee .
39
+ 12 the simplest possible model of credit creation assumes all loans borrowed from bank in a fractional-reserve banking system are re-deposited to the system .
40
+ 73 business techniques and forms of business organisation employed during this time included : contract bills of exchange long-distance international trade forms of partnership ( mufawada ) such as limited partnership ( mudaraba ) forms of credit debt profit loss capital ( al-mal ) capital accumulation ( nama al-mal ) , circulating capital capital expenditure revenue cheque , promissory note , trusts ( see waqf ) savings account transactional account pawn loan exchange rate bank money changer ledger deposits assignments lawsuit .
41
+ 12 the creditanstalt ( sometimes credit-anstalt , abbreviated ca ) was an austria bank based in vienna .
42
+ 6 the village has shops , a bank , jathera , a secondary school , a mosque , temple , a post office and gurdwara 's located in various parts of the village .
43
+ 28 its boats are too ponderous for an independent alloy downstream ; there were cases when it broke about coast ; for such vessel to sit down on a bank there is a regular situation .
44
+ 16 as a result , '' citizens became less vigilant and involved , and interests like the bank and railroads came to control the very commissions that were supposed to work on behalf of the public good .
45
+ 14 banco de la producción s.a. , better known as produbanco , is an ecuador bank .
46
+ 9 bankgiro is a norwegian giro system used by all bank in the country , managed by bankenes betalingssentral ( bbs ) .
47
+ 11 the theodore krumberg building is a historic commercial building and former bank in the over-the-rhine neighborhood of cincinnati , ohio , united states .
48
+ 24 the occupy movement was a form of more or less disorganized opposition that grew out of the dissatisfaction regarding to the power of the bank industry .
49
+ 21 in luxemburgish spuerkeess , in french banque et caisse d'épargne de l'état ( abbreviated short bcee ) , is a luxembourg bank , established and owned by the luxembourgish government .
50
+ 40 tandernaken , al op den rijn ( also spelled : t'andernaken , al op den rijn ) was once a very popular middle dutch song about two girls who in andernach , a city in germany on the left rhine bank , were spied on by the lover of one of the girls , who was listening to their conversation on love affairs from a distance .
51
+ 36 eurobank offices in nicosia , cyprus the eurobank is the official sponsor of the museum of aviation ( belgrade ) eurobank ergasias ( formerly : eurobank efg or efg eurobank ergasias ) is the third largest bank in greece with more than 300 branches throughout the country and leading market shares in high growth segments .
52
+ 24 bikk 's church is a cross between a religious institute and a commercial one , his opulent temples often doubling as merchants guilds or bank .
53
+ 37 the holders of each separate kind of interest in the entity 's affairs are called a constituency , so there may be a constituency of stockholders , a constituency of adjoining property owners , a constituency of bank the entity owes money to , and so on .
54
+ 34 vladimir viktorovich vinogradov ( russian владимир викторович виноградов ) ( 19 september 1955 , ufa -- 29 june 2008 , moscow ) was the owner and president of inkombank , one of the largest bank in 90s ' russia .
55
+ 8 help was offered by the luckmann family of bank from ljubljana , who agreed to modernize the iron foundries in return for the foundation of a new shareholder company .
56
+ 12 he resigned on march 3 , 1907 , to become as the bank in new york city .
57
+ 39 the nearest railway station to the town today is shoreham-by-sea modern town the clock tower in steyning high street in steyning there is access to a variety of facilities including four public houses , four estate agent and three bank .
58
+ 20 after her husband keith died in a car crash in 1965 , nicholson 's fortune rapidly dwindled to nothing : bank and tax creditors both deemed her bankrupt and declared that all the money , and everything she had acquired with it , belonged not to her but to keith 's estate .
59
+ 9 when the company intends to take a loan from bank / financial institutions by mortgaging its fixed assets .
60
+ 12 finance also law of the land is congressman ackerman 's measure requiring bank and financial companies to notify consumers when negative information is placed on their credit report .
61
+ 19 business customers include retail , insurance firms , healthcare providers , utilities , government agencies , as well as bank , credit unions , personal and specialty finance companies and other financial institutions .
62
+ 7 on 16 november , he robbed a bank and on december 31 he broke into the vicar 's house in volkel , after which he ran over a man on a bike and killed him in the process .
63
+ 33 the association was strengthened at all levels for a couple of years , not least organizationally and financially , with new sports director '' mr. elfsborg '' stefan andreasson , president-elect bosse '' bank '' johansson and two billionaires as external funders .
64
+ 36 james ( jimmy ) treybig founded tandem computers , a pioneering silicon valley manufacturer of fault tolerant computer systems which were marketed to the growing number of transaction processing customers who used them for atm , bank , stock exchange and other similar needs .
65
+ 9 the banque canadienne nationale was a quebec - based bank in canada .
66
+ 4 banco atlantida , oldest bank in the country , founded in 1913 mazapan school , the first bilingual school of the nation , the oldest high school and second oldest elementary school in the city .
67
+ 21 rigibor stands for the riga interbank offered rate and is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the latvia wholesale money market ( or interbank market ) .
68
+ 22 he was vice-president of savings life group of shreveport and also served as chairman of the board of directors of pelican state bank in pelican in de soto parish .
69
+ 3 the first wawelberg bank had its origins in a loan office that began operating in the early 1840s .
70
+ 1 private bank and governments across the world followed gresham 's law : keeping gold and silver paid , but paying out in notes .
71
+ 4 since then , the bank 's it division has purchased , developed and implemented several small and large computer and software packages .
72
+ 23 the shanghai interbank offered rate ( or shibor , 上海银行间同业拆放利率 ) is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the shanghai wholesale ( or '' interbank '' ) money market .
73
+ 11 banca nazionale del lavoro spa ( bnl ) is an italian bank with headquarters in rome that has been a subsidiary of bnp paribas since 2006 .
74
+ 5 this is a list of bank in taiwan , including the government-owned banks of the republic of china .
75
+ 50 mercantile usage chanakya in his arthashastra , refers to the then prevalent bill of exchange called ādesha which was an order to a third person to pay up a sum of money on behalf of the sender of that order ; in those days merchant guilds performed the functions of bank .
76
+ 7 this is a list of authorised commercial bank in namibia namibian banks offer wide variety of products like savings accounts , cheque accounts , transmission accounts , investment accounts , credit cards accounts and many types of loan accounts ( vehicle loan , mortgage/housing loan , personal loan etc. ) to meet its customer requirements .
77
+ 14 according to their party platform they support modern economics such as making hawaii a bank and trade center for the pacific rim .
78
+ 26 this involves the borrower submitting a loan application and documentation related to his/her financial history and/or credit history to the underwriter , which is typically a bank .
79
+ 30 history and construction cathedral bridge during construction , 1859 cathedral bridge , the prussian authorities pressed for a bridge due to increasing road traffic between cologne and the eastern river bank .
80
+ 8 banque pharaon & chiha s.a.l. is a lebanese bank , founded in 1876 , and headquartered in achrafieh , beirut .
81
+ 6 regions financial corporation is a us bank and financial services company based in birmingham , alabama , with its corporate headquarters at the regions center .
82
+ 27 usually , a project financing structure involves a number of equity investors , known as ` sponsors ' , as well as a ` syndicate ' of bank or other lending institutions that provide loan to the operation .
83
+ 24 institutional customers is a term used in the financial services industry to differentiate retail customers and corporate customers from other financial institutions such as bank , insurance companies and investment management companies .
84
+ 20 most borrowing is funded by either mutual organizations ( building societies and credit unions ) or proprietary lenders ( typically bank ) .
85
+ 13 banco espírito santo angola , known as '' besa '' , is a bank in angola .
86
+ 7 banco de comércio e indústria is a bank in angola .
87
+ 4 typically these are : bank credit union building societies the appeal to customers of the loan offered directly in branches is the often long-standing relationship that a customer may have with the institution , the appearance of trustworthiness this type of institution has , and the perception that holding a larger portfolio of products with a single organization may lead to better terms .
88
+ 20 it is also the only interbank network in china excluding hong kong and macau , linking the atms of all bank throughout mainland china and widely accepted by the atms in hong kong and macau .
89
+ 46 shoe leather cost refers to the cost of time and effort ( more specifically the opportunity cost of time and energy ) that people spend trying to counter-act the effects of inflation , such as holding less cash and having to make additional trips to the bank .
90
+ 9 the gang then heads for the town to the bank to exchange the dollars into norwegian kroner .
91
+ 25 screenshot of a typical sms banking message on a mobile screen sms banking is a type of mobile banking , a technology-enabled service offering from bank to its customers , permitting them to operate selected banking services over their mobile phone using sms messaging .
92
+ 1 the bank is located in algiers and its current governor is mohammed laksaci .
93
+ 4 the offices of the bank are located in monrovia , the capital of liberia .
94
+ 12 the lender will typically be a financial institution , such as a bank , credit union or building society , depending on the country concerned , and the loan arrangements can be made either directly or indirectly through intermediaries .
95
+ 25 desirable because of their visibility to consumers , accessibility , and the ease of facilitating drive-thru service , pad sites are typically sought after by bank , casual dining , and fast food restaurants .
96
+ 11 he reorganized the police , established a stock exchange and a bank .
97
+ 1 the bank is located in nouakchott , just south of the presidential palace and its governor is kane ousmane .
98
+ 46 while will works for bob campbell ( harry morgan ) at his lumberyard , he does so in such an enthusiastic , industrious , and effective way that he attracts the attention of both col. warner and t.j. calloway ( john carter ) , the local bank .
99
+ 23 plot the skit revolves around barack obama ( armisen ) preparing for bed , but is too concerned about a problem with the bank and credit card companies in america .
100
+ 9 it is critical of multi-national corporation , in particular bank and other financial institution .
101
+ 3 these include ; bank , stock exchanges , securities and money market brokers , clearing and registration organizations , insurance companies , pension funds , insurance broker , investment companies and investment associations .
102
+ 28 the meaning of the name is still unknown but compare the proto-indo-european root \* aper - ` behind , at the back ' and \* āpero - ` bank ' with the regular phonological developments in celtic .
103
+ 11 he then moved to gary , indiana and worked in a bank .
104
+ 14 a company sells some of its equipment to a lessor , such as a bank or another financial institution , which leases the equipment back to the company .
105
+ 9 the shopping malls usually feature full service restaurants , bank , and clothing stores .
106
+ 7 services include shopping mall , hotel , bank , offices , museum , universities , seven metro stations , two commuter train stations , a bus terminal and the bell centre hockey arena .
107
+ 1 the bank has 90 branch offices in nordland , tromsø , finnmark and svalbard and a head office in tromsø .
108
+ 1 the bank has 50 branch offices in 26 municipalities in rogaland , agder and hordaland and a head office in stavanger .
109
+ 6 attractions numerous full service restaurants , bank , clothing stores , and a catholic chapel .
110
+ 9 banco di desio e brianza spa is an italian bank with headquarters in desio ( mb ) .
111
+ 47 sister events of cityscape global are cityscape abu dhabi , cityscape egypt , cityscape riyadh , cityscape jeddah , cityscape qatar , latin america and cityscape asia companies and individuals like real estate developers , cities & regional authorities , real estate investor , financial consultants , bank , fund managers , financial institution , investment companies , pension funds , reit , venture capital , insurance companies , hedge funds , fund management companies , private equity investors , asset management companies , architects , designers and urban planners exhibit their product and services during the event .
112
+ 11 subsequent to arnold 's taking possession of the vehicle , a bank claimed ownership of it .
113
+ 7 bulbank logo unicredit bulbank is the largest bank of bulgaria .
114
+ 15 tmx finance 's brands serve individuals who generally have limited access to consumer credit from bank , thrift institutions , credit card lenders and other traditional sources of consumer credit .
115
+ 40 family of brands under tmx finance llc industry overview customers use the services provided by the alternative financial services industry for a variety of reasons , including that they often : do not have access to traditional credit-based lenders like bank , thrift institutions and credit card companies ; have a sudden and unexpected need for cash due to common financial challenges like medical emergencies , vehicle repairs , divorce , job change or other unexpected expenses ; are self-employed small business owners with an immediate need for short-term working capital ; need a small amount of cash immediately and do not have time to wait for a traditional lender to approve a loan ; and see such services as a sensible alternative to potentially higher costs and negative credit consequences of other alternatives , such as overdraft fee , bounced check fees or late fees .
116
+ 5 these entities include : state-chartered bank and trust companies ; insurance companies ; insurance producers ; insurance adjusters ; bail bond agents ; service contracts ; life settlements ; budget planners ; charitable foundations ; check cashers ; credit unions ; investment companies ; licensed lenders ; money transmitter ; mortgage bankers ; mortgage brokers ; mortgage loan servicers ; premium finance agencies ; private bankers ; safe deposit companies ; sales finance companies ; savings banks ; and savings and loans .
117
+ 22 with the virtual collapse of money economy in favor of requisition , rationing , and barter , came a virtual abolition of bank in soviet russia .
118
+ 16 with a library , a primary school , a hospital , a telephone exchange , a bank , and a subway station .
119
+ 47 his best known book is confessions of an economic hit man ( 2004 ) , in which perkins claims to have played a role in an alleged process of economic colonization of third world countries on behalf of what he portrays as a cabal of corporation , bank , and the united states government .
120
+ 8 wildcat banking refers to the unusual practices of bank charter under state law during the periods of non-federally regulated state banking between 1816 and 1863 in the united states , also known as the free banking era .
121
+ 15 location within shanghai puxi ( chinese : , p pǔxī , lit '' huangpu west bank '' ) is the historic center of shanghai , china , and remains the home of approximately 48 % of shanghai 's residents in an area of 288 km ² .
122
+ 15 in between 1872 and 1888 , cooper expanded his business interests to include insurance , bank , mining , and the cattle industry .
123
+ 47 austrofascism the justizpalast fire ( here an image from 1881 prior to the fire ) led to the end of the first republic the fire of the justizpalast ( palace of justice ) in 1927 after violent demonstrations , the collapse of the creditanstalt , the largest bank of the country , and finally the dissolution of parliament in 1933 , marked the way to the civil war in february 1934 .
124
+ 9 in the early 20th century , there was a bank and a hotel located in the village .
125
+ 16 hegra has its own grocery store , gas station , kindergarten , school and a local bank .
126
+ 13 the entities in question are almost always , but need not be , bank .
127
+ 16 william f. kunze ( june 1 , 1872 -- february 14 , 1962 ) was a bank who was elected to be mayor of minneapolis , minnesota , serving as a republican from 1929 to 1931 .
128
+ 26 3v transaction services ltd is an irish company that specializes in developing payment products for consumers and businesses as alternatives to the traditional methods offered by bank and other financial institution .
129
+ 7 itaú unibanco is a brazil publicly quoted bank with headquarters in são paulo , brazil .
130
+ 33 this system was developed and put into force on an unprecedented scale by medieval jewish merchants such as the radhanites ; if so , they may be counted among the precursors to the bank that arose during the late middle ages and early modern period .
131
+ 13 head office ( dec. 20 , 2011 ) ( ) is the biggest bank in chiba prefecture , japan .
132
+ 18 capital requirement ( also known as regulatory capital or capital adequacy ) is the amount of capital a bank or other financial institution has to hold as required by its financial regulator .
133
+ 7 , or jtsb , is a trust bank in japan .
134
+ 13 hart likens austin 's theory to the role of a gunman in a bank and tries to establish the differences between the gunman 's orders and those made by law .
135
+ 33 in october 1799 she was employed in carrying about # in bullion and coin ( equivalent in value to # in ) , from yarmouth to cuxhaven in order to provide hamburg 's bank with funds in order to prevent a stock market crash and , possibly , for paying troops in north holland .
136
+ 1 the bank was ready to issue banknote based on the prospect of future economic growth within illinois .
137
+ 0 bank can participate in equity along with the project sponsors .
138
+ 20 augustus gibson paine , jr. ( 19 october 1866 -- 23 october 1947 ) was an american paper manufacturer and bank official .
139
+ 12 bankas snoras ab or simply snoras ( , ) was a commercial bank , founded in lithuania operating in all three baltic states .
140
+ 12 birch is the characteristic tree in the region that grows on the bank of munzur river about south of ovacık town .
141
+ 8 career shaikh 's career has been mainly in bank and finance .
142
+ 11 atom sewa -- this is a microfinance banking platform that enables bank and microfinance institutions to offer on-the-spot cash transactions to the rural masses .
143
+ 5 the credit card of these bank & companies can be used to transact on the atom platform .
144
+ 4 the cornerstone of this bank was laid on october 29 , 1929 , '' black tuesday '' of the 1929 stock market crash .
145
+ 16 johannes mathias sejersted bødtker cbe ( 29 may 1879 17 january 1963 ) was a norwegian bank , art collector and patron of the arts .
146
+ 10 fih erhvervsbank a/s ( hereafter fih ) is the sixth-largest bank in denmark in terms of total assets .
147
+ 22 in some legal regimes the deposit has to be placed with an independent escrow agent or licensed deposit taker such as a bank so that the risk of fraud is reduced and the funds earn interest at a fair market rate .
148
+ 14 banque de l'union haïtienne , s.a. better known as buh is a full service bank operating in haiti .
149
+ 25 he was born in maryland in 1827 , and moved to lancaster , wisconsin in 1853 , where , in 1873 , he opened a bank partnership .
150
+ 52 history porsche 997 gt3 cup with eurocard sponsoring driven by peter '' poker '' wallenberg and daniel haglöf for bilteknik motorsport in swedish gt series at falkenbergs motorbana ( july 2011 ) in 1965 , eurocard international n.v. was established , based in brussels , as a not-for-profit membership association of european bank .
151
+ 1 the bank has offices in richmond county and columbia county , with mortgage centers in augusta and savannah .
152
+ 17 winthrop williams aldrich gbe ( november 2 , 1885 february 25 , 1974 ) was an american bank and financier , scion of a prominent political family , and us ambassador to the united kingdom .
153
+ 17 darius ogden mills ( september 25 , 1825 january 3 , 1910 ) was a prominent american bank and philanthropist .
154
+ 8 mike then hatches a plan to rob a bank , using water pistol and vyvyan 's car as a getaway vehicle .
155
+ 21 the rest of the movie is made up of the chase through the city , resulting in the destruction of another bank and various collateral damage .
156
+ 3 is a japanese bank that is headquartered in kanazawa , ishikawa prefecture , japan .
157
+ 7 overseas chinese banks normally refer to chinese bank outside of china ( including hong kong and macau ) .
158
+ 3 is a japan bank .
159
+ 5 ica banken is a swedish bank established in february 2002 .
160
+ 10 currently , monilink offers customers the chance to check their bank balance in real time , view a mini statement detailing the last six transactions and add credit to up to five pay as you go phones .
161
+ 3 reduced documentation many bank also offer reduced documentation loans which allows a borrower to qualify for a mortgage without verifying items such as income or assets .
162
+ 12 the classic case involves a person who is blackmail into robbing a bank .
163
+ 14 additionally , the town has a business sector that includes trade , craft , bank , transport , and tourism .
164
+ 12 it was no accident that the origin of the european system of bank was born in renaissance italy .
165
+ 6 in 2012 , there were 25 bank in the municipality .
166
+ 16 for example , a risk-averse investor might choose to put his or her money into a bank account with a low but guaranteed interest rate , rather than into a stock that may have high expected returns , but also involves a chance of losing value .
167
+ 9 the union banking corporation ( ubc ) was a bank corporation in the us whose assets were seized by the united states government during world war ii under the trading with the enemy act and executive order no. 9095 .
168
+ 26 by 1334 doncaster was the wealthiest town in southern yorkshire and the sixth most important town in yorkshire as a whole , even boasting its own bank .
169
+ 49 the expected real returns on an investment , before it is made , are : where : market interest rates there is a market for investments which ultimately includes the money market , bond market , stock market , and currency market as well as retail financial institutions like bank .
170
+ 1 major bank and dealers chose to implement the rule by including var information in the notes to their financial statements .
171
+ 7 private companies are also often required by bank and shareholder , for example , to present information according to their specified rules .
172
+ 52 to illustrate , a typical b2c supply chain is composed of four or five entities ( in order ) : supplier manufacturer wholesaler retailer buyer it has been argued that the internet modifies the supply chain due to market transparency : supplier manufacturer buyer history the term was originally applied to the bank industry in 1967 ; disintermediation referred to consumers investing directly in securities ( government and private bonds , and stocks ) rather than leaving their money in savings account , then later to borrowers going to the capital markets rather than to banks .
173
+ 17 consumer , multinational corporations , and both individual and institutional investors ( such as financial institution and bank ) are the key economic actors within the global financial system .
174
+ 20 these may be available from financial institutions under many different guises or marketing packages : credit card debt personal loans bank overdraft credit facilities or lines of credit corporate bond ( may be secured or unsecured ) the interest rate applicable to these different forms may vary depending on the lender and the borrower .
175
+ 37 courtroom division the bar ( railing ) at the rhode island supreme court the origin of the term bar is from the barring furniture dividing a medieval european courtroom , similarly as the origin of the term bank for the location of financial transactions in medieval europe .
176
+ 13 since mortgage debt is often the largest debt owed by the debtor , bank and other mortgage lenders run title searches of the real estate property to make certain that there are no mortgages already registered on the debtor 's property which might have higher priority .
177
+ 18 leeds has since attracted investment from financial institutions , to become a recognized financial center , with many bank , building societies and insurance companies having offices in the city .
178
+ 21 a fish kill occurred on december 29 , 2010 , in which an estimated 100,000 freshwater drum lined the arkansas river bank .
179
+ 17 the magazine is intended for chief information officer , chief technical officer and it readers working in bank , financial institutions and service providers to banks .
180
+ 12 hard count is one process for counting coin in a casino or bank .
181
+ 31 example if a store has a floor limit of $ 30.00 , a purchase costing $ 29.99 ( or less ) would not need to be authorized by the customer 's bank .
182
+ 12 in banking , a circular note is a document request by a bank to its foreign correspondents to pay a specified sum of money to a named person .
183
+ 13 the department is responsible for regulating tennessee 's banking system , including state-chartered bank and credit union , and handling consumer complaints involving state regulated financial institution .
184
+ 1 '' bank without the ` too-big-to-fail ' doctrine '' , chapter in bankers and regulators , edited by hans sennholz ( irvington-on-hudson , ny : foundation for economic education ) .
185
+ 21 he moved in 1860 to camden , new jersey , where he continued in the lumber business and also engaged in bank .
186
+ 9 commonly , correspondent accounts are the accounts of foreign bank that require the ability to pay and receive the domestic currency .
187
+ 5 this is a list of bank with operations in singapore .
188
+ 28 it is generally used in situations where water from a fire sprinkler would damage expensive equipment or where water-based fire protection is impractical , such as museum , bank , clean room and hospital .
189
+ 16 in 1977 , the us congress passed the community reinvestment act , designed to encourage commercial bank and savings associations to help meet the needs of borrowers in all segments of their communities , including low - and moderate-income neighborhoods .
190
+ 2 where sperm bank are allowed to operate they are often controlled by local legislation which is primarily intended to protect the unborn child , but which may also provide a compromise between the conflicting views which surround their operation .
191
+ 10 characteristics cashier 's checks feature the name of the issuing bank in a prominent location , usually the upper left-hand corner or upper center of the check .
192
+ 24 years later , spence said he '' saw the light '' and became committed to representing people instead of corporation , insurance companies , bank , or '' big business '' .
193
+ 4 the two biggest swiss bank , ubs and the credit suisse group , have their headquarters there .
194
+ 11 some of their misadventures included a failed experiment in creating a bank ( first season ) , getting swindled by a counterfeit money printer ( diogenes smith - who introduced the phrase '' wonderful world '' into the series ) , and lum trying himself for a crime he did n't commit ( after all , he was simultaneously the town 's only prisoner and justice of the peace ) .
195
+ 2 the south bank of the river , where most of the commerce took place , is known as boat quay .
196
+ 7 kazkommertsbank ( ) is the largest private bank in kazakhstan with a total market share of 24 % .
197
+ 5 colonial bancgroup inc. was a bank holding company headquartered in montgomery , alabama , usa that failed in 2009 .
198
+ 40 the city of london , united kingdom is composed almost entirely of financial service companies the city of hong kong from the peak a financial center is a global city that is home to a large number of internationally significant bank , businesses , and stock exchanges .
199
+ 1 the bank is domiciled in slovakia with its registered office at mlynske nivy 1 , bratislava .
200
+ 14 monkey fountain the monkey fountain is a fountain on the outside wall of a bank in the historic center of freiburg which was built in 1905 to replace an older cast iron fountain in the same place .
201
+ 11 ) he was assigned to the standing committee on insurance , bank and banking .
202
+ 1 in bank , shiftability is an approach to keep banks liquid by supporting the shifting of asset .
203
+ 15 during the 1970s and 1980s with the expansions in cross-border lender by financial institutions , bank became increasingly concerned to ensure that foreign companies to whom they lent money provided a foreign legal opinion certifying the legal validity of the loan trasaction and the enforceability of the banks ' rights ( including any security interest ) .
204
+ 16 an office in moscow promsvyazbank ( зао '' промсвязьбанк '' ) is a privately owned russia bank from moscow .
205
+ 20 sibor stands for singapore interbank offered rate and is a daily reference rate based on the interest rates at which bank offer to lend unsecured funds to other banks in the singapore wholesale money market ( or interbank market ) .
206
+ 31 to reward him for this , the stb gave him a car and a villa back in czechoslovakia , and also paid frenzel an enormous salary , placed into a czechoslovak bank so as not to arouse west german suspicion .
207
+ 6 most financing was obtained from foreign bank and gas companies , which , as 1951 drew to an end , refused to expand the available credit .
208
+ 41 facilities post office doctor 's surgery dentist chemist supermarket newsagent 's shop three pub barber shop swimming pool estate agent bakery fish and chips shop indian restaurant indian takeaway red telephone box cash machine in the past there had been a bank and a library in the village , both are now closed .
209
+ 19 on the basis of this huge value of inventory , he took out massive loans from various wall street bank and companies , and used the cash to buy all of the futures on the oil .
210
+ 3 services include two bank , a post office , a medical centre , a dentist , an optician and a vet 's surgery .
211
+ 19 sir julian hodge ( 15 october 1904 -- 17 july 2004 ) was a london - born entrepreneur and bank who lived in wales for most of his life , from the age of five .
212
+ 31 they sought to create thrifty habits amongst small and medium-sized savers such as craftsmen , domestic servants or the growing proletariat , who were outside the well-to-do market that the commercial bank served .
213
+ 17 the norddeutsche landesbank ( abbreviated nord/lb ) is a german landesbank and one of the largest commercial bank in germany .
214
+ 1 for bank , the assets typically include commercial and personal loans , mortgages , construction loans and investment securities .
215
+ 9 as a result of such speculative borrowing bubbles , bank and lender tighten credit availability , even to companies that can afford loan , and the economy subsequently contracts .
216
+ 3 darby visits the bank to retrieve the contents of the box .
217
+ 17 robert maynard murray ( november 28 , 1841 august 2 , 1913 ) was an attorney , bank , businessman and member of the united states house of representatives from ohio .
218
+ 26 as well as those who went to argentina as industrialists and major landowners , others went as railway engineers , civil engineer and to work in bank and commerce .
219
+ 16 focus trigeo sim is sold exclusively to midmarket organizations and targets a variety of businesses including bank , credit unions , retailers , government agencies , utilities , education , media and entertainment companies , and healthcare providers .
220
+ 19 more than 75 % of bratislava 's population works in the service sector , mainly composed of trade , bank , it , telecommunication , and tourism .
221
+ 15 the building then became part of a bankrupt estate , and was converted into a bank .
222
+ 21 history the company was founded by jim slater and peter walker , a tory mp , in 1964 as an authorised bank .
223
+ 7 schmitz plays the domineering manager of a bank who eventually falls in love with one of the other employees .
224
+ 3 its jurisdiction includes bank , credit union , securities firms , payday lender , mortgage-servicing operations , foreclosure relief services , debt collector and other financial companies operating in the united states .
225
+ 52 the museum conducts excursions in two thematic areas : '' development of banking in the sumy region '' - historical overview covering the period from the russian empire of the queen catherine ii , when in 1785 she issued '' the charter to russian towns '' , which allowed the establishment of bank in urban areas .
226
+ 12 he moved to westmoreland county , pennsylvania in 1867 and engaged in bank in greensburg , pennsylvania .
227
+ 19 location the city is located in the south lviv oblast , in the carpathian mountains , on the left bank of the stryi river , with its tributaries , the yablunka river ( ) and litmyr river ( ) , and between the mountain shymenka ( ) , kychera ( ) , vinets ' ( ) and osovnya ( ) .
228
+ 25 merchants such as jakob fugger ( 1459 -- 1525 ) and giovanni di bicci de ' medici ( 1360 -- 1428 ) founded the first bank .
229
+ 0 bank are required to report unfunded commitments on schedule rc-l of the quarterly report of condition and income ( call report ) .
230
+ 12 the family moved to lubbock in 1932 , when vincent carr 's bank in fairlie failed .
231
+ 3 they erode their bank and deposit material on bars and their floodplain .
232
+ 18 throughout the years , it has contained an elementary school , perry industries , indoor skating rink , bank , gas pump , arcade , two churches , two convenience stores ( including kc 's lucky dollar and jack & mary 's ) , surplus store , four grain elevators and a café .
233
+ 14 in 1894 , charles oakey made a decision that osceola needed to have a bank .
234
+ 9 a security question is used as an authenticator by bank , cable companies and wireless provider as an extra security layer .
235
+ 7 sadad links the commercial sector and local bank , offering the ability to collect customer payment electronically through all the banking channels in the kingdom 24 hours a day .
236
+ 20 adjacent to the railway station is a parade of shops , and a small commercial area which includes the former bank now used as a nursery .
237
+ 37 in a stream of consciousness the narrator touches on a number of events from the days of the nibelungen saga to the recent international financial crisis caused by the u.s. subprime mortgage crisis and the role of bank therein .
238
+ 7 he also did a large number of bank , county courthouse and additions , and private residences .
239
+ 11 in 1912 , a cooperative telephone company was formed and a bank was chartered .
240
+ 1 the bank is headquartered in bamako .
241
+ 8 the state owned and controlled some 27,000 agricultural bank that served rural areas and provided production loans .
242
+ 3 their customers are bank , credit union , payment processor and interbank network .
243
+ 19 the allegation was that it was an '' inside job , '' as tandwa was an employee of the bank .
244
+ 17 due to the presence of livestock near west branch chillisquaque creek , parts of the creek 's bank experience erosion .
245
+ 5 ismailia is on its west bank , from the half-way point .
246
+ 19 during this same period , hill also entered into banking and quickly managed to become member of several major bank ' boards of directors .
247
+ 13 the panic was followed by a five-year depression , with the failure of bank and record high unemployment levels .
248
+ 5 in 1879 , the first bank , moore , foster , and company , was founded , and during the 1880s , llano acquired a number of new enterprises that served the county 's farmer and rancher .
249
+ 30 there is also a movie rental store , a beauty salon , two estate agents , a chemist , a doctor , a garden shop , a veterinarian , a bank , a post office , a dentist , a library , a charity shop , a baby shop , an optician and a hardware store .
250
+ 21 during the late qing dynasty , a new development occurred : the creation of piaohao ( ) , which were essentially bank that provided services like money transfers and transactions , deposits , and loans .
251
+ 11 the economy of san marino is focussed around industries such as bank , wearing apparel , including fabrics , electronics , ceramics , tiles , furniture , paints , and spirits/wines .
252
+ 15 customers can conduct money transfers ( such as through the popular dahabshiil ) and other bank activities via mobile phones , as well as easily gain wireless internet access .
253
+ 44 by the middle of the 19th century , subsequent to the industrial revolution ( 1750 -- 1850 ) , the great expansion of the bourgeoisie social class caused its self-stratification -- by business activity and by economic function -- into the haute bourgeoisie ( bank and industrialists ) and the petite bourgeoisie ( tradesmen and white-collar worker ) .
254
+ 20 economy gatorade sports science institute located on west main street although relatively small in population , barrington features seven separate bank institutions , some with multiple branches .
255
+ 8 old shawneetown is the site of the first bank chartered in illinois in 1812 .
256
+ 13 the lender can find a borrower -- a financial intermediary such as a bank -- or buy notes or bonds ( corporate bonds , government bonds , or mutual bonds ) in the bond market .
257
+ 16 nature of the keiretsu at the epicenter , the '' big six '' keiretsu is a bank and a trading company ( sogo shosha ) .
258
+ 9 examples include systems to handle customers ' accounts in bank , computer reservation system , air traffic control , energy distribution ( power grid ) , nuclear power plant , military defense installations , and systems such as the tops database .
259
+ 12 coyote dens can be located in canyon , washout , coulee , bank , rock bluffs , or level ground .
260
+ 5 typical current applications are in bank , hospital and supermarket .
261
+ 11 while earlier business ventures had relied on a small number of bank , businessmen and wealthy aristocrat for investment , a prospective railway company had ( on top of these sources ) a large , literate section of population with savings to invest .
262
+ 4 there is a local bank that services accounts through the area and jamestown also has a nursing home facility and a cafe .
263
+ 10 the word dijk originally indicated both the trench and the bank .
264
+ 20 however , the site also allows product providers associated with an organization targeting the pensions industry , such as a bank , to join although many parts of the site may be restricted .
265
+ 5 banco federal is a venezuela bank based in caracas .
266
+ 5 here is a list of bank in brunei .
267
+ 18 stella , handling the finances , is to collect the insurance money , have it deposited in a bank account in málaga , spain , where she will be emigrating .
268
+ 4 amreli jilla madhya sahakari bank .
269
+ 10 a systemically important financial institution ( sifi ) is a bank , insurance company , or other financial institution whose failure might trigger a financial crisis .
270
+ 32 eagle clients eagle investment systems ' clients are global financial services companies , including investment management organizations , wealth management organizations , mutual fund companies , hedge fund , brokerage firm , bank , trusts , public sector organizations , plan sponsors , endowment and insurance companies .
271
+ 5 the son of a local bank president , he graduated from the university of vermont in 1845 , studied at harvard law school for a year and in a local law office , and became an attorney in burlington .
272
+ 4 third parties , particularly bank , will not see their security canceled over undue influence claims if they ensure people seeking mortgages have independent advice .
273
+ 11 also , the army general has to be christian and the bank governor has to be always christian as well .
274
+ 14 it went on to become the de facto platform on traders ' desks in bank and financial institution due to the breadth of the information available , despite the significant cost and dedicated infrastructure required .
275
+ 7 belarusbank ( ) is the largest commercial bank in belarus .
276
+ 22 micro , small and medium size enterprises financing : this activity targets semi-formalized and formalized businesses , usually not approached by traditional bank .
277
+ 14 located approximately north of washington in daviess county , it lies along the southern bank of the westward-flowing prairie creek , a white river tributary .
278
+ 20 the opening paragraph of the bill sums up his arguments : rights and restrictions this bill grants that a '' bank of the united states '' shall be granted limited legal rights in order to manage the national finance , to obtain loans for the federal government in case of sudden emergencies , and to promote trade and industry .
279
+ 9 unlike peer-to-peer lending sites , weemba 's lenders are bank and professional lending institutions , not individuals .
280
+ 12 buildings on site include a homestead , a police station , a bank , a newspaper office ( with working printing press ) , a saddle shop , a general store , and a dentist 's office , to name a few .
281
+ 14 primer banco del istmo trading as banistmo or banco del istmo is the largest bank in panama and central america , it is part of the hsbc group following its former parent company , grupo banistmo 's acquisition by hsbc in november 2006 .
282
+ 25 the feb was organized as a standard american infantry division , complete in all aspects , down to its logistical tail , including postal and bank services .
283
+ 8 clients of the firm have included hundreds of bank and financial institutions nationwide .
284
+ 24 open cheque an open cheque is a cheque that is not crossed on the left corner and payable at the counter of the drawee bank on presentation of the cheque .
285
+ 36 it is a full-service building , meaning it contains many various offices , a grocery store , convenience store , deli , clothing stores , gift shop , jewelry stores , pet store , pharmacy , bank , car rental office , doctor , dentist , beauty salon , barber , liquor store , dry cleaner , four restaurants , full-time concierge , valet , day spa , fitness center , pool , hot tub , banquet hall and a full-service marina .
286
+ 8 the texas ratio is a measure of a bank 's credit troubles .
287
+ 42 among establishments that were exempt from the proscriptions of the 1884 civil rights act , were retail stores , beauty shops and salons , parking lot , gas stations , school , health clinic , doctors' and dentists' offices , hospital , bank , loan companies , lawyer ' offices , real estate broker ' offices , employment agency offices , as well as many others .
288
+ 13 history early history in about 1811 , john clinch , a prominent witney bank and landowner , and his son james clinch purchased the marlborough head ph at church green , witney .
289
+ 18 the complex has offices for several large companies , as well as some upscale shops , restaurant , bank , and the largest indoor tennis facility in the mid-atlantic .
290
+ 21 an exchange traded notes ( or etn ) is a senior , unsecured , unsubordinated debt security issued by an underwriting bank .
291
+ 10 it includes primark , new look , river island , bank , w h smith , boots , deichmann and f. hinds in its 65 shops , as well as an indoor market and 550 car parking spaces .
292
+ 9 during the march a group of masked men attacked bank and threw molotov cocktail .
293
+ 27 career born at peterhead in aberdeenshire and educated at the local school , george kynoch first worked as an insurance clerk in glasgow and then as a bank clerk in worcester .
294
+ 10 the ground floor was used at that time as a bank .
295
+ 16 process the pre-shipment inspection is normally agreed between a buyer , a supplier , and a bank , and it can be used to initiate payment for a letter of credit .
296
+ 19 buyer 's credit is short term credit availed to an importer ( buyer ) from overseas lenders such as bank and other financial institution for goods they are importing .
297
+ 9 this fund developed over the years in the largest bank in the county .
298
+ 7 one of the positive points of these bank is that , they lean heavily on service and technology and as such , they are likely to attract more business in days to come with the restructuring of the industry round the corner .
299
+ 17 headquartered in chicago , with a branch office in chinatown , chicago , this privately held community bank was established november 9 , 1995 .
300
+ 14 the main forms of coping consist of : individual borrowing from community members and bank seasonal or temporary migration selling labor including sending children to work reduction of food intake reliance on public , private and intra-community transfers .
301
+ 12 headquartered in arcadia , california , this is a privately held community bank established on july 7 , 2003 .
302
+ 4 this privately held community bank was first established on november 15 , 1976 .
303
+ 12 gained 45 % controlling share of landsbanki , iceland 's second largest bank , for about isk12m in a controversial privatization .
304
+ 37 impact outages caused by system failures can have a serious impact on the users of computer/network systems , in particular those industries that rely on a nearly 24-hour service : medical informatics nuclear power and other infrastructure bank and other financial institution aeronautics , airline news reporting e-commerce and online transaction processing persistent online games also affected can be the users of an isp and other customers of a telecommunication network .
305
+ 1 singaporean bank ocbc has a tie-up with aun ; he creates special promotions for ocbc credit card holders with his favorite restaurants and food suppliers , which he promotes via the blog .
306
+ 12 integrity title insurance , trust and safe deposit company is a historic bank building located in the northern liberties neighborhood of philadelphia , pennsylvania .
307
+ 5 the building once housed a bank on its first floor .
308
+ 9 maxime jadot ( born 1957 ) is a belgian bank professional who is currently ceo of bnp paribas fortis .
309
+ 15 at the beginning , the company financed regional or local intermediary structures , such as bank and investment fund .
310
+ 10 during the gang 's period of activity , it robbed bank , trains , and stagecoach in missouri , kentucky , iowa , texas , arkansas , kansas , and west virginia .
311
+ 7 banking almost all of the major commercial bank in the philippines operate a branch in the city .
312
+ 3 there are three bank and seven joint-venture companies , specializing in ships , shipping , and sea-fishing .
313
+ 20 they range from small ones which can be bought by the hundred and are often given away for free at bank , barber , and other locations , to very large ones made out of candy cane twisted into a circle .
314
+ 3 gas station , bank , and other businesses also may have their own free-standing buildings in the parking lot of the strip center .
315
+ 32 goals the main objectives of the uruguay round were : to reduce agricultural subsidies to lift restrictions on foreign investment , and to begin the process of opening trade in services like bank and insurance .
316
+ 105 these include the annfield plain co-operative store ( with operating cash carrier system ) ; a terrace of '' professionals '' ' houses ( from gateshead ) , '' occupied '' by a music teacher , dentist's surgery and family home , and solicitor 's office ; a pub ( the sun inn from bishop auckland ) ; town stable and carriage shed ( utilising iron roof trusses from fleetwood ) housing an extensive collection of horse-drawn vehicle ; a branch office of the sunderland daily echo , stationer’s and printshop ; a sweet shop and manufactory ; a garage ; a branch of barclays bank ( using components from southport and gateshead ) and a masonic temple ( from sunderland ) .
317
+ 34 the parks offer a number of shared resources , such as incubators , programs and collaboration activities , uninterruptible power supply , telecommunications hubs , reception and security , management offices , restaurant , bank offices , convention center , parking , internal transportation , entertainment and sports facilities , etc. .
318
+ 13 major-ball later became a meter installer for south eastern electricity board and a bank .
319
+ 5 lugdunum had at least two bank and became the principal manufacturing center for pottery , metal working , and weaving in gaul .
320
+ 14 it is the location of a number of buildings built for or occupied by bank institutions .
321
+ 68 later on alain goes to a park and he starts a series of will projects that he dictates in a pocket tape recorder that he carries around , the first will distributes his assets 50/50 % to his wife and children , 98 % of his company shall go to his children and the remaining 2 % to claire and some moneys that he has in a swiss bank - account shall go to the fund for cancer research .
322
+ 20 a gang of robbers led by the self-proclaimed george ` the great ' brain ( sid james ) rob a bank , stealing # 50,000 .
323
+ 6 he was also a high ranking bank officer .
324
+ 24 kid curry ( harvey logan ) and the sundance kid used a cabin at old trail town as a hide-out before they robbed a bank in red lodge , montana .
325
+ 10 first loss deductible relates to the amount of recourse a bank is liable to in the event of securitised loan going bad .
326
+ 3 other facilities micro-finance bank , okpofe town hall , health center , post office , etc. in okpofe .
327
+ 0 bank do not recognize lawsuits as assets when determining an individual 's qualification for a traditional loan .
328
+ 11 the banking code was a voluntary code of practice agreed by bank in certain countries .
329
+ 8 the banca popolare di verona was an italian bank which became part of the banco popolare group , based in verona , north italy .
330
+ 31 as a result this travel document is also regarded and widely used as an identity document in mainland china , and can be accepted in cases of real estate purchasing , bank , taking medical treatment , insurance , employment etc. .
331
+ 11 computer-assisted or fully automatic computer-based link analysis is increasingly employed by bank and insurance agencies in fraud detection , by telecommunication operators in telecommunication network analysis , by medical sector in epidemiology and pharmacology , in law enforcement investigation , by search engine for relevance rating ( and conversely by the spammers for spamdexing and by business owners for search engine optimization ) , and everywhere else where relationships between many objects have to be analyzed .
332
+ 35 other areas of work there have been other areas of her work including the international transmission of inflation and of business cycles , the role of government in monetary policy , measuring the output of bank , and the behavior of interest rates , on deflation , on monetary standards .
333
+ 13 they may be employed by firms of solicitors or other institutions such as bank and property developer .
334
+ 8 it was at one time among the largest bank in the united states and it became a central player in the panic of 1907 .
335
+ 16 its parent company is the mitsubishi ufj financial group or mufg , the japan 's largest bank in terms of assets .
336
+ 27 called '' pillarization '' ( dutch : verzuiling ) , catholic , socialist , and liberal interests formed parallel organizations ( political parties , trade union , bank , newspaper , cultural , and social circles ) to promote their interests .
337
+ 22 biography born in mexico city , harp is most famous for being the former owner of the biggest latin american and mexican bank , banamex ( now part of citigroup ) , and was a billion-dollar beneficiary of citigroup 's 2001 buyout of banamex .
338
+ 11 verification of employment ( voe ) is a process used by bank and mortgage lenders in the united states to review the employment history of a borrower , to determine the borrower 's job stability and cross-reference income history with that stated on the uniform residential loan application ( form 1003 ) .
339
+ 13 in some countries , e.g. germany , it is illegal for a regular bank to certify checks .
340
+ 8 he worked for a discount house , a bank and an insurance broker before joining grieveson grant & co. in 1968 .
341
+ 16 conrad hinrich donner ( 11 april 1774 , altona -1 january 1854 ) was a german bank and art collector .
342
+ 10 in the second empire , he was bankrupted creating a bank which exchanged and discounted using proudhonian ideas .
343
+ 16 robert winthrop ( april 18 , 1833 -- november 18 , 1892 ) was a wealthy bank and capitalist in new york city .
344
+ 8 mercantile trust and deposit company is a historic bank building in baltimore , designed by the baltimore architectural firm of wyatt and sperry and constructed in 1885 .
345
+ 4 unclaimed money from dormant bank accounts , insurance benefits , corporate dividends , and mineral proceeds , for example , were handled through the unclaimed property division , which the treasury used to locate missing owners .
346
+ 1 the bank has plans to expand services to the western parts of uganda in the future .
347
+ 8 1st source corporation is a great lakes area bank .
348
+ 21 tibor stands for the tokyo interbank offered rate and is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the japan wholesale money market ( or interbank market ) .
349
+ 16 it distributes its products and services through a network of direct agents , broker , and bank and tracks companies in markets representing 92 % of the world 's gdp .
350
+ 24 however , if the investor obtained 95 % financing , only $ 5,000 cash would be required at the closing table , and a bank or other lender would loan the remaining $ 95,000 to acquire the property .
351
+ 18 a line of credit is any credit source extended to a government , business or individual by a bank or other financial institution .
352
+ 4 the roads on either bank of the singapore river were named river valley road -- the current river valley road and havelock road .
353
+ 30 according to western financial markets , consolidation of the financial sector remains a concern as it continues at a slow pace , with the market split so small that no bank controls more than 10 % of the market , and the taiwanese government is obligated , by the wto accession treaty , to open this sector between 2005 and 2008 .
354
+ 7 jurisdiction the subcommittee on financial institutions oversees bank , savings associations , credit union and other financial institutions , including deposit insurance , and e-commerce .
355
+ 8 since then , the ground floor became a bank , while the upper floors became office .
356
+ 14 for thirty-two years , he traveled all over the world , trading with foreign bank .
357
+ 1 : bank + kuma ( bear ) + mushroom .
358
+ 18 mortgage analytics experts use several types of data resources to create customized reports for their clients , commonly bank and lenders who seek up-to-date mortgage data in order to set appropriate loan rates and fees for borrowers .
359
+ 6 the following is a list of bank in the arab world .
360
+ 17 in following years he tried to obtain compensation for his family 's losses and the ruined rothschild bank from the austrian government .
361
+ 16 in december 1978 , mayor dennis kucinich refused to sell the company when a number of bank , which were heavily invested in muny light 's privately owned competitor , the cleveland electric illuminating company ( better known as cei or the illuminating company ) refused to roll over the city 's debt , as had previously been customary .
362
+ 4 stockholder , supplier , bank , employees , government agencies , business owners , and other stakeholders are examples of people interested in receiving such information for decision making purposes .
363
+ 7 pudong ( , lit '' huangpu east bank '' ) , formerly romanized as pootung , is a district of shanghai , china , located along the east side of the huangpu river , across from the historic city center of shanghai in puxi .
364
+ 25 longabaugh and logan used a log cabin at what is now old trail town in cody , wyoming as a hide-out before they robbed a bank in red lodge , montana .
365
+ 38 he purchased fukagawa cement works from the government in 1884 , with help from shibusawa eiichi , and diversified his business interests , which eventually became a minor zaibatsu ( kept minor because it did not include a bank ) .
366
+ 29 between 1988 and 1990 , medgyessy was the deputy prime minister for economic affairs , and between 1990 and 1996 , he was ceo and chairman of various hungarian bank .
367
+ 7 wegelin & co . , the oldest bank in switzerland , founded in 1741 tröckneturm schönenwegen ; the tower was built 1828 and was used to hang up freshly colored cloth panels for drying .
368
+ 28 the bef was ( theoretically ) organized as a standard american infantry division , complete in all aspects , down to its logistical tail ( including postal and bank services ) .
369
+ 16 this piece of furniture was first conceived in the united kingdom to accommodate the work of bank partners .
370
+ 30 as there are currently no restrictions on the import or export of either local or foreign currency into or from macau , visitors can change their currency in hotel , bank and authorized exchange dealers located all around the city .
371
+ 3 ( also , bank and post office usually support various forms of transferring funds .
372
+ 3 banking major commercial bank in the philippines operate in the city .
373
+ 17 headquarters of banca transilvania in cluj-napoca ( right ) banca transilvania ( bt ) , is a bank institution with headquarters in cluj-napoca , romania .
374
+ 5 the network has 14 member bank with an approximate network strength of 10,700 + atms .
375
+ 20 stockholm interbank offered rate ( or stibor ) is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the swedish wholesale money market ( or interbank market ) .
376
+ 18 he helped expand the japan capital market in the 1980s to canadian government , corporation , utilities and bank .
377
+ 9 the plot revolves around the politics inside a major bank .
378
+ 21 hjortshøj has a limited infrastructure including a primary school , a post office ( in the local brugsen ) , a bank and other ancillary businesses .
379
+ 7 he moved to chicago to start a bank in 1908 .
380
+ 35 the building and its setting were part of an aesthetic directive on the part of the company , in which it was decided to create buildings that looked less like gas stations and more like bank and libraries ; consequently , the designs incorporated details , materials , and massing which were more commonly associated with such buildings .
381
+ 25 apart from listaskálin in tórshavn , where a great permanent exhibition is , paintings can be seen in the faroese parliament as well in many bank and savings banks all over the faroes .
382
+ 7 '' graeme wishes to start a pirate bank , a pirate bus service , and a pirate church of england , all outside britain 's 5 mile ( 9.3 km ) limit , as well as having also planned a fiendish scheme to tow the whole of britain outside the 5 mile limit and become leader of a pirate state , but his plan is ruined when tim and bill having finally had enough leave him to it .
383
+ 12 his works the establishment of banque misr , the first real egyptian bank owned by egyptian shareholders and staffed by egyptian nationals , where arabic ( the national language ) was used in all communications , was a major step in establishing a national economic identity .
384
+ 10 the objective of the game is to rob as many bank as possible while avoiding the police .
385
+ 17 his education was completed by 1802 , and thereafter he worked for a short time at a bank in dublin , and then in a firm of architects for approximately 18 months .
386
+ 18 corporate debt does exist in this category , but corporations in developing countries generally tend to borrow from bank and other sources , as public debt issuance requires both sufficiently developed markets and large borrowing needs .
387
+ 6 banco safra is a brazil local bank , ranking tenth among the country 's largest sector financial institutions in terms of total assets .
388
+ 15 buildings in 1909-1910 , the promoters secured a few wood-frame businesses , including a small bank , a compact three-story hotel , and a little general store .
389
+ 16 plot ida , with help from her two best friends sebastian and jonas , robs a bank in which her mother works in order to get the money required to save her dying father .
390
+ 20 the town and rail station drew its name of '' bankersmith '' from temple doswell smith , an important fredericksburg bank president who financed the railroad .
391
+ 10 reserve requirement the reserve requirement sets the minimum reserves each bank must hold to demand deposits and banknotes .
392
+ 3 domitius cheated on bank for purchases he made .
393
+ 26 the only exception is that if an instrument meets the definition of a cheque ( a bill of exchange payable on demand and drawn on a bank ) and is not payable to order ( i.e. if it just reads '' pay john doe '' ) then it is treated as a negotiable instrument .
394
+ 6 formerly the center of the north-west bank industry it has become progressively dominated by expensive shops .
395
+ 9 one of his brother 's children ran a local bank .
396
+ 6 the trade promoted the development of bank systems in both london and wales .
397
+ 28 he attended '' the philanthropin '' , a jewish school , until he began his first job as an apprentice to the famous jewish-owned french financial firm and bank , the rothschilds .
398
+ 4 walters became a prominent bank in east tennessee .
399
+ 34 however , this last song provocated a polemic since sardou gets into the skin of a man who , tired of his monotonous daily , expresses his brutal fantasies ( wanting of robbing a bank , desire of raping women ) , but never acts them .
400
+ 30 mccs are assigned by merchant type ( e.g. one for hotel , one for office supply stores , etc. ) , with each merchant being assigned an mcc by the bank .
401
+ 14 professional career before entering politics , he worked as a credit analyst at a bank .
402
+ 4 it was a private bank , but three quarters of the capital consisted of government bill and government-accepted notes .
403
+ 3 primary users are bank , financial institution , casino , and large theme park .
404
+ 27 shareholder profile : institutional investor ( 68.5 % ) private shareholders ( 12.6 % ) investment companies ( 6.7 % ) insurance companies ( 0.4 % ) bank ( 0.6 % ) most shareholders are located in north america ( around 36.6 % ) , followed by germany ( 26.3 % ) , other european countries ( 23.1 % ) , uk ( 12.4 % ) , other countries ( 1.6 % ) .
405
+ 17 in chattanooga , brock became involved in candy manufacturing , and also had involvements in insurance and bank interests .
406
+ 8 he was assigned to the standing committee on bank and banking .
407
+ 13 in the next session he was chairman of the committee on finance , bank , and insurance , and was also assigned to the committee on engrossed bill .
408
+ 5 ecology the species prefers the bank of pond .
409
+ 9 varied shopping opportunities exist in the district , including bank and service industries .
410
+ 19 born in the brooklyn borough of new york city , logan is the eldest of seven children born to bank executive robert logan , sr. .
411
+ 16 he has published on a variety of topics including natural disasters , mass media , rural bank , land reform , labour regulation , industrial policy , taxation , poverty and growth .
412
+ 8 he joined the freikorps and worked in a bank in 1922 .
413
+ 8 he was assigned to the standing committee on bank , and the joint committee on finance .
414
+ 18 the group set sail to nelson and landed on 6 june 1866 with the objective to rob several bank in the area , however for various reasons these goals were abandoned .
415
+ 5 sophisticated lenders , such as bank typically contract for a security interest over the assets of a company , so that in the event of default on loan repayments they may seize the company 's property directly to satisfy debts .
416
+ 32 given the short period of the loan , the interest rate charged in the overnight market , known as the overnight rate is , generally speaking , the lowest rate at which bank lend money .
417
+ 0 bank are the largest participant in the overnight market , although some other large financial institutions , e.g. mutual funds , also buy and sell on the overnight market as a way to manage unanticipated cash needs or as a temporary haven for money until the institution can decide on where to invest that money .
418
+ 10 from health care to banking , the mall has 5 bank , and atms to boot .
419
+ 3 merchant and english bank chose to live around the outeiro da glória and praia do flamengo areas in the south , or they established their residences in the nearby botafogo and laranjeiras districts .
420
+ 18 danida played a significant role in re-structuring the new institution and is a part owner of the new bank .
421
+ 9 it is the largest bulgarian financing facility provider to bank operating in the country , the sole national loan guarantee provider , and the only microfinance provider .
422
+ 17 the site is denoted by a statue of sir stamford raffles and is located on the north bank of the singapore river .
423
+ 31 kim jong nam , the eldest son of north korea 's leader kim jong il , has lived in macao since 2004 , when the united states imposed sanctions on a bank in macao for allegedly helping pyongyang launder money .
424
+ 17 a great fire in 1898 necessitated a major renovation , funded by the crédit lyonnais , a bank which leased a large portion of the store as its offices .
425
+ 23 the dalhousie obelisk ( chinese : 达豪施纪念碑 ) is a memorial obelisk in the civic district of singapore , located on the north bank of the singapore river in the downtown core , within the central area in singapore 's central business district .
426
+ 11 during his school years , o'donnell considered pursuing a career in bank .
427
+ 8 cast christopher walken as reed thimple , a bank who plots to destroy country bear hall .
428
+ 10 so if a married couple takes a loan from a bank , the loan agreement will normally provide that they are to be '' jointly liable '' for the full amount .
429
+ 18 santa maria also boasts of having the 4th highest number of financial institutions in the province having 28 bank with a total deposits amounting to php 12.89 billion .
430
+ 13 meanwhile , the whole town is searching for a million-dollar stash of looted bank securities that were recently stolen .
431
+ 17 while not a commercially thriving town , it lies near ilagan city and cauayan , communities with bank , hospitals , and places of entertainment .
432
+ 4 for example - the bank may feel that spectators or the big capitalists are getting a disproportionately large share in the total credit , causing various disturbances and inequality in the economy , while the small-scale industries , consumer goods industries and agriculture are starved of credit .
433
+ 25 reyna touro died in 1787 , and judah and his siblings were raised by his uncle , a merchant who helped found boston 's first bank .
434
+ 17 facilities cleve has the biggest selection of retail shops , including a supermarket , clothing stores , bank facilities , professional & medical services , service industries , post office , rural supplies , hotel , mechanical & raa services , newsagency and pharmacy .
435
+ 13 the committee 's membership consists of a wide range of businesses , including bank , law firm , engineering and construction companies , architecture firms , advertisers and marketers , accounting firms , insurance companies , utilities , manufacturer , and medical institutions .
436
+ 14 the british population in hong kong today consists mainly of career expatriate working in bank , education , real estate , law and consultancy , as well as a large number of british-born ethnic chinese , former chinese émigré to the u.k. , and hong kongers ( mostly ethnic chinese ) who successfully applied for full british citizenship before the transfer of sovereignty in 1997 .
437
+ 19 the portland financial district in portland , maine , is home to headquarters and regional offices of the largest bank in maine .
438
+ 4 padrana has a co-op bank , co-op diary , a high school , a brick kiln , lots of shops , big houses and just off the main road , there is also a decent marriage palace and resort on the main road called '' sher-e-punjab '' , next to which is a petrol pump .
439
+ 7 primary dealers a primary dealer is a bank or securities broker-dealer that may trade directly with the federal reserve system of the united states .
440
+ 38 there he held several key positions including senior manager of treasury international services , head of strategic planning & business development , group general manager international banking and general manager of cisco , the investment division of the bank .
441
+ 8 herkimer county trust company building is a historic bank building located at little falls , new york in herkimer county , new york .
442
+ 5 the creditor contacts its own bank and gives notification about paying bills through betalingsservice , from there on the bill is inserted in the electronic system and automatically paid every month on the set date from the customers account .
443
+ 5 on march 1 , 2006 bank officially changed its name to pjsc kredobank .
444
+ 34 structure dynamic growth of kredobank rates , entering new geographic markets , expanding the range of services , implementing new banking technologies cause the need for continuous changes in the organizational structure of the bank and building the new one that would allow to respond quickly to market changing conditions .
445
+ 15 she was the first woman in malaysia to be the chief executive officer of a bank .
446
+ 7 it would go on to house a bank .
447
+ 10 in addition to lodging , it served as saloon , bank , stagecoach stop , dance hall , and general gathering place .
448
+ 18 edward french , along with his uncle daniel and other members of the french family , were prominent bank and businessmen from early the dalles until the 1920s .
449
+ 6 lancaster trust company is a historic bank building located at lancaster , lancaster county , pennsylvania .
450
+ 22 the illinois department of financial and professional regulation ( dfpr ) is the code department of the illinois state government that regulates bank , other financial institutions , real estate agent , insurance firms , and insurance agents , and also oversees the professional qualifications of members of self-regulating professions such as physician .
451
+ 16 this membership allows for the creation of miniconomy ventures ( mv ) with which harbor , bank , and garages can be built , enables the player to start a political party , and gives the player personal smilies and colors on the forums ( ingame incorporated as clubs ) as well as twice the length of posts in clubs and unlimited number of lots that may be owned .
452
+ 21 the holder of a floating charge , which covers substantially all of a company 's property ( typically the company 's bank ) , has an absolute right to determine who the administrator .
453
+ 31 about qcr holdings , inc. is a multi-bank holding company headquartered in moline , illinois that serves the quad cities , cedar rapids and rockford communities through its wholly owned subsidiary bank .
454
+ 35 sparkbase does not service merchants directly , but rather acts as a private-label service through third parties , such as independent sales offices ( isos ) , loyalty marketing companies , financial institutions , and bank .
455
+ 7 synopsis three gangsters decided to plunder the bank , having the perfect plan of retreat across the abandoned tunnels of the moscow metro .
data/bank/test.gold.txt ADDED
@@ -0,0 +1,455 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 0
17
+ 1
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 0
27
+ 0
28
+ 0
29
+ 0
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 0
36
+ 1
37
+ 0
38
+ 0
39
+ 0
40
+ 0
41
+ 0
42
+ 0
43
+ 1
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 1
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 1
80
+ 0
81
+ 0
82
+ 0
83
+ 0
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 0
101
+ 0
102
+ 1
103
+ 0
104
+ 0
105
+ 0
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 0
112
+ 0
113
+ 0
114
+ 0
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 1
122
+ 0
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 0
128
+ 0
129
+ 0
130
+ 0
131
+ 0
132
+ 0
133
+ 0
134
+ 0
135
+ 0
136
+ 0
137
+ 0
138
+ 0
139
+ 0
140
+ 1
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 0
146
+ 0
147
+ 0
148
+ 0
149
+ 0
150
+ 0
151
+ 0
152
+ 0
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 0
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 0
165
+ 0
166
+ 0
167
+ 0
168
+ 0
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 0
174
+ 0
175
+ 0
176
+ 0
177
+ 0
178
+ 1
179
+ 0
180
+ 0
181
+ 0
182
+ 0
183
+ 0
184
+ 0
185
+ 0
186
+ 0
187
+ 0
188
+ 0
189
+ 0
190
+ 0
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 1
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 0
202
+ 0
203
+ 0
204
+ 0
205
+ 0
206
+ 0
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 0
213
+ 0
214
+ 0
215
+ 0
216
+ 0
217
+ 0
218
+ 0
219
+ 0
220
+ 0
221
+ 0
222
+ 0
223
+ 0
224
+ 0
225
+ 0
226
+ 0
227
+ 1
228
+ 0
229
+ 0
230
+ 0
231
+ 1
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 0
237
+ 0
238
+ 0
239
+ 0
240
+ 0
241
+ 0
242
+ 0
243
+ 0
244
+ 1
245
+ 1
246
+ 0
247
+ 0
248
+ 0
249
+ 0
250
+ 0
251
+ 0
252
+ 0
253
+ 0
254
+ 0
255
+ 0
256
+ 0
257
+ 0
258
+ 0
259
+ 1
260
+ 0
261
+ 0
262
+ 0
263
+ 1
264
+ 0
265
+ 0
266
+ 0
267
+ 0
268
+ 0
269
+ 0
270
+ 0
271
+ 0
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 0
277
+ 1
278
+ 0
279
+ 0
280
+ 0
281
+ 0
282
+ 0
283
+ 0
284
+ 0
285
+ 0
286
+ 0
287
+ 0
288
+ 0
289
+ 0
290
+ 0
291
+ 0
292
+ 0
293
+ 0
294
+ 0
295
+ 0
296
+ 0
297
+ 0
298
+ 0
299
+ 0
300
+ 0
301
+ 0
302
+ 0
303
+ 0
304
+ 0
305
+ 0
306
+ 0
307
+ 0
308
+ 0
309
+ 0
310
+ 0
311
+ 0
312
+ 0
313
+ 0
314
+ 0
315
+ 0
316
+ 0
317
+ 0
318
+ 0
319
+ 0
320
+ 0
321
+ 0
322
+ 0
323
+ 0
324
+ 0
325
+ 0
326
+ 0
327
+ 0
328
+ 0
329
+ 0
330
+ 0
331
+ 0
332
+ 0
333
+ 0
334
+ 0
335
+ 0
336
+ 0
337
+ 0
338
+ 0
339
+ 0
340
+ 0
341
+ 0
342
+ 0
343
+ 0
344
+ 0
345
+ 0
346
+ 0
347
+ 0
348
+ 0
349
+ 0
350
+ 0
351
+ 0
352
+ 1
353
+ 0
354
+ 0
355
+ 0
356
+ 0
357
+ 0
358
+ 0
359
+ 0
360
+ 0
361
+ 0
362
+ 0
363
+ 1
364
+ 0
365
+ 0
366
+ 0
367
+ 0
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 0
373
+ 0
374
+ 0
375
+ 0
376
+ 0
377
+ 0
378
+ 0
379
+ 0
380
+ 0
381
+ 0
382
+ 0
383
+ 0
384
+ 0
385
+ 0
386
+ 0
387
+ 0
388
+ 0
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 0
394
+ 0
395
+ 0
396
+ 0
397
+ 0
398
+ 0
399
+ 0
400
+ 0
401
+ 0
402
+ 0
403
+ 0
404
+ 0
405
+ 0
406
+ 0
407
+ 0
408
+ 1
409
+ 0
410
+ 0
411
+ 0
412
+ 0
413
+ 0
414
+ 0
415
+ 0
416
+ 0
417
+ 0
418
+ 0
419
+ 0
420
+ 0
421
+ 0
422
+ 1
423
+ 0
424
+ 0
425
+ 1
426
+ 0
427
+ 0
428
+ 0
429
+ 0
430
+ 0
431
+ 0
432
+ 0
433
+ 0
434
+ 0
435
+ 0
436
+ 0
437
+ 0
438
+ 0
439
+ 0
440
+ 0
441
+ 0
442
+ 0
443
+ 0
444
+ 0
445
+ 0
446
+ 0
447
+ 0
448
+ 0
449
+ 0
450
+ 0
451
+ 0
452
+ 0
453
+ 0
454
+ 0
455
+ 0
data/bank/train.data.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/bank/train.gold.txt ADDED
@@ -0,0 +1,1107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 1
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 0
27
+ 0
28
+ 0
29
+ 0
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 0
36
+ 1
37
+ 0
38
+ 0
39
+ 1
40
+ 0
41
+ 0
42
+ 0
43
+ 0
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 1
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 1
65
+ 0
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 0
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 0
101
+ 0
102
+ 0
103
+ 0
104
+ 0
105
+ 0
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 0
112
+ 0
113
+ 0
114
+ 1
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 0
122
+ 0
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 0
128
+ 1
129
+ 0
130
+ 0
131
+ 0
132
+ 0
133
+ 0
134
+ 0
135
+ 0
136
+ 0
137
+ 0
138
+ 0
139
+ 0
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 0
146
+ 0
147
+ 0
148
+ 0
149
+ 0
150
+ 0
151
+ 0
152
+ 0
153
+ 0
154
+ 0
155
+ 0
156
+ 1
157
+ 0
158
+ 0
159
+ 0
160
+ 0
161
+ 0
162
+ 1
163
+ 0
164
+ 0
165
+ 0
166
+ 0
167
+ 0
168
+ 0
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 1
175
+ 0
176
+ 0
177
+ 0
178
+ 0
179
+ 0
180
+ 1
181
+ 0
182
+ 1
183
+ 0
184
+ 0
185
+ 0
186
+ 0
187
+ 0
188
+ 0
189
+ 0
190
+ 0
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 0
196
+ 0
197
+ 1
198
+ 0
199
+ 0
200
+ 0
201
+ 0
202
+ 0
203
+ 0
204
+ 0
205
+ 0
206
+ 0
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 0
213
+ 0
214
+ 0
215
+ 0
216
+ 0
217
+ 1
218
+ 0
219
+ 0
220
+ 0
221
+ 0
222
+ 0
223
+ 0
224
+ 0
225
+ 0
226
+ 0
227
+ 0
228
+ 0
229
+ 0
230
+ 0
231
+ 0
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 0
237
+ 0
238
+ 0
239
+ 0
240
+ 0
241
+ 0
242
+ 0
243
+ 0
244
+ 0
245
+ 0
246
+ 0
247
+ 0
248
+ 0
249
+ 0
250
+ 0
251
+ 0
252
+ 0
253
+ 0
254
+ 0
255
+ 0
256
+ 0
257
+ 0
258
+ 0
259
+ 0
260
+ 0
261
+ 0
262
+ 1
263
+ 0
264
+ 0
265
+ 0
266
+ 0
267
+ 0
268
+ 0
269
+ 0
270
+ 1
271
+ 0
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 0
277
+ 0
278
+ 0
279
+ 0
280
+ 0
281
+ 0
282
+ 0
283
+ 0
284
+ 0
285
+ 0
286
+ 0
287
+ 0
288
+ 0
289
+ 0
290
+ 0
291
+ 0
292
+ 0
293
+ 1
294
+ 0
295
+ 0
296
+ 0
297
+ 0
298
+ 0
299
+ 0
300
+ 0
301
+ 0
302
+ 0
303
+ 0
304
+ 0
305
+ 0
306
+ 0
307
+ 0
308
+ 0
309
+ 0
310
+ 0
311
+ 0
312
+ 0
313
+ 0
314
+ 0
315
+ 0
316
+ 0
317
+ 0
318
+ 0
319
+ 0
320
+ 0
321
+ 0
322
+ 0
323
+ 0
324
+ 0
325
+ 0
326
+ 0
327
+ 1
328
+ 0
329
+ 0
330
+ 0
331
+ 0
332
+ 0
333
+ 0
334
+ 0
335
+ 0
336
+ 0
337
+ 0
338
+ 0
339
+ 0
340
+ 0
341
+ 0
342
+ 0
343
+ 0
344
+ 0
345
+ 0
346
+ 0
347
+ 0
348
+ 0
349
+ 0
350
+ 0
351
+ 0
352
+ 0
353
+ 0
354
+ 0
355
+ 0
356
+ 0
357
+ 1
358
+ 0
359
+ 0
360
+ 0
361
+ 0
362
+ 0
363
+ 0
364
+ 0
365
+ 0
366
+ 0
367
+ 0
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 0
373
+ 0
374
+ 0
375
+ 0
376
+ 0
377
+ 0
378
+ 0
379
+ 0
380
+ 0
381
+ 0
382
+ 0
383
+ 0
384
+ 0
385
+ 0
386
+ 0
387
+ 0
388
+ 0
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 0
394
+ 0
395
+ 0
396
+ 0
397
+ 0
398
+ 0
399
+ 0
400
+ 0
401
+ 0
402
+ 0
403
+ 0
404
+ 0
405
+ 0
406
+ 0
407
+ 0
408
+ 0
409
+ 0
410
+ 0
411
+ 0
412
+ 1
413
+ 0
414
+ 0
415
+ 0
416
+ 0
417
+ 0
418
+ 0
419
+ 0
420
+ 0
421
+ 0
422
+ 1
423
+ 0
424
+ 0
425
+ 0
426
+ 0
427
+ 0
428
+ 0
429
+ 0
430
+ 0
431
+ 0
432
+ 0
433
+ 1
434
+ 0
435
+ 0
436
+ 0
437
+ 0
438
+ 0
439
+ 0
440
+ 0
441
+ 0
442
+ 0
443
+ 0
444
+ 0
445
+ 0
446
+ 0
447
+ 0
448
+ 0
449
+ 0
450
+ 0
451
+ 0
452
+ 1
453
+ 0
454
+ 0
455
+ 0
456
+ 0
457
+ 0
458
+ 0
459
+ 0
460
+ 0
461
+ 0
462
+ 0
463
+ 0
464
+ 0
465
+ 0
466
+ 0
467
+ 0
468
+ 0
469
+ 0
470
+ 0
471
+ 0
472
+ 0
473
+ 0
474
+ 0
475
+ 0
476
+ 0
477
+ 0
478
+ 0
479
+ 0
480
+ 1
481
+ 0
482
+ 0
483
+ 0
484
+ 0
485
+ 0
486
+ 0
487
+ 0
488
+ 0
489
+ 0
490
+ 0
491
+ 0
492
+ 0
493
+ 1
494
+ 0
495
+ 0
496
+ 0
497
+ 0
498
+ 0
499
+ 0
500
+ 0
501
+ 0
502
+ 0
503
+ 0
504
+ 0
505
+ 0
506
+ 0
507
+ 0
508
+ 0
509
+ 0
510
+ 0
511
+ 0
512
+ 0
513
+ 0
514
+ 0
515
+ 0
516
+ 0
517
+ 0
518
+ 0
519
+ 0
520
+ 0
521
+ 0
522
+ 0
523
+ 0
524
+ 0
525
+ 0
526
+ 0
527
+ 0
528
+ 0
529
+ 0
530
+ 0
531
+ 0
532
+ 0
533
+ 0
534
+ 0
535
+ 0
536
+ 0
537
+ 0
538
+ 0
539
+ 0
540
+ 0
541
+ 0
542
+ 0
543
+ 0
544
+ 0
545
+ 0
546
+ 0
547
+ 0
548
+ 0
549
+ 0
550
+ 0
551
+ 0
552
+ 0
553
+ 0
554
+ 0
555
+ 0
556
+ 0
557
+ 0
558
+ 0
559
+ 0
560
+ 0
561
+ 0
562
+ 0
563
+ 0
564
+ 0
565
+ 0
566
+ 0
567
+ 0
568
+ 0
569
+ 0
570
+ 0
571
+ 0
572
+ 0
573
+ 0
574
+ 0
575
+ 0
576
+ 0
577
+ 0
578
+ 1
579
+ 0
580
+ 0
581
+ 0
582
+ 0
583
+ 0
584
+ 0
585
+ 0
586
+ 0
587
+ 0
588
+ 0
589
+ 0
590
+ 0
591
+ 0
592
+ 0
593
+ 0
594
+ 1
595
+ 0
596
+ 0
597
+ 0
598
+ 0
599
+ 0
600
+ 0
601
+ 0
602
+ 0
603
+ 0
604
+ 0
605
+ 0
606
+ 0
607
+ 0
608
+ 0
609
+ 0
610
+ 0
611
+ 0
612
+ 0
613
+ 0
614
+ 0
615
+ 0
616
+ 0
617
+ 0
618
+ 0
619
+ 0
620
+ 0
621
+ 0
622
+ 0
623
+ 0
624
+ 0
625
+ 0
626
+ 0
627
+ 0
628
+ 0
629
+ 0
630
+ 0
631
+ 0
632
+ 0
633
+ 0
634
+ 0
635
+ 0
636
+ 0
637
+ 0
638
+ 0
639
+ 0
640
+ 0
641
+ 0
642
+ 0
643
+ 0
644
+ 1
645
+ 0
646
+ 0
647
+ 0
648
+ 0
649
+ 0
650
+ 0
651
+ 0
652
+ 0
653
+ 0
654
+ 0
655
+ 0
656
+ 0
657
+ 0
658
+ 0
659
+ 0
660
+ 0
661
+ 0
662
+ 0
663
+ 0
664
+ 0
665
+ 0
666
+ 0
667
+ 0
668
+ 0
669
+ 0
670
+ 0
671
+ 0
672
+ 0
673
+ 0
674
+ 0
675
+ 0
676
+ 0
677
+ 0
678
+ 0
679
+ 0
680
+ 0
681
+ 0
682
+ 0
683
+ 0
684
+ 0
685
+ 0
686
+ 0
687
+ 0
688
+ 0
689
+ 0
690
+ 0
691
+ 0
692
+ 0
693
+ 0
694
+ 0
695
+ 0
696
+ 0
697
+ 0
698
+ 0
699
+ 0
700
+ 0
701
+ 0
702
+ 0
703
+ 0
704
+ 0
705
+ 0
706
+ 0
707
+ 0
708
+ 0
709
+ 0
710
+ 0
711
+ 0
712
+ 0
713
+ 0
714
+ 0
715
+ 0
716
+ 0
717
+ 0
718
+ 0
719
+ 0
720
+ 0
721
+ 0
722
+ 0
723
+ 0
724
+ 0
725
+ 0
726
+ 0
727
+ 0
728
+ 0
729
+ 0
730
+ 0
731
+ 0
732
+ 0
733
+ 0
734
+ 1
735
+ 0
736
+ 0
737
+ 0
738
+ 0
739
+ 0
740
+ 0
741
+ 0
742
+ 0
743
+ 0
744
+ 0
745
+ 0
746
+ 0
747
+ 0
748
+ 0
749
+ 0
750
+ 1
751
+ 0
752
+ 0
753
+ 0
754
+ 0
755
+ 0
756
+ 0
757
+ 0
758
+ 0
759
+ 0
760
+ 0
761
+ 0
762
+ 0
763
+ 0
764
+ 0
765
+ 0
766
+ 0
767
+ 1
768
+ 0
769
+ 0
770
+ 0
771
+ 0
772
+ 0
773
+ 0
774
+ 0
775
+ 0
776
+ 0
777
+ 0
778
+ 0
779
+ 0
780
+ 0
781
+ 0
782
+ 0
783
+ 0
784
+ 0
785
+ 0
786
+ 0
787
+ 0
788
+ 0
789
+ 0
790
+ 0
791
+ 0
792
+ 0
793
+ 0
794
+ 0
795
+ 0
796
+ 1
797
+ 0
798
+ 0
799
+ 0
800
+ 0
801
+ 0
802
+ 0
803
+ 0
804
+ 0
805
+ 0
806
+ 0
807
+ 0
808
+ 0
809
+ 0
810
+ 0
811
+ 0
812
+ 0
813
+ 0
814
+ 0
815
+ 0
816
+ 0
817
+ 0
818
+ 0
819
+ 0
820
+ 0
821
+ 0
822
+ 0
823
+ 0
824
+ 0
825
+ 0
826
+ 0
827
+ 0
828
+ 0
829
+ 0
830
+ 0
831
+ 0
832
+ 0
833
+ 0
834
+ 0
835
+ 0
836
+ 0
837
+ 0
838
+ 0
839
+ 0
840
+ 0
841
+ 0
842
+ 0
843
+ 0
844
+ 0
845
+ 0
846
+ 0
847
+ 0
848
+ 0
849
+ 0
850
+ 0
851
+ 0
852
+ 0
853
+ 0
854
+ 0
855
+ 0
856
+ 0
857
+ 0
858
+ 0
859
+ 0
860
+ 0
861
+ 0
862
+ 0
863
+ 0
864
+ 0
865
+ 0
866
+ 0
867
+ 0
868
+ 0
869
+ 0
870
+ 0
871
+ 0
872
+ 0
873
+ 0
874
+ 0
875
+ 0
876
+ 0
877
+ 0
878
+ 0
879
+ 0
880
+ 0
881
+ 0
882
+ 0
883
+ 0
884
+ 0
885
+ 0
886
+ 0
887
+ 0
888
+ 0
889
+ 0
890
+ 1
891
+ 0
892
+ 0
893
+ 0
894
+ 0
895
+ 0
896
+ 0
897
+ 0
898
+ 0
899
+ 0
900
+ 0
901
+ 0
902
+ 0
903
+ 0
904
+ 0
905
+ 0
906
+ 0
907
+ 0
908
+ 0
909
+ 0
910
+ 0
911
+ 0
912
+ 0
913
+ 0
914
+ 0
915
+ 0
916
+ 0
917
+ 0
918
+ 0
919
+ 0
920
+ 0
921
+ 0
922
+ 0
923
+ 0
924
+ 0
925
+ 0
926
+ 0
927
+ 0
928
+ 0
929
+ 0
930
+ 0
931
+ 0
932
+ 0
933
+ 0
934
+ 0
935
+ 0
936
+ 0
937
+ 0
938
+ 0
939
+ 0
940
+ 0
941
+ 0
942
+ 0
943
+ 1
944
+ 0
945
+ 0
946
+ 0
947
+ 0
948
+ 0
949
+ 0
950
+ 0
951
+ 0
952
+ 0
953
+ 0
954
+ 0
955
+ 0
956
+ 0
957
+ 0
958
+ 0
959
+ 0
960
+ 0
961
+ 0
962
+ 0
963
+ 0
964
+ 0
965
+ 0
966
+ 1
967
+ 0
968
+ 0
969
+ 0
970
+ 0
971
+ 0
972
+ 0
973
+ 0
974
+ 0
975
+ 0
976
+ 0
977
+ 0
978
+ 0
979
+ 0
980
+ 0
981
+ 0
982
+ 0
983
+ 0
984
+ 1
985
+ 0
986
+ 0
987
+ 0
988
+ 0
989
+ 0
990
+ 0
991
+ 0
992
+ 0
993
+ 0
994
+ 0
995
+ 0
996
+ 0
997
+ 0
998
+ 0
999
+ 0
1000
+ 0
1001
+ 0
1002
+ 0
1003
+ 0
1004
+ 0
1005
+ 0
1006
+ 0
1007
+ 0
1008
+ 0
1009
+ 0
1010
+ 0
1011
+ 0
1012
+ 0
1013
+ 0
1014
+ 0
1015
+ 0
1016
+ 0
1017
+ 0
1018
+ 0
1019
+ 0
1020
+ 0
1021
+ 1
1022
+ 0
1023
+ 0
1024
+ 0
1025
+ 0
1026
+ 0
1027
+ 0
1028
+ 0
1029
+ 1
1030
+ 0
1031
+ 0
1032
+ 0
1033
+ 0
1034
+ 0
1035
+ 0
1036
+ 0
1037
+ 0
1038
+ 0
1039
+ 0
1040
+ 0
1041
+ 0
1042
+ 0
1043
+ 0
1044
+ 0
1045
+ 0
1046
+ 1
1047
+ 1
1048
+ 0
1049
+ 0
1050
+ 0
1051
+ 0
1052
+ 0
1053
+ 0
1054
+ 0
1055
+ 1
1056
+ 0
1057
+ 0
1058
+ 0
1059
+ 0
1060
+ 1
1061
+ 0
1062
+ 1
1063
+ 0
1064
+ 0
1065
+ 0
1066
+ 0
1067
+ 0
1068
+ 0
1069
+ 0
1070
+ 0
1071
+ 0
1072
+ 0
1073
+ 0
1074
+ 0
1075
+ 0
1076
+ 0
1077
+ 0
1078
+ 0
1079
+ 0
1080
+ 0
1081
+ 1
1082
+ 0
1083
+ 0
1084
+ 0
1085
+ 1
1086
+ 0
1087
+ 0
1088
+ 0
1089
+ 0
1090
+ 0
1091
+ 0
1092
+ 0
1093
+ 0
1094
+ 0
1095
+ 0
1096
+ 0
1097
+ 0
1098
+ 0
1099
+ 0
1100
+ 0
1101
+ 0
1102
+ 0
1103
+ 0
1104
+ 0
1105
+ 0
1106
+ 0
1107
+ 0
data/bass/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "bass_bass_guitar", "1": "bass_bass_(voice_type)", "2": "bass_double_bass"}
data/bass/test.data.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/bass/test.gold.txt ADDED
@@ -0,0 +1,1391 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 0
3
+ 0
4
+ 1
5
+ 0
6
+ 0
7
+ 0
8
+ 1
9
+ 1
10
+ 0
11
+ 0
12
+ 0
13
+ 1
14
+ 0
15
+ 0
16
+ 1
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 0
27
+ 0
28
+ 1
29
+ 0
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 1
36
+ 1
37
+ 1
38
+ 0
39
+ 0
40
+ 0
41
+ 0
42
+ 0
43
+ 2
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 1
51
+ 1
52
+ 1
53
+ 0
54
+ 1
55
+ 0
56
+ 0
57
+ 0
58
+ 1
59
+ 1
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 2
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 2
78
+ 1
79
+ 1
80
+ 1
81
+ 1
82
+ 1
83
+ 1
84
+ 1
85
+ 1
86
+ 1
87
+ 1
88
+ 1
89
+ 1
90
+ 1
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 1
98
+ 1
99
+ 2
100
+ 1
101
+ 1
102
+ 0
103
+ 2
104
+ 2
105
+ 0
106
+ 0
107
+ 0
108
+ 2
109
+ 0
110
+ 0
111
+ 0
112
+ 1
113
+ 1
114
+ 0
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 0
122
+ 0
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 2
128
+ 0
129
+ 0
130
+ 0
131
+ 0
132
+ 0
133
+ 0
134
+ 0
135
+ 0
136
+ 0
137
+ 0
138
+ 2
139
+ 0
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 1
145
+ 0
146
+ 0
147
+ 1
148
+ 0
149
+ 1
150
+ 0
151
+ 0
152
+ 0
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 1
159
+ 0
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 1
165
+ 0
166
+ 0
167
+ 0
168
+ 0
169
+ 0
170
+ 2
171
+ 1
172
+ 0
173
+ 0
174
+ 0
175
+ 0
176
+ 0
177
+ 0
178
+ 0
179
+ 0
180
+ 0
181
+ 0
182
+ 0
183
+ 0
184
+ 0
185
+ 0
186
+ 0
187
+ 0
188
+ 0
189
+ 0
190
+ 0
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 0
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 0
202
+ 0
203
+ 0
204
+ 0
205
+ 0
206
+ 0
207
+ 0
208
+ 1
209
+ 0
210
+ 1
211
+ 0
212
+ 0
213
+ 0
214
+ 2
215
+ 1
216
+ 0
217
+ 0
218
+ 0
219
+ 0
220
+ 1
221
+ 0
222
+ 0
223
+ 0
224
+ 0
225
+ 0
226
+ 1
227
+ 1
228
+ 0
229
+ 0
230
+ 0
231
+ 0
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 1
237
+ 1
238
+ 0
239
+ 1
240
+ 0
241
+ 1
242
+ 1
243
+ 0
244
+ 0
245
+ 0
246
+ 0
247
+ 0
248
+ 1
249
+ 0
250
+ 0
251
+ 0
252
+ 0
253
+ 0
254
+ 0
255
+ 0
256
+ 1
257
+ 1
258
+ 0
259
+ 0
260
+ 0
261
+ 0
262
+ 1
263
+ 0
264
+ 0
265
+ 1
266
+ 0
267
+ 0
268
+ 0
269
+ 0
270
+ 0
271
+ 0
272
+ 0
273
+ 1
274
+ 0
275
+ 0
276
+ 0
277
+ 0
278
+ 0
279
+ 0
280
+ 0
281
+ 0
282
+ 0
283
+ 0
284
+ 1
285
+ 1
286
+ 1
287
+ 0
288
+ 0
289
+ 0
290
+ 1
291
+ 0
292
+ 0
293
+ 0
294
+ 0
295
+ 0
296
+ 1
297
+ 1
298
+ 0
299
+ 1
300
+ 1
301
+ 0
302
+ 0
303
+ 1
304
+ 0
305
+ 1
306
+ 1
307
+ 0
308
+ 0
309
+ 1
310
+ 0
311
+ 0
312
+ 1
313
+ 1
314
+ 2
315
+ 1
316
+ 0
317
+ 0
318
+ 2
319
+ 1
320
+ 0
321
+ 0
322
+ 0
323
+ 0
324
+ 0
325
+ 0
326
+ 0
327
+ 0
328
+ 1
329
+ 0
330
+ 0
331
+ 0
332
+ 1
333
+ 0
334
+ 0
335
+ 1
336
+ 1
337
+ 0
338
+ 1
339
+ 2
340
+ 0
341
+ 0
342
+ 0
343
+ 0
344
+ 1
345
+ 0
346
+ 0
347
+ 2
348
+ 0
349
+ 0
350
+ 0
351
+ 0
352
+ 1
353
+ 0
354
+ 0
355
+ 0
356
+ 1
357
+ 1
358
+ 1
359
+ 1
360
+ 1
361
+ 1
362
+ 1
363
+ 2
364
+ 0
365
+ 0
366
+ 1
367
+ 0
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 1
373
+ 2
374
+ 0
375
+ 0
376
+ 0
377
+ 0
378
+ 0
379
+ 2
380
+ 0
381
+ 0
382
+ 0
383
+ 0
384
+ 2
385
+ 0
386
+ 0
387
+ 0
388
+ 0
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 0
394
+ 0
395
+ 0
396
+ 0
397
+ 0
398
+ 1
399
+ 0
400
+ 0
401
+ 0
402
+ 1
403
+ 0
404
+ 0
405
+ 0
406
+ 0
407
+ 0
408
+ 1
409
+ 0
410
+ 0
411
+ 0
412
+ 0
413
+ 0
414
+ 0
415
+ 2
416
+ 0
417
+ 0
418
+ 0
419
+ 0
420
+ 0
421
+ 0
422
+ 0
423
+ 0
424
+ 1
425
+ 0
426
+ 0
427
+ 0
428
+ 1
429
+ 1
430
+ 0
431
+ 0
432
+ 0
433
+ 0
434
+ 0
435
+ 0
436
+ 0
437
+ 0
438
+ 0
439
+ 0
440
+ 0
441
+ 1
442
+ 2
443
+ 0
444
+ 0
445
+ 0
446
+ 0
447
+ 1
448
+ 0
449
+ 2
450
+ 0
451
+ 0
452
+ 1
453
+ 0
454
+ 0
455
+ 0
456
+ 0
457
+ 0
458
+ 0
459
+ 0
460
+ 0
461
+ 0
462
+ 0
463
+ 1
464
+ 2
465
+ 2
466
+ 0
467
+ 0
468
+ 0
469
+ 0
470
+ 0
471
+ 1
472
+ 0
473
+ 0
474
+ 0
475
+ 1
476
+ 0
477
+ 0
478
+ 0
479
+ 0
480
+ 0
481
+ 0
482
+ 1
483
+ 0
484
+ 2
485
+ 1
486
+ 0
487
+ 0
488
+ 0
489
+ 0
490
+ 0
491
+ 0
492
+ 0
493
+ 0
494
+ 0
495
+ 0
496
+ 2
497
+ 0
498
+ 1
499
+ 1
500
+ 0
501
+ 0
502
+ 0
503
+ 2
504
+ 1
505
+ 2
506
+ 0
507
+ 0
508
+ 2
509
+ 1
510
+ 1
511
+ 0
512
+ 0
513
+ 0
514
+ 1
515
+ 2
516
+ 0
517
+ 0
518
+ 0
519
+ 0
520
+ 0
521
+ 0
522
+ 0
523
+ 0
524
+ 1
525
+ 0
526
+ 0
527
+ 0
528
+ 0
529
+ 0
530
+ 0
531
+ 0
532
+ 0
533
+ 0
534
+ 0
535
+ 0
536
+ 0
537
+ 1
538
+ 2
539
+ 0
540
+ 0
541
+ 0
542
+ 0
543
+ 0
544
+ 0
545
+ 0
546
+ 0
547
+ 0
548
+ 0
549
+ 2
550
+ 0
551
+ 0
552
+ 0
553
+ 1
554
+ 0
555
+ 0
556
+ 0
557
+ 0
558
+ 0
559
+ 0
560
+ 0
561
+ 0
562
+ 0
563
+ 0
564
+ 1
565
+ 0
566
+ 0
567
+ 1
568
+ 0
569
+ 0
570
+ 0
571
+ 0
572
+ 0
573
+ 0
574
+ 0
575
+ 1
576
+ 0
577
+ 2
578
+ 1
579
+ 0
580
+ 1
581
+ 0
582
+ 2
583
+ 0
584
+ 2
585
+ 1
586
+ 0
587
+ 1
588
+ 0
589
+ 0
590
+ 1
591
+ 0
592
+ 0
593
+ 0
594
+ 0
595
+ 0
596
+ 1
597
+ 0
598
+ 0
599
+ 0
600
+ 0
601
+ 0
602
+ 0
603
+ 1
604
+ 0
605
+ 0
606
+ 1
607
+ 0
608
+ 0
609
+ 0
610
+ 0
611
+ 1
612
+ 1
613
+ 0
614
+ 0
615
+ 0
616
+ 0
617
+ 2
618
+ 0
619
+ 2
620
+ 0
621
+ 1
622
+ 1
623
+ 0
624
+ 0
625
+ 0
626
+ 0
627
+ 0
628
+ 1
629
+ 0
630
+ 0
631
+ 1
632
+ 0
633
+ 2
634
+ 1
635
+ 0
636
+ 0
637
+ 1
638
+ 0
639
+ 0
640
+ 1
641
+ 0
642
+ 0
643
+ 0
644
+ 1
645
+ 1
646
+ 0
647
+ 0
648
+ 0
649
+ 2
650
+ 0
651
+ 0
652
+ 0
653
+ 0
654
+ 1
655
+ 0
656
+ 1
657
+ 0
658
+ 1
659
+ 0
660
+ 0
661
+ 0
662
+ 0
663
+ 1
664
+ 0
665
+ 0
666
+ 0
667
+ 0
668
+ 0
669
+ 0
670
+ 0
671
+ 0
672
+ 0
673
+ 0
674
+ 0
675
+ 0
676
+ 1
677
+ 1
678
+ 0
679
+ 0
680
+ 0
681
+ 1
682
+ 1
683
+ 0
684
+ 1
685
+ 1
686
+ 1
687
+ 1
688
+ 1
689
+ 0
690
+ 0
691
+ 0
692
+ 0
693
+ 0
694
+ 0
695
+ 0
696
+ 0
697
+ 0
698
+ 0
699
+ 0
700
+ 0
701
+ 1
702
+ 0
703
+ 0
704
+ 0
705
+ 0
706
+ 0
707
+ 0
708
+ 0
709
+ 0
710
+ 0
711
+ 1
712
+ 0
713
+ 0
714
+ 0
715
+ 2
716
+ 0
717
+ 0
718
+ 0
719
+ 0
720
+ 2
721
+ 1
722
+ 1
723
+ 0
724
+ 1
725
+ 0
726
+ 0
727
+ 0
728
+ 2
729
+ 0
730
+ 2
731
+ 2
732
+ 0
733
+ 2
734
+ 0
735
+ 0
736
+ 0
737
+ 0
738
+ 0
739
+ 1
740
+ 0
741
+ 1
742
+ 1
743
+ 0
744
+ 0
745
+ 0
746
+ 0
747
+ 0
748
+ 0
749
+ 1
750
+ 1
751
+ 0
752
+ 1
753
+ 0
754
+ 0
755
+ 0
756
+ 1
757
+ 0
758
+ 1
759
+ 0
760
+ 1
761
+ 0
762
+ 0
763
+ 1
764
+ 1
765
+ 0
766
+ 1
767
+ 0
768
+ 1
769
+ 0
770
+ 0
771
+ 1
772
+ 2
773
+ 1
774
+ 1
775
+ 0
776
+ 1
777
+ 1
778
+ 1
779
+ 0
780
+ 0
781
+ 0
782
+ 0
783
+ 1
784
+ 0
785
+ 2
786
+ 0
787
+ 0
788
+ 0
789
+ 0
790
+ 1
791
+ 1
792
+ 0
793
+ 0
794
+ 0
795
+ 0
796
+ 0
797
+ 2
798
+ 1
799
+ 0
800
+ 0
801
+ 0
802
+ 0
803
+ 1
804
+ 1
805
+ 0
806
+ 0
807
+ 0
808
+ 0
809
+ 0
810
+ 0
811
+ 0
812
+ 0
813
+ 0
814
+ 1
815
+ 0
816
+ 1
817
+ 0
818
+ 1
819
+ 1
820
+ 1
821
+ 0
822
+ 0
823
+ 0
824
+ 0
825
+ 2
826
+ 0
827
+ 0
828
+ 2
829
+ 2
830
+ 1
831
+ 0
832
+ 0
833
+ 0
834
+ 0
835
+ 0
836
+ 0
837
+ 0
838
+ 0
839
+ 1
840
+ 1
841
+ 0
842
+ 1
843
+ 0
844
+ 0
845
+ 0
846
+ 0
847
+ 2
848
+ 0
849
+ 0
850
+ 2
851
+ 0
852
+ 0
853
+ 0
854
+ 0
855
+ 0
856
+ 0
857
+ 0
858
+ 1
859
+ 0
860
+ 0
861
+ 0
862
+ 1
863
+ 1
864
+ 0
865
+ 0
866
+ 1
867
+ 0
868
+ 0
869
+ 2
870
+ 0
871
+ 1
872
+ 2
873
+ 1
874
+ 1
875
+ 1
876
+ 0
877
+ 0
878
+ 2
879
+ 0
880
+ 0
881
+ 0
882
+ 0
883
+ 0
884
+ 0
885
+ 0
886
+ 0
887
+ 0
888
+ 2
889
+ 0
890
+ 0
891
+ 0
892
+ 0
893
+ 1
894
+ 0
895
+ 0
896
+ 0
897
+ 0
898
+ 0
899
+ 0
900
+ 0
901
+ 1
902
+ 0
903
+ 0
904
+ 1
905
+ 0
906
+ 0
907
+ 0
908
+ 1
909
+ 1
910
+ 2
911
+ 0
912
+ 0
913
+ 1
914
+ 1
915
+ 2
916
+ 0
917
+ 0
918
+ 0
919
+ 0
920
+ 0
921
+ 0
922
+ 0
923
+ 0
924
+ 0
925
+ 0
926
+ 0
927
+ 0
928
+ 0
929
+ 2
930
+ 0
931
+ 1
932
+ 1
933
+ 0
934
+ 1
935
+ 0
936
+ 0
937
+ 0
938
+ 0
939
+ 0
940
+ 1
941
+ 0
942
+ 0
943
+ 0
944
+ 0
945
+ 1
946
+ 0
947
+ 0
948
+ 0
949
+ 0
950
+ 1
951
+ 1
952
+ 1
953
+ 1
954
+ 1
955
+ 1
956
+ 1
957
+ 1
958
+ 1
959
+ 1
960
+ 0
961
+ 0
962
+ 0
963
+ 0
964
+ 0
965
+ 0
966
+ 0
967
+ 0
968
+ 0
969
+ 1
970
+ 1
971
+ 0
972
+ 1
973
+ 0
974
+ 0
975
+ 0
976
+ 0
977
+ 0
978
+ 0
979
+ 0
980
+ 0
981
+ 0
982
+ 0
983
+ 0
984
+ 0
985
+ 0
986
+ 0
987
+ 0
988
+ 0
989
+ 0
990
+ 0
991
+ 0
992
+ 1
993
+ 1
994
+ 0
995
+ 0
996
+ 0
997
+ 0
998
+ 0
999
+ 0
1000
+ 0
1001
+ 0
1002
+ 0
1003
+ 1
1004
+ 1
1005
+ 0
1006
+ 0
1007
+ 0
1008
+ 0
1009
+ 0
1010
+ 1
1011
+ 1
1012
+ 1
1013
+ 0
1014
+ 0
1015
+ 1
1016
+ 1
1017
+ 0
1018
+ 0
1019
+ 0
1020
+ 0
1021
+ 1
1022
+ 1
1023
+ 1
1024
+ 1
1025
+ 1
1026
+ 0
1027
+ 1
1028
+ 0
1029
+ 0
1030
+ 0
1031
+ 0
1032
+ 1
1033
+ 0
1034
+ 2
1035
+ 0
1036
+ 0
1037
+ 0
1038
+ 0
1039
+ 0
1040
+ 0
1041
+ 0
1042
+ 1
1043
+ 0
1044
+ 0
1045
+ 0
1046
+ 0
1047
+ 0
1048
+ 0
1049
+ 0
1050
+ 0
1051
+ 0
1052
+ 0
1053
+ 0
1054
+ 0
1055
+ 0
1056
+ 0
1057
+ 0
1058
+ 0
1059
+ 0
1060
+ 0
1061
+ 0
1062
+ 0
1063
+ 0
1064
+ 0
1065
+ 0
1066
+ 0
1067
+ 0
1068
+ 1
1069
+ 0
1070
+ 0
1071
+ 2
1072
+ 0
1073
+ 0
1074
+ 1
1075
+ 1
1076
+ 0
1077
+ 0
1078
+ 0
1079
+ 0
1080
+ 1
1081
+ 1
1082
+ 0
1083
+ 0
1084
+ 0
1085
+ 1
1086
+ 0
1087
+ 0
1088
+ 1
1089
+ 0
1090
+ 0
1091
+ 0
1092
+ 0
1093
+ 0
1094
+ 0
1095
+ 0
1096
+ 0
1097
+ 0
1098
+ 2
1099
+ 0
1100
+ 0
1101
+ 0
1102
+ 1
1103
+ 0
1104
+ 2
1105
+ 0
1106
+ 2
1107
+ 0
1108
+ 1
1109
+ 0
1110
+ 2
1111
+ 2
1112
+ 2
1113
+ 2
1114
+ 1
1115
+ 1
1116
+ 1
1117
+ 0
1118
+ 0
1119
+ 1
1120
+ 0
1121
+ 0
1122
+ 0
1123
+ 2
1124
+ 0
1125
+ 0
1126
+ 0
1127
+ 1
1128
+ 0
1129
+ 1
1130
+ 0
1131
+ 0
1132
+ 0
1133
+ 0
1134
+ 0
1135
+ 0
1136
+ 0
1137
+ 0
1138
+ 2
1139
+ 0
1140
+ 0
1141
+ 0
1142
+ 0
1143
+ 0
1144
+ 0
1145
+ 0
1146
+ 0
1147
+ 0
1148
+ 0
1149
+ 0
1150
+ 0
1151
+ 0
1152
+ 0
1153
+ 0
1154
+ 0
1155
+ 0
1156
+ 1
1157
+ 0
1158
+ 0
1159
+ 0
1160
+ 0
1161
+ 0
1162
+ 0
1163
+ 0
1164
+ 0
1165
+ 1
1166
+ 0
1167
+ 2
1168
+ 1
1169
+ 0
1170
+ 0
1171
+ 0
1172
+ 0
1173
+ 0
1174
+ 0
1175
+ 0
1176
+ 0
1177
+ 0
1178
+ 0
1179
+ 0
1180
+ 0
1181
+ 0
1182
+ 0
1183
+ 0
1184
+ 0
1185
+ 1
1186
+ 1
1187
+ 1
1188
+ 0
1189
+ 1
1190
+ 1
1191
+ 0
1192
+ 0
1193
+ 0
1194
+ 0
1195
+ 0
1196
+ 0
1197
+ 0
1198
+ 0
1199
+ 0
1200
+ 0
1201
+ 0
1202
+ 0
1203
+ 0
1204
+ 0
1205
+ 0
1206
+ 1
1207
+ 0
1208
+ 2
1209
+ 0
1210
+ 0
1211
+ 0
1212
+ 1
1213
+ 0
1214
+ 1
1215
+ 0
1216
+ 0
1217
+ 0
1218
+ 0
1219
+ 0
1220
+ 1
1221
+ 0
1222
+ 0
1223
+ 0
1224
+ 0
1225
+ 0
1226
+ 1
1227
+ 0
1228
+ 0
1229
+ 0
1230
+ 0
1231
+ 1
1232
+ 2
1233
+ 1
1234
+ 0
1235
+ 0
1236
+ 2
1237
+ 0
1238
+ 0
1239
+ 1
1240
+ 1
1241
+ 0
1242
+ 0
1243
+ 0
1244
+ 0
1245
+ 1
1246
+ 0
1247
+ 0
1248
+ 0
1249
+ 0
1250
+ 0
1251
+ 2
1252
+ 0
1253
+ 0
1254
+ 2
1255
+ 2
1256
+ 1
1257
+ 0
1258
+ 0
1259
+ 0
1260
+ 0
1261
+ 0
1262
+ 0
1263
+ 2
1264
+ 0
1265
+ 0
1266
+ 0
1267
+ 0
1268
+ 0
1269
+ 1
1270
+ 0
1271
+ 0
1272
+ 1
1273
+ 0
1274
+ 0
1275
+ 0
1276
+ 0
1277
+ 0
1278
+ 0
1279
+ 0
1280
+ 0
1281
+ 0
1282
+ 0
1283
+ 0
1284
+ 0
1285
+ 1
1286
+ 1
1287
+ 0
1288
+ 0
1289
+ 1
1290
+ 0
1291
+ 0
1292
+ 0
1293
+ 0
1294
+ 0
1295
+ 0
1296
+ 1
1297
+ 0
1298
+ 0
1299
+ 2
1300
+ 0
1301
+ 1
1302
+ 0
1303
+ 0
1304
+ 1
1305
+ 0
1306
+ 0
1307
+ 0
1308
+ 0
1309
+ 0
1310
+ 0
1311
+ 0
1312
+ 0
1313
+ 0
1314
+ 0
1315
+ 1
1316
+ 0
1317
+ 0
1318
+ 0
1319
+ 0
1320
+ 1
1321
+ 0
1322
+ 0
1323
+ 0
1324
+ 0
1325
+ 2
1326
+ 1
1327
+ 0
1328
+ 0
1329
+ 1
1330
+ 1
1331
+ 0
1332
+ 0
1333
+ 0
1334
+ 0
1335
+ 0
1336
+ 1
1337
+ 1
1338
+ 0
1339
+ 0
1340
+ 0
1341
+ 0
1342
+ 1
1343
+ 0
1344
+ 2
1345
+ 0
1346
+ 0
1347
+ 1
1348
+ 1
1349
+ 0
1350
+ 0
1351
+ 0
1352
+ 0
1353
+ 2
1354
+ 0
1355
+ 0
1356
+ 0
1357
+ 0
1358
+ 0
1359
+ 1
1360
+ 0
1361
+ 0
1362
+ 1
1363
+ 0
1364
+ 1
1365
+ 0
1366
+ 1
1367
+ 0
1368
+ 0
1369
+ 0
1370
+ 0
1371
+ 0
1372
+ 1
1373
+ 0
1374
+ 0
1375
+ 1
1376
+ 0
1377
+ 0
1378
+ 0
1379
+ 2
1380
+ 0
1381
+ 2
1382
+ 2
1383
+ 2
1384
+ 0
1385
+ 1
1386
+ 1
1387
+ 2
1388
+ 1
1389
+ 0
1390
+ 0
1391
+ 0
data/bass/train.data.txt ADDED
The diff for this file is too large to render. See raw diff
 
data/bass/train.gold.txt ADDED
@@ -0,0 +1,3173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 2
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 2
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 2
27
+ 0
28
+ 0
29
+ 0
30
+ 0
31
+ 1
32
+ 0
33
+ 2
34
+ 1
35
+ 1
36
+ 0
37
+ 0
38
+ 0
39
+ 1
40
+ 0
41
+ 0
42
+ 1
43
+ 0
44
+ 0
45
+ 2
46
+ 1
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 1
71
+ 2
72
+ 0
73
+ 0
74
+ 1
75
+ 1
76
+ 0
77
+ 1
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 1
84
+ 0
85
+ 0
86
+ 1
87
+ 1
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 1
93
+ 0
94
+ 2
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 1
100
+ 1
101
+ 0
102
+ 0
103
+ 0
104
+ 0
105
+ 0
106
+ 1
107
+ 1
108
+ 0
109
+ 0
110
+ 1
111
+ 0
112
+ 0
113
+ 0
114
+ 0
115
+ 1
116
+ 0
117
+ 0
118
+ 1
119
+ 1
120
+ 0
121
+ 0
122
+ 1
123
+ 1
124
+ 0
125
+ 2
126
+ 0
127
+ 1
128
+ 1
129
+ 1
130
+ 1
131
+ 0
132
+ 0
133
+ 0
134
+ 0
135
+ 1
136
+ 2
137
+ 0
138
+ 1
139
+ 0
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 1
146
+ 0
147
+ 0
148
+ 0
149
+ 0
150
+ 0
151
+ 1
152
+ 0
153
+ 1
154
+ 1
155
+ 1
156
+ 1
157
+ 0
158
+ 0
159
+ 1
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 0
165
+ 1
166
+ 0
167
+ 0
168
+ 1
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 0
174
+ 0
175
+ 1
176
+ 0
177
+ 0
178
+ 1
179
+ 0
180
+ 0
181
+ 0
182
+ 0
183
+ 1
184
+ 0
185
+ 1
186
+ 1
187
+ 0
188
+ 0
189
+ 0
190
+ 0
191
+ 0
192
+ 0
193
+ 1
194
+ 0
195
+ 0
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 0
202
+ 1
203
+ 1
204
+ 0
205
+ 0
206
+ 0
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 0
213
+ 2
214
+ 0
215
+ 0
216
+ 1
217
+ 0
218
+ 0
219
+ 0
220
+ 0
221
+ 0
222
+ 0
223
+ 0
224
+ 2
225
+ 0
226
+ 0
227
+ 0
228
+ 0
229
+ 0
230
+ 0
231
+ 0
232
+ 0
233
+ 0
234
+ 0
235
+ 0
236
+ 0
237
+ 1
238
+ 0
239
+ 0
240
+ 0
241
+ 0
242
+ 2
243
+ 1
244
+ 0
245
+ 0
246
+ 0
247
+ 0
248
+ 0
249
+ 0
250
+ 0
251
+ 2
252
+ 0
253
+ 2
254
+ 1
255
+ 0
256
+ 0
257
+ 0
258
+ 0
259
+ 0
260
+ 0
261
+ 0
262
+ 1
263
+ 1
264
+ 0
265
+ 0
266
+ 0
267
+ 1
268
+ 0
269
+ 2
270
+ 0
271
+ 0
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 1
277
+ 0
278
+ 1
279
+ 1
280
+ 0
281
+ 0
282
+ 0
283
+ 0
284
+ 0
285
+ 0
286
+ 2
287
+ 1
288
+ 0
289
+ 0
290
+ 0
291
+ 0
292
+ 2
293
+ 0
294
+ 1
295
+ 0
296
+ 1
297
+ 0
298
+ 0
299
+ 0
300
+ 0
301
+ 0
302
+ 0
303
+ 0
304
+ 0
305
+ 0
306
+ 0
307
+ 0
308
+ 2
309
+ 0
310
+ 0
311
+ 0
312
+ 0
313
+ 0
314
+ 0
315
+ 1
316
+ 0
317
+ 0
318
+ 0
319
+ 1
320
+ 0
321
+ 0
322
+ 0
323
+ 1
324
+ 1
325
+ 0
326
+ 1
327
+ 0
328
+ 0
329
+ 1
330
+ 0
331
+ 1
332
+ 0
333
+ 0
334
+ 0
335
+ 0
336
+ 0
337
+ 1
338
+ 0
339
+ 0
340
+ 2
341
+ 0
342
+ 0
343
+ 0
344
+ 0
345
+ 1
346
+ 0
347
+ 2
348
+ 1
349
+ 0
350
+ 0
351
+ 0
352
+ 0
353
+ 0
354
+ 0
355
+ 1
356
+ 0
357
+ 1
358
+ 0
359
+ 1
360
+ 0
361
+ 0
362
+ 0
363
+ 0
364
+ 0
365
+ 2
366
+ 0
367
+ 0
368
+ 1
369
+ 1
370
+ 1
371
+ 2
372
+ 0
373
+ 1
374
+ 1
375
+ 0
376
+ 2
377
+ 0
378
+ 0
379
+ 2
380
+ 0
381
+ 1
382
+ 0
383
+ 0
384
+ 0
385
+ 0
386
+ 0
387
+ 0
388
+ 1
389
+ 0
390
+ 0
391
+ 0
392
+ 0
393
+ 0
394
+ 0
395
+ 0
396
+ 0
397
+ 0
398
+ 0
399
+ 0
400
+ 0
401
+ 0
402
+ 0
403
+ 0
404
+ 0
405
+ 0
406
+ 0
407
+ 0
408
+ 0
409
+ 0
410
+ 0
411
+ 0
412
+ 0
413
+ 0
414
+ 1
415
+ 1
416
+ 2
417
+ 0
418
+ 1
419
+ 2
420
+ 0
421
+ 0
422
+ 2
423
+ 1
424
+ 0
425
+ 1
426
+ 0
427
+ 0
428
+ 0
429
+ 1
430
+ 1
431
+ 0
432
+ 0
433
+ 0
434
+ 0
435
+ 1
436
+ 0
437
+ 2
438
+ 0
439
+ 2
440
+ 1
441
+ 0
442
+ 0
443
+ 0
444
+ 0
445
+ 0
446
+ 1
447
+ 0
448
+ 0
449
+ 2
450
+ 1
451
+ 0
452
+ 0
453
+ 0
454
+ 0
455
+ 1
456
+ 0
457
+ 0
458
+ 1
459
+ 0
460
+ 0
461
+ 0
462
+ 0
463
+ 0
464
+ 0
465
+ 0
466
+ 1
467
+ 0
468
+ 1
469
+ 0
470
+ 0
471
+ 0
472
+ 0
473
+ 0
474
+ 0
475
+ 0
476
+ 0
477
+ 0
478
+ 0
479
+ 2
480
+ 0
481
+ 1
482
+ 0
483
+ 1
484
+ 2
485
+ 0
486
+ 1
487
+ 1
488
+ 0
489
+ 0
490
+ 0
491
+ 0
492
+ 0
493
+ 0
494
+ 1
495
+ 0
496
+ 0
497
+ 1
498
+ 0
499
+ 2
500
+ 0
501
+ 2
502
+ 0
503
+ 0
504
+ 0
505
+ 0
506
+ 0
507
+ 0
508
+ 0
509
+ 1
510
+ 0
511
+ 1
512
+ 0
513
+ 0
514
+ 1
515
+ 1
516
+ 0
517
+ 0
518
+ 0
519
+ 0
520
+ 0
521
+ 1
522
+ 0
523
+ 0
524
+ 2
525
+ 0
526
+ 2
527
+ 0
528
+ 0
529
+ 0
530
+ 0
531
+ 0
532
+ 0
533
+ 0
534
+ 1
535
+ 0
536
+ 0
537
+ 0
538
+ 1
539
+ 0
540
+ 0
541
+ 0
542
+ 0
543
+ 0
544
+ 0
545
+ 1
546
+ 2
547
+ 0
548
+ 2
549
+ 1
550
+ 0
551
+ 0
552
+ 0
553
+ 0
554
+ 0
555
+ 0
556
+ 0
557
+ 1
558
+ 0
559
+ 0
560
+ 0
561
+ 1
562
+ 0
563
+ 1
564
+ 0
565
+ 1
566
+ 0
567
+ 0
568
+ 0
569
+ 0
570
+ 0
571
+ 0
572
+ 0
573
+ 1
574
+ 1
575
+ 0
576
+ 2
577
+ 0
578
+ 0
579
+ 1
580
+ 0
581
+ 0
582
+ 1
583
+ 0
584
+ 0
585
+ 0
586
+ 0
587
+ 0
588
+ 0
589
+ 0
590
+ 0
591
+ 0
592
+ 0
593
+ 2
594
+ 0
595
+ 1
596
+ 2
597
+ 0
598
+ 0
599
+ 1
600
+ 0
601
+ 2
602
+ 0
603
+ 1
604
+ 1
605
+ 1
606
+ 1
607
+ 0
608
+ 0
609
+ 0
610
+ 0
611
+ 1
612
+ 0
613
+ 1
614
+ 0
615
+ 0
616
+ 0
617
+ 0
618
+ 0
619
+ 0
620
+ 0
621
+ 0
622
+ 0
623
+ 0
624
+ 0
625
+ 0
626
+ 0
627
+ 0
628
+ 0
629
+ 0
630
+ 0
631
+ 0
632
+ 0
633
+ 1
634
+ 0
635
+ 1
636
+ 0
637
+ 1
638
+ 0
639
+ 1
640
+ 0
641
+ 0
642
+ 1
643
+ 0
644
+ 0
645
+ 1
646
+ 1
647
+ 0
648
+ 1
649
+ 0
650
+ 0
651
+ 0
652
+ 0
653
+ 0
654
+ 0
655
+ 0
656
+ 0
657
+ 1
658
+ 0
659
+ 1
660
+ 0
661
+ 2
662
+ 0
663
+ 0
664
+ 0
665
+ 1
666
+ 0
667
+ 0
668
+ 0
669
+ 0
670
+ 0
671
+ 0
672
+ 0
673
+ 0
674
+ 0
675
+ 2
676
+ 0
677
+ 0
678
+ 0
679
+ 0
680
+ 0
681
+ 1
682
+ 0
683
+ 0
684
+ 0
685
+ 0
686
+ 0
687
+ 0
688
+ 0
689
+ 0
690
+ 1
691
+ 0
692
+ 0
693
+ 0
694
+ 0
695
+ 1
696
+ 0
697
+ 0
698
+ 0
699
+ 1
700
+ 0
701
+ 0
702
+ 0
703
+ 0
704
+ 0
705
+ 1
706
+ 0
707
+ 0
708
+ 0
709
+ 1
710
+ 1
711
+ 1
712
+ 0
713
+ 2
714
+ 0
715
+ 1
716
+ 0
717
+ 0
718
+ 1
719
+ 2
720
+ 1
721
+ 0
722
+ 0
723
+ 1
724
+ 1
725
+ 0
726
+ 1
727
+ 0
728
+ 1
729
+ 1
730
+ 1
731
+ 0
732
+ 0
733
+ 0
734
+ 2
735
+ 1
736
+ 1
737
+ 0
738
+ 0
739
+ 0
740
+ 0
741
+ 0
742
+ 0
743
+ 0
744
+ 1
745
+ 0
746
+ 0
747
+ 0
748
+ 1
749
+ 0
750
+ 0
751
+ 0
752
+ 0
753
+ 0
754
+ 0
755
+ 0
756
+ 0
757
+ 0
758
+ 0
759
+ 0
760
+ 0
761
+ 1
762
+ 0
763
+ 0
764
+ 0
765
+ 0
766
+ 0
767
+ 0
768
+ 0
769
+ 1
770
+ 0
771
+ 0
772
+ 0
773
+ 0
774
+ 0
775
+ 2
776
+ 0
777
+ 0
778
+ 0
779
+ 0
780
+ 1
781
+ 0
782
+ 0
783
+ 0
784
+ 1
785
+ 1
786
+ 0
787
+ 0
788
+ 0
789
+ 0
790
+ 1
791
+ 1
792
+ 0
793
+ 0
794
+ 2
795
+ 0
796
+ 0
797
+ 1
798
+ 0
799
+ 0
800
+ 0
801
+ 1
802
+ 1
803
+ 0
804
+ 1
805
+ 1
806
+ 0
807
+ 2
808
+ 0
809
+ 0
810
+ 0
811
+ 1
812
+ 0
813
+ 0
814
+ 0
815
+ 0
816
+ 0
817
+ 0
818
+ 0
819
+ 2
820
+ 0
821
+ 0
822
+ 0
823
+ 1
824
+ 0
825
+ 0
826
+ 0
827
+ 0
828
+ 1
829
+ 0
830
+ 0
831
+ 2
832
+ 1
833
+ 2
834
+ 0
835
+ 2
836
+ 0
837
+ 1
838
+ 0
839
+ 1
840
+ 0
841
+ 0
842
+ 0
843
+ 0
844
+ 0
845
+ 1
846
+ 0
847
+ 0
848
+ 0
849
+ 0
850
+ 0
851
+ 0
852
+ 0
853
+ 0
854
+ 0
855
+ 0
856
+ 1
857
+ 1
858
+ 0
859
+ 0
860
+ 0
861
+ 0
862
+ 1
863
+ 0
864
+ 2
865
+ 0
866
+ 0
867
+ 0
868
+ 0
869
+ 0
870
+ 0
871
+ 0
872
+ 0
873
+ 0
874
+ 0
875
+ 0
876
+ 2
877
+ 1
878
+ 0
879
+ 1
880
+ 0
881
+ 0
882
+ 1
883
+ 1
884
+ 0
885
+ 1
886
+ 0
887
+ 1
888
+ 0
889
+ 0
890
+ 0
891
+ 0
892
+ 0
893
+ 0
894
+ 0
895
+ 0
896
+ 0
897
+ 0
898
+ 0
899
+ 1
900
+ 0
901
+ 1
902
+ 0
903
+ 0
904
+ 0
905
+ 0
906
+ 0
907
+ 0
908
+ 0
909
+ 0
910
+ 0
911
+ 0
912
+ 0
913
+ 0
914
+ 0
915
+ 2
916
+ 0
917
+ 0
918
+ 0
919
+ 0
920
+ 0
921
+ 1
922
+ 0
923
+ 1
924
+ 1
925
+ 0
926
+ 0
927
+ 0
928
+ 0
929
+ 1
930
+ 0
931
+ 0
932
+ 1
933
+ 1
934
+ 1
935
+ 1
936
+ 1
937
+ 1
938
+ 0
939
+ 2
940
+ 0
941
+ 0
942
+ 2
943
+ 0
944
+ 0
945
+ 0
946
+ 0
947
+ 0
948
+ 0
949
+ 1
950
+ 0
951
+ 1
952
+ 0
953
+ 1
954
+ 0
955
+ 2
956
+ 0
957
+ 0
958
+ 0
959
+ 1
960
+ 1
961
+ 0
962
+ 1
963
+ 2
964
+ 0
965
+ 0
966
+ 0
967
+ 1
968
+ 0
969
+ 0
970
+ 1
971
+ 1
972
+ 0
973
+ 0
974
+ 0
975
+ 2
976
+ 0
977
+ 1
978
+ 0
979
+ 0
980
+ 0
981
+ 1
982
+ 0
983
+ 0
984
+ 0
985
+ 0
986
+ 0
987
+ 1
988
+ 0
989
+ 0
990
+ 1
991
+ 0
992
+ 1
993
+ 1
994
+ 1
995
+ 0
996
+ 0
997
+ 1
998
+ 0
999
+ 1
1000
+ 0
1001
+ 1
1002
+ 1
1003
+ 0
1004
+ 1
1005
+ 0
1006
+ 0
1007
+ 1
1008
+ 0
1009
+ 2
1010
+ 0
1011
+ 0
1012
+ 1
1013
+ 0
1014
+ 1
1015
+ 0
1016
+ 0
1017
+ 0
1018
+ 0
1019
+ 0
1020
+ 0
1021
+ 0
1022
+ 1
1023
+ 1
1024
+ 0
1025
+ 0
1026
+ 0
1027
+ 0
1028
+ 1
1029
+ 1
1030
+ 1
1031
+ 0
1032
+ 0
1033
+ 0
1034
+ 0
1035
+ 0
1036
+ 0
1037
+ 0
1038
+ 1
1039
+ 0
1040
+ 0
1041
+ 2
1042
+ 0
1043
+ 0
1044
+ 0
1045
+ 0
1046
+ 0
1047
+ 2
1048
+ 0
1049
+ 0
1050
+ 1
1051
+ 0
1052
+ 0
1053
+ 1
1054
+ 0
1055
+ 0
1056
+ 0
1057
+ 0
1058
+ 0
1059
+ 0
1060
+ 0
1061
+ 1
1062
+ 0
1063
+ 0
1064
+ 2
1065
+ 0
1066
+ 0
1067
+ 0
1068
+ 0
1069
+ 0
1070
+ 0
1071
+ 0
1072
+ 0
1073
+ 0
1074
+ 0
1075
+ 2
1076
+ 0
1077
+ 0
1078
+ 1
1079
+ 0
1080
+ 0
1081
+ 0
1082
+ 0
1083
+ 1
1084
+ 0
1085
+ 2
1086
+ 1
1087
+ 0
1088
+ 0
1089
+ 0
1090
+ 0
1091
+ 0
1092
+ 1
1093
+ 2
1094
+ 0
1095
+ 0
1096
+ 0
1097
+ 0
1098
+ 0
1099
+ 0
1100
+ 2
1101
+ 2
1102
+ 0
1103
+ 0
1104
+ 1
1105
+ 0
1106
+ 0
1107
+ 0
1108
+ 0
1109
+ 0
1110
+ 0
1111
+ 0
1112
+ 0
1113
+ 0
1114
+ 0
1115
+ 0
1116
+ 1
1117
+ 0
1118
+ 1
1119
+ 0
1120
+ 0
1121
+ 0
1122
+ 0
1123
+ 0
1124
+ 0
1125
+ 1
1126
+ 1
1127
+ 0
1128
+ 1
1129
+ 0
1130
+ 0
1131
+ 0
1132
+ 2
1133
+ 0
1134
+ 0
1135
+ 0
1136
+ 0
1137
+ 0
1138
+ 2
1139
+ 1
1140
+ 0
1141
+ 0
1142
+ 0
1143
+ 0
1144
+ 0
1145
+ 1
1146
+ 0
1147
+ 0
1148
+ 0
1149
+ 0
1150
+ 0
1151
+ 0
1152
+ 0
1153
+ 0
1154
+ 0
1155
+ 0
1156
+ 0
1157
+ 1
1158
+ 0
1159
+ 0
1160
+ 0
1161
+ 0
1162
+ 0
1163
+ 0
1164
+ 2
1165
+ 0
1166
+ 0
1167
+ 2
1168
+ 0
1169
+ 0
1170
+ 1
1171
+ 0
1172
+ 1
1173
+ 0
1174
+ 0
1175
+ 1
1176
+ 0
1177
+ 2
1178
+ 0
1179
+ 1
1180
+ 0
1181
+ 0
1182
+ 0
1183
+ 0
1184
+ 0
1185
+ 0
1186
+ 0
1187
+ 0
1188
+ 0
1189
+ 0
1190
+ 0
1191
+ 1
1192
+ 0
1193
+ 0
1194
+ 0
1195
+ 0
1196
+ 1
1197
+ 1
1198
+ 0
1199
+ 0
1200
+ 1
1201
+ 2
1202
+ 1
1203
+ 0
1204
+ 0
1205
+ 0
1206
+ 0
1207
+ 0
1208
+ 0
1209
+ 0
1210
+ 0
1211
+ 0
1212
+ 1
1213
+ 1
1214
+ 0
1215
+ 0
1216
+ 0
1217
+ 0
1218
+ 1
1219
+ 1
1220
+ 0
1221
+ 1
1222
+ 1
1223
+ 1
1224
+ 0
1225
+ 0
1226
+ 0
1227
+ 0
1228
+ 0
1229
+ 2
1230
+ 0
1231
+ 0
1232
+ 0
1233
+ 0
1234
+ 0
1235
+ 0
1236
+ 0
1237
+ 0
1238
+ 0
1239
+ 1
1240
+ 0
1241
+ 0
1242
+ 0
1243
+ 1
1244
+ 0
1245
+ 0
1246
+ 0
1247
+ 0
1248
+ 1
1249
+ 0
1250
+ 1
1251
+ 0
1252
+ 0
1253
+ 0
1254
+ 0
1255
+ 0
1256
+ 0
1257
+ 0
1258
+ 1
1259
+ 1
1260
+ 0
1261
+ 0
1262
+ 0
1263
+ 0
1264
+ 0
1265
+ 0
1266
+ 0
1267
+ 0
1268
+ 0
1269
+ 0
1270
+ 0
1271
+ 0
1272
+ 2
1273
+ 1
1274
+ 0
1275
+ 0
1276
+ 0
1277
+ 2
1278
+ 0
1279
+ 0
1280
+ 1
1281
+ 1
1282
+ 0
1283
+ 1
1284
+ 1
1285
+ 0
1286
+ 1
1287
+ 0
1288
+ 0
1289
+ 2
1290
+ 0
1291
+ 0
1292
+ 0
1293
+ 0
1294
+ 0
1295
+ 0
1296
+ 0
1297
+ 1
1298
+ 0
1299
+ 1
1300
+ 0
1301
+ 2
1302
+ 0
1303
+ 0
1304
+ 1
1305
+ 0
1306
+ 0
1307
+ 0
1308
+ 0
1309
+ 0
1310
+ 0
1311
+ 0
1312
+ 0
1313
+ 0
1314
+ 0
1315
+ 0
1316
+ 1
1317
+ 0
1318
+ 0
1319
+ 0
1320
+ 0
1321
+ 0
1322
+ 0
1323
+ 1
1324
+ 0
1325
+ 2
1326
+ 0
1327
+ 2
1328
+ 0
1329
+ 0
1330
+ 0
1331
+ 0
1332
+ 0
1333
+ 0
1334
+ 0
1335
+ 0
1336
+ 0
1337
+ 0
1338
+ 0
1339
+ 0
1340
+ 1
1341
+ 1
1342
+ 0
1343
+ 0
1344
+ 0
1345
+ 0
1346
+ 0
1347
+ 0
1348
+ 0
1349
+ 0
1350
+ 0
1351
+ 0
1352
+ 0
1353
+ 0
1354
+ 0
1355
+ 0
1356
+ 0
1357
+ 0
1358
+ 0
1359
+ 0
1360
+ 0
1361
+ 0
1362
+ 0
1363
+ 1
1364
+ 1
1365
+ 1
1366
+ 2
1367
+ 0
1368
+ 0
1369
+ 0
1370
+ 2
1371
+ 0
1372
+ 0
1373
+ 1
1374
+ 0
1375
+ 1
1376
+ 0
1377
+ 0
1378
+ 0
1379
+ 0
1380
+ 0
1381
+ 0
1382
+ 0
1383
+ 0
1384
+ 1
1385
+ 2
1386
+ 0
1387
+ 1
1388
+ 0
1389
+ 0
1390
+ 0
1391
+ 0
1392
+ 0
1393
+ 0
1394
+ 0
1395
+ 0
1396
+ 1
1397
+ 1
1398
+ 0
1399
+ 0
1400
+ 0
1401
+ 1
1402
+ 0
1403
+ 0
1404
+ 0
1405
+ 0
1406
+ 0
1407
+ 0
1408
+ 2
1409
+ 0
1410
+ 0
1411
+ 0
1412
+ 0
1413
+ 0
1414
+ 0
1415
+ 0
1416
+ 0
1417
+ 0
1418
+ 0
1419
+ 1
1420
+ 2
1421
+ 0
1422
+ 0
1423
+ 0
1424
+ 0
1425
+ 0
1426
+ 0
1427
+ 0
1428
+ 0
1429
+ 0
1430
+ 0
1431
+ 0
1432
+ 0
1433
+ 1
1434
+ 0
1435
+ 0
1436
+ 0
1437
+ 1
1438
+ 0
1439
+ 0
1440
+ 0
1441
+ 0
1442
+ 0
1443
+ 1
1444
+ 1
1445
+ 2
1446
+ 0
1447
+ 1
1448
+ 0
1449
+ 1
1450
+ 0
1451
+ 0
1452
+ 0
1453
+ 0
1454
+ 0
1455
+ 0
1456
+ 0
1457
+ 2
1458
+ 0
1459
+ 1
1460
+ 0
1461
+ 1
1462
+ 0
1463
+ 0
1464
+ 0
1465
+ 0
1466
+ 1
1467
+ 1
1468
+ 0
1469
+ 0
1470
+ 0
1471
+ 0
1472
+ 0
1473
+ 0
1474
+ 0
1475
+ 0
1476
+ 0
1477
+ 0
1478
+ 0
1479
+ 0
1480
+ 0
1481
+ 0
1482
+ 0
1483
+ 1
1484
+ 1
1485
+ 1
1486
+ 0
1487
+ 0
1488
+ 0
1489
+ 0
1490
+ 0
1491
+ 1
1492
+ 0
1493
+ 1
1494
+ 0
1495
+ 0
1496
+ 0
1497
+ 0
1498
+ 0
1499
+ 0
1500
+ 0
1501
+ 0
1502
+ 0
1503
+ 0
1504
+ 0
1505
+ 0
1506
+ 0
1507
+ 0
1508
+ 2
1509
+ 0
1510
+ 2
1511
+ 1
1512
+ 1
1513
+ 1
1514
+ 0
1515
+ 0
1516
+ 0
1517
+ 1
1518
+ 0
1519
+ 0
1520
+ 0
1521
+ 1
1522
+ 0
1523
+ 1
1524
+ 0
1525
+ 1
1526
+ 0
1527
+ 0
1528
+ 0
1529
+ 1
1530
+ 0
1531
+ 0
1532
+ 0
1533
+ 0
1534
+ 0
1535
+ 0
1536
+ 0
1537
+ 2
1538
+ 0
1539
+ 0
1540
+ 0
1541
+ 0
1542
+ 0
1543
+ 0
1544
+ 0
1545
+ 0
1546
+ 0
1547
+ 0
1548
+ 1
1549
+ 0
1550
+ 2
1551
+ 0
1552
+ 0
1553
+ 0
1554
+ 2
1555
+ 2
1556
+ 0
1557
+ 0
1558
+ 0
1559
+ 2
1560
+ 0
1561
+ 1
1562
+ 0
1563
+ 0
1564
+ 0
1565
+ 0
1566
+ 2
1567
+ 0
1568
+ 0
1569
+ 0
1570
+ 1
1571
+ 0
1572
+ 0
1573
+ 0
1574
+ 0
1575
+ 0
1576
+ 0
1577
+ 2
1578
+ 0
1579
+ 0
1580
+ 0
1581
+ 1
1582
+ 0
1583
+ 0
1584
+ 0
1585
+ 0
1586
+ 0
1587
+ 0
1588
+ 1
1589
+ 0
1590
+ 0
1591
+ 0
1592
+ 1
1593
+ 0
1594
+ 0
1595
+ 0
1596
+ 1
1597
+ 0
1598
+ 2
1599
+ 0
1600
+ 0
1601
+ 0
1602
+ 1
1603
+ 0
1604
+ 0
1605
+ 0
1606
+ 0
1607
+ 1
1608
+ 1
1609
+ 0
1610
+ 0
1611
+ 2
1612
+ 0
1613
+ 1
1614
+ 0
1615
+ 0
1616
+ 0
1617
+ 1
1618
+ 1
1619
+ 0
1620
+ 0
1621
+ 0
1622
+ 0
1623
+ 0
1624
+ 0
1625
+ 0
1626
+ 0
1627
+ 0
1628
+ 0
1629
+ 2
1630
+ 0
1631
+ 1
1632
+ 0
1633
+ 1
1634
+ 0
1635
+ 0
1636
+ 0
1637
+ 0
1638
+ 0
1639
+ 0
1640
+ 1
1641
+ 1
1642
+ 0
1643
+ 0
1644
+ 0
1645
+ 2
1646
+ 0
1647
+ 0
1648
+ 0
1649
+ 1
1650
+ 0
1651
+ 0
1652
+ 0
1653
+ 1
1654
+ 0
1655
+ 2
1656
+ 0
1657
+ 0
1658
+ 0
1659
+ 0
1660
+ 0
1661
+ 0
1662
+ 0
1663
+ 0
1664
+ 0
1665
+ 0
1666
+ 0
1667
+ 2
1668
+ 0
1669
+ 1
1670
+ 0
1671
+ 0
1672
+ 0
1673
+ 0
1674
+ 0
1675
+ 0
1676
+ 0
1677
+ 0
1678
+ 0
1679
+ 0
1680
+ 0
1681
+ 0
1682
+ 0
1683
+ 0
1684
+ 0
1685
+ 0
1686
+ 2
1687
+ 1
1688
+ 1
1689
+ 0
1690
+ 0
1691
+ 0
1692
+ 0
1693
+ 1
1694
+ 0
1695
+ 0
1696
+ 0
1697
+ 1
1698
+ 0
1699
+ 0
1700
+ 0
1701
+ 0
1702
+ 2
1703
+ 0
1704
+ 0
1705
+ 0
1706
+ 0
1707
+ 1
1708
+ 0
1709
+ 0
1710
+ 0
1711
+ 0
1712
+ 0
1713
+ 0
1714
+ 0
1715
+ 0
1716
+ 0
1717
+ 0
1718
+ 0
1719
+ 0
1720
+ 1
1721
+ 1
1722
+ 0
1723
+ 0
1724
+ 1
1725
+ 2
1726
+ 2
1727
+ 0
1728
+ 2
1729
+ 0
1730
+ 0
1731
+ 0
1732
+ 0
1733
+ 0
1734
+ 0
1735
+ 2
1736
+ 0
1737
+ 1
1738
+ 1
1739
+ 0
1740
+ 0
1741
+ 0
1742
+ 0
1743
+ 0
1744
+ 0
1745
+ 0
1746
+ 0
1747
+ 0
1748
+ 0
1749
+ 0
1750
+ 0
1751
+ 0
1752
+ 0
1753
+ 0
1754
+ 0
1755
+ 0
1756
+ 1
1757
+ 0
1758
+ 1
1759
+ 1
1760
+ 2
1761
+ 0
1762
+ 1
1763
+ 0
1764
+ 0
1765
+ 0
1766
+ 0
1767
+ 2
1768
+ 0
1769
+ 0
1770
+ 0
1771
+ 1
1772
+ 0
1773
+ 0
1774
+ 0
1775
+ 0
1776
+ 0
1777
+ 0
1778
+ 0
1779
+ 0
1780
+ 0
1781
+ 0
1782
+ 0
1783
+ 0
1784
+ 2
1785
+ 0
1786
+ 0
1787
+ 0
1788
+ 0
1789
+ 0
1790
+ 0
1791
+ 1
1792
+ 0
1793
+ 0
1794
+ 0
1795
+ 1
1796
+ 0
1797
+ 0
1798
+ 1
1799
+ 0
1800
+ 1
1801
+ 0
1802
+ 2
1803
+ 0
1804
+ 0
1805
+ 0
1806
+ 1
1807
+ 0
1808
+ 0
1809
+ 2
1810
+ 0
1811
+ 0
1812
+ 0
1813
+ 1
1814
+ 0
1815
+ 2
1816
+ 0
1817
+ 0
1818
+ 0
1819
+ 0
1820
+ 0
1821
+ 0
1822
+ 0
1823
+ 0
1824
+ 2
1825
+ 2
1826
+ 1
1827
+ 0
1828
+ 1
1829
+ 1
1830
+ 0
1831
+ 0
1832
+ 1
1833
+ 0
1834
+ 0
1835
+ 0
1836
+ 2
1837
+ 0
1838
+ 1
1839
+ 0
1840
+ 0
1841
+ 1
1842
+ 0
1843
+ 1
1844
+ 0
1845
+ 0
1846
+ 0
1847
+ 0
1848
+ 1
1849
+ 0
1850
+ 0
1851
+ 0
1852
+ 1
1853
+ 0
1854
+ 1
1855
+ 1
1856
+ 1
1857
+ 1
1858
+ 0
1859
+ 1
1860
+ 2
1861
+ 1
1862
+ 1
1863
+ 1
1864
+ 0
1865
+ 0
1866
+ 2
1867
+ 0
1868
+ 0
1869
+ 0
1870
+ 0
1871
+ 0
1872
+ 0
1873
+ 0
1874
+ 0
1875
+ 2
1876
+ 2
1877
+ 0
1878
+ 0
1879
+ 0
1880
+ 1
1881
+ 0
1882
+ 1
1883
+ 0
1884
+ 1
1885
+ 0
1886
+ 0
1887
+ 1
1888
+ 1
1889
+ 0
1890
+ 0
1891
+ 0
1892
+ 0
1893
+ 0
1894
+ 0
1895
+ 0
1896
+ 0
1897
+ 1
1898
+ 0
1899
+ 0
1900
+ 1
1901
+ 0
1902
+ 1
1903
+ 0
1904
+ 1
1905
+ 0
1906
+ 0
1907
+ 0
1908
+ 0
1909
+ 0
1910
+ 0
1911
+ 0
1912
+ 0
1913
+ 0
1914
+ 0
1915
+ 0
1916
+ 0
1917
+ 0
1918
+ 0
1919
+ 0
1920
+ 0
1921
+ 0
1922
+ 0
1923
+ 1
1924
+ 2
1925
+ 0
1926
+ 0
1927
+ 0
1928
+ 0
1929
+ 0
1930
+ 0
1931
+ 0
1932
+ 0
1933
+ 0
1934
+ 0
1935
+ 1
1936
+ 0
1937
+ 0
1938
+ 0
1939
+ 0
1940
+ 0
1941
+ 0
1942
+ 0
1943
+ 0
1944
+ 0
1945
+ 0
1946
+ 1
1947
+ 0
1948
+ 0
1949
+ 0
1950
+ 0
1951
+ 0
1952
+ 0
1953
+ 0
1954
+ 0
1955
+ 0
1956
+ 0
1957
+ 0
1958
+ 0
1959
+ 0
1960
+ 0
1961
+ 0
1962
+ 2
1963
+ 0
1964
+ 0
1965
+ 0
1966
+ 0
1967
+ 0
1968
+ 1
1969
+ 0
1970
+ 0
1971
+ 0
1972
+ 0
1973
+ 2
1974
+ 1
1975
+ 2
1976
+ 1
1977
+ 0
1978
+ 0
1979
+ 1
1980
+ 0
1981
+ 0
1982
+ 0
1983
+ 0
1984
+ 0
1985
+ 0
1986
+ 0
1987
+ 0
1988
+ 2
1989
+ 0
1990
+ 0
1991
+ 0
1992
+ 0
1993
+ 1
1994
+ 1
1995
+ 0
1996
+ 0
1997
+ 0
1998
+ 1
1999
+ 0
2000
+ 0
2001
+ 0
2002
+ 0
2003
+ 0
2004
+ 1
2005
+ 0
2006
+ 1
2007
+ 2
2008
+ 1
2009
+ 0
2010
+ 0
2011
+ 2
2012
+ 0
2013
+ 0
2014
+ 2
2015
+ 0
2016
+ 0
2017
+ 0
2018
+ 0
2019
+ 0
2020
+ 0
2021
+ 0
2022
+ 0
2023
+ 0
2024
+ 1
2025
+ 0
2026
+ 0
2027
+ 0
2028
+ 0
2029
+ 0
2030
+ 0
2031
+ 1
2032
+ 0
2033
+ 0
2034
+ 0
2035
+ 0
2036
+ 0
2037
+ 0
2038
+ 0
2039
+ 0
2040
+ 0
2041
+ 0
2042
+ 1
2043
+ 0
2044
+ 0
2045
+ 1
2046
+ 0
2047
+ 2
2048
+ 1
2049
+ 0
2050
+ 1
2051
+ 0
2052
+ 1
2053
+ 1
2054
+ 0
2055
+ 0
2056
+ 0
2057
+ 0
2058
+ 1
2059
+ 0
2060
+ 0
2061
+ 0
2062
+ 0
2063
+ 0
2064
+ 0
2065
+ 1
2066
+ 0
2067
+ 1
2068
+ 0
2069
+ 0
2070
+ 0
2071
+ 2
2072
+ 2
2073
+ 0
2074
+ 0
2075
+ 0
2076
+ 0
2077
+ 0
2078
+ 1
2079
+ 0
2080
+ 0
2081
+ 0
2082
+ 1
2083
+ 0
2084
+ 0
2085
+ 0
2086
+ 0
2087
+ 0
2088
+ 0
2089
+ 0
2090
+ 0
2091
+ 0
2092
+ 0
2093
+ 1
2094
+ 0
2095
+ 0
2096
+ 0
2097
+ 0
2098
+ 0
2099
+ 0
2100
+ 0
2101
+ 0
2102
+ 1
2103
+ 1
2104
+ 0
2105
+ 0
2106
+ 0
2107
+ 0
2108
+ 0
2109
+ 0
2110
+ 0
2111
+ 2
2112
+ 0
2113
+ 2
2114
+ 1
2115
+ 1
2116
+ 0
2117
+ 1
2118
+ 0
2119
+ 1
2120
+ 0
2121
+ 0
2122
+ 1
2123
+ 0
2124
+ 0
2125
+ 0
2126
+ 0
2127
+ 2
2128
+ 0
2129
+ 0
2130
+ 1
2131
+ 0
2132
+ 0
2133
+ 0
2134
+ 1
2135
+ 0
2136
+ 1
2137
+ 0
2138
+ 1
2139
+ 0
2140
+ 1
2141
+ 0
2142
+ 1
2143
+ 1
2144
+ 0
2145
+ 0
2146
+ 0
2147
+ 0
2148
+ 0
2149
+ 0
2150
+ 0
2151
+ 1
2152
+ 0
2153
+ 0
2154
+ 0
2155
+ 0
2156
+ 0
2157
+ 0
2158
+ 0
2159
+ 0
2160
+ 0
2161
+ 0
2162
+ 0
2163
+ 0
2164
+ 0
2165
+ 0
2166
+ 1
2167
+ 1
2168
+ 0
2169
+ 0
2170
+ 0
2171
+ 0
2172
+ 0
2173
+ 0
2174
+ 0
2175
+ 2
2176
+ 0
2177
+ 0
2178
+ 0
2179
+ 0
2180
+ 0
2181
+ 1
2182
+ 0
2183
+ 1
2184
+ 0
2185
+ 1
2186
+ 1
2187
+ 0
2188
+ 1
2189
+ 0
2190
+ 0
2191
+ 0
2192
+ 0
2193
+ 1
2194
+ 1
2195
+ 0
2196
+ 0
2197
+ 0
2198
+ 0
2199
+ 0
2200
+ 1
2201
+ 0
2202
+ 1
2203
+ 1
2204
+ 0
2205
+ 0
2206
+ 0
2207
+ 0
2208
+ 0
2209
+ 0
2210
+ 0
2211
+ 0
2212
+ 0
2213
+ 0
2214
+ 0
2215
+ 1
2216
+ 1
2217
+ 0
2218
+ 0
2219
+ 0
2220
+ 0
2221
+ 0
2222
+ 0
2223
+ 0
2224
+ 0
2225
+ 0
2226
+ 0
2227
+ 0
2228
+ 0
2229
+ 0
2230
+ 0
2231
+ 0
2232
+ 0
2233
+ 0
2234
+ 0
2235
+ 0
2236
+ 0
2237
+ 0
2238
+ 0
2239
+ 2
2240
+ 0
2241
+ 2
2242
+ 0
2243
+ 1
2244
+ 0
2245
+ 0
2246
+ 0
2247
+ 0
2248
+ 0
2249
+ 0
2250
+ 0
2251
+ 0
2252
+ 1
2253
+ 0
2254
+ 0
2255
+ 0
2256
+ 0
2257
+ 0
2258
+ 0
2259
+ 0
2260
+ 0
2261
+ 0
2262
+ 0
2263
+ 0
2264
+ 1
2265
+ 1
2266
+ 0
2267
+ 1
2268
+ 1
2269
+ 2
2270
+ 0
2271
+ 0
2272
+ 1
2273
+ 0
2274
+ 1
2275
+ 0
2276
+ 0
2277
+ 0
2278
+ 0
2279
+ 0
2280
+ 2
2281
+ 0
2282
+ 2
2283
+ 0
2284
+ 1
2285
+ 0
2286
+ 1
2287
+ 0
2288
+ 0
2289
+ 0
2290
+ 0
2291
+ 0
2292
+ 1
2293
+ 0
2294
+ 0
2295
+ 1
2296
+ 0
2297
+ 0
2298
+ 0
2299
+ 0
2300
+ 1
2301
+ 0
2302
+ 0
2303
+ 0
2304
+ 0
2305
+ 0
2306
+ 0
2307
+ 0
2308
+ 0
2309
+ 1
2310
+ 0
2311
+ 0
2312
+ 0
2313
+ 0
2314
+ 0
2315
+ 2
2316
+ 0
2317
+ 0
2318
+ 0
2319
+ 1
2320
+ 1
2321
+ 0
2322
+ 0
2323
+ 1
2324
+ 0
2325
+ 0
2326
+ 0
2327
+ 0
2328
+ 0
2329
+ 0
2330
+ 0
2331
+ 0
2332
+ 2
2333
+ 0
2334
+ 0
2335
+ 0
2336
+ 0
2337
+ 0
2338
+ 0
2339
+ 1
2340
+ 0
2341
+ 0
2342
+ 1
2343
+ 0
2344
+ 0
2345
+ 1
2346
+ 0
2347
+ 0
2348
+ 0
2349
+ 0
2350
+ 0
2351
+ 2
2352
+ 0
2353
+ 0
2354
+ 2
2355
+ 0
2356
+ 0
2357
+ 0
2358
+ 0
2359
+ 0
2360
+ 0
2361
+ 0
2362
+ 0
2363
+ 0
2364
+ 0
2365
+ 0
2366
+ 0
2367
+ 0
2368
+ 0
2369
+ 0
2370
+ 0
2371
+ 0
2372
+ 1
2373
+ 0
2374
+ 0
2375
+ 1
2376
+ 0
2377
+ 0
2378
+ 0
2379
+ 0
2380
+ 0
2381
+ 1
2382
+ 0
2383
+ 0
2384
+ 0
2385
+ 2
2386
+ 0
2387
+ 0
2388
+ 0
2389
+ 0
2390
+ 0
2391
+ 1
2392
+ 0
2393
+ 0
2394
+ 0
2395
+ 0
2396
+ 2
2397
+ 0
2398
+ 0
2399
+ 1
2400
+ 0
2401
+ 2
2402
+ 0
2403
+ 0
2404
+ 0
2405
+ 0
2406
+ 0
2407
+ 0
2408
+ 1
2409
+ 0
2410
+ 1
2411
+ 0
2412
+ 0
2413
+ 0
2414
+ 0
2415
+ 0
2416
+ 2
2417
+ 0
2418
+ 1
2419
+ 1
2420
+ 1
2421
+ 1
2422
+ 0
2423
+ 0
2424
+ 0
2425
+ 0
2426
+ 0
2427
+ 0
2428
+ 1
2429
+ 0
2430
+ 2
2431
+ 1
2432
+ 0
2433
+ 1
2434
+ 0
2435
+ 0
2436
+ 0
2437
+ 1
2438
+ 0
2439
+ 0
2440
+ 1
2441
+ 0
2442
+ 0
2443
+ 0
2444
+ 1
2445
+ 0
2446
+ 0
2447
+ 0
2448
+ 0
2449
+ 0
2450
+ 0
2451
+ 0
2452
+ 2
2453
+ 2
2454
+ 0
2455
+ 1
2456
+ 0
2457
+ 0
2458
+ 1
2459
+ 0
2460
+ 0
2461
+ 0
2462
+ 0
2463
+ 0
2464
+ 0
2465
+ 0
2466
+ 0
2467
+ 0
2468
+ 2
2469
+ 0
2470
+ 0
2471
+ 0
2472
+ 0
2473
+ 0
2474
+ 1
2475
+ 0
2476
+ 0
2477
+ 0
2478
+ 0
2479
+ 0
2480
+ 0
2481
+ 0
2482
+ 0
2483
+ 0
2484
+ 0
2485
+ 1
2486
+ 0
2487
+ 1
2488
+ 0
2489
+ 0
2490
+ 2
2491
+ 0
2492
+ 0
2493
+ 0
2494
+ 0
2495
+ 0
2496
+ 1
2497
+ 1
2498
+ 1
2499
+ 0
2500
+ 0
2501
+ 0
2502
+ 0
2503
+ 0
2504
+ 1
2505
+ 0
2506
+ 0
2507
+ 0
2508
+ 0
2509
+ 0
2510
+ 0
2511
+ 0
2512
+ 0
2513
+ 1
2514
+ 0
2515
+ 0
2516
+ 0
2517
+ 0
2518
+ 1
2519
+ 0
2520
+ 1
2521
+ 0
2522
+ 0
2523
+ 1
2524
+ 0
2525
+ 0
2526
+ 0
2527
+ 0
2528
+ 0
2529
+ 0
2530
+ 1
2531
+ 1
2532
+ 0
2533
+ 0
2534
+ 0
2535
+ 0
2536
+ 0
2537
+ 0
2538
+ 0
2539
+ 2
2540
+ 0
2541
+ 0
2542
+ 0
2543
+ 0
2544
+ 0
2545
+ 0
2546
+ 0
2547
+ 0
2548
+ 1
2549
+ 1
2550
+ 0
2551
+ 1
2552
+ 1
2553
+ 0
2554
+ 1
2555
+ 0
2556
+ 0
2557
+ 0
2558
+ 0
2559
+ 0
2560
+ 0
2561
+ 0
2562
+ 1
2563
+ 0
2564
+ 1
2565
+ 1
2566
+ 0
2567
+ 0
2568
+ 2
2569
+ 0
2570
+ 0
2571
+ 1
2572
+ 0
2573
+ 1
2574
+ 1
2575
+ 0
2576
+ 0
2577
+ 0
2578
+ 1
2579
+ 0
2580
+ 0
2581
+ 0
2582
+ 0
2583
+ 2
2584
+ 0
2585
+ 0
2586
+ 2
2587
+ 0
2588
+ 0
2589
+ 0
2590
+ 1
2591
+ 0
2592
+ 2
2593
+ 1
2594
+ 0
2595
+ 0
2596
+ 0
2597
+ 0
2598
+ 0
2599
+ 0
2600
+ 0
2601
+ 0
2602
+ 0
2603
+ 0
2604
+ 0
2605
+ 0
2606
+ 0
2607
+ 0
2608
+ 0
2609
+ 0
2610
+ 0
2611
+ 0
2612
+ 1
2613
+ 0
2614
+ 0
2615
+ 0
2616
+ 0
2617
+ 1
2618
+ 0
2619
+ 0
2620
+ 0
2621
+ 0
2622
+ 1
2623
+ 0
2624
+ 1
2625
+ 1
2626
+ 0
2627
+ 0
2628
+ 2
2629
+ 0
2630
+ 0
2631
+ 1
2632
+ 0
2633
+ 0
2634
+ 1
2635
+ 0
2636
+ 1
2637
+ 0
2638
+ 0
2639
+ 1
2640
+ 0
2641
+ 0
2642
+ 0
2643
+ 0
2644
+ 0
2645
+ 1
2646
+ 1
2647
+ 0
2648
+ 0
2649
+ 1
2650
+ 0
2651
+ 0
2652
+ 0
2653
+ 1
2654
+ 1
2655
+ 1
2656
+ 0
2657
+ 0
2658
+ 0
2659
+ 0
2660
+ 0
2661
+ 2
2662
+ 1
2663
+ 0
2664
+ 1
2665
+ 2
2666
+ 2
2667
+ 1
2668
+ 0
2669
+ 1
2670
+ 1
2671
+ 0
2672
+ 0
2673
+ 1
2674
+ 1
2675
+ 0
2676
+ 0
2677
+ 0
2678
+ 0
2679
+ 0
2680
+ 0
2681
+ 0
2682
+ 0
2683
+ 1
2684
+ 0
2685
+ 0
2686
+ 0
2687
+ 0
2688
+ 0
2689
+ 0
2690
+ 0
2691
+ 0
2692
+ 0
2693
+ 0
2694
+ 0
2695
+ 0
2696
+ 0
2697
+ 0
2698
+ 0
2699
+ 0
2700
+ 0
2701
+ 0
2702
+ 1
2703
+ 0
2704
+ 0
2705
+ 2
2706
+ 0
2707
+ 1
2708
+ 0
2709
+ 0
2710
+ 0
2711
+ 0
2712
+ 0
2713
+ 0
2714
+ 0
2715
+ 0
2716
+ 0
2717
+ 0
2718
+ 2
2719
+ 0
2720
+ 2
2721
+ 2
2722
+ 0
2723
+ 0
2724
+ 0
2725
+ 1
2726
+ 0
2727
+ 0
2728
+ 1
2729
+ 0
2730
+ 0
2731
+ 0
2732
+ 0
2733
+ 0
2734
+ 0
2735
+ 0
2736
+ 0
2737
+ 1
2738
+ 1
2739
+ 0
2740
+ 0
2741
+ 1
2742
+ 0
2743
+ 0
2744
+ 2
2745
+ 1
2746
+ 1
2747
+ 0
2748
+ 0
2749
+ 0
2750
+ 1
2751
+ 0
2752
+ 0
2753
+ 0
2754
+ 1
2755
+ 0
2756
+ 0
2757
+ 0
2758
+ 0
2759
+ 0
2760
+ 0
2761
+ 0
2762
+ 0
2763
+ 1
2764
+ 0
2765
+ 1
2766
+ 0
2767
+ 0
2768
+ 0
2769
+ 0
2770
+ 0
2771
+ 0
2772
+ 0
2773
+ 1
2774
+ 0
2775
+ 2
2776
+ 0
2777
+ 1
2778
+ 0
2779
+ 0
2780
+ 2
2781
+ 0
2782
+ 0
2783
+ 0
2784
+ 0
2785
+ 1
2786
+ 0
2787
+ 0
2788
+ 0
2789
+ 0
2790
+ 0
2791
+ 0
2792
+ 2
2793
+ 0
2794
+ 0
2795
+ 0
2796
+ 0
2797
+ 0
2798
+ 1
2799
+ 0
2800
+ 2
2801
+ 0
2802
+ 0
2803
+ 0
2804
+ 1
2805
+ 0
2806
+ 0
2807
+ 0
2808
+ 0
2809
+ 0
2810
+ 1
2811
+ 0
2812
+ 1
2813
+ 1
2814
+ 0
2815
+ 0
2816
+ 0
2817
+ 1
2818
+ 0
2819
+ 0
2820
+ 0
2821
+ 0
2822
+ 0
2823
+ 1
2824
+ 0
2825
+ 0
2826
+ 1
2827
+ 0
2828
+ 0
2829
+ 1
2830
+ 2
2831
+ 0
2832
+ 0
2833
+ 2
2834
+ 1
2835
+ 1
2836
+ 2
2837
+ 0
2838
+ 0
2839
+ 0
2840
+ 1
2841
+ 0
2842
+ 0
2843
+ 0
2844
+ 0
2845
+ 0
2846
+ 2
2847
+ 0
2848
+ 0
2849
+ 1
2850
+ 0
2851
+ 0
2852
+ 0
2853
+ 2
2854
+ 1
2855
+ 0
2856
+ 1
2857
+ 0
2858
+ 1
2859
+ 2
2860
+ 0
2861
+ 0
2862
+ 0
2863
+ 0
2864
+ 0
2865
+ 1
2866
+ 1
2867
+ 1
2868
+ 0
2869
+ 0
2870
+ 0
2871
+ 0
2872
+ 0
2873
+ 0
2874
+ 0
2875
+ 2
2876
+ 1
2877
+ 0
2878
+ 0
2879
+ 1
2880
+ 0
2881
+ 0
2882
+ 0
2883
+ 1
2884
+ 0
2885
+ 1
2886
+ 0
2887
+ 0
2888
+ 1
2889
+ 0
2890
+ 0
2891
+ 0
2892
+ 0
2893
+ 0
2894
+ 0
2895
+ 0
2896
+ 1
2897
+ 0
2898
+ 0
2899
+ 2
2900
+ 0
2901
+ 2
2902
+ 1
2903
+ 0
2904
+ 2
2905
+ 0
2906
+ 0
2907
+ 0
2908
+ 0
2909
+ 0
2910
+ 1
2911
+ 0
2912
+ 1
2913
+ 0
2914
+ 1
2915
+ 0
2916
+ 0
2917
+ 0
2918
+ 0
2919
+ 0
2920
+ 0
2921
+ 0
2922
+ 2
2923
+ 1
2924
+ 0
2925
+ 0
2926
+ 0
2927
+ 0
2928
+ 0
2929
+ 0
2930
+ 0
2931
+ 0
2932
+ 0
2933
+ 0
2934
+ 0
2935
+ 1
2936
+ 1
2937
+ 0
2938
+ 0
2939
+ 0
2940
+ 0
2941
+ 0
2942
+ 1
2943
+ 0
2944
+ 1
2945
+ 0
2946
+ 0
2947
+ 0
2948
+ 0
2949
+ 2
2950
+ 0
2951
+ 0
2952
+ 0
2953
+ 0
2954
+ 0
2955
+ 0
2956
+ 0
2957
+ 0
2958
+ 0
2959
+ 0
2960
+ 0
2961
+ 0
2962
+ 0
2963
+ 0
2964
+ 0
2965
+ 0
2966
+ 0
2967
+ 0
2968
+ 0
2969
+ 0
2970
+ 1
2971
+ 1
2972
+ 0
2973
+ 0
2974
+ 0
2975
+ 0
2976
+ 0
2977
+ 0
2978
+ 0
2979
+ 0
2980
+ 1
2981
+ 1
2982
+ 0
2983
+ 0
2984
+ 0
2985
+ 0
2986
+ 0
2987
+ 0
2988
+ 0
2989
+ 0
2990
+ 0
2991
+ 1
2992
+ 0
2993
+ 0
2994
+ 0
2995
+ 2
2996
+ 0
2997
+ 0
2998
+ 0
2999
+ 0
3000
+ 0
3001
+ 0
3002
+ 0
3003
+ 0
3004
+ 1
3005
+ 1
3006
+ 0
3007
+ 0
3008
+ 0
3009
+ 0
3010
+ 1
3011
+ 0
3012
+ 0
3013
+ 1
3014
+ 0
3015
+ 0
3016
+ 0
3017
+ 1
3018
+ 1
3019
+ 1
3020
+ 0
3021
+ 0
3022
+ 0
3023
+ 0
3024
+ 0
3025
+ 2
3026
+ 0
3027
+ 0
3028
+ 0
3029
+ 0
3030
+ 0
3031
+ 0
3032
+ 0
3033
+ 1
3034
+ 0
3035
+ 2
3036
+ 1
3037
+ 0
3038
+ 0
3039
+ 1
3040
+ 0
3041
+ 0
3042
+ 0
3043
+ 0
3044
+ 1
3045
+ 0
3046
+ 0
3047
+ 1
3048
+ 0
3049
+ 1
3050
+ 0
3051
+ 1
3052
+ 0
3053
+ 0
3054
+ 0
3055
+ 2
3056
+ 1
3057
+ 1
3058
+ 0
3059
+ 0
3060
+ 1
3061
+ 0
3062
+ 0
3063
+ 2
3064
+ 0
3065
+ 0
3066
+ 0
3067
+ 0
3068
+ 0
3069
+ 0
3070
+ 2
3071
+ 0
3072
+ 0
3073
+ 0
3074
+ 0
3075
+ 0
3076
+ 0
3077
+ 0
3078
+ 0
3079
+ 0
3080
+ 2
3081
+ 0
3082
+ 2
3083
+ 2
3084
+ 0
3085
+ 1
3086
+ 0
3087
+ 1
3088
+ 0
3089
+ 0
3090
+ 1
3091
+ 0
3092
+ 0
3093
+ 0
3094
+ 0
3095
+ 0
3096
+ 0
3097
+ 0
3098
+ 0
3099
+ 0
3100
+ 0
3101
+ 0
3102
+ 0
3103
+ 1
3104
+ 0
3105
+ 0
3106
+ 2
3107
+ 2
3108
+ 0
3109
+ 0
3110
+ 0
3111
+ 1
3112
+ 2
3113
+ 0
3114
+ 1
3115
+ 0
3116
+ 0
3117
+ 0
3118
+ 2
3119
+ 0
3120
+ 2
3121
+ 1
3122
+ 1
3123
+ 0
3124
+ 2
3125
+ 0
3126
+ 0
3127
+ 0
3128
+ 1
3129
+ 0
3130
+ 2
3131
+ 0
3132
+ 0
3133
+ 0
3134
+ 0
3135
+ 0
3136
+ 0
3137
+ 0
3138
+ 0
3139
+ 0
3140
+ 1
3141
+ 1
3142
+ 0
3143
+ 0
3144
+ 0
3145
+ 0
3146
+ 0
3147
+ 2
3148
+ 0
3149
+ 0
3150
+ 2
3151
+ 0
3152
+ 0
3153
+ 0
3154
+ 2
3155
+ 0
3156
+ 0
3157
+ 0
3158
+ 0
3159
+ 0
3160
+ 0
3161
+ 0
3162
+ 2
3163
+ 0
3164
+ 0
3165
+ 0
3166
+ 0
3167
+ 0
3168
+ 0
3169
+ 0
3170
+ 1
3171
+ 0
3172
+ 0
3173
+ 0
data/bow/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "bow_bow_(ship)", "1": "bow_bow_and_arrow", "2": "bow_bow_(music)"}
data/bow/test.data.txt ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 14 one torpedo struck her forward of her bridge , blowing off most of her bow and damaging her beyond economical repair .
2
+ 36 the most notable event of her career took place while she was part of the escort of an arctic convoy in the barents sea on 11 november 1944 ; the german submarine u-365 blew the entire bow off of the british destroyer with a g7es ( '' gnat '' ) torpedo at , and bahamas took cassandra under tow stern-first toward the kola inlet in the soviet union .
3
+ 22 though the game uses two light guns styled after pump-action shotguns , the player may choose from three weapons in-game : a bow , shotgun or rifle ( however , each player is also given a rocket launcher with one rocket in it for every level that is capable of killing any one dinosaur with a single shot ) .
4
+ 16 charles peccatte ( 14 october 1850 -- 22 october 1918 ) was a french archetier ( bow maker ) .
5
+ 2 their simple bow had a short range and were ineffective against even leather armor at a range of 50 to 100 meters .
6
+ 7 humans have developed projectile-launching devices such as bow , guns , slings , and rockets .
7
+ 18 the design is characterized by a wide , flat bottom , flared sides , a narrow , flat bow , and a pointed stern .
8
+ 12 zaanland soon assumed a heavy list and began to sink by the bow .
9
+ 16 each mt ( nicknamed : '' little boats '' ) carried a explosive charge inside their bow .
10
+ 33 looking out the hell hole head -- bathroom or latrine , a nautical term from the days of sailing ships when the designated place to defecate and urinate was forward , at the bow or '' head '' of the ship .
11
+ 17 on 2 april 1908 , she accidentally collided with the destroyer when the destroyer crossed berwick s bow during a night exercise in the english channel , south of the isle of wight .
12
+ 20 as built , her main armament initially consisted of two l/35 krupp cannons mounted individually on rotating platforms in the bow and stern , with a supply of 200 rounds per gun .
13
+ 16 making about 13 knots and her engines in full reverse , sea witch rammed its ice-reinforced bow into the starboard side of the esso brussels between the midship and aft deckhouses , piercing three of the esso brussels ' cargo tanks and locking the two ships together .
14
+ 1 her bow sits upright draped with anchor chains .
15
+ 11 he has a pseudodragon familiar called beau and an intelligent magical bow called swiftflight , a present from his half-brother tyresia .
16
+ 1 the bow is usually more curved than that of the violin .
17
+ 9 with a heavy projection at the foot of the bow , sheathed with metal , usually bronze , a ship could incapacitate an enemy ship by punching a hole in its planking .
18
+ 1 the bow design and front half of the vessel was substantially identical to the previous yarrow-built , whereas the aft section was a copy of the previous thornycroft-built .
19
+ 16 they are mostly grouped according to their district and to the weapon that they used : bow , crossbow or gun .
20
+ 18 as the attacker disappeared in the murk tally-ho took on a list to port and assumed a marked bow - down attitude .
21
+ 27 the torpedo struck between frames 18 and 24 at about below blakeley ' s water line , and the force of the impact blew off of her bow and forecastle .
22
+ 7 sei bright suffered slight damaged to her bow .
23
+ 21 in january , 1872 , oceanic underwent a refit , during which a large forecastle was added to help prevent the bow being during high seas .
24
+ 13 morris then returned to kerama retto where temporary repairs somewhat corrected her demolished bow and subsequent draft of 18 feet 3 inches , her large protrusion of plating on the starboard side , and her damaged steering .
25
+ 18 in the roadblock , one team member had to hit three different targets using three malaysian weapons : bow and arrow , a blowpipe and a spear .
26
+ 14 finally surfacing close on the starboard side of essex with its head by the bow and tail by the stern , the whale appeared to be stunned and motionless .
27
+ 21 the warrior characters are able to equip nearly all armor and mêlée weapon available in the game but can not use bow , staves , or magical spells .
28
+ 7 she had a round stern and a bow that ended in a large figurehead of vulcan , holding a hammer in one hand , and some of '' the bolts of jove '' that he had just forged in the other .
29
+ 8 early war was influenced by the development of bow , mace , and sling .
30
+ 7 the belt tapered down to at the bow , though the stern was not protected by armor at all .
31
+ 1 the bow and stern pieces of live oak were secured to the keel by an apron piece .
32
+ 33 she was caught in a typhoon off ulithi atoll on 15 september 1945 , during which winds reached ; near the eye of the storm , lst-568 was badly damaged , losing her bow doors and suffering flooding .
33
+ 5 she collided first with the bow of the nearby battleship , and then scraped along the side of the battlecruiser .
34
+ 24 there are also a variety of weapons to choose from : eleven types of rifles , three types of handguns , two types of bow , one type of crossbow and three large hunting knives for protection .
35
+ 12 soon after the last survivor was removed , the remains of the bow of the yankee blade slipped from the rock and sank .
36
+ 29 due to her skills , she accompanied the nizam ii ( mir nizam ali khan ) in three wars ; dressed in male attire , she was noted for bow and javelin skills in the wars .
37
+ 1 the bow and stern were not protected by armor at all .
38
+ 13 linea : the other main character ; a shaman who fights with a bow and offensive magic .
39
+ 17 to combat german e-boat , a qf 6-pounder gun was mounted at the very tip of the bow .
40
+ 34 note that this eight has a non-standard rigging , see '' boat rigging '' , below in the sport of rowing , each rower is numbered by boat position in ascending order from the bow to the stern ( with the exception of single sculls ) .
41
+ 25 the rake of a ships prow measures the angle at which the prow rises from the water ( the rake below water being called the bow rake ) .
42
+ 12 this course of action involved cutting the ship in two at her bow section which was eventually scrapped .
43
+ 12 his rebellion was short-lived and was suppressed by intaphrenes , darius 's bow carrier .
44
+ 66 symbols coat of arms the coat of arms of the city is divided into four parts : the upper left shows an allegory of the religious festivals of the divine shepherdess ; in the top right are the mountains of perija ; the bottom part shows the fruits and products of agriculture such as coffee , corn and cotton flowing from the horns , like the bow and arrow that make memories to the yukpa tribe , ancient inhabitants of their territory .
45
+ 6 wayuus carrying a rifle and traditional bow and arrow .
46
+ 22 summary according to the lindeman-sobel approach music is sound in motion and that sound is created when the air stream ( or bow ) meets the fingers .
47
+ 13 she displaced and she was fitted with a blunt iron ram at her bow .
48
+ 12 upon touching down on shore , soldiers or vehicles exited by the bow ramp .
49
+ 20 the portion of the hull designed to break ice is 1 3/4 inches ( 45 mm ) thick in the bow and stern sections , and 1 1/4 inches ( 32 mm ) thick amidships .
50
+ 20 the portion of the hull designed to ram ice is 1 3/4 inches thick ( 44 mm ) in the bow and stern sections , and 1 1/4 inches thick ( 32 mm ) amidships .
51
+ 14 they also developed small arrow head resembling those of native american , but no bow have been found .
52
+ 31 america , woodcut in ripa 's iconologia 1603 and the iconic image of america ( illustration , below left ) shows a native american maiden in a feathered headdress , with bow and arrow .
53
+ 25 when the planned beam and form are reached , the canoe is allowed to cool , the water is removed , and the thwart , bow and stern blocks , and gunwale caps are fitted and fastened in place .
54
+ 13 the inscription was illustrated by a life-sized bas-relief of darius , holding a bow as a sign of kingship , with his left foot on the chest of a figure lying on his back before him .
55
+ 10 a windlass room is a triangular space enclosed within the bow of a freshwater ship where the anchor windlass are located .
56
+ 16 sponsor miss elizabeth stevens , holding the sponsor 's bouquet , standing near uss stingray s bow , ready to christen her during the launching ceremonies at the fore river shipyard at quincy , massachusetts on 8 april 1909 .
57
+ 14 bowed string instruments are a subcategory of string instrument that are played by a bow rubbing the string .
58
+ 12 the ship 's follows the archetypal windjammer design , with a clipper bow and a wood-carved figurehead representing liberty in a long flowing robe and a cruiser stern bearing the argentine coat of arms in cast bronze .
59
+ 28 architecture the savu house is built on poles , ( photo ) ) and is designed to resemble a proa boat , with the front beams resembling its bow .
60
+ 12 externally , a large vehicle door and ramp was constructed at the bow and number of lifeboats were also removed .
61
+ 23 nations deco online consists of two nations , millena and rain , millena is a nation that uses weapons such as sword and bow while rain players use magic .
62
+ 1 jpg bow of the mikasa image : general togo heihachiroh .
63
+ 20 they took several prisoners and returned with a number of heads elevated on their spears or dangling from their saddle bow which had a wonderful effect in restoring the confidence of the troops .
64
+ 3 the oldest known bow was 10,000 years old and made using hoof glue .
65
+ 19 history model of ancient greek trireme with raked foresail , called artemon foresails set on foremasts between midships and bow were the first type of sail to appear after the mainsail which had been the sole standard rig on sailing vessels for millennia , down to classical antiquity .
66
+ 1 the bow drifted into the harbor , where it lay until salvaged in 1950 .
67
+ 14 sophia had been seriously damaged striking the reef , with a hole in her bow that water ran in and out of at a rate that davis estimated at 200 or 300 gallons per minute .
68
+ 9 these were mainly mounted cavalry fighting with sword , bow , and poisoned arrow .
69
+ 10 the design still came with a ram attached to the bow .
70
+ 11 these included the woomera and boomerang in australia , and the bow in some parts of melanesia and polynesia .
71
+ 20 the logo was adopted on 8 november 1979 , and it shows the god ullr of norse mythology holding a bow and three arrow .
72
+ 22 each section contains its own equipment for emptying the ballast and to provide the required services , and the addition of a bow section can facilitate the towing of the dry dock once assembled .
73
+ 9 as they lean back , towards the vessel 's bow , the blade of their oars sweeps the water towards the stern , providing forward thrust -- see lever .
74
+ 10 equipment the main projectile weapon used in goguryeo was the bow .
75
+ 41 captain victor blue and his navigator , confused about shore lights and more concerned about the minefield at the opening of long island sound made the turn at the wrong time and ran the ship aground on the island from the bow all the way aft beyond midships .
76
+ 23 these fighters required speed and needed the flexibility to turn their own bodies in any direction to use light weapons such as the bow , javelin , short swords , and later , the rifle and pistol .
77
+ 18 they are used to sound grace note , in part because since the string is not pick or bow again to produce the sound of the second note , the transition from one to the other sounds gentler and less percussive .
78
+ 34 engraving of françois xavier tourte , j. frey , 1818 françois xavier tourte ( 1747 25 april 1835 ) was a frenchman who , though trained as a watchmaker , soon changed to making bow for playing classical string instrument such as the violin .
79
+ 36 others believe that the sound is produced by the friction of grain against grain that have been coated with dried salt , in a way that is analogous to the way that the rosin on the bow produces sounds from a violin string .
80
+ 40 they have a long neck or fingerboard and a small sound box ; this sound box is made of bamboo in the so u and from a coconut in the so i. both instruments have two strings , and the bow is slid between these two strings , which are tuned at a fifth apart and always played together .
81
+ 2 with her bow thoroughly flooded , the ship was unable to make the return voyage to german ports ; her crew was evacuated and she was sunk by torpedoes fired by one of her escorts , the torpedo boat .
82
+ 38 ) the ep is composed of four tracks and is predominantly strings , electronic samples , and experimental instrumentation , such as the use of drinking glasses to generate sound or the playing of a saw with a bow .
83
+ 20 the boat was traveling at due to the bad weather when it suddenly began to take on water from the bow .
84
+ 9 courageous and skilled with both a sword and a bow , this black-haired hero aspires to becoming a knight .
85
+ 30 he possesses many plumbers ' weapons and technology , such as the '' proto-tech armor '' and '' proto-tool '' , a shape-shifting weapon that turns into a sword , bow , grappling hook , blaster , etc. rook is an extremely skilled fighter with advanced knowledge and training .
86
+ 26 because of deadline issues and financial pressures , several features were dropped from the fifth game before release , such as the ability to use a bow , the ability to play as elsa von spielburg or magnum opus ( two prominent non-player character from the game ) , and multiplayer capability .
87
+ 14 the hull was plump with a flat bottom and a heavily rounded , raised bow and stern .
88
+ 26 in tantra and purana , jagaddhatri is depicted as being the color of the morning sun , three-eyed and four-armed , holding chakra , conch , bow and arrow , clothed in red , bright jewels and nagajangopaveeta , a symbol of yoga and the brahman .
89
+ 14 it is a pear-shaped , three - stringed instrument which is played with a bow .
90
+ 35 bagpipes bell , including church bells and hawks ' bells clarion drum ( shown as a '' field drum '' ) a sharp , flat , and natural weapons axe of various types battering ram bow , including the longbow and crossbow , and arrow caltrop , displayed with one spike pointing upwards cannon , including the culverin grenade : similar in appearance to a cannonball with flames coming out of a flattened end .
91
+ 29 morgan 's concept of three major stages of social evolution ( savagery , barbarism , and civilization ) can be divided by technological milestones , like fire , the bow , and pottery in the savage era , domestication of animals , agriculture , and metalworking in the barbarian era and the alphabet and writing in the civilization era .
92
+ 50 excavations of effigy mound builders ' village sites indicated they lived in small nomad groups , hunted , fished , gathered fruits and nuts , fashioned tool of stone , wood , bone and copper , made pottery and may have been the first people in wisconsin to use the bow and arrow .
93
+ 19 at the end of september mccalla and patterson ( dd-392 ) collided , with serious damage to mccalla s bow .
94
+ 13 it is used for various purposes , including upholstery , brush , the bow of musical instruments , a hard-wearing fabric called haircloth , and for horsehair plaster , a wallcovering material formerly used in the construction industry and now found only in older buildings .
95
+ 23 there was an explosion in the lighter , and the fire spread to the bedenham , causing a violent explosion in which the bow was blown out of the water and onto gun wharf , while the rest of the ship sank .
96
+ 7 energy bows are variants of the standard bow .
97
+ 6 it would be mounted on the bow of a whale catcher , where it could be easily aimed with a wide field of view at the target .
98
+ 11 ceramic c. 25,000 bc domestication of animals , c. 15,000 bc bow , sling c. 9th millennium bc microlith c. 9th millennium bc copper c. 8000 bc agriculture and plough c. 8000 bc wheel c. 4000 bc gnomon c. 4000 bc writing system c. 3500 bc bronze c. 3300 bc salt c. 2500 bc chariot c. 2000 bc iron c. 1500 bc sundial c. 800 bc glass ca .
99
+ 7 welding of collins during assembly of collins bow section in sweden , multiple defects in the hull welding were discovered .
100
+ 5 he has a sword and bow in his arsenal of weapons .
101
+ 22 on 5 july , while outside kiska harbor , she was hit amidships by a torpedo fired by , which severed her bow , killing three crewmen .
102
+ 11 this terrifies them even more , and they crouch in the bow to hide from it .
103
+ 8 puella marionette birthplace : switzerland weapon : suzaku bow puella marionette made her first and only appearance in battle arena toshinden 4 , as an initially playable character .
104
+ 6 his ex weapon is the blaze bow .
105
+ 8 she broke apart into two pieces with the bow above the water and the stern underwater , with 7,330 barrels of bunker fuel being recorded to have been lost by the incident .
106
+ 11 spiccato is a bowing technique for string instrument in which the bow bounces lightly upon the string .
107
+ 8 king george v sustained serious damage to her bow , and was forced to return to port for repairs .
108
+ 19 having been built as an ordinary tanker in 1962 , she was refitted for this voyage with an icebreaker bow in 1968 -- 69 .
109
+ 7 there is a v-shaped berth in the bow , followed by a small head ( toilet ) to port opposite a wet-locker and shower .
110
+ 4 also they made the bow and arrow .
111
+ 8 hegor 's primary weapons are his broadsword and bow , but he can attain other weapons including a shortsword and axe .
112
+ 14 on 26 june , she steamed out of puget sound and again pointed her bow westward .
113
+ 18 keith peck in his shop 1996 keith m. peck ( 1953 1998 ) was a highly acclaimed american bow maker from evanston , illinois .
114
+ 12 it was a massive round - bilge keel ship with a bluff bow and stern , the latter relatively high , and with a gallery .
115
+ 31 these were the cruit ( a small harp ) and clairseach ( a bigger harp with typically 30 strings ) , the timpan ( a small string instrument played with a bow or plectrum ) , the feadan ( a fife ) , the buinne ( an oboe or flute ) , the guthbuinne ( a bassoon - type horn ) , the bennbuabhal and corn ( hornpipes ) , the cuislenna ( bagpipes -- see great irish warpipes ) , the stoc and sturgan ( clarion or trumpets ) , and the cnamha ( castanets ) .
116
+ 21 the kama sutra written by vātsyāyana suggested that women should regularly '' practice with sword , single-stick , quarterstaff , and bow and arrow .
117
+ 10 the wood is sometimes used in the making of archery bow , particularly as a laminate in the production of flatbow .
118
+ 10 the cimboa is composed of the instrument proper and its bow .
119
+ 3 aberdeen had clipper bow and three barque - rigged mast .
120
+ 11 the ship sank stern first , and as she did her bow rose more steeply .
121
+ 6 ; ( ; , ) a bow type armament used by malfa volekaya of svet russia .
122
+ 17 the violin is instructed in the score to play without vibrato and with minimum weight on the bow .
123
+ 9 at 2305 hrs ( berlin time ) abosso sank bow first .
124
+ 11 painting of her section patrol ( sp ) number on her bow is incomplete , and she has not yet been armed .
125
+ 24 the imperial design was probably derived from the earlier symbol of the tatars of siberia and featured two sable supporting a crown , a bow and two arrows .
126
+ 11 the number of laps and target sizes depend on age and bow type .
127
+ 23 ship launching involves many superstitions intended to invite good luck , such as christening by breaking a sacrificial bottle of champagne over the bow as the ship is named aloud and launched .
128
+ 51 '' him with the fleece they purify , brown , golden-hued , beloved of all , who with exhilarating juice goes forth to all the deities '' other characteristics indra 's weapon , which he used to kill vritra , is the ( vajra ) , though he also uses a bow , a net , and a hook .
129
+ 3 nor was a bow possible , the flat sound-board being an insuperable impediment .
130
+ 74 1.8 million years ago : fire and then cooking 500 thousand years ago ( ka ) : shelter construction 400 ka : pigment in zambia 400 ka : spear in germany 200 ka : glue in italy 160 -- 40 ka : burial 110 ka : bead in israel 77 ka : bed in south africa 64 ka : arrowhead in south africa 61 ka : sewing needle in south africa 60 ka : bow 36 ka : cloth woven from flax fiber in georgia 35 ka : flute in germany 28 ka : twisted rope 16 ka : pottery in china 6000 bce : kiln in mesopotamia 5000 - 4500 bce : lacquer in china 5000 - 4500 bce : rowing oar in china .
131
+ 4 junks featured a square-ended bow and stern , a flat-bottomed hull or carvel-shaped hull with no keel or sternpost , and solid transverse bulkheads in the place of structural ribs found in western vessels .
132
+ 1 the bow was manufactured in increasingly larger and more powerful versions to increase both the weapon range and armor penetration performance .
133
+ 6 the north pole is effectively the bow and the south pole the stern , as rama accelerates in the direction of the north pole and its drive system is at the south pole .
134
+ 23 classical stringed instruments in music for classical stringed instruments , legato is an articulation that often refers to notes played with a full bow , and played with the shortest silence , often barely perceptible , between notes .
135
+ 2 nautical terminology bow , aft , port , and starboard are nautical terms that convey an impersonal relative direction in the context of the moving frame of persons aboard a ship .
136
+ 13 straight-grained osage timber ( most is knotty and twisted ) makes very good bow .
137
+ 17 the inscription was illustrated by a life-sized bas-relief of darius i , the great , holding a bow as a sign of kingship , with his left foot on the chest of a figure lying on his back before him .
138
+ 24 the hourglass shape comprises two upper bouts , two lower bouts , and two concave c-bouts at the waist , providing clearance for the bow .
139
+ 22 weapons shooting most often refers to the use of a gun , although is also used to describe the firing of a bow or crossbow .
140
+ 19 he was depicted dressed as a soldier , as well as carrying other military equipment a mace and a bow .
141
+ 14 within twenty minutes , the lady elgin broke apart , and all but the bow section rapidly sank .
142
+ 3 san cristóbal 's bow had been shattered by the ramming and she had to ask for reinforcements .
143
+ 14 they reached a low ledge from the apaches and were pinned down by combined bow and gun fire ; two troopers were killed and one wounded .
144
+ 31 therefore , the blueprint for the previous momo - class destroyers were distributed to each shipyard , with the instructions that identical ships be produced , except with sturdier armor and bow construction .
145
+ 14 when a ship is moored or anchored , the jack is flown from the bow of the ship while the ensign is flown from the stern .
146
+ 20 the boats were also seen as not being manoeuvrable enough , as well as having an exposed bridge in a bow turret and poor ventilation .
147
+ 9 when the rounds struck the water ahead of the bow , they released their bombs .
148
+ 22 one of the famous myths in which di jun appears is that of the archer houyi , to whom he gave a bow .
149
+ 14 until recently the hull , engine room and cabin were intact with only the bow having been torn away .
150
+ 1 the bow structure of handy required strengthening , which was carried out by april 1901 .
151
+ 19 structure first part the first part shows the theme , requiring a player 's ability of right-hand and left-hand bow control as it consists of arpeggios using either alternate adjacent strings or string jumping .
152
+ 8 then , as guru tegh bahadur took his bow and aimed an arrow at the altar of magic , all of their magic and sorcery came to a sudden end .
153
+ 9 the cox sat amidships on the shoal with her bow jutting into the air while her stern flooded with water .
154
+ 16 a third aircraft evaded the gunfire , but a fourth closed rapidly on rednour s starboard bow .
155
+ 16 five crewmembers on the stockholm were killed instantly and several more were trapped in the wrecked bow .
156
+ 10 a painter is a rope that is attached to the bow of a dinghy , or other small boat , and used for tying up or towing .
157
+ 18 she is made from teak on steamed oak ribs laid in the carvel style , with a clipper bow , counter stern and a wooden canopy on 10 brass stanchion .
158
+ 20 in archery dry firing in archery , termed dry loosing , refers to the loosing of the string of a bow or other weapon without ammunition , which should never be done .
159
+ 8 sometimes , he is said to carry a bow made from an oak sapling .
160
+ 9 if the arc adb is viewed as a '' bow '' and the chord ab as its '' string '' , then the versine cd is clearly the '' arrow shaft '' .
161
+ 26 he does not use distortion or effects , preferring a '' clean '' sound , but has made occasional use of a serrated pick to '' bow '' the strings of his guitar , creating an otherworldly , harmonic-rich sound .
162
+ 1 the bow and quiver of arrows were the symbols of power in imperial mali .
163
+ 29 a trolling motor is a self-contained unit that includes an electric motor , propeller and controls , and is affixed to an angler 's boat , either at the bow or stern .
164
+ 8 hank is a ranger , with a magical bow that shoots arrows of glowing energy .
165
+ 0 bow - the front and generally sharp end of the hull .
166
+ 16 while in new york , she also had the oerlikon 20 mm cannon mounted on her bow replaced by a 3-inch ( 76.2-mm ) 50-caliber gun , and she interrupted her loading of cargo on 9 october 1942 for work on the degaussing and compass adjusting ranges .
167
+ 16 caressa & français was a distinguished firm in paris that specialized in fine musical instruments and bow .
168
+ 18 rembert wurlitzer co. was a distinguished firm in new york city that specialized in fine musical instruments and bow .
169
+ 4 aniwa immediately posted watches bow and stern to protect aniwa and her cargo .
170
+ 13 the main armament consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of 8000 meters .
171
+ 23 ship design and construction the dawn treader which is described in great detail early in the book is stated as having a gilded bow that resembles a dragon 's head and wings and is its primary feature .
172
+ 27 torkian composes music and plays several instruments , including the tar , the turkish saz , and the guitarviol , an electric guitar-like instrument that uses a bow and is adapted from a 14th-century instrument .
173
+ 12 '' the hull was flat-bottomed with an external keel , and the bow sharply angled .
174
+ 2 a new bow and forebody was constructed at sun shipbuilding and drydock company in chester , pennsylvania and welded there to the salvaged stern section , with the bridge and crew accommodations aft .
175
+ 9 when captain dugat realized he had swung across the bow of a steamer , he blew one blast on the whistle and ordered a hard turn , but it was too late .
176
+ 4 she struck the island bow first , and when capt. blunt attempted to back away the stern was struck , removing the ship 's rudder .
177
+ 3 originally , both bow - mounted and stern - mounted tubes were used but the latter eventually fell out of favor , and today only bow-mounted installations are still employed .
178
+ 17 its draft fluctuates more than a traditional ship , but at half load it is at the bow and at the stern .
179
+ 1 the bow is the most prominent portion of the wreck with the stern damaged by depth charges .
180
+ 10 '' bolwerk '' was also directly borrowed as bulwark ; bow ( front of a ship ) : from old norse bogr , low german boog or dutch boeg ; : from middle dutch or low german brac ( = '' salty , '' also '' worthless '' ) ; brandy ( wine ) : from brandewijn ( literally '' burnt wine '' ) ; brooklyn : after the town of breukelen near utrecht ; bruin / bruins : archaic english word for brown bear , derived from the dutch word for brown bruin .
181
+ 10 the other end of the forestay is attached to the bow of the boat .
182
+ 9 the abandoned torpedo room flooded , making the boat bow heavy .
183
+ 22 in medieval shipbuilding , a ship of war was usually equipped with a tall , multi-deck castle - like structure in the bow of the ship .
184
+ 16 he divided and defined the stages by technological inventions , such as use of fire , bow , pottery in the savage era ; domestication of animals , agriculture , and metalworking in the barbarian era ; and development of the alphabet and writing in the civilization era .
185
+ 4 līndəi literally means '' bow '' in pashto .
186
+ 7 banks dories have long overhangs at the bow and stern which helps them lift over waves .
187
+ 17 the lord nelson s were the last british battleships to have an armored ram built into their bow .
188
+ 19 masts , a french-built ship-rigged frigate of the late 18th century the masts of a full-rigged ship , from bow to stern , are : foremast , which is the second tallest mast mainmast , the tallest mizzenmast , the third tallest jiggermast , which may not be present but will be fourth tallest if so there is no standard name for a fifth mast on a ship-rigged vessel ( though this may be called the spanker mast on a barque , schooner or barquentine ) .
189
+ 16 bracers protect the inside of the archer 's forearm against injury by the string of the bow or the fletching of the arrow .
190
+ 16 the -lcb- -rcb- is a traditional japanese string instrument , the only one played with a bow .
191
+ 8 the gunwale on many were nearly straight from bow to stern .
192
+ 24 tacking or coming about is a sailing maneuver by which a sailing vessel ( which is sailing approximately into the wind ) turns its bow into the wind through the ` no-go zone ' so that the direction from which the wind blows changes from one side to the other .
193
+ 1 the bow of the capsized vessel should be pointed towards the wind so that when the sail starts to lift out of the water the wind can catch underneath the sail and help right the boat .
194
+ 15 on october 3 at 4 : 00 p.m. , a fire broke out in the bow .
195
+ 25 despot stefan widely armed knight with light firearms ( musket '' fitiljača '' ) , also with spear , sword , dagger , maces , bow and arrow , crossbow , shield , armour , halberd and cannon .
196
+ 3 the tanker 's bow made a hole in uruguay s hull and penetrated her hospital , killing 13 soldiers and injuring 50 .
197
+ 29 the barton had just fired a full spread of torpedoes at the battleship hiei when the light cruiser appeared suddenly out of the darkness and cut directly across the bow of the barton .
198
+ 41 astern propulsion does not necessarily imply the ship is moving astern ( in reverse ) ; astern propulsion is used to slow a ship by applying a force in the direction of the stern of the ship , instead of the bow .
199
+ 7 the front pontoon had a curved ' bow ' shape and both pontoons could be jettisoned from inside the tank once the tank had landed .
200
+ 6 the webcams are positioned on the bow of the ship , the mast and the bridge , they send a new image every minute to their defending our oceans website and provide an archive of action .
201
+ 24 due to the risk of u-boat attacks , the queen mary did not assist in rescue operations and instead steamed onward with a damaged bow .
202
+ 7 the sling ( sphendone ) and the bow ( toxon ) were the weapons used by light soldiers .
203
+ 35 the word sissi , first attested in the modern meaning '' patrolman , partisan , spy '' in 1787 , comes to finnish from slavic and refers either to a forest bandit or his yew bow .
204
+ 34 its offensive capabilities include energy blades which project from its forearms , concussion energy bullets from its hands or fingertips , releasing immensely powerful shockwaves and/or energy waves with its voice and an energy bow .
205
+ 19 ranger archetype rangers skills in books and games can include and are not limited to : skilled with the bow , usually because they use them so often for the hunting of wild animals .
206
+ 45 although he only admitted to killing two men and a horse by arrow , such accounts of ge 's bravery is made all the more startling by his insistence that in his youth , he was so weak that he could not even draw a bow .
207
+ 22 uhmwpe fibers are used in armor , in particular , personal armor and on occasion as vehicle armor , cut-resistant gloves , bow strings , climbing equipment , fishing line , spear lines for spearguns , high-performance sail , suspension lines on sport parachute and paraglider , rigging in yachting , kites , and kites lines for kites sports .
208
+ 26 she is a master hand-to-hand fighter combining many assimilated fighting techniques and is a weapons expert in both the use and manufacturing of weapons ( favoring bow and arrow , but ranging from blade to automatic weapons ) .
209
+ 12 for the 1962 trials , weatherly was extensively modified by shortening the bow , reducing the wetted surface area , reducing weight wherever possible and moving the weight saved to increase the weight of the keel .
210
+ 5 the first bomb hit the bow area , while the second struck amidships , breaking the ship in two lengthwise , in what was described by eyewitnesses on shore as '' opening up like a book '' .
211
+ 10 the majority of those on board had fled to the bow which sank when the ship broke in half .
212
+ 15 the sound produced by the pondar is similar to the violin if played with a bow , but if played by hand , which is most usual , it makes a sound slightly similar to the panduri , but it is easy to hear the difference between these two similar instruments .
213
+ 32 a common design consists of a large foil at the stern that is used both for propulsion and keeping the passenger above the water , connected to a smaller foil at the bow used for steering and longitudinal stability .
214
+ 41 over reasonably short ranges , leading is typically unnecessary when using firearm , but it is still relevant for sniping where the bullet may take a second or more to reach its target , as well as for weapons such as bow that use lower - velocity projectiles .
215
+ 5 operation kaman 99 ( operation bow 99 ) was an operation launched by the islamic republic of iran air force in retaliation to iraqi surprise aerial attacks on iran the day before which marked the beginning of the 8-year-long iran–iraq war .
data/bow/test.gold.txt ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 1
4
+ 2
5
+ 1
6
+ 1
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 1
16
+ 2
17
+ 0
18
+ 0
19
+ 1
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 1
26
+ 0
27
+ 1
28
+ 0
29
+ 1
30
+ 0
31
+ 0
32
+ 0
33
+ 0
34
+ 1
35
+ 0
36
+ 1
37
+ 0
38
+ 1
39
+ 0
40
+ 0
41
+ 0
42
+ 0
43
+ 1
44
+ 1
45
+ 1
46
+ 2
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 1
52
+ 1
53
+ 0
54
+ 1
55
+ 0
56
+ 0
57
+ 2
58
+ 0
59
+ 0
60
+ 0
61
+ 1
62
+ 0
63
+ 1
64
+ 1
65
+ 0
66
+ 0
67
+ 0
68
+ 1
69
+ 0
70
+ 1
71
+ 1
72
+ 0
73
+ 0
74
+ 1
75
+ 0
76
+ 1
77
+ 2
78
+ 2
79
+ 2
80
+ 2
81
+ 0
82
+ 2
83
+ 0
84
+ 1
85
+ 1
86
+ 1
87
+ 0
88
+ 1
89
+ 2
90
+ 1
91
+ 1
92
+ 1
93
+ 0
94
+ 2
95
+ 0
96
+ 1
97
+ 0
98
+ 1
99
+ 0
100
+ 1
101
+ 0
102
+ 0
103
+ 1
104
+ 1
105
+ 0
106
+ 2
107
+ 0
108
+ 0
109
+ 0
110
+ 1
111
+ 1
112
+ 0
113
+ 2
114
+ 0
115
+ 2
116
+ 1
117
+ 1
118
+ 2
119
+ 0
120
+ 0
121
+ 1
122
+ 2
123
+ 0
124
+ 0
125
+ 1
126
+ 1
127
+ 0
128
+ 1
129
+ 2
130
+ 1
131
+ 0
132
+ 1
133
+ 0
134
+ 2
135
+ 0
136
+ 1
137
+ 1
138
+ 2
139
+ 1
140
+ 1
141
+ 0
142
+ 0
143
+ 1
144
+ 0
145
+ 0
146
+ 0
147
+ 0
148
+ 1
149
+ 0
150
+ 0
151
+ 2
152
+ 1
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 1
159
+ 1
160
+ 1
161
+ 2
162
+ 1
163
+ 0
164
+ 1
165
+ 0
166
+ 0
167
+ 2
168
+ 2
169
+ 0
170
+ 0
171
+ 0
172
+ 2
173
+ 0
174
+ 0
175
+ 0
176
+ 0
177
+ 0
178
+ 0
179
+ 0
180
+ 0
181
+ 0
182
+ 0
183
+ 0
184
+ 1
185
+ 1
186
+ 0
187
+ 0
188
+ 0
189
+ 1
190
+ 2
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 1
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 0
202
+ 1
203
+ 1
204
+ 1
205
+ 1
206
+ 1
207
+ 1
208
+ 1
209
+ 0
210
+ 0
211
+ 0
212
+ 2
213
+ 0
214
+ 1
215
+ 1
data/bow/train.data.txt ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 11 the plan of the site is in the shape of a bow with its bowstring pulled back ready to fire .
2
+ 12 several new design innovations were incorporated in flint , including a bulbous bow for better streamlined hull .
3
+ 59 from this branch of the freire de andrade came joão fernandes de andrade who , having served the portuguese kings afonso v and john ii in the conquest of the morocco strongholds of tangier and asilah , was granted a new coat of arms and possessions in the portuguese island of madeira , namely in arco da calheta ( bow of the calheta ) .
4
+ 25 public image chang plays the 1717 guarneri del gesù violin , which she received through the late isaac stern , and uses a variety of bow : pajeot for mozart and bach ; sartory for '' the big-whammy concertos , the tchaikovsky and sibelius '' ; and two dominique peccattes for other music .
5
+ 31 between 1880 and 1887 , the anchor line built no fewer than ten of these extravagant steamboats , which averaged each about 275 feet ( 83.33 m ) in length from bow to stern and about 45 feet ( 13.64 m ) in width .
6
+ 18 instinctive aiming is a technique used by trained archers and marksmen to improve general accuracy when using a bow , firearm , or other ranged weapon .
7
+ 29 his family belongs to ahari tribe and because of poverty , limba ram was used to hunt bird like sparrow , partridge and animal in jungle with his indigenous bow ( made of bamboo wood ) and reed arrow .
8
+ 27 for example , chanca soldiers preferred the use of clubs or macana , while antisuyu ( jungle highlands ) troops more often leaned towards the use of bow and arrow .
9
+ 28 randolph was planned to be somewhat more lightly built than the british frigates that inspired her design , with a broader frame spacing and a much more raked bow , but with less freeboard .
10
+ 4 knowles next brandishes a bow and fires arrows at a cameraman who 's strapped to a rotating dart board .
11
+ 42 genu varum ( also called bow-leggedness , bandiness , bandy-leg , and tibia vara ) , is a physical deformity marked by ( outward ) bowing of the leg in relation to the thigh , giving the appearance of an archer 's bow .
12
+ 13 the main armament consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship ( in the stern in the case of matsushima ) , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of 8000 meters .
13
+ 26 queen mary baggage tag queen mary design was criticised for being too traditional , especially when normandie hull was revolutionary with a clipper shaped , streamlined bow .
14
+ 20 link collects a variety of different equipment throughout his adventure , featuring series mainstay items such as bomb , a bow , the boomerang , and a lamp .
15
+ 39 the accusation centered on the fact that the corporation had not yet purchased a ship , which had appeared in a bsl brochure emblazoned with the name '' phyllis wheatley '' ( after the african-american poet ) on its bow .
16
+ 3 house of the bow ) is a kibbutz in the lower galilee , israel .
17
+ 19 '' ) : a flying swan has been shot , and a young man is brought forth , a bow in his hand and a quiver of matching arrows .
18
+ 16 punts and passengers in cambridge , uk a punt is a flat-bottomed boat with a square-cut bow , designed for use in small river or other shallow water .
19
+ 5 the damage to ariel s bow was so serious that she had to be towed into port .
20
+ 13 the string ensemble consists of two groups : chamber blues , made of bow instruments , and a larger group called men in black that includes guitars .
21
+ 3 he holds a bow in one hand and perhaps a goblet in the other .
22
+ 10 the force of the impact blew off of her forward bow and forecastle .
23
+ 11 on 27 december 1914 monarch rammed suffering moderate damage to her bow , she received temporary repairs at scapa flow before proceeding to devonport for full repairs , she rejoined her sister-ships on 20 january 1915 , was also seriously damaged in this collision .
24
+ 16 neutral trim trimmed in trimmed out if the motor is trimmed out too far , the bow will ride too high in the water .
25
+ 16 in addition , the dhanur veda tradition was an influential fighting arts style which considered the bow and the arrow to be the supreme weapons .
26
+ 11 it was a round - bilge keel ship with a round bow and stern , the latter relatively high , and with a gallery .
27
+ 14 armed with a spar torpedo , mounted to a rod extending out from her bow , the hunley s mission was to lift the blockade of charleston , south carolina by destroying the sloop-of-war uss housatonic in charleston harbor .
28
+ 9 isaiah recalls their warrior activities and skill with the bow .
29
+ 10 the british fired a warning shot across his ship 's bow , to which he responded with a full broadside .
30
+ 13 photographs show that she had the designation '' sp-400 '' painted on her bow and she was used as a patrol boat like other units with an '' sp '' designation during world war i , although her data card lists her as having identification number ( id .
31
+ 34 space in the sandolo is limited , with enough room for one oarsman , aft , and two passengers on the main seat , and two more passengers sitting on small stools towards the bow .
32
+ 28 her laboratories had temperature-controlled aquaria and live specimen wells , and she had a walk-in freezer , a dark room , and an underwater observation chamber in her bow and on her port side for studying fish behavior at sea .
33
+ 4 the saxons historically used bow ( to a limited extent ) and spear instead of crossbows during the period .
34
+ 6 the stern lies opposite of the bow , the foremost part of a ship .
35
+ 1 the bow is drawn horizontally across the strings .
36
+ 24 in september , after departing from takao with a convoy bound for manila , hibiki was torpedoed by ; the explosion almost severed her bow .
37
+ 7 muruga rides a peacock and wields a bow in battle .
38
+ 5 mercedes uses a red crystal bow psypher named tasla that she usually uses for frog hunting .
39
+ 22 when boat electrofishing , the boat itself is the cathode , and the anode ( s ) are generally mounted off the bow .
40
+ 24 proa characteristics the defining feature of the proa is that the vessel '' shunts '' when it changes tacks ; the stern becomes the bow and vice versa .
41
+ 6 she was fitted with a ram bow and lacked the stern ram of her half-sisters .
42
+ 9 fifteen minutes after hitting the mine , swerve s bow was up with the stern resting on the bottom .
43
+ 9 diving planes are usually fitted in pairs , the bow planes at the front of the submarine and the stern planes at the rear .
44
+ 38 kochanowski uses the names of the pieces ( which are often different from their equivalents in modern polish ) in literal sense , describing the game as a war between infantry soldiers ( pawns ) , knights , bow - wielding priest ( bishops ) , war elephant ( rooks ) , queens and kings .
45
+ 4 the explosion blew the bow off the ship , killing 65 and injuring 15 more of her crew .
46
+ 10 this was sometimes the concertmaster , who could use his bow as a baton , or a lute who would move the neck of his instrument in time with the beat .
47
+ 6 he sometimes plays using a cello bow .
48
+ 21 her parents were the first whites to live with the newly discovered tribe of about 400 people , who hunted with bow and arrow , ate snakes , insects and worms , and practiced inter-tribal warfare and revenge killings .
49
+ 8 trade with peoples to the southwest brought the bow and arrow an increase in the hierarchical structuring of their societies began during this period , although it is not clear whether it was internally developed or borrowed from the hopewell .
50
+ 15 they were equipped with four 18 inch ( 460 mm ) torpedo tubes at the bow , two on either beam and another pair in a swivel mounting on the superstructure for night use .
51
+ 50 basic information rowers in a coxed eight ( 8 + ) , a sweep rowing boat while rowing , the athlete sits in the boat facing toward the stern , and uses the oars which are held in place by the oarlock to propel the boat forward ( towards the bow ) .
52
+ 30 ) trouble appeared off jekyll island , when the royal navy ship sloop , under the command of captain john poo beresford , fired a shot across the cutter 's bow .
53
+ 17 with the increasing wealth from mining , mercenary knights were recruited to complement noble cavalry armed with bow and lance .
54
+ 13 replacement by the arrow in europe , the atlatl was supplemented by the bow and arrow in the epi-paleolithic .
55
+ 12 two diameter controllable pitch propellers , combined with a retractable and rotatable bow propulsion unit , give chase high maneuverability .
56
+ 12 some impersonal examples of relative direction in language are the nautical terms bow , aft , port , and starboard .
57
+ 8 by around 11 : 18 a.m. , the bow of the ship was submerged , with a section of the hull about high and long showing above the water .
58
+ 1 jpg bow of the battleship mikasa the shiragiku ( lit .
59
+ 21 the obverse of the mark pieces shows a sitting lion where the dollar pieces depict a san ( bushman ) with bow and arrow .
60
+ 4 hooke ran a violin bow along the edge of a plate covered with flour and saw the nodal patterns emerge .
61
+ 33 as a member of the makhzum clan , who were amongst the best horsemen in arabia , khalid learned to ride and use such weapons as the spear , the lance , the bow and the sword .
62
+ 13 the basic weapon of the indian warrior was the short , stout indian bow , designed for use on horseback and deadly , but only at short range .
63
+ 6 phoenix had six tubes in the bow and two tubes at the stern .
64
+ 9 the appendiceal orifice , depicted , curves like a bow to show the location of the ileocecal valve on the most distal cecal fold .
65
+ 18 during this caribbean tour , a locking device was developed for the sand flaps on the ship 's bow doors to keep them secure while underway , and it was installed on terrebonne parish in january 1966 at san juan , puerto rico .
66
+ 29 sturgeon returned to sea for local operations from 17 july to 1 october 1973 , when she entered the portsmouth naval shipyard at kittery , maine , to effect bow repairs .
67
+ 11 it is bowed with either a notched stick or a horsehair bow .
68
+ 4 the terms prow and bow are often used interchangeably to describe the most forward part of a ship and its surrounding parts .
69
+ 44 lewis h. morgan lewis h. morgan , an anthropologist whose ideas have had much impact on sociology , in his 1877 classic ancient societies differentiated between three eras : , barbarism and civilization , which are divided by technological inventions , like fire , bow , pottery in the savage era , domestication of animals , agriculture , metalworking in the barbarian era and alphabet and writing in the civilization era .
70
+ 20 changes by august bohlin ( 1877 -- 1949 ) in 1929/1930 made the nyckelharpa a chromatic instrument with a straight bow , making it a more violin - like and no longer a bourdon instrument .
71
+ 8 some eubs can not be used with a bow because of the large radius of the fingerboard and the flatness of the bridge .
72
+ 17 ( linggi means ' stem ' in bugis and refers to the strongest vertical plate at the bow of a ship .
73
+ 23 in addition , given the experience with deployment of japanese destroyers for extended periods overseas in world war i , the hull and bow needed to be reinforced to handle heavy seas .
74
+ 6 soldiers exited by the boat 's bow ramp .
75
+ 30 the principals used to produce notes are similar to those for a metal jaw harp , but wooden jaw harps are often much larger in size , resembling a simple bow .
76
+ 26 the tale of the worm may be inspired by the longship of marauding vikings , who carved the heads of worms ( ormr ) on the bow however this does not take into account the commonness of dragons in germanic folklore including that of northumbria ( see the laidly and lambton worm as well as the worm of linton ) .
77
+ 26 weapons the immortals were equipped with some of the finest weapons of their day , including spear , sword , mace , dagger , and cane bow .
78
+ 20 also , unlike any other warship in the japanese navy , she had two chrysanthemum crest due to her unusual bow configuration .
79
+ 20 the english longbow , also called the welsh longbow , is a powerful type of medieval longbow ( a tall bow for archery ) about long used by the english and welsh for hunting and as a weapon in medieval warfare .
80
+ 22 its predecessor of the same name ( 1898 -- 1960 ) was the first icebreaker in europe with a propeller in the bow and stern .
81
+ 19 the ostmen , who fought with sling and axe , were defeated by the normans , who fought with bow and arbalest .
82
+ 45 within 30 minutes , a different , non-nuclear civilian construction group began an assignment to bring guitarro within a half-degree of trim ; this entailed the adding of water to tanks forward of the ship s pivot point to overcome a reported two-degree up - bow attitude .
83
+ 8 the primary weapon used in war was a bow of black palm wood , usually using arrows with barbed wooden heads .
84
+ 9 the main type of english galleon had a low bow , a sleek hull and a large number of heavy guns .
85
+ 24 instruments traditional instruments include : the maravanne ( rattle ) moutia ( hand drum ) the goatskin drum ravanne triangle and the bobre ( bow ) .
86
+ 1 the bow is attached to the rest of the hull only by some pieces of the b-deck .
87
+ 43 the base was also home to the only soviet aircraft carrier shore-based landing , trainer and test site , the nazyemniy ispitateiniy treynirovochniy kompleks aviatsii ( nitka ) , with arresting gear and a ski-jump ramp that was a full-sized replica of the bow of the admiral kuznetsov .
88
+ 12 the 10-gun turkish steamship that was steadily nearing the vladimir had no bow or stern artillery .
89
+ 11 the ramps and doors may be stern - only , or bow and stern for quick loading .
90
+ 18 this blind spot is caused by the need to insulate the sonar array , commonly mounted near the bow , from the noise of the vessel 's machinery .
91
+ 22 the vessel was assembled at the gasworks in darling harbour by richard johnstone , davidson and anderson the vessel had a sharp bow and stern with a rudder able to be locked at each end so that the vessel could be run in reverse .
92
+ 19 kayaks used for creeking usually have higher volume ( more gallons or litres of displacement ) and more rounded bow and stern , as these features provide an extra margin of safety ' against the likelihood of pinning ( getting a kayak wedged in such a way that it can not be removed without a mechanical advantage system , such as between rocks and/or underwater ) , and will resurface more quickly and controllably when coming off larger drops .
93
+ 45 with such a range of work and use in such varied circumstances , standard procedures for loading varied too ; loads could be lowered into rcls from ships ' davits or derricks , or , if from land , simply driven or carried over the bow ramp .
94
+ 24 these were designated ` a ' , ` b ' , ` q ' , ` x ' , and ` y ' from bow to stern .
95
+ 10 analysis the work portrays the two men holding each a bow , while the shotgun was the more popular choice of weapon at the time .
96
+ 8 as to whether or not zopyros was his bow carrier , there is no mention of that information .
97
+ 24 the term , '' before the mast '' refers to sailors ' quarters , which were located in the forecastle ( the ship 's bow ) , officers ' quarters being near the stern .
98
+ 9 the battered miztec dropped her anchors , swung her bow to the seas , and survived the storm .
99
+ 20 this greatly increased the mobility of the nomads ; it also freed their hands , allowing them to use the bow from horseback .
100
+ 13 '' design arrowheads are attached to arrow shafts to be shot from a bow ; similar types of projectile points may be attached to a spear and '' thrown '' by means of an atlatl ( spear thrower ) .
101
+ 13 for normal use , it is drawn through the water from front ( bow ) to back ( stern ) to drive the boat forwards .
102
+ 7 sound is usually created by drawing a bow across the back edge of the saw at the sweet spot , or sometimes by striking the sweet spot with a mallet .
103
+ 5 a woman figure with a bow -- the tellervo of astuva -- a rarity among the rock paintings .
104
+ 21 with the adequate hardware , a throw line , an attached weight , and a launching system ( e.g. , a bow or slingshot ) , a climbing rope can be anchored to a branch very high in the tree .
105
+ 3 aila uses a bow as her weapon and bears a shield rune and an earth rune .
106
+ 19 and the third , consisting of about five heinkel he 111 , bore down on the convoy 's port bow , lansdale s station .
107
+ 4 suzutsuki -- despite her bow being blown off -- was able to make it to sasebo , japan , by steaming in reverse the entire way .
108
+ 10 a fourth tug secured a line to the ship 's bow .
109
+ 12 a sleeker front bow-like look emerged , similar to a ship 's bow with the front end being gently swept back from the center .
110
+ 22 on bowed string instrument it is a method of playing by plucking the strings with the fingers , rather than using the bow .
111
+ 21 uses nautical during the 18th century , a warning shot ( in nautical terms , often called a shot across the bow ) could be fired towards any ship whose '' colours '' ( nationality ) had to be ascertained .
112
+ 6 on february 23 , 1986 the bow half of the hull was refloated , towed into the sea and scuttled in waters of 4000 metres in depth .
113
+ 34 is italian for crossbow , and it is likely that the balestra crest of a crossbow lent its name to the adjacent alley '' via dell ` archetto '' ( archetto being italian for bow ) .
114
+ 8 the kyl kyyak is played vertically with a bow and can be played on horse .
115
+ 10 the design came with a ram attached to the reinforced bow , which was standard practice for the time .
116
+ 80 as well as saunders-roe and vickers ( which combined in 1966 to form the british hovercraft corporation ( bhc ) ) , other commercial craft were developed during the 1960s in the uk by cushioncraft ( part of the britten-norman group ) and hovermarine based at woolston ( the latter being 'sidewall hovercraft ' , where the sides of the hull projected down into the water to trap the cushion of air with ` normal ' hovercraft skirts at the bow and stern ) .
117
+ 17 to combat german e-boat , a qf 6-pounder gun was mounted at the very tip of the bow in 1944 .
118
+ 13 the wreck lies upright with the stern in of water , and the bow in .
119
+ 6 the torpedo blew off firelight s bow but she remained afloat and put into great yarmouth the next day .
120
+ 34 wounded sailors from express are transferred to kelvin whilst heading for this german force the flotilla ran into a newly laid , uncharted minefield and express was badly damaged , losing most of her bow .
121
+ 13 he is represented as a young and handsome wing man who wields a bow and arrow .
122
+ 11 he supports the shield with his right hand and holds a bow over his left shoulder .
123
+ 15 elastic potential energy is the potential energy of an elastic object ( for example a bow or a catapult ) that is deformed under tension or compression ( or stressed in formal terminology ) .
124
+ 16 the weapons used for hunting would mostly be the same as those used for war : bow , crossbow , lance or spear , knife and sword .
125
+ 4 the eeng is a bow string instrument .
126
+ 8 two bombs hit amidships , one hit the bow and the other was a close miss , yet managed to fracture the hull in several places on the starboard side .
127
+ 9 her 785 horsepower steam engine could barely maintain her bow to the seas .
128
+ 1 the bow appears in the upper paleolithic and is likewise only gradually replaced by the crossbow , and eventually firearm , in the common era .
129
+ 8 trade with peoples to the southwest brought the bow and arrow , and trade with the marksville culture and other hopewellian peoples brought exotic goods such as fresh water pearls , sea shells , sharks ' teeth , and copper .
130
+ 29 the bethel was immortalized in herman melville 's novel moby-dick , as the '' whaleman 's chapel '' in a scene where a fire-and-brimstone sermon is given from a bow - shaped pulpit .
131
+ 45 morgan lewis h. morgan , an anthropologist whose ideas have had much impact on sociology , in his 1877 classic '' ancient societies '' differentiated between three eras : savagery , barbarism and civilisation , which are divided by technological inventions , like fire , bow , pottery in savage era , domestication of animals , agriculture , metalworking in barbarian era and alphabet and writing in civilisation era .
132
+ 24 while the dilruba has more sympathetic strings and a differently shaped body than the esraj , they both have four main strings which are bow .
133
+ 45 after four years of service , the ship foundered in rough weather at the battle of öland on 1 june 1676 : while making a sharp turn under too much sail she capsize , and the gunpowder magazine ignited and blew off most of the bow structure .
134
+ 9 in europe , the spearthrower was supplemented by the bow and arrow , in the epi-paleolithic .
135
+ 18 matt schnobrich ( born november 12 , 1978 ) is a male rower who qualified for the prestigious bow seat in the united states men 's eight in the rowing events of the 2008 summer olympics in beijing .
136
+ 16 men waded from the shallow waters in the bays to the deep pools with lance or bow and arrow , to spear fish .
137
+ 1 the bow and the crossbow was used by the conquistadors for hunting and warfare when firearms or gunpowder were unavailable because of economic hardships or isolation .
138
+ 13 webster was originally built with diving plane mounted above the hull near the bow , leading to her nickname '' old funny fins '' .
139
+ 52 it is traditionally used with other spatial reference terms : aft or stern , port , starboard according to the oxford english dictionary : forward ( , and often written '' for ` ard '' ) or fore , in naval terminology , is an adjective or adverb meaning '' towards the bow ( front ) of the ship '' , when the frame of reference is within the ship .
140
+ 43 traditional instruments from altay include : amirgi-marok : a wind instrument used to coax deer adishi-marok : a wind instrument made of birch bark ikili : a stringed instrument with a long neck and strings made from animal sinew and played with a bow komus : a jaw harp made of wood traditionally , though now more frequently metal shagay : a wind instrument made from the bones of a sheep shagur : a wind instrument made of wood with holes on the side shatra : a rattle shoor : a long wind instrument , similar to a flute .
141
+ 27 to minimize the risk of water ingestion , the engine air intakes are located on the forward fuselage section with spray fences on either side of the bow protecting the engines from water ingestion .
142
+ 13 the main battery consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of .
143
+ 31 however , on her next mission to buna on 28 november , shiratsuyu took a direct hit from a bomb during an attack by usaaf b-17 flying fortress bombers in her bow , which required emergency repairs at rabaul , truk , and saipan before she should reach sasebo on 25 february 1943 for complete repairs .
144
+ 7 , which means '' way of the bow '' , is the modern name for japanese archery .
145
+ 21 latter is an archery sport in which a long arrow ( pashto : ghashay ) is used along with a long bow ( pashto : leenda ) .
146
+ 7 such a vessel should have a reinforced bow for ramming as well as torpedoes for attacks on larger warships .
147
+ 19 ranging experience is obtained by hitting opponent with an arrow or bolt shot with one of the five different bow or crossbow .
148
+ 16 the first mock-up , dubbed the '' bridge ship '' , was a reconstruction of the bow and bridge built atop the hull of the sturgeon atlantic cargo ship .
149
+ 29 the voyage proceeded uneventfully until early on the afternoon of 30 january 1942 , when a lookout spotted what he thought was a small fishing craft on the port bow .
150
+ 28 other african-derived instruments include metal percussion rods , agan , the rasp wiri , aerophones like the cachu trumpet , becu transverse double-reed wind instrument , and the bow benta .
151
+ 17 iconography kāmadeva is represented as a young , handsome winged man with green skin who wields a bow and arrows .
152
+ 15 one is that seafaring people believed that pilot fish , which would appear around the bow of their ships when they were close to land , were leading ( or piloting ) them back to port .
153
+ 5 a fighter equipped with a bow or a magician with spells can attack from a distance .
154
+ 30 the jo , like its larger sibling the bō ( long staff ) , was never an effective weapon on the battlefield in comparison to the sword , spear and bow just to name a few .
155
+ 1 the bow is broken off just forward of the aircraft hangar .
156
+ 8 the weapon comprised an underwater prolongation of the bow of the ship to form an armored beak , usually between six and 12 feet ( 2 -- 4 m ) in length .
157
+ 36 the tombstone prospector later reported that both of the bodies were found and that much of adelnietze 's belongings were captured , including his 1873 springfield rifle , '' with a shortened barrel , '' a bow , two horses , moccasin and leggings '' filled with blood .
158
+ 7 this put the ship right across the bow of the submarine , which fired three torpedoes .
159
+ 38 fistmele , also known as the '' brace height '' , is an older term used in archery to describe the correct distance ( about seven inches , for a northern europe or english longbow ) between a bow and its string .
160
+ 27 on 24 august 1918 , during a voyage from the panama canal zone to the united states , she sighted two possible german submarine on her port bow .
161
+ 5 their only weapons were the bow , adze , and wooden harpoon .
162
+ 5 mongolian troops had a buryat bow , for showering the enemy with arrows from a safe distance .
163
+ 3 specific seasons for bow hunting or muzzle-loading black-powder guns are often established to limit competition with hunters using more effective firearms .
164
+ 1 the bow was the most widely used weapon of the persians .
165
+ 43 according to a moral tale called '' yue fei studies the archery '' in you er hua bao ( -- '' children 's pictorial '' ) , a chinese magazine tailored for children ages two through seven , young yue fei purchased a bow , a sword , and a spear to practice martial arts on his own since he did not have a teacher to train him properly .
166
+ 24 he is the most adaptable playable character and can use a two-handed sword , a sword and shield , dual wield weapons or a bow .
167
+ 28 crossing the t , employed by horatio nelson , entailed cutting across the enemy 's line of battle to enable broadside to be fired through the enemy 's bow or stern along the whole length of the ship , with every shot likely to cause the maximum carnage .
168
+ 0 bow of an msc container ship .
169
+ 6 the wind forced the ship 's bow around to the southwest .
170
+ 2 jpg the bow of the frigate .
171
+ 18 estimation of target angle is based on the observer 's visual identification of target features like differentiating the bow from the stern .
172
+ 12 to distinguish it from a cuddy boat , it has an open bow area where there are extra seats in front of the helm station .
173
+ 19 lemonwood , purpleheart and hickory longbow , 20.4 kgf ( ) draw weight a longbow is a type of bow that is tall -- roughly equal to the height of the person who uses it ; this will allow its user a fairly long draw , at least to the jaw .
174
+ 25 tacking and jibing there are two ways to change from port tack to starboard tack ( or vice versa ) : either by turning the bow through the eye of the wind , '' tacking '' or the stern , '' jibing '' .
175
+ 13 the french name for the osage orange , '' bois d'arc '' ( bow - wood ) , is sometimes rendered as '' bowdark .
176
+ 1 the bow was usually constructed with wood or steel , depending on the preference .
177
+ 24 tigranes also possessed several thousand cataphract , formidable heavily armored cavalry that were clad in mail armor and armed with lances , spear or bow .
178
+ 21 the name derives from sailing ship in which the toilet area for the regular sailors was placed at the head or bow of the ship .
179
+ 12 history simple non-coiled springs were used throughout human history e.g. , the bow ( and arrow ) .
180
+ 8 for instance , it is clear that the bow is held underhand ( with the palm upwards ) , unlike the technique used for the modern cello or violin .
181
+ 23 each mt ( nicknamed barchini or '' little boats '' ) carried a 300 kg ( 660 lb ) explosive charge in its bow .
182
+ 1 a bow is pulled over the string/s ( made of horsetail ) , creating a dramatic and sharp sound , expressive and difficult to master .
183
+ 36 in 1879 , he proposed a rigid airship inspired by the anatomy of a fish , with a framework of steel , brass , or copper tubing and a tractor propeller mounted on the craft s bow , later changed to an engine with two propellers suspended beneath the framework .
184
+ 17 the external fairing on the lower hull was temporary , designed to provide added buoyancy for her bow and avoid excessive strain on her hull during her launching .
185
+ 39 the idol has an old fashioned shaping , i.e. , the face cutting is of a longish pattern ; it has large eyes spread up to the ears and the four hands display conch , discus , shaft and bow respectively .
186
+ 17 as of 2010 , divers reported seeing a large nurse shark inside the rope room at the bow on nearly every dive .
187
+ 59 to produce an artificial harmonic , a stringed instrument player holds down a note on the neck with one finger of the non-dominant hand ( thereby shortening the vibrational length of the string ) and uses another finger to lightly touch a point on the string that is an integer divisor of its vibrational length , and plucks or bow the side of the string that is closer to the bridge .
188
+ 12 in cases of very thick ice , an icebreaker can drive its bow onto the ice to break it under the weight of the ship .
189
+ 0 bow and arrow used in warfare .
190
+ 44 by contrast , the one thousand heavily armored parthian cataphract rode bard horses and carried long heavy lance ( kontos ) , the reach and power of which exceeded the gallic spear , while the 9,000 parthian mounted archers were equipped with a compound bow far superior to that used in europe , with arrows continually replenished by foot soldiers from a camel train .
191
+ 26 although decommissioned and returned to her owner in february 1919 , she still bears her u.s. navy '' s.p. 669 '' section patrol marking on her bow .
192
+ 24 tack is the alignment of a sailing vessel with respect to the wind when moving upwind : that is , when the vessel 's bow is pointed within 90 degrees of the wind .
193
+ 10 the music video features not by choice performing at the bow of a ship while a beauty contest is taking place .
194
+ 5 he then picks up a bow and comes to a table occupied by a sleeping hefty patron .
195
+ 35 it is a wide zither with strings made of twisted silk , played by means of a slender stick made of forsythia wood , which is scraped against the strings in the manner of a bow .
196
+ 17 once the lcm ( 2 ) had touched down on shore , the hinged ramp at the bow of the craft was lowered and the tankette left the craft over the ramp under its own power .
197
+ 21 description the practitioner lies on the belly , grasps the feet , and lifts the legs into the shape of a bow .
198
+ 43 for example , instruments such as keyboard and percussion require the player to swing the controllers as if striking drums ; and some string instrument such as the violin and the guitar are played by moving the wii remote as if drawing a bow or strum the strings , while the nunchuk is held as if the gripping the instrument 's neck and fingerboard .
199
+ 22 viol technique ganassi 's regola rubertina is among the earliest sources of advice to the viol player on how to hold the bow .
200
+ 8 besides inscriptions armors of deceased person sculptures -- bow , arrow , sword , shield , quiver and others were also portrayed on .
201
+ 7 tampico suffered four more hits to her bow , and one struck underneath the waterline .
202
+ 26 after a section where the melody is accompanied quietly with fast running notes , it returns as a series of chords , alternately played with the bow and plucked .
203
+ 8 on the ground floor , the display of bow and arrow in the first room is followed by sections containing the weapons and other regalia of the cavalry , curved dagger and lancet carried by foot soldiers in the 15th century , 17th century copper head armor for horses and ottoman shields carried by the janissaries , and sections devoted to selim i , mehmet the conqueror , the conquest of istanbul , weaponry from the early islam , iran , caucasia , europe and turkish periods .
204
+ 43 the power stone merah can transform him into bima , the garuda knight which has the power of the garuda : agility , focus , and strength ; wielding the red-blue garuda saber helios ( sun ) which can transform into helios blaster bow .
205
+ 20 as the road runner watches from a cliff , wile e. is at another cliff , attempting to use a bow to shoot himself straight at the road runner .
206
+ 14 that morning , william m. hobby sighted a floating naval mine off her port bow and destroyed it with 40-millimeter , 20-millimeter , and rifle fire .
207
+ 58 archery competition in west germany in the early 1980s a rikbaktsa archer competes at brazil 's indigenous games tibet archer , 1938 master heon kim demonstrating gungdo , traditional korean archery ( kuk kung ) , 2009 archer in east timor archery is the art , practice , or skill of propelling arrow with the use of a bow , from latin arcus .
208
+ 21 haverford , headed from philadelphia to liverpool with passengers , struck the cargo ship on the port side , from the bow .
209
+ 7 the collision sank miyuki and severed the bow on inazuma , which was towed to sasebo naval arsenal by the cruiser for extensive repairs .
210
+ 13 he is dressed in full armor from hear to toe , with a bow and quiver on his back and a helmet on his head .
211
+ 46 another feature in rise and fall is '' hero mode , '' which allows the player to temporarily take control of a hero , as if in a third-person shooter game ; certain heroes for instance , cleopatra can zoom in further than others with their bow , allowing the player to aim as if in a first-person shooter game .
212
+ 1 the bow used was fitted with coarse black horsehair , which produced sound by friction .
213
+ 16 in a three-masted , square-sail carrying ship , the masts , given their standard names in bow to stern ( front to back ) order , are : sprit topmast : a small mast set on the end of the bowsprit ( discontinued after the early 18th century ) ; not usually counted as a mast , however , when identifying a ship as '' two masted '' or '' three masted '' fore-mast : the first actual mast , or the mast fore of the main-mast sections : fore-mast lower -- fore topmast -- fore topgallant mast main-mast : the tallest mast , usually located near the center of the ship sections : main-mast lower -- main topmast -- main topgallant mast -- royal mast ( if fitted ) mizzen-mast : the third mast , or the mast immediately aft of the main-mast .
214
+ 9 sheeran sings and performs on a loop station , bow saw , melodica , accordion , flute , ukulele , and used a tc helicon voice live 2 to manipulate her vocals and create harmonies .
215
+ 50 bear of britain , a farr 52 with masthead spinnaker in front of calshot spit a spinnaker is a special type of sail that is designed specifically for sailing off the wind from a reaching course to a downwind , i.e. with the wind 90 ° -- 180 ° off bow .
216
+ 1 the bow area of the boat contains the windlass and portions of the starboard railings remain unharmed .
217
+ 12 she displaced and was fitted with a blunt iron ram at her bow .
218
+ 11 during the kurukshetra war , the weapons used included : the bow , the weapon of choice for arjuna , bhishma , drona , karna , satyaki , vikarna and abhimanyu ; the mace , chosen by bhima and duryodhana , the spear , chosen by yudhistira and shalya ; the sword chosen by nakula , dushasana , dhristadymna and other kauravas ; and the axe chosen by sahadeva .
219
+ 26 if you learn it according to my instructions it will expand your hand and enable you to perform arpeggio like strokes of the ( violin ) bow .
220
+ 18 the two upper openings on the wall of the forecastle allow firing guns on either sides of the bow .
221
+ 16 early on in the engagement two 57 mm shells from schiff 221 hit stegg in the bow , set her ablaze and caused water to start flooding the torpedo boat .
222
+ 1 her bow was crafted by françois tourte .
223
+ 17 william lewis & son was a distinguished chicago - based music store that specialized in violins and bow .
224
+ 10 specifically , there is larger mast stepped at the very bow , and a smaller mast further aft .
225
+ 23 charles claude husson - ( b. 1847 ) in mirecourt ( vosges ) ( d. 1915 ) was an influential french archetier / bow maker .
226
+ 11 confusingly , the designation '' sp-2744 '' was painted on her bow and this designation is reported as her official one by many sources , although this contradicted her official data card , which identifies her as '' id .
227
+ 8 this view was taken from off the port bow , showing f-4 s port-side diving plane in the center .
228
+ 0 bow on the basis of witness evidence , the joint investigation team considered it unlikely that the fire was caused by the hot work ( welding ) that was being carried out as part of the renovation or by carelessly discarded smokers ' materials .
229
+ 4 she had a high bow , two raking masts , schooner - rigged , and a single raked smokestack .
230
+ 2 the left bow of the catamaran was crushed and repaired later .
231
+ 1 the bow has to be tilted to switch from one string to another .
232
+ 31 the missions of the light cavalry were primarily reconnaissance , screening , skirmishing , raiding , and most importantly , communications , and were usually armed with spear , sword , bow and later carbine .
233
+ 21 ( franz ) albert ( ii ) nürnberger ( 1854 -- 1931 ) is regarded as one of the greatest german bow makers .
234
+ 28 it is similar in size to the latter instrument and likewise has six or seven strings of gut , arranged over a fret fingerboard and played with a bow .
235
+ 13 hydrodynamics hydrodynamics concerns the flow of water around the ship 's hull , bow , stern and over bodies such as propeller blades or rudder , or through thruster tunnels .
236
+ 9 ryujino can turn zanryujin from a halberd into a bow with the use of the archery key .
237
+ 4 history camperdown s damaged bow after her 22 june 1893 collision with battleship .
238
+ 80 players in gears can only carry four different weapons , with the exception of the fourth game , allowing two weapon slots one grenade slot , which may be filled with grenades , one pistol-type weapon , up to four grenades of a specific type ( fragmentation , smoke , ink and incendiary ) and two other weapons , which include , but are not limited to , assault rifles , a sniper rifle , grenade launchers and an explosive bow .
239
+ 36 some narrate episodes from the hero 's life , others are war hymns ( for example , the sifu uta wangu or '' song of the warrior '' in which liongo celebrates the virtues of his bow ) .
240
+ 20 in this story , the elves of gondolin use mail armour , sword , shield , spear , axe and bow , which is consistent with northern european warfare .
241
+ 26 shortly after the 1880 new year the sons of the owner of gokstad farm , having heard of the legends surrounding the site , uncovered the bow of a boat and its painter while digging in the still frozen ground .
242
+ 5 the stern sank until the bow became vertical , and then the ship sank completely at about 1115 hrs .
243
+ 37 four directions 2010 moscow victory day parade parades consist of four directions : the advance is the primary direction of movement , regardless of which direction the soldiers are actually facing ( similar to a ship 's bow .
244
+ 19 canoes used for creeking usually have higher volume ( more gallons or liters of displacement ) and more rounded bow and stern , as these features provide an extra margin of safety ' against the likelihood of pinning , and will resurface more quickly and controllably when coming off larger drops .
245
+ 30 zithers are played by strumming or plucking the strings , either with the fingers ( sometimes using a tool called a plectrum ) , or sounding the strings with a bow .
246
+ 32 the dutch ice yacht is a flat-bottomed boat resting crosswise upon a plank about three feet wide and sixteen long , to which are affixed four steel runners , one each at bow , stern and each end of the planking .
247
+ 29 besson ( brass instrument ) buffet crampon ( woodwind ) karl höfner ( stringed instruments and guitar ) julius keilwerth ( saxophone ) roderich paesold ( stringed instruments and bow ) rico international ( reed and accessories ) w. schreiber & söhne ( woodwinds ) jakob winter ( cases ) as of 2006 , their holdings had been acquired by various other owners .
248
+ 26 the bulgarian army was well armed according to the avar model : the soldiers had a sabre or a sword , a long spear and a bow with an arrow-quiver on the back .
249
+ 35 its origin is suggested to be derived from the american maritime humor of trying to steer a vessel in reverse where its stern construction , in the 19th century , lacked the streamlines of the bow , and is therefore prone to miscalculated manoeuvring when using the rudder .
250
+ 1 a bow or crossbow can be used with arrow in bowfishing .
251
+ 6 e49 now lies down with her bow blown off .
252
+ 56 traditional kayaks encompass three types : baidarkas , from the bering sea & aleutian islands , the oldest design , whose rounded shape and numerous chines give them an almost blimp - like appearance ; west greenland kayaks , with fewer chines and a more angular shape , with gunwales rising to a point at the bow and stern ; and east greenland kayaks that appear similar to the west greenland style , but often fit more snugly to the paddler and possess a steeper angle between gunwale and , which lends maneuverability .
253
+ 4 trophies and notable voyages bow view of libertad docked in dublin in 1964 the frigate competed for the first time in a major offshore race for tall ships between the ports of lisbon and hamilton , bermuda .
254
+ 12 the keel runs in the middle of the ship , from the bow to the stern , and serves as a basic foundation or spine of the structure , providing the major source of structural strength of the hull .
255
+ 4 the armor extended from bow to stern , and descended at the sides to below her waterline , with a thickness of over her critical systems and ammunition magazines .
256
+ 10 their principal food was bighorn sheep and they made their bow from sheep horn .
257
+ 15 most bowed string instruments use a visibly curved fingerboard , nut and bridge to provide bow clearance for each individual string .
258
+ 14 455 emperor valentinian iii is assassinated by two hunnic retainers while training with the bow on the campus martius ( rome ) .
259
+ 19 sketch by leonardo da vinci , c. 1500 a crossbow is a type of weapon , based on the bow , consisting of a horizontal bow-like assembly mounted on a stock , that shoots projectiles called bolts or quarrel .
260
+ 24 on 6 may , the battleship collided with the destroyer in a heavy fog ; wisconsin put into norfolk with extensive damage to her bow , and one week later entered dry dock at the norfolk naval shipyard .
261
+ 15 each boat , called by the italians ) , carried of explosive charge inside its bow .
262
+ 0 bow is the front part of the hull amidships is the middle portion of the vessel in the fore and aft direction .
263
+ 27 pop mašina had an attractive on-stage appearance : božinović was one of the first former yugoslav guitarists that played long guitar solos , played guitar with a bow and behind his back .
264
+ 1 jpg bow of the vessel file : 6 arrival of thor - icelandic coast guard 2011-10-27 reykjavik .
265
+ 52 motive force projectile and cartridge case for the massive world war ii german 80cm schwerer gustav railway gun arrow , darts , spear , and similar weapons are fired using pure mechanical force applied by another object ; apart from throwing without tools , mechanisms include the catapult , slingshot , and bow .
266
+ 36 bows heads of three violin bows : ( upper ) transitional ( f. tourte ) , swan-bill head of a long 18th-century model , pike-head of a 17th-century model a violin is usually played using a bow consisting of a stick with a ribbon of horsehair strung between the tip and frog ( or nut , or heel ) at opposite ends .
267
+ 1 the bow is also known in greek as the proura or plowri , similar to the english prow .
268
+ 6 skilled with javelin , spear and bow , she was an excellent horsewoman and commanded her own battalion .
269
+ 5 łuk ( polish for '' bow '' ) is a polish coat of arms .
270
+ 4 the crew at the bow , separated from the lifeboats , were forced to construct a raft out of hatch covers and doors .
271
+ 2 l. breshnev bow .
272
+ 13 her remains are intact and upright and divers especially enjoy exploring her intact bow cabins .
273
+ 6 '' the addition qeshet means '' bow , arch '' and refers to a method of '' always striking with an arched limb in a looping , elliptical , or circular manner '' .
274
+ 21 the and 64-pounder guns were mounted on the centreline as pivot gun while the two 20-pounder guns were mounted at the bow and stern as chase gun .
275
+ 38 because of the need to run up onto a suitable beach , world war ii landing craft were flat-bottomed , and many designs had a flat front , often with a lowerable ramp , rather than a normal bow .
276
+ 22 she was launched on 12 december 1708 and measured along her gundeck , had a beam of and drew from at the bow , to at the stern .
277
+ 1 ; bow : the front section of a shell ; the first section of the shell to cross the finish line .
278
+ 7 she was fitted with large rams at bow and stern ; the stern ram also serving to protect her rudder and propeller .
279
+ 7 often , it is a normal archery bow used for music rather than as a weapon .
280
+ 26 azazel wields the dark garuda saber taranis ( thunder ) , which is similar to bima 's helios saber and can transform into the taranis blaster bow .
281
+ 3 both ships ' bow were completely blown off and adverse weather conditions in the straits made the towing effort exceedingly difficult with both ships sailing stern - first , but after twelve hours of effort both ships managed to reach the corfu harbor .
282
+ 3 it had the bow altered to achieve an ice-clearing capability ( 20 ° raise from keel line ) .
283
+ 8 the explosion blew away the ship 's entire bow , and she sank in four minutes with no survivors .
284
+ 80 they also collected 797 objects from the area , including vessel of wood , bronze objects , jewelry and coin , and mesolithic stone tool other reported ( 2003 ) finds in the area include additional mummies and burial grounds , ephedra sticks , a string bracelet that holds a hollowed jade stone , a leather pouch , a wool loincloth , a wooden mask painted red and with large nose and teeth , boat - shaped coffin , a bow with arrow , and a straw basket .
285
+ 10 the shape of the hull is characteristic with a sharp bow , sinusoidal waterline , a descending rear body that ends in a straight cut-off stern where the ship has the largest width .
286
+ 4 jpg window for firing bow file : matsumoto cstl inside honmaru .
287
+ 16 she denies him , claiming she will never marry a man who can not use a bow and arrow any better than she .
288
+ 14 to avoid damaging the keel during transport , hypozomata , thick ropes running from bow to stern , to reduce sagging and hogging of the hull , must have been used .
289
+ 21 as was standard siege technique at the time , small ballistae were placed in the towers with other troops armed with bow or sling .
290
+ 22 the first detonated beneath the ship and knocked out nos. 2 and 3 boiler rooms and the second blew the ship 's bow off shortly afterwards .
291
+ 15 they also used other implements such as the round shield ( chimalli ) , the bow ( tlahuītōlli ) , and the spear-thrower ( atlatl ) .
292
+ 15 it begins with minogue dressed in a black outfit and pink umbrella dancing on the bow of the yacht .
293
+ 35 auxiliary power for precision maneuvering of the boat , to enable the angler to cast his bait to where the fish are located ; trolling motors designed for this application are typically mounted in the bow .
294
+ 46 '' jervis later personally directed that the midshipman should have his head shaved , a notice hung around his neck describing his crime and that he should be solely responsible for the cleaning of the head ( naval term for the communal toilets situated at the bow of the ship ) until further notice .
295
+ 11 fingerboards may also be unfretted , as they usually are on bow instruments , where damping by the finger is of little consequence because of the sustained stimulation of the strings .
296
+ 17 the other way to change the side of the boat that faces the wind is turning the bow of the boat into , and then through , the direction of the wind .
297
+ 18 during this action , nigeria sank the german training ship bremse , but suffered serious damage to her bow , possibly having detonated a mine .
298
+ 1 the bow remained afloat for a short time before sinking , during which laertes struggled to rescue survivors .
299
+ 9 another less common technique is bowfishing using a regular bow or a crossbow .
300
+ 5 meanwhile , construction of the bow lower block 1 was carried out at appledore , north devon , and was completed in march 2010 .
301
+ 8 he taught him this skill called ` the bow for supernatural arms !
302
+ 31 in his travelogue , he recorded that the fujian mariners knew about these two rock outcrops as long ya men , because they reminded them of the two pegs at the bow of their ships .
303
+ 9 he is known for his use of a cello bow on guitar and his falsetto or countertenor voice .
304
+ 23 lee is well known for his authentic research , which includes killing a buffalo from the back of a galloping horse with a bow and arrow , crossing the green river many times on horseback , and riding with mongolia nomads while gathering research for an upcoming book .
305
+ 9 smaller ships are usually jumboised by replacing the entire bow or stern section of the ship .
306
+ 14 pentozali music is instrumental : the main tune is played by the pear-shaped , bow cretan lyre , to the accompaniment of a lute , played not in a melodic but in a percussive-like fashion .
307
+ 30 morgan 's concept of three major stages of social evolution ( savagery , barbarism , and civilization ) can be divided by technological milestones , such as fire , the bow , and pottery in the savage era , domestication of animals , agriculture , and metalworking in the barbarian era and the alphabet and writing in the civilization era .
308
+ 8 the instrument is normally played with a cello bow .
309
+ 17 the only hope for the elves is that the strong warrior christine , equipped with only a bow , can travel throughout the kingdom , and retrieve the ring .
310
+ 8 the swallowtail 's were even used in the bow of the ships ' sloop when they carried a director of the company .
311
+ 6 before the introduction of firearms , bow or crossbow were often used saint sebastian is usually depicted as executed by a squad of roman auxiliary archers in around 288 ad ; king edmund the martyr of east anglia , by some accounts , was tied to a tree and executed by viking archer on 20 november 869 or 870 ad .
312
+ 11 the hogue rammed into mysore , effectively crushing the destroyer 's bow , killing a sailor and wounding three others .
313
+ 10 this distinction is denoted by gold hull number on the bow of the ship .
314
+ 16 man 's earliest hunting weapons would have included rocks , spear , the atlatl , and bow and arrow .
315
+ 1 the bow is the most prominent portion of the wreck with the stern damaged from depth charging in the second world war as well as the removal of three of the four propellers by oceaneering international in 1982 .
316
+ 3 specific seasons for bow hunting or muzzle-loading black-powder guns are often established to limit competition with hunters using more effective weapons .
317
+ 3 bordelon s port bow and some of the superstructure were damaged and the main mast snapped and fell on the signal shack , injuring some of the handling team .
318
+ 10 māori were unusual in having no distance weapons such as bow or sling , so all fighting took place at close range .
319
+ 1 holmegaard bow were found in the bog of northern europe dating from the mesolithic period .
320
+ 32 she continued in these duties until february 1945 , when she collided with a landing craft during a voyage from walcheren to the united kingdom , injuring one rating and holing her bow , requiring her to undergo several weeks of repairs .
321
+ 18 because the egyptian ships were facing one another , bin-nun decided that abramov and vardi would attack the bow of the emir farouk and the minesweeper , respectively .
322
+ 18 it is set up in a triangular format so that the end portion of each string can be bow .
323
+ 14 as part of the ship 's interim repairs , liverpool had a provisional false bow constructed and fitted .
324
+ 12 tree nearby provided wood for posts for house walls and stockades , bow and arrow shafts , bowl and spoon , and firewood .
325
+ 3 sharnga is the bow of the hindu god vishnu .
326
+ 10 hull design was also upgraded with a ` clipper ' bow for better seakeeping and a sleeker look .
327
+ 19 several attempts were made to salvage her over the next month by attaching hawsers to the eye-ring on the bow , but her stern was too deeply embedded in the mud and the hawsers parted without pulling her out .
328
+ 9 on rare known artefacts vosegus is shown with a bow and shield , accompanied by a dog .
329
+ 5 in 1956 , kentucky s bow was removed and used in the repair of , which had been damaged in a collision with the destroyer on 6 may 1956 .
330
+ 23 while approximately east of kiska at on 5 july , she was hit amidships by a torpedo fired by , which severed her bow , killing 10 crewmen .
331
+ 4 radical 57 meaning '' bow '' is 1 of 31 kangxi radicals ( 214 radicals total ) composed of three strokes .
332
+ 1 the bow , curiously , remained above water for several hours .
333
+ 15 the target took on a 30 ° list and began to go down by the bow .
334
+ 42 stormy weather in the bay of biscay in 1900 caused the captain of gaulois to complain that the ship 's forward gun turret and casemate were flooded out and that the ship generated enormous sheets of spray when water came over the bow .
335
+ 8 trade with peoples to the southwest brought the bow and arrow .
336
+ 7 horsehair is used for brush , the bow of musical instruments and many other things .
337
+ 3 they had a bow lengthened above the water , a drawing out and sharpening of the forward body , and the greatest breadth further aft .
338
+ 7 valentinian is killed while training with the bow on the campus martius ( rome ) .
339
+ 9 structure the ship 's bridge is located at the bow , and has three decks and two port-related long-boom cranes with payload capabilities of 80 and 120 tonnes .
340
+ 35 from this time on the son may not eat from the same dish as his father , wear his father 's cap or tunic , carry his father 's quiver , use his father 's bow , or look into his father 's granary .
341
+ 4 damage to wisconsin s bow from collision with on 6 may 1956 throughout april 1956 and into may , wisconsin operated locally off the virginia capes .
342
+ 49 on 31 august 1940 she and her sister ship rendered assistance to royal navy ships that had struck mines in the north sea off the coast of the netherlands , rescuing the survivors of the sunken destroyer and standing by the badly damaged destroyer , which had lost her bow in a mine explosion , until tugs arrived to tow her to safety .
343
+ 30 the tanker proceeded towards algeciras after the collision , where it was secured , with its cargo of 39,000 tons of fuel , whilst new flame took water by the bow .
344
+ 26 another possible origin involves the fact that '' devil '' was a name for the longest seam of a wooden ship , which ran from the bow to the stern .
345
+ 8 pram are usually short with transom at both bow and stern .
346
+ 1 the bow and beakhead of the 17th century warship vasa seen from above .
347
+ 43 the trident was not thought of as a national symbol until 1917 , when one of the most prominent ukrainian historians , mykhailo hrushevsky , proposed to adopt it as a national symbol ( alongside other variants , including an arbalet , a bow or a cossack carrying a musket , i.e. images that carried considerable historical and cultural and heraldic significance for ukraine ) .
348
+ 17 thompson describes her as '' apparently a young man , well dressed in leather , carrying a bow and quiver of arrow , with his wife , a young woman in good clothing '' .
349
+ 42 she has a 60-foot ( 18.3-meter ) telescopic boom with a lifting capacity of 6,250 pounds ( 2,835 kg ) aft and a 23-foot ( 7-meter ) fixed boom with a lifting capacity of 1,000 pounds ( 454 kg ) at her bow .
350
+ 3 after badly damaging bow of the ship their first time underway , harkness and his officers butt heads with gruff commander reynolds ( john mcintire ) , who oversees the project as the representative of rear admiral tennant ( ray collins ) .
351
+ 9 loaded down with eight cords of wood on her bow , she began to founder .
352
+ 17 one usage of skiff is to refer to a typically small flat-bottomed open boat with a pointed bow and a flat stern originally developed as an inexpensive and easy to build boat for use by inshore fishermen .
353
+ 34 a swiss arrow ( also known as a dutch arrow , scotch arrow , yorkshire arrow or gypsy arrow ) is a weapon similar to an arrow but thrown rather than shot from a bow ( so as to make it a dart ) , with the addition of a small notch close to the fletching .
354
+ 15 one of the planes crashed into apache s radar mast and exploded off her port bow .
355
+ 7 the champagne bottle traditionally smashed off the bow of a ship or aeroplane at its launch is believed to originate in the rather more reserved celebrations surrounding the christening of a baby .
356
+ 1 a bow 's cast is the distance it can shoot an arrow in archery .
357
+ 22 more specifically , a mooring mast is a mast or tower that contains a fitting on its top that allows for the bow of the airship to attach its mooring line to the structure .
358
+ 12 thomas tracy attempted to make an emergency turn to starboard but her bow soon plowed into valcour s starboard side , rupturing an aviation gasoline fuel tank .
359
+ 2 at the bow area , the windlass and a large mound of chain remain .
360
+ 27 its four principle bottom planks were arranged one besides the other in a way that the first plank forms the stern and the last one forms the bow .
361
+ 8 he was saved moments before the ship 's bow began to buckle during the sinking .
362
+ 3 all had two bow torpedo tube and two torpedo , and were equipped with a deck-mounted machine gun .
363
+ 7 three polar bear approach honolulu s starboard bow while she is on the surface 280 nautical miles ( 519 kilometers ) from the north pole .
364
+ 5 tlahhuītōlli : the aztec war bow , constructed from the wood of the tepozan tree , about five feet long and stringed with animal - sinew .
365
+ 8 it was designed with low-sides and a high bow to fight the choppy waves .
366
+ 16 yms-103 , in an attempt to rescue survivors , struck two mines , blowing off her bow and stem .
367
+ 10 in addition , saltwater ballast tank were located in the bow and the stern of milazzo .
368
+ 1 the bow post distinguishes the caïque from other mediterranean working boats .
369
+ 3 the ship is bow to stern , with a beam , and stands high when landed .
370
+ 19 the gudok or hudok ( , ) is an ancient eastern slavic string musical instrument , played with a bow .
371
+ 16 the turret rangefinders on prince of wales could not be used because of spray over the bow and fire was instead directed from the rangefinders in the control tower .
372
+ 10 the tack of the sail may be attached at the bow like a genoa but is frequently mounted on a bowsprit , often a retracting one .
373
+ 26 tactics effective tactics varied greatly , depending on : weapons ancient weapons included the spear , the atlatl with light javelin or similar projectile , the bow and arrow , the sling ; polearm such as the spear , falx and javelin ; hand-to-hand weapons such as sword , spear , clubs , maces , axe , and knives .
374
+ 17 the crews of the beached vessels were soon harassed by a small force of scots armed with bow .
375
+ 6 but with its scythes , or bow ( for a violin ) , it could most likely be instrument - designed , like its pre-evolution , kricketot .
376
+ 19 the latter is associated with her skill as an archer , and although she does not receive a physical bow , she recalls some advice given to her by michiru kaioh -- '' ( if ) you think you 're being taken advantage of by the enemies , stretch a line taut in your soul .
377
+ 16 those six arms bear a bell , a vajra , an unopened lotus flower , a bow , arrow , and one holding something that we can not see ( only advanced esoteric practitioners know what that thing is .
378
+ 7 the violinist produces sound by drawing a bow across one or more strings ( which may be stopped by the fingers of the other hand to produce a full range of pitches ) , by plucking the strings ( with either hand ) , or by a variety of other techniques .
379
+ 6 deer must be taken with a bow .
380
+ 13 multiwa is hysteria 's niece and buldont 's cousin , skilled with a bow that can become a sword .
381
+ 25 the resulting shape of the submerged part of the hull in this condition usually creates a force ( a turning moment ) that pushes the bow to weather so that it is necessary to pull the tiller to weather to counteract this force .
382
+ 26 after the release of ágætis byrjun , the band became well known for jónsi 's signature style of reverb accentuated guitar work using a cello 's bow .
383
+ 8 range weapons ; gandewa the gandewa is a bow , though it is more often referred to as a busar or busur today .
384
+ 43 the player moves the remote in a manner similar to the method the separate games are played in real life ; for example , swinging the wii remote to replicate hammer throw or pulling back the remote and tilting the nunchuk like a bow and arrow .
385
+ 1 this bow can be bought at 10-40 or 20-50 pounds draw weight .
386
+ 1 the bow was a renowned english weapon , made of wood from the yew tree .
387
+ 9 single screw propulsion , a cutaway forefoot under the bow , and rounded bilges facilitated ice-breaking .
388
+ 8 he is also remembered today for the dragonetti bow , which he evolved throughout his life .
389
+ 14 the front of the ship had a 61 ° angle of rake at the bow where the stem post was joined to the keel with mortise and tenon joints and secured with diameter rope .
390
+ 5 amber frog on a violin bow , made by keith peck in 1996/97 .
391
+ 64 in times of crises , the small host ( oastea mică ) -- which consisted of around 10,000 to 12,000 men -- stood ready to engage the enemy , while the large host ( oastea mare ) -- which could reach up to 40,000 -- had all the free peasantry older than 14 , and strong enough to carry a sword or use the bow , recruited .
392
+ 11 employing newly developed lifting technologies , they recovered all but the bow of the vessel , including the remains of 115 sailors , which were buried in russia .
393
+ 26 design the mutsuki class destroyers were based on the same hull design as the previous kamikaze class , except with a double curvature configuration of the bow , a feature which became a standard in all later japanese destroyers .
394
+ 11 with this technique more pressure than usual is needed on the bow , so this can not be practiced in softer passages .
395
+ 12 all hands got away in the lifeboats and stood by under the bow .
396
+ 44 within approximately 2 miles ( 3 km ) , to the west of alqosh , lies the well known ruin of shayro meliktha which is marked in the iraqi ruins map as a temple carrying a carving of sennacherib aiming an arrow from his bow .
397
+ 21 each member in the party is specialized in one of the five weapon groups and they are sword , sabre , bow , axe and spear .
398
+ 10 they are usually painted in bright colors , while the bow has a pair of eyes .
399
+ 12 individual hussar towarzysz may possibly have carried a tatar or turkish reflex bow with arrows in a quiver , especially after the mid-17th century , when many ` pancerny ' companions became hussars , and some sources of the late 17th century note the existence of bows amongst the hussar companions .
400
+ 1 this bow can be used for hunting or target archery .
401
+ 22 damage control measures brought the resultant fires under control by 0320 hours but not before the ship had lost much of her bow and suffered 79 dead .
402
+ 9 the combination of the horse-mounted warrior armed with a bow made the steppe people 's armies the most powerful military force in asian history .
403
+ 22 masters of champions episode 1 : 14-year-old contortionist princess elayne from argentina , who hit a target while blindfolded by shooting a bow and arrow with her feet while performing a backbend handstand .
404
+ 27 the heroes fought with craston and kaeg to protect rebecca from albion , from which they recovered the sword of the mahentoy ( cyclopes ) and the bow of the encantada ( fairies ) .
405
+ 8 archer : a long ranged unit with a bow and arrow that plays like a third-person shooter .
406
+ 20 bowed guitar is a method of playing a guitar , acoustic or electric , in which the guitarist uses a bow to play the instrument , similar to playing a cello or a viola da gamba .
407
+ 5 '' archery tournament '' ( bow and crossbow ) .
408
+ 4 his design retained conventional bow and stern instead of the upswept conoid '' snout '' of the whaleback .
409
+ 38 the 1866 battle of lissa , in which ramming had proven an important tactic , was influential in ship design for 40 years , and his 1869 design called for the ship to have an iron spur ram bow .
410
+ 7 pervenets was fitted with large rams at bow and stern ; the stern ram also serving to protect her rudder and propeller .
411
+ 5 the collision sheared off her bow , leaving her dead in the water .
412
+ 5 trick arrows are shot with bow like arrow but can possess a specialized function ( technological or magical ) such as compact explosive charges or rotary drills .
413
+ 22 as was standard siege technique at the time , ballistae were placed up in the towers with other soldiers armed with either bow or slings .
414
+ 15 the connemara however was terribly ripped below the waterline on the port side , from bow to amidships .
415
+ 14 the prow of the the prow is the forward-most part of a ship 's bow that cuts through the water .
416
+ 11 an arrow is a shafted projectile that is shot with a bow .
417
+ 19 '' kohl describes the sagamore as a long shipwreck of with impressive triple tow rings mounted on her blunt-nosed bow , wide open hatches for easy access , and comfortable ambient lighting for swimming inside her hull .
418
+ 20 the steel was melted down at amite foundry and machine in amite , louisiana , to cast the ship 's bow section .
419
+ 13 before their adoption of guns , the plains indians hunted with spear , bow , and bows and arrows , and various forms of clubs .
420
+ 20 a popular ecotourism destination in the area is cabo de la vela missionary history wayuus carrying a rifle and traditional bow and arrow .
421
+ 21 horse archer presentation in hungary a horse archer , horsed archer , or mounted archer is a cavalry armed with a bow , able to shoot while riding from horseback .
422
+ 14 when at anchor or alongside , it is flown from the jackstaff at the bow of the ship .
423
+ 19 in the mesolithic age , antler and animal skull were used for jewelry and burial sites , and the bow began common and hunt for all game types begun .
424
+ 6 most boats rise outwards at the bow and stern , so a boat may be quite a bit longer than its waterline length .
425
+ 37 design the navy commander ( marinekommandant ) of the austro-hungarian fleet , vice admiral maximilian daublebsky von sterneck , outlined in a memorandum of 8 september 1884 the requirements for a cruiser equipped with a reinforced ram bow for ramming as well as torpedoes for attacks on larger warships .
426
+ 28 men generally entered the boat by climbing down a cargo net hung from the side of their troop transport ; they exited by charging down the boat 's bow ramp .
427
+ 10 class torpedo boats was located in a turret near the bow .
428
+ 18 the hulls are made of fiberglass or frp , heavily reinforced by numerous bulkheads , and usually have bow and stern enclosed flotation compartments .
429
+ 20 an arrow with a flammable substance attached to the shaft , close to the tip , was shot from a bow or short-muzzled musket .
430
+ 46 some of the ancient duties are that , freemen/women must be ready to defend the city of dublin from attack at short notice can be called up to join a city militia also a law which was passed in 1454 states that freemen/women must own a bow , a coat of mail , a helmet and a sword .
431
+ 5 other folk instruments include the bow .
432
+ 7 uranus birthplace : unknown weapon : suzaku bow uranus made her first appearance in battle arena toshinden 2 , as an unlockable sub-boss .
433
+ 14 : on the bridge ; i.e. , in string playing , an indication to bow or to pluck very near to the bridge , producing a characteristic glassy sound , which emphasizes the higher harmonic at the expense of the fundamental ; the opposite of sul tasto portamento : carrying ; i.e. , 1 .
434
+ 13 the term is derived from a mi'kmaq word meaning '' bends like a bow '' .
435
+ 26 though the iraqi air invasion surprised the iranians , the iranian air force retaliated with an attack against iraqi military bases and infrastructure in 99 ( bow 99 ) .
436
+ 12 a randan is a boat rowed by three persons , stern and bow using a single oar each and the central person a pair of scull .
437
+ 1 a bow tries to shoot arrow to puncture your balloons .
438
+ 14 in cinema , the submarine is easily identifiable by the enormous drill on its bow ; it is also notable for being able to burrow underground and fly .
439
+ 20 ) lymphocytes t : the same sort of craft but with a large uppercase t on the underbelly at the bow .
440
+ 5 it is played with a bow and has between three and thirty strings depending on the region .
441
+ 4 ysaÿe also employed virtuoso bow and left hand techniques throughout , for he believed that '' at the present day the tools of violin mastery , of expression , technique , mechanism , are far more necessary than in days gone by .
442
+ 3 first , the bow was removed and retained in the drydock while the rest of the ship was floated out .
443
+ 10 the general shape of the boat began in a narrow bow which spread back towards a wide stern , with the final shape at the rear being rectangular .
444
+ 13 by the mesolithic , hunting strategies had diversified with the development of the bow 18,000 years ago and the domestication of the dog about 15,000 years ago .
445
+ 15 gudok the gudok is an ancient east slavic string musical instrument , played with a bow .
446
+ 4 the hunting tool was bow and arrow .
447
+ 17 elves are renowned for their grace and mastery of magic and weapons such as the sword and bow .
448
+ 10 the u-boat then began to take on water from the bow area ; the submarine was almost vertical before slipping beneath the waves and getting caught on inverlyon s fishing net .
449
+ 8 the pearl has no chase gun in her bow or stern .
450
+ 12 the larger boats had three mast - steps ; one at the bow , one amidships and one in between .
451
+ 1 the bow and stern of the ship are elaborately decorated with complex woodcarvings in the characteristic '' gripping beast '' style , also known as the oseberg style .
452
+ 18 customs as with many of the peoples of southwest tanzania , in marriage ceremonies the groom carried a bow in his right-hand and an arrow in his left '' to pierce any man who seduces your wife '' .
453
+ 14 battles were fought with weapons like the sword , sling , spear , and bow and arrow .
454
+ 26 she reached what had been once her regular port of call , but not before a shore battery at new brighton had put shots across her bow when she failed to give a satisfactory answer to questioning signals .
455
+ 14 in its function , an atlatl dart is more like a combination between a bow and an arrow .
456
+ 15 jubei collects an assortment of short and long-range weapons throughout the game , including a bow and a matchlock rifle .
457
+ 41 a maximum of four of these are strung over the fret , while the rest are strung lengthwise down the sides of the neck and are strummed with the fingers in accompaniment to the primary melody which is played with a bow .
458
+ 26 the israeli commander , david maimon , ordered the ships to cross the t so that the starboard side of his ships would be facing the bow of the egyptian vessel .
459
+ 31 one teammate had to stand on the flat stern , known as the '' cambridge end '' , propelling the boat through the river , while their teammate stood on the bow , known as the '' oxford end '' , and wave a small union jack .
460
+ 8 the strings are sounded either by drawing the bow across them ( arco ) , or sometimes by plucking them ( pizzicato ) .
461
+ 19 two concave c-bouts between each side 's corners form the waist of this figure , providing clearance for the bow .
462
+ 13 gungsul , also written goongsul , literally means '' the craft of the bow .
463
+ 15 the general shape of the hull appears wider at the stern and narrower at the bow ; in fact , the main section is not amidships but is displaced towards the stern .
464
+ 53 as per the main priest ( puja panda ) , the dhruva/main idol of goddess is stationary ( achalanti mula vigraha ) and she holds sword ( khadga ) , trident ( trishul ) , manuscript ( pustak ) and lute or veena in her right hands and disk ( pattisha ) , bow ( karmuka ) , bell ( ghanta ) and the head of buffalo demon ( mahishasura ) left hands .
465
+ 6 willis considered that the tweed s bow shape was responsible for its notable performance , and this form seems to have been adopted for cutty sark .
466
+ 11 the michigan was drawn up to the drake so that her bow was up against the drake 's stern quarter on the leeward side .
467
+ 41 naus and square-rigged caravels in the 4th portuguese india armada of 1502 ( livro de lisuarte de abreu ) the squared-rigged caravel possessed aftercastle and forecastle , unlike the lateen caravel , which could not have any structure erected on the bow of the ship , because of the maneuver of the foremast .
468
+ 27 in the holy land , turcopoles were more lightly armored than the knights and sergeants ( mounted men at arms ) , being armed with lance and bow to help combat the more mobile muslim forces .
469
+ 15 it is characterized by its use of sticks similar to that of a stringed instrument bow , with the aim of getting one 's tip through the other stick 's space between the slack ( the hair ) and the rod ( the wood ) .
470
+ 29 in italian it is called either manico or tasto , the latter especially in the phrase sul tasto , a direction for bowed string instruments to play with the bow above the fingerboard .
471
+ 26 a southport boat can be told apart from others in its class due to its wide beam , reverse transom and tumblehome aft , a clipper bow , and a '' continuously variable deep vee hull beginning at 22 degrees at the transom .
472
+ 6 the typical junk has a square-ended bow and stern , a flat-bottomed hull or carvel-shaped hull with no keel or sternpost , and solid transverse bulkheads in the place of structural ribs found in western seacrafts .
473
+ 49 on the belt sometimes is possible to distinguish a buckle in the middle or thongs hanging from it with sometimes attached bag , a round metal pocket mirror , knife , comb , sometimes also is shown ( male statues ) a dagger or a straight sword , a bow , a ` kolchan ' ( quiver ) , a hook , an axe .
474
+ 8 on many coins kanishka appears to have a bow , but this interpretation is debatable .
475
+ 17 the central granite column symbolises the '' remembrance '' ; the six flanking concrete columns symbolise the bow of ships with the bow-waves either side ; the plan symbolises the globe of the earth spinning on its axis ; the paving pattern of the dais represents the camouflage patterns used by merchant ships during world war i , while the red cross represent the hospital ship that were manned by merchant crew ; the concrete drums at each end of the north - south axis represent compass cards that symbolise navigation ; the flagpole is a nautical style with a yardarm and gaff .
476
+ 16 arjuna abandoning gandiva after the kurukshetra war the gandiv ( iast : ; ) is the bow of arjuna , the hero of the hindu epic mahabharata .
477
+ 11 she then rolled over completely and began to sink by the bow , taking 570 of the 700-strong crew to the bottom , including her commanding officer , captain thomas lawrie shelford .
478
+ 45 after rescuing danny , miles resolved to defeat monroe once and for all when he realized that the various pendants rachel and ben invented can grant monroe massive firepower ( including nuclear capability ) against countless people who are reduced to fighting with sword and bow and arrow after the blackout .
479
+ 29 bowed string instruments , such as the violin , can also be plucked in the technique known as pizzicato ; however , as they are usually played with a bow , they are not included in this category .
480
+ 4 the villu , a bow , the age-old weapon of warriors - paradoxically lends itself to be used as a primary musical instrument for the villu pattu artists .
481
+ 1 the bow consists of a stick with many hairs stretched between its ends .
482
+ 8 uitti invented a radically extended technique using two bow simultaneously in one hand - being the first to transform the cello into a 4 part chordal instrument .
483
+ 19 traditionally , they are brightly painted in shades of yellow , red , green and blue , and the bow is normally pointed with a pair of eyes .
484
+ 25 each time the refrain is sung , one more character 's tag line is added : uhura : '' there 's klingons on the starboard bow .
485
+ 22 the game follows a rock-paper-scissors mechanism in which axe beat lance , lances beat sword , and swords beat axes ; the bow in the game is not a part of any weapon triangle , but is especially effective against flying units .
486
+ 12 '' other weapons training at this time also included the javelin , bow , throwing stone , sling and ' martiobarbuli ' -- usually reconstructed as weighted darts or small javelins .
487
+ 30 a cape island style fishing boat is an inshore motor fishing boat found across atlantic canada having a single keel flat bottom at the stern and more rounded towards the bow .
488
+ 32 the jesuit missionaries introduced songs which used the tupi language with christian lyrics , an attempt to convert the people to christianity , and also introduced gregorian chant and the flute , bow , and the clavichord .
489
+ 53 overview the two supporters represent the unity between native americans and colonists : dexter , a sailor colonist holds a plummet -- a navigational tool -- in his right hand , while over his right shoulder is a cross-staff ; sinister , a lenape native to manhattan rests his left hand upon a bow .
490
+ 42 the three stars in the constellation 's center , which form orion 's belt in western mythology , are the two brothers ; the orion nebula above them is the forbidden fish ; and the bright stars betelgeuse and rigel are the bow and stern of the canoe .
491
+ 9 in august 1996 haynie lost two violins and a bow , when a lightning-induced fire burnt tim austin 's doobie shea studios to the ground .
492
+ 10 -lcb- the bambuti use large net , trap , and bow and arrows to hunt game .
493
+ 1 the bow is the foremost part of the hull .
494
+ 7 adherbal , conceding defeat , aimed his bow towards the african coast and fled the action .
495
+ 27 she operated at efate for the next 11 months , temporarily deploying to espiritu santo from 24 july 1943 to 4 august 1943 to fashion a temporary bow for the torpedo light cruiser .
496
+ 16 on 7 december , she collided near kavieng with the destroyer , which sheared off her bow .
497
+ 5 a woman figure with a bow - the tellervo of astuva - a rarity among the rock painting .
498
+ 8 xebecs featured a distinctive hull with pronounced overhanging bow and stern , and rarely displaced more than 200 ton , making them slightly smaller and with slightly fewer guns than frigate of the period .
499
+ 12 when he was five or six , he was given a small bow and arrow .
500
+ 13 the stem is the most forward part of a boat or ship 's bow and is an extension of the keel itself .
501
+ 16 the ship was equipped with two small hotchkiss cannons , one of 65 mm on the bow and another of 47mm on the stern .
502
+ 21 the s. 67 s armament consisted of two fixed , forward-firing 7.7-millimeter ( 0.303-inch ) vickers machine gun mounted in the bow .
503
+ 2 at the bow resides a thwart to support the mast which passes through a hole in its center to the mast step mounted on the center line of the boat .
504
+ 8 the chariot 's archer was armed either a bow ( gōng 弓 ) or crossbow ( nŭ 弩 ) for long distance attacks .
505
+ 15 the sailing warship was immensely powerful on its sides , but very weak on its bow and stern .
506
+ 8 combat archery combat archery allows the introduction of bow and crossbow to heavy weapons combat .
507
+ 10 the vessels were equipped with six torpedo tubes ( four bow and two stern ) of 533 mm ( 21 in ) caliber .
508
+ 7 the stern section sank , while the bow continued to drift in the wind .
509
+ 33 the gold used in the coins was of very high quality with a purity of 95.83 % and it bore the image of the persian king or a great warrior armed with a bow and arrow .
510
+ 24 the simple metal pier represents the stern at the water 's edge , a simple cylinder frame is the smoke stack , and the bow is made of prefabricated parts similar to those assembled by the shipyard workers .
511
+ 1 the bow and arrow appeared as the main technological advancement .
512
+ 15 in attempting to avoid a salvo from glasgow , cabot crossed andrew doria ' s bow , forcing biddle 's brig onto a port tack which avoided collision but took her away from the action .
513
+ 3 expert with the bow , naginata and nunchaku .
514
+ 15 the bowed psaltery is a type of psaltery or zither that is played with a bow .
515
+ 44 gunpowder , known here as the magical substance smoke powder and different in its composition from historical gunpowder , is starting to make an appearance , but much of the armament is still dominated by pre-gunpowder weaponry such as sword , spear , and bow .
516
+ 14 it derives its name from the arab rebab which means '' played with a bow '' but in central asia the instrument is plucked and is distinctly different in construction .
517
+ 26 in throwing something to your companion , you will need no more force to get it to him whether he is in the direction of the bow or the stern , with yourself situated opposite .
518
+ 18 ted and fred , having previously filled the casket with gasoline , start shooting fiery arrows from a bow at the casket .
519
+ 14 their armament consists of spear with iron-head , a large sword , and a bow with arrows , tipped with poison ( umiyu ) on it .
520
+ 16 armament the r - class were the first royal navy submarines to be fitted with six bow torpedo tubes , number of torpedoes being considered more important than range or size of warhead carried when attacking u-boats .
521
+ 4 flasher then fired four bow torpedoes from , but all missed .
522
+ 14 she rode out a fierce storm on 5 and 6 june that wrenched the bow off the cruiser pittsburgh .
523
+ 22 frank served in the army during world war ii and then began his career in san francisco crafting and restoring violin and bow , a job he kept for 51 years until he was forced to retire in 1999 due to illness .
data/bow/train.gold.txt ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 0
3
+ 1
4
+ 2
5
+ 0
6
+ 1
7
+ 1
8
+ 1
9
+ 0
10
+ 1
11
+ 1
12
+ 0
13
+ 0
14
+ 1
15
+ 0
16
+ 1
17
+ 1
18
+ 0
19
+ 0
20
+ 2
21
+ 1
22
+ 0
23
+ 0
24
+ 0
25
+ 1
26
+ 0
27
+ 0
28
+ 1
29
+ 0
30
+ 0
31
+ 0
32
+ 0
33
+ 1
34
+ 0
35
+ 2
36
+ 0
37
+ 1
38
+ 1
39
+ 0
40
+ 0
41
+ 0
42
+ 0
43
+ 0
44
+ 1
45
+ 0
46
+ 2
47
+ 2
48
+ 1
49
+ 1
50
+ 0
51
+ 0
52
+ 0
53
+ 1
54
+ 1
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 1
60
+ 2
61
+ 1
62
+ 1
63
+ 0
64
+ 1
65
+ 0
66
+ 0
67
+ 2
68
+ 0
69
+ 1
70
+ 2
71
+ 2
72
+ 0
73
+ 0
74
+ 0
75
+ 1
76
+ 0
77
+ 1
78
+ 0
79
+ 1
80
+ 0
81
+ 1
82
+ 0
83
+ 1
84
+ 0
85
+ 2
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 1
96
+ 1
97
+ 0
98
+ 0
99
+ 1
100
+ 1
101
+ 0
102
+ 2
103
+ 1
104
+ 1
105
+ 1
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 2
111
+ 0
112
+ 0
113
+ 1
114
+ 2
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 1
122
+ 1
123
+ 1
124
+ 1
125
+ 2
126
+ 0
127
+ 0
128
+ 1
129
+ 1
130
+ 0
131
+ 1
132
+ 2
133
+ 0
134
+ 1
135
+ 0
136
+ 1
137
+ 1
138
+ 0
139
+ 0
140
+ 2
141
+ 0
142
+ 0
143
+ 0
144
+ 1
145
+ 1
146
+ 0
147
+ 1
148
+ 0
149
+ 0
150
+ 2
151
+ 1
152
+ 0
153
+ 1
154
+ 1
155
+ 0
156
+ 0
157
+ 1
158
+ 0
159
+ 1
160
+ 0
161
+ 1
162
+ 1
163
+ 1
164
+ 1
165
+ 1
166
+ 1
167
+ 0
168
+ 0
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 0
175
+ 1
176
+ 1
177
+ 1
178
+ 0
179
+ 1
180
+ 2
181
+ 0
182
+ 2
183
+ 0
184
+ 0
185
+ 1
186
+ 0
187
+ 2
188
+ 0
189
+ 1
190
+ 1
191
+ 0
192
+ 0
193
+ 0
194
+ 2
195
+ 2
196
+ 0
197
+ 1
198
+ 2
199
+ 2
200
+ 1
201
+ 0
202
+ 2
203
+ 1
204
+ 1
205
+ 1
206
+ 0
207
+ 1
208
+ 0
209
+ 0
210
+ 1
211
+ 1
212
+ 2
213
+ 0
214
+ 2
215
+ 0
216
+ 0
217
+ 0
218
+ 1
219
+ 2
220
+ 0
221
+ 0
222
+ 2
223
+ 2
224
+ 0
225
+ 2
226
+ 0
227
+ 0
228
+ 0
229
+ 0
230
+ 0
231
+ 2
232
+ 1
233
+ 2
234
+ 2
235
+ 0
236
+ 1
237
+ 0
238
+ 1
239
+ 1
240
+ 1
241
+ 0
242
+ 0
243
+ 0
244
+ 0
245
+ 2
246
+ 0
247
+ 2
248
+ 1
249
+ 0
250
+ 1
251
+ 0
252
+ 0
253
+ 0
254
+ 0
255
+ 0
256
+ 1
257
+ 2
258
+ 1
259
+ 1
260
+ 0
261
+ 0
262
+ 0
263
+ 2
264
+ 0
265
+ 1
266
+ 2
267
+ 0
268
+ 1
269
+ 1
270
+ 0
271
+ 2
272
+ 0
273
+ 1
274
+ 0
275
+ 0
276
+ 0
277
+ 0
278
+ 0
279
+ 1
280
+ 1
281
+ 0
282
+ 0
283
+ 0
284
+ 1
285
+ 0
286
+ 1
287
+ 1
288
+ 0
289
+ 1
290
+ 0
291
+ 1
292
+ 0
293
+ 0
294
+ 0
295
+ 2
296
+ 0
297
+ 0
298
+ 0
299
+ 1
300
+ 0
301
+ 1
302
+ 0
303
+ 2
304
+ 1
305
+ 0
306
+ 2
307
+ 1
308
+ 2
309
+ 1
310
+ 0
311
+ 1
312
+ 0
313
+ 0
314
+ 1
315
+ 0
316
+ 1
317
+ 0
318
+ 1
319
+ 1
320
+ 0
321
+ 0
322
+ 2
323
+ 0
324
+ 1
325
+ 1
326
+ 0
327
+ 0
328
+ 1
329
+ 0
330
+ 0
331
+ 1
332
+ 0
333
+ 0
334
+ 0
335
+ 1
336
+ 2
337
+ 0
338
+ 1
339
+ 0
340
+ 1
341
+ 0
342
+ 0
343
+ 0
344
+ 0
345
+ 0
346
+ 0
347
+ 1
348
+ 1
349
+ 0
350
+ 0
351
+ 0
352
+ 0
353
+ 1
354
+ 0
355
+ 0
356
+ 1
357
+ 0
358
+ 0
359
+ 0
360
+ 0
361
+ 0
362
+ 0
363
+ 0
364
+ 1
365
+ 0
366
+ 0
367
+ 0
368
+ 0
369
+ 0
370
+ 2
371
+ 0
372
+ 0
373
+ 1
374
+ 1
375
+ 2
376
+ 1
377
+ 1
378
+ 2
379
+ 1
380
+ 1
381
+ 0
382
+ 2
383
+ 1
384
+ 1
385
+ 1
386
+ 1
387
+ 0
388
+ 2
389
+ 0
390
+ 2
391
+ 1
392
+ 0
393
+ 0
394
+ 2
395
+ 0
396
+ 1
397
+ 1
398
+ 0
399
+ 1
400
+ 1
401
+ 0
402
+ 1
403
+ 1
404
+ 1
405
+ 1
406
+ 2
407
+ 1
408
+ 0
409
+ 0
410
+ 0
411
+ 0
412
+ 1
413
+ 1
414
+ 0
415
+ 0
416
+ 1
417
+ 0
418
+ 0
419
+ 1
420
+ 1
421
+ 1
422
+ 0
423
+ 1
424
+ 0
425
+ 0
426
+ 0
427
+ 0
428
+ 0
429
+ 1
430
+ 1
431
+ 2
432
+ 1
433
+ 2
434
+ 1
435
+ 1
436
+ 0
437
+ 1
438
+ 0
439
+ 0
440
+ 2
441
+ 2
442
+ 0
443
+ 0
444
+ 1
445
+ 2
446
+ 1
447
+ 1
448
+ 0
449
+ 0
450
+ 0
451
+ 0
452
+ 1
453
+ 1
454
+ 0
455
+ 1
456
+ 1
457
+ 2
458
+ 0
459
+ 0
460
+ 2
461
+ 2
462
+ 1
463
+ 0
464
+ 1
465
+ 0
466
+ 0
467
+ 0
468
+ 1
469
+ 2
470
+ 2
471
+ 0
472
+ 0
473
+ 1
474
+ 1
475
+ 0
476
+ 1
477
+ 0
478
+ 1
479
+ 2
480
+ 1
481
+ 2
482
+ 2
483
+ 0
484
+ 0
485
+ 1
486
+ 1
487
+ 0
488
+ 2
489
+ 1
490
+ 0
491
+ 2
492
+ 1
493
+ 0
494
+ 0
495
+ 0
496
+ 0
497
+ 1
498
+ 0
499
+ 1
500
+ 0
501
+ 0
502
+ 0
503
+ 0
504
+ 1
505
+ 0
506
+ 1
507
+ 0
508
+ 0
509
+ 1
510
+ 0
511
+ 1
512
+ 0
513
+ 1
514
+ 2
515
+ 1
516
+ 2
517
+ 0
518
+ 1
519
+ 1
520
+ 0
521
+ 0
522
+ 0
523
+ 2
data/chair/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "chair_chairman", "1": "chair_chair"}
data/chair/test.data.txt ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 20 academia and education callanan is an associate professor at the university of wisconsin milwaukee , where he serves as the chair of the english department , teaches creative writing and coordinates the ph.d. in creative writing program there .
2
+ 17 she is a justice of the peace , the complaints commissioner of the bar standards board and chair of the complaints audit committee , an independent inspectorate set up by the uk government to restore public confidence in the immigration and asylum system administered by the border and immigration agency .
3
+ 21 norman arthur stillman , also noam ( נועם , in hebrew ) , b. 1945 , is the schusterman-josey professor and chair of judaic history at the university of oklahoma .
4
+ 10 he began what was to become his lifelong career in chair manufacturing in 1852 .
5
+ 13 at the parks there are changing room available as well as lots of chair and picnic table .
6
+ 14 people seated at a chabudai may sit on zabuton or tatami rather than on chair .
7
+ 4 she is president , chair and chief executive officer of e. i. du pont de nemours and company ( '' dupont '' ) in wilmington and a former director of general motors .
8
+ 4 he was also the chair of the norwegian agency for development cooperation from 1969 to 1974 .
9
+ 7 from 2007 to 2010 he is the chair of the norwegian farmers and smallholders union .
10
+ 17 following the war , wilhelm 's family returned to germany , where his father became the first chair of sinology at the university of frankfurt .
11
+ 7 in 1981 sis inaugurated the ibn khaldun chair of islamic studies to address concerns that american universities lacked an appropriate venue for exploring the greater muslim-western understanding .
12
+ 8 after leaving victoria police , she was appointed chair of the victorian bushfire reconstruction and recovery authority in february 2009 until she stood down from the position in july 2010 .
13
+ 31 these are evident in furniture in the use of floral marquetry , walnut instead of oak , twisted turned supports and legs , exotic veneer , cane seats and backs on chair , sumptuous tapestry and velvet upholstery and ornate carved and gilded scrolling bases for cabinets .
14
+ 17 norm coleman , u.s. senator from minnesota linda lingle , governor of hawaii carly fiorina , former chair and chief executive officer of hewlett-packard meg whitman , former president and chief executive officer of ebay thursday , september 4 , 2008 john mccain , united states senator from arizona and 2008 republican nominee for president of the united states .
15
+ 23 harold martin lancaster ( born march 24 , 1943 ) is the former president of the north carolina community college system and former chair of the national council of state directors of community colleges .
16
+ 3 the current executive chair is lynda catherine tanaka .
17
+ 6 the trainee is strapped into a chair mounted on a rotating axis ( vertical ) the astronauts '' run '' in this continuous loop and are flipped over repeatedly .
18
+ 13 from 1999 until 2012 , she served as the first female ceo and chair of avon products , inc . jung was also the first woman to serve as chairman of the cosmetic , toiletry & fragrance association , and chairman of the world federation of direct selling associations .
19
+ 23 during his service in the iowa house , schickel served as a member of the appropriations and economic growth committees and as the chair of the ethics committee and of the economic development appropriations committee .
20
+ 5 academic career shu served as chair of the astronomy department of uc berkeley from 1984 until 1988 , and has held faculty appointments at the suny stony brook and uc berkeley .
21
+ 22 celia is a regular tutor for the arvon foundation , is a member of the society of authors , and has been chair of the children 's writers and illustrators group .
22
+ 42 it is strongly suggested that madame morrible hexed ama clutch , afflicting her with the same crazed behavior that galinda ( falsely ) claimed was responsible for ama clutch 's absence from the roommate negotiations ; namely talking to inanimate objects like chair , rusty nail and evening gown as if they were people .
23
+ 6 it bears many similarities to a chair .
24
+ 20 comfort this type of footstool is used to provide comfort to a person seated , for example , in a chair or sofa .
25
+ 48 usa freedom corps was a white house office and fifth policy council ( together with domestic , economic , national security , and homeland security ) within the executive office of the president of the united states under george w. bush , who as president served as its chair .
26
+ 4 he has also been chair of oslo nye teater and a member of the board of oslo kino and black box teater .
27
+ 4 nordset is also the chair of the national veterinary institute .
28
+ 4 in bergen he was chair of den nationale scene and praeces in the selskapet til videnskapenes fremme .
29
+ 18 opening a business day paragraph 1 ( a ) states that after the presiding officer has taken the chair , after the chaplain's prayer , and after the presiding officer , or a senator designated by the presiding officer , leads the senate from the dais in reciting the pledge of allegiance , and a quorum being present , the senate journal of the preceding day shall be read unless by non-debatable motion the reading shall be waived , the question being , '' shall the journal stand approved to date ?
30
+ 20 ( ( bbc ) ) 4 september 2005 ( sunday ) the government advertises the positions of chief executive and chair of the olympic delivery authority in the sunday times .
31
+ 6 the name came from the french chair , through a transference from a sedan-chair to a wheeled vehicle .
32
+ 13 religious life good samaritan foundation holsinger 's current church while holsinger served as chair of the board of the good samaritan foundation , a philanthropic health care organization , the united methodist church of kentucky sued the foundation over control of $ 20 million in assets .
33
+ 19 the spindle was common at least as early as the 17th century in western europe as an element of chair and table legs , stretchers , candlestick , baluster , and other pieces of cabinetry .
34
+ 13 the first element is the plural genitive case of stóll which means '' chair '' and the last element is dalr which means '' valley '' or '' dale '' .
35
+ 19 it may be used for sitting or kneeling upon , or to soften the hardness or angularity of a chair or couch .
36
+ 11 j. m. bostwick was instrumental in the opening of the wisconsin chair factory in september 1888 , the success of which allowed the town to flourish .
37
+ 7 robert 's rules states that before the chair ( presiding officer ) calls a meeting to order , '' it is his duty to determine , although he need not announce , that a quorum is present .
38
+ 8 '' science fiction and writing strauss has been chair of a number of science fiction conventions , such as boskone 3 in 1966 and railcon in 1975 ; and a member of the committee for at least one worldcon , noreascon 3 , in 1989 .
39
+ 39 an elevated passenger ropeway , or chairlift , is a type of aerial lift , which consists of a continuously circulating steel cable loop strung between two end terminals and usually over intermediate towers , carrying a series of chair .
40
+ 24 most raised surfaces at the appropriate height can be used as for humans , whether they are made for the purpose , such as chair , stool and benches , or not .
41
+ 32 the presiding officer of the national assembly for wales ( ) is the speaker of the national assembly for wales , elected by the members of the national assembly for wales to chair their meetings ( plenary sessions ) ; to maintain order ; and to protect the rights of members .
42
+ 4 richard blahut , former chair of the electrical and computer engineering department at the university of illinois at urbana-champaign , is best known for his work in information theory ( e.g. the blahut–arimoto algorithm used in rate–distortion theory ) .
43
+ 4 annie laurie 's wishing chair , broken tree bench , abrahams oak , pool of hebron and cave of machpelah are some of the most important sculptures that can be found in different locations throughout the cemetery .
44
+ 1 she chair the committee on veterans ' affairs from 1947 to 1948 and again from 1953 to 1954 , during the 80th and 83rd congresses .
45
+ 7 from 2008 to jan 2014 she was chair of the human fertilisation and embryology authority ( hfea ) .
46
+ 27 by 1859 , when the population was 1,045 , industries included two sawmills , one shingle mill , one carding machine , one carriage builder , one chair manufacturer , one tannery , one fork maker , two pail makers , one machinist , and a sash , door and blind factory .
47
+ 20 during this term he led the british liberal democrats in the parliament and between 1999 to 2002 he held the chair of the committee on citizens ' freedoms and rights , justice and home affairs .
48
+ 12 rules the game involves the same device of a competitive scramble for chair , but restructures the play elements to provide a different game experience .
49
+ 10 in the latter year , he was appointed to the chair of chemistry , mineralogy and geology in the university of north carolina at chapel hill .
50
+ 2 the current chair is roger martin , former deputy high commissioner and environmentalist .
51
+ 14 upon her father 's death in 2000 , she inherited majority control and became chair of hensley & co . , one of the largest anheuser-busch beer distributors in the united states .
52
+ 5 in 2000 , she became chair of the now $ 300 million-a-year hensley & co . following her father 's death .
53
+ 21 in her honor , alan brill was appointed as the ross/cooperman endowed professor in honor of sister rose thering , a chair in the department of jewish-christian studies .
54
+ 9 in 1885 he returned to france to accept the chair of languages and literature of southern europe in the collège de france .
55
+ 12 the proposed corporate by-laws were also passed and the members received the chair 's report and a financial statement from the treasurer .
56
+ 2 the current chair of the board is former victorian premier , steve bracks ac .
57
+ 8 prior to that , he was professor and chair of oral diagnostic sciences at new jersey dental school and on faculty at upenn dental in the department of oral medicine .
58
+ 14 the board consists of six members ; one of them is elected as the chair ( 教育委員長 ) , and one of them is appointed by the board as the superintendent ( 教育長 ) .
59
+ 26 she also appears as a construction girl in front of the metal fence and she , except her arms , is still tied up to the chair in ribbon under the light having her face unwrapped while he broadcasts on the radio station inquiring in german .
60
+ 12 with a few exceptions , a member must be recognized by the chair before engaging in debate or making a motion .
61
+ 2 its current chair is philip a. glotzbach , the president of skidmore college .
62
+ 5 his administrative posts have included chair of philosophy , interim division head of human sciences at the northern ontario school of medicine , and founding director of the advanced institute for globalization and culture ( aig + c ) .
63
+ 11 in 1991 he left the post as chief executive to become chair of orkla asa , following the merger between nora and orkla .
64
+ 37 dave rotchelle ( birth registered october → december 1952 in hammersmith district ) drums , had previously been a member of the rockets , and later the count bishops , and is currently freelance photographer , and chair of national union of journalists freelance london branch .
65
+ 76 rykov , a moderate , often came into political conflict with lenin and more radical bolsheviks , but nonetheless proved influential when the october revolution finally did overthrow the russian provisional government , and as such served many roles in the new government , starting october -- november ( old style ) as people 's commissar for internal affairs on the first roster of the council of people 's commissars ( sovnarkom ) , which was chair by lenin .
66
+ 8 moderators the moderator of the uua is the chair of the board of trustees of the unitarian universalist association and is the presiding officer at the general assembly ( unitarian universalist association ) .
67
+ 10 historically , once the condemned person was attached to the chair , various cycles ( differing in voltage and duration ) of alternating current would be passed through the individual 's body , in order to cause fatal damage to the internal organs ( including the brain ) .
68
+ 5 the county commission elects a chair who presides at meetings .
69
+ 17 by 1859 , when the population was 668 , there was also a bobbin factory , a chair factory , and a tannery .
70
+ 26 industries soon included a cotton mill , a woolen factory , nine sawmills , a gristmill , a saw manufacturer and machine shop , and a chair and match factory .
71
+ 28 willow wood is also used in the manufacture of box , broom , cricket bat ( grown from certain strains of white willow ) , cradle boards , chair and other furniture , doll , flute , pole , sweat lodge , toy , turnery , tool handles , veneer , wand and whistle .
72
+ 6 he was a wheelwright and a chair maker .
73
+ 13 ordinary societies in organizations other than legislative bodies , the ruling of the chair may be appealed to the assembly in most cases .
74
+ 16 noted in the 19th-century for timber and grazing , the town had seven sawmill , two chair factories , one pail factory , one children 's carriage factory , and one bit-brace factory .
75
+ 17 the supporting columns of an object may be referred to as legs as well , as in chair legs .
76
+ 2 he is chair of aker floating production and aker solutions .
77
+ 3 she is the chair of sandefjord lufthavn as and is a member of the boards of aker solutions , norsk hydro , ocean heavy lift and awilco offshore .
78
+ 6 as of july 2014 , the chair of the main poplar board is bernadette conroy , and the vice-chair is rev. james olanipekun , a resident .
79
+ 81 its board has 18 members , with places divided through the membership as follows : 9 seats for the co-operative group 1 seat for central england co-operative 4 seats elected by consumer co-operative societies ( one from each of four geographic regions : scotland , the north , the midlands and the south ) 2 seats elected by worker co-operatives and employee owned businesses 1 seat elected by the co-operative development bodies 1 seat elected by the remaining membership the current chair is nick matthews of heart of england co-operative society .
80
+ 4 an expandable table with chair this is a list of furniture types .
81
+ 1 the chair of the new edition is christopher hogwood .
82
+ 20 2008 the event was held on sunday 17 august , under the direction of karen bullivant , who held the chair position for this year .
83
+ 13 he continues , within the united states conference of catholic bishops , to chair the and sits on the , and in an elaborate ceremony in 2009 at st. peter 's basilica in rome , pope benedict xvi bestowed the pallium upon aymond .
84
+ 9 a chaise a bureau is a rococo style of chair created during the first half of the 18th century .
85
+ 24 also in 1903 , he accepted the post of professor of nervous and mental disease at georgetown university , and in 1904 a similar chair at george washington university , lecturing besides at the army medical school .
86
+ 9 from january to may 1997 , she served as chair of the national indian gaming commission .
87
+ 3 ned tauwhare is chair of the runanga .
88
+ 30 contemporary architecture characterizes the majority of pitzer 's buildings , several of which were designed by gwathmey-siegel following major donations from eli broad , a board member emeritus and former chair of the pitzer college board of trustee .
89
+ 18 when sir ch collided into sir air , their speech balloons melded together to form the word '' chair .
90
+ 53 chairlift fixed grip chairlift hunter mountain chairlift a chairlift in bad hofgastein , austria an elevated passenger ropeway , or chairlift , is a type of aerial lift , which consists of a continuously circulating steel cable loop strung between two end terminals and usually over intermediate towers , carrying a series of chair .
91
+ 8 following her graduation , margaret was offered the chair of psychology , philosophy , and ethics at wells college , in aurora , new york .
92
+ 22 founded in 1964 , the company 's annual revenue of $ 250 million comes from the sale of products such as dental chair , stools , delivery system , medical lighting , cabinetry , and other accessories .
93
+ 15 in the media field stenstadvold also served as a member of the broadcasting council , chair of the norwegian broadcasting corporation from 1986 to 1991 and tvnorge from 1991 to 1994 .
94
+ 13 since 1985 , kelso has held the glenwood and martha creech eminent scholar chair in science at florida atlantic university , where he is also professor of psychology , biological sciences , and biomedical sciences .
95
+ 7 clamping stretchers between the legs of a chair .
96
+ 22 a functioning mill operated on the pond up until 1960 , which for a long time provided the raw materials used in chair .
97
+ 10 he is current director of radiation biology , the associate chair and professor of cancer biology at city of hope national medical center .
98
+ 13 he is the current editor-in-chief of vårt land , and has been the chair of the norwegian press association and the norwegian media businesses ' association .
99
+ 8 in 1912 , he was also named as chair of the silicon carbide production company arendal smelteverk .
100
+ 5 she was later a full-time chair of the eastern norway regional health authority from 2001 to 2006 .
101
+ 21 solberg was also among the builders of the company norsk elektrisk & brown boveri ( nebb ) , and served as chair of that company until his death .
102
+ 21 teichmann , who holds a phd in psychology from the behterev institute leningrad , now saint petersburg , is professor and chair of psychology at tallinn university of technology .
103
+ 17 lara hedberg deam ( born 1967 ) is the founder of architecture and design magazine dwell and chair of the dwell , llc board .
104
+ 3 marshall grabs a chair and the lizard spits venom in his eyes , but he manages to crush it multiple times .
105
+ 12 lincoln was the first woman and the first arkansan to serve as chair of the u.s. senate committee on agriculture , nutrition and forestry .
106
+ 20 it is almost always placed on a configurable wood or metal frame for dual use as a bed and a chair or couch .
107
+ 10 however , those decisions ( including who will serve as chair of each committee ) are actually made by the party leadership .
108
+ 27 to bolster his influence , jack agreed to their plan : he called for a meeting with the commission ( of which canby was by then the chair ) with the intention of killing them all .
109
+ 4 he was offered the chair of mathematics and physics at harvard in 1806 , but turned it down .
110
+ 11 the ergonomic desk is usually a close companion to the ergonomic chair .
111
+ 13 in 1898 he took orders in the episcopal church , but retained his chair till his death .
112
+ 24 main characters other characters mildred finch dr. mildred ( '' millie '' ) finch ( portrayed by kathy najimy ) is the newly appointed chair of the calsci physics , mathematics , and astronomy division , and an experimental neutrino astrophysicist who worked on the construction of amanda .
113
+ 3 he accepted the chair of english at the university of illinois in 1911 .
114
+ 32 garran 's influence on canberra is remembered by the naming of the suburb of garran , australian capital territory , and his link with anu is remembered by the naming of a chair in the university 's school of law , by the naming of the hall of residence burton & garran hall and by the naming of garran house at canberra grammar school for his work with that school .
115
+ 32 the incumbent may be a member of the minority party in a legislature and would like to gain the advantages of being in the majority party , such as the potential to chair a committee .
116
+ 10 from 1969 to 1973 he served as lecturer of the chair of general history at tartu state university .
117
+ 22 ( doctorate in theology ) 1908 to 1911 privatdozent at the university of vienna 1911 to 1932 professor and ( from 1913 chair for new testament exegesis 1928 to 1929 rector of the university of vienna 1929 to 1930 minister of social affairs in the third government of chancellor johann schober 1932 archbishop of vienna 1933 cardinal , founded the cathedral and diocesan museum of vienna political activity and assessment the anschluss innitzer 's role in early 20th century austria history remains disputed , because of his involvement in politics .
118
+ 6 posthumously leiden university established the cleveringa chair , occupied each year for one year by the appointed cleveringa professor , who holds the annual cleveringa lecture around 26 november .
119
+ 6 after his political career he became chair of vinmonopolet .
120
+ 21 helle was the vice dean of the faculty of humanities at the university of bergen from 1978 to 1980 , and chair of the chr . michelsen institute from 1992 to 2001 .
121
+ 26 from 1982 to 2008 he was consultant psychiatrist for the south london and the maudsley nhs foundation trust and from 1999 to 2008 he held a chair in psychiatry at the health service and population research department , at the institute of psychiatry , king 's college london .
122
+ 23 more importantly , he has been the chairman of the association of norwegian editors and the conservative press association , as well as chair of the norwegian news agency .
123
+ 17 tara a. smith ( born 1961 ) is a professor of philosophy and holder of the bb&t chair for the study of objectivism and holder of the anthem foundation fellowship for the study of objectivism at the university of texas at austin .
124
+ 13 three years later he became professor , and was given the ernest scott chair in history .
125
+ 9 labor were reduced to 16 seats , with the chair of the west midlands police authority and west midlands passenger transport executive , mohammed nazir and richard worrell , among those to lose at the election .
126
+ 5 they are ( co - chair ) george pérez , ( co-chair ) roy thomas , ( board secretary ) charlie novinskie , dennis o'neil , john romita sr . , and jim valentino .
127
+ 7 even though there are no table or chair , van inwagen thinks that it is still permissible to assert sentences such as ` there are tables ' .
128
+ 15 litters can also be created by the expedient of the lashing of poles to a chair .
129
+ 13 in the 2005/2006 academic year , leiden university appointed fresco as its cleveringa chair , and in 2006 she was selected to deliver the rabobank duisenberg lecture at the annual wb/imf meeting in singapore .
130
+ 23 jean monty ( 1947 - ) , a canadian executive , was the ceo of nortel networks from 1993 to 1997 and the chair and ceo of bce from 1997 to 2002 .
data/chair/test.gold.txt ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 1
5
+ 1
6
+ 1
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 0
12
+ 0
13
+ 1
14
+ 0
15
+ 0
16
+ 0
17
+ 1
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 1
23
+ 1
24
+ 1
25
+ 0
26
+ 0
27
+ 0
28
+ 0
29
+ 0
30
+ 0
31
+ 1
32
+ 0
33
+ 1
34
+ 1
35
+ 1
36
+ 1
37
+ 0
38
+ 0
39
+ 1
40
+ 1
41
+ 0
42
+ 0
43
+ 1
44
+ 0
45
+ 0
46
+ 1
47
+ 0
48
+ 1
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 1
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 1
68
+ 0
69
+ 1
70
+ 1
71
+ 1
72
+ 1
73
+ 0
74
+ 1
75
+ 1
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 1
81
+ 0
82
+ 0
83
+ 0
84
+ 1
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 1
90
+ 1
91
+ 0
92
+ 1
93
+ 0
94
+ 0
95
+ 1
96
+ 1
97
+ 0
98
+ 0
99
+ 0
100
+ 0
101
+ 0
102
+ 0
103
+ 0
104
+ 1
105
+ 0
106
+ 1
107
+ 0
108
+ 0
109
+ 0
110
+ 1
111
+ 0
112
+ 0
113
+ 0
114
+ 0
115
+ 0
116
+ 1
117
+ 1
118
+ 1
119
+ 0
120
+ 0
121
+ 0
122
+ 0
123
+ 0
124
+ 0
125
+ 0
126
+ 0
127
+ 1
128
+ 1
129
+ 1
130
+ 0
data/chair/train.data.txt ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 5 the match started with several chair shots from both competitors .
2
+ 2 jpg thonet chair wien museum karlplatz file : thonet-exhibition 58 .
3
+ 18 nga adopted a policy in 1977 formalizing its standard practice for many years : the position of nga chair alternates yearly between republican and democratic governors , so that neither party can control the position for two consecutive years .
4
+ 24 vytlacil invited holty to participate in discussions which led to the formation of the american abstract artists , which holty would eventually come to chair , retaining his membership until 1944 .
5
+ 6 he is well known as the chair of the editorial committee for the international code of botanical nomenclature ( icbn ) - both the previous st louis code ( 2000 ) , and tokyo code ( 1994 ) , but not the current vienna code ( 2006 ) .
6
+ 35 he is a member for life of clare hall , cambridge , at the university of cambridge , and is retired as a full professor of the university of melbourne , where he was previously chair of agriculture , dean of land and food resources , dean of agriculture , forestry and horticulture ( now faculty of land and environment ) .
7
+ 19 in july 2009 , at the mayor of london and hm government 's request , he set up and chair a board directing the cultural olympiad , and also joined the london organising committee for the olympic games board .
8
+ 3 he was also chair of chemistry and toxicology in the columbian university and later its dean .
9
+ 17 a panel was set up by cr administration to supervise the establishment , with boonsing boonkham as chair .
10
+ 13 he has often assisted the canadian disabled community , including serving as honorary chair of the and chairman emeritus of the .
11
+ 9 typically in a sidewalk cafe there are table and chair ( and sometimes bench ) for dining and relaxing .
12
+ 9 it was first announced by bill gates , the chair of microsoft on 1 august 1988 at comdex in las vegas .
13
+ 23 he was professor of english literature at the university of southern california from 1905 to 1911 , when he was transferred to the chair of orient studies and comparative literature .
14
+ 12 li was transferred to professor of zhejiang university , and was the chair of its department of civil engineering .
15
+ 10 plot synopsis a naked woman is seen sitting on a chair in a room with view .
16
+ 4 gayle also served as chair of the obama administration 's presidential advisory council on hiv/aids .
17
+ 3 he held the chair in civil law at the catholic university of quito for many years .
18
+ 4 he also served as chair of akvaforsk , and later as a member of the board of the southern norway regional health authority and of blefjell hospital trust .
19
+ 5 early political career she was chair of the san mateo democratic party between 1978 and 1982 .
20
+ 1 the chair may rule on the point of order or submit it to the judgment of the assembly .
21
+ 7 cathedra is the latin word for a chair with armrests , and it appears in early christian literature in the phrase '' cathedrae apostolorum '' indicating authority derived directly from the apostles ; its roman connotations of authority reserved for the emperor were later adopted by bishops after the 4th century .
22
+ 54 risk factors the following risk factors have been identified for coccyx fracture : lack of/reduced muscle mass advanced age osteoporosis being of the female gender ( due to the wider pelvis typically found in females ) violence symptoms of coccyx fracture include : pain that increases in when sitting or getting up from a chair , or when experiencing bowel movement provoked pain over the tailbone nausea bruising or swelling in the tailbone area diagnosis x-rays are usually necessary , but this is not always the case .
23
+ 1 the chair of the convention , william gwin , was himself a slaveholder from tennessee .
24
+ 8 while in the house , goss served as chair of the house intelligence committee from 1997 until 2005 and the vice-chairman of the house rules committee .
25
+ 8 gamper has stated '' there is no perfect chair '' .
26
+ 9 the hon company designs and manufactures office furniture including chair , filing cabinet , workstations , tables , desk and education furniture .
27
+ 4 a similar form of chair in domestic furniture is called '' prie-dieu '' by analogy .
28
+ 13 a typical western living room may contain furnishings such as a sofa , chair , occasional table , and bookshelves , electric lamp , rugs , or other furniture .
29
+ 5 it is equipped with a chair base on castors and a gas cylinder for adjusting the correct sitting height .
30
+ 2 she was chair of the canadian broadcasting corporation from july 16 , 2001 , until march 14 , 2005 , when she resigned in order to seek the nomination of the british columbia liberal party in that province 's 2005 election .
31
+ 27 background pitt was born in washington , d.c . , and lived several years in alabama ( where his father , charles redding pitt , served as chair of the state democratic party ) before eventually moving to boston .
32
+ 12 '' he has been dating dr. mildred '' millie '' finch , chair of the calsci physics , mathematics , and astronomy division .
33
+ 3 she served as chair of the history department until shortly after hurricane katrina in 2005 .
34
+ 13 one of the pieces of wright-designed furniture in the building was a round-backed chair .
35
+ 1 the chair of this council is held by the member from the state holding the presidency ( see section above ) .
36
+ 31 the collection of furniture is mostly composed of english and french examples , including storage and resting pieces , such as chests , sideboard , cupboard , bookcase , seat and chair , made with oak , walnut and other types of wood .
37
+ 5 former president of indonesia and chair of the ( pdip ) , megawati sukarnoputri , issued a statement expressing condolences after the accident .
38
+ 25 after some research positions at the university of tartu , he was elected , in 2002 , aged 28 , to a full professorship and chair in public management and european studies at tallinn university of technology 's ragnar nurkse school of innovation and governance ( as it is now called ) , which since 2004 , he heads .
39
+ 15 salma yaqoob ( born 1971 ) is the former leader , and former vice - chair , of the respect party and a former birmingham city council .
40
+ 8 '' in an open letter to castro , chair of the congressional black caucus representative maxine waters of california later explained that many members of the caucus ( including herself ) were against shakur 's extradition but had mistakenly voted for the bill , which was placed on the accelerated suspension calendar , generally reserved for non-controversial legislation .
41
+ 12 huawei symantec 's technologists participate in various standardization organizations , including holding chair and vice-chair posts .
42
+ 10 east union had a lumbermill , in addition to a chair and table factory .
43
+ 4 he also served as chair of the standing committee on private and local bills and sat on the legislature 's human resources committee .
44
+ 17 a sling being used to carry an injured man sling furniture is usually a suspended , free-swinging chair , bed , or hammock that is made of a framework connected to hanging straps or rope .
45
+ 33 rule i of the standing rules of the united states senate , established by the senate committee on rules and administration , governs the subject of the appointment of a senator to the chair .
46
+ 27 in addition to covering a completely different topic , it must have been quite a bit more accessible , since it got him a position as a chair of mathematics at a provincial university .
47
+ 7 he has been a board member and chair of the local branches of the norwegian state food authority and the norwegian association of local and regional authorities .
48
+ 4 smith has been the chair of the norwegian institute for social research from 2007 to 2010 .
49
+ 16 assistant secretary to the horticultural society since 1822 , in 1829 lindley was appointed to the chair of botany at university college , london , which he retained until 1860 .
50
+ 21 he came to wisconsin with his family in 1849 , and settled at winneconne where in 1850 he opened a horse-powered chair factory .
51
+ 5 manasseh meyer had a special chair set out in the front of the congregation .
52
+ 54 members of that committee were : max baucus d mt ranking jay rockefeller d wv kent conrad , d nd jim jeffords , i vt jeff bingaman , d nm john kerry , d ma blanche lincoln , d ar ron wyden , d or charles schumer , d ny chuck grassley r ia chair olympia snowe , r ma jon kyl , r az craig thomas , r wy rick santorum , r pn bill frist , r tn gordon smith , r or jim bunning , r ky mike crapo , r id orrin hatch , r ut trent lott , r ms the main sponsor was byron dorgon , d nd .
53
+ 18 in 1882 in belleville séance sitters caught slade making '' spirit '' raps against the rung of his chair , using his foot to move a slate , writing '' spirit '' messages and substituting slates .
54
+ 4 a wheelchair is a chair with wheels , invented in the early 5th century .
55
+ 38 '' format meeting report generally , minutes begin with the name of the body holding the meeting ( e.g. , a committee ) , place , date , list of people present , and the time that the chair called the meeting to order .
56
+ 60 the first of a series of gablestones on a gemeenlandshuis in halfweg built in 1645 ; each stone represents the heraldic shield of the dike-reeve and his men , known as the heemraden , or in this case , the high or hoogheemraden a dijkgraaf ( translated : dike-warden or dike-reeve ) , sometimes called a watergraaf , is the chair of a dutch water board .
57
+ 7 in 1873 he was appointed to the chair of geography at the polytechnic institute , munich .
58
+ 21 sweden the united kingdom , ireland and other english speaking countries united states historical islamic usage in muslim civilisation , the chair was designated by the caliph himself .
59
+ 6 it has similarities to the traditional chair or secretary roles in a meeting but goes beyond them to actively participate and guide the group towards consensus .
60
+ 12 officers - the senior executive of the official side is usually the chair and a representative of the staff side nominated as vice-chair .
61
+ 10 she also claims to have once been hit by a chair at a wrestling match , and made it onto tv .
62
+ 3 he served as chair of catholic legal immigration network , inc. ( 1998 -- 2001 ) , and of the united states conference of catholic bishops ' committee on migration ( 2001 -- 2004 ) .
63
+ 27 a swivel in a chain link a swivel in a link a swivel is a connection that allows the connected object , such as a gun or chair , to rotate horizontally or vertically .
64
+ 24 demise nan tucker mcevoy as late as 1993 , nan tucker mcevoy , granddaughter of san francisco chronicle founder m. h. de young and chair of chronicle publishing company 's board of directors , declined an offer of $ 800 million made by hearst corporation for chronicle publishing .
65
+ 5 in 1893 he gained a chair in modern history at trinity college , which he held for nine years .
66
+ 8 the fibers are also woven into curtain , chair coverings , carpet , area rugs , hessian cloth , and backing for linoleum .
67
+ 9 the majority of associations are structured to include a chair , vice-chair , secretary , treasurer and committee members .
68
+ 9 each standing and select committee is led by a chair ( who belongs to the majority party ) and a ranking member ( who belongs to the minority party ) .
69
+ 40 bob holly became the new hardcore champion on the banks of the mississippi river the hardcore match between the two j.o.b . squad members began with al snow throwing bob holly out of the ring and hitting him with a chair before throwing him into the crowd .
70
+ 27 a chairy tale ( ) is a 1957 stop-motion pixilation short film co-directed by norman mclaren and claude jutra , and starring jutra and a most uncooperative chair .
71
+ 3 he was the chair of the norwegian publishers association from 1972 to 1975 .
72
+ 21 in a standard hut , each patient was supplied with a bed , chest of drawers , a table and a chair .
73
+ 54 common design elements include : top surfaces of various shapes , including rectangular , rounded or semi-circular legs arranged in two or more similar pairs several geometries of folding table that can be collapsed into a smaller volume heights ranging up and down from the most common range , often reflecting the height of chair or bar stool used as seating for people making use of a table , as for eating or performing various manipulations of objects resting on a table presence or absence of drawer expansion of the surface by insertion of leaves or locking hinged drop leaf sections into horizontal position .
74
+ 6 there was a large tannery , chair factory , 10 sawmill , a starch factory , a gristmill , a sash , blind and door factory , and 2 boot and shoe factories .
75
+ 10 the honor of serving as mace-bearer is accorded to the chair of the academic senate .
76
+ 4 he was also the chair of ullevål university hospital from 1996 to 2000 .
77
+ 12 the top administrative post in many academic departments is the '' department chair .
78
+ 11 by the mid-19th century , reading had thirteen establishments that manufactured chair and cabinets .
79
+ 4 he slumps into his chair with his head on his chest .
80
+ 31 in 1986 , he became professor at the physics department and optical sciences center of the university of arizona in tucson , az , and in 1989 , he accepted a chair there .
81
+ 8 this publication raised his hopes to obtain the chair of reptile and fish at the natural history museum left vacant by the death of auguste duméril ( 1812 -- 1870 ) but it was finally léon vaillant ( 1834 -- 1914 ) who was selected .
82
+ 18 moore is associate dean for basic medical sciences in the university 's faculty of medicine , and was chair of anatomy from 1976 to 1984 .
83
+ 26 after study at heidelberg , göttingen , and bonn , he became docent in history at berlin in 1873 and in 1880 was appointed to a chair of modern history there .
84
+ 18 the lobby of the law school library contains a sculpture made by cole in the form of a chair entitled the lobbyist .
85
+ 7 he was especially known for his designed chair .
86
+ 14 hence , if procuring independently , each government agency will pay $ 100 per chair .
87
+ 3 he served as chair of the administrative committee from 1965 through 1966 .
88
+ 24 he was a member of the faculty of the ohio state university for 28 years , including 14 years teaching and 14 years as chair of the department of landscape architecture , and served as a consultant as well as a volunteer with the national park service .
89
+ 28 the string is threaded through the straw and is attached at both ends to objects of some kind , such as a doorknob on one end and a chair on the other .
90
+ 1 this chair was revolutionary in the use of the materials ( bent tubular steel and canvas ) and methods of manufacturing .
91
+ 16 appliquéd slips of both old fabric and new canvaswork are characteristic of domestic textile such as chair covers , cushion , and especially wall hangings and bed curtain throughout the elizabethan and jacobean era .
92
+ 13 columbia manufacturing inc. is a company located in westfield , massachusetts that manufactures chair , desk , bicycle , and other materials .
93
+ 19 outside of representative government , platou was involved in the administration of vinmonopolet from 1950 , finally serving as chair from 1981 to 1987 .
94
+ 26 marshal of the sejm also known as sejm marshal , chairman of the sejm or speaker of the sejm ( , ) is the speaker ( chair ) of the sejm ( since the 15th century , the lower house of the polish parliament ) .
95
+ 8 museum namesake peter cooper created the first metal chair in the united states .
96
+ 18 senator collins presented the gao report to the committee on governmental affairs , of which she was the chair and ranking republican .
97
+ 3 roger martin is chair to the board of trustees , population matters ( formerly the optimum population trust ) and president of the somerset branch , campaign to protect rural england .
98
+ 3 modern use the chair of a student society in the netherlands or belgium may be called a praeses ; in dutch the official spelling has changed to '' preses '' but most student societies still observe the latin spelling .
99
+ 6 its furniture products include table , chair , shelving units , bed , dining room set , bedroom set and more .
100
+ 30 administrative positions : rector ( ) provost ( ) vice-rectors ( academic , research , financial , foreign activity ) dean ( ) associate deans ( academic , research ) chair ( head ) of a department ( ) head of administrative departments professorship in russia the university academic career to the rank of professor usually starts right after graduation .
101
+ 22 metamorphic library steps are a type of archaic dual-use furniture , consisting of a small folding staircase that can be transformed into chair or desk form ( such as a small writing table or library table ) .
102
+ 6 pablo javier almaguér is a former chair of the state bar of texas board of directors .
103
+ 1 the chair of the house elections committee , representative diane rosenbaum , dismissed such concerns .
104
+ 10 copeland was probably the originator of a peculiar type of chair back , popular for a few years in the middle of the 18th century , consisting of a series of interlaced circles .
105
+ 5 armrests are also found on chair in general .
106
+ 4 he is the associate chair of the sociology department at mcmaster university .
107
+ 12 the game starts with any number of players and a number of chair one fewer than the number of players ; the chairs are arranged in a circle ( or other closed figure if space is constrained ; a double line is sometimes used ) facing outward , with the people standing in a circle just outside of that .
108
+ 33 ordained to the congregational ministry in 1883 , he was a pastor at newark , n. j . , in 1883-85 , and thereafter was president of bowdoin college , also holding the chair of mental and moral philosophy .
109
+ 30 while an innate cautiousness around heights is helpful for survival , an extreme fear can interfere with the activities of everyday life , such as standing on a ladder or chair , or even walking up a flight of stairs .
110
+ 34 a pillow is a cushion support for the head or other parts of the body , usually used while sleep on a bed , or for the body as used on a couch or chair .
111
+ 5 he is also the vice chair of tv 2 .
112
+ 11 grandstands may have basic bench seating , but usually have individual chair like a stadium .
113
+ 10 in the same year , he was appointed as the chair of the technology subcommittee of the 2006 executive bond committee , by phoenix mayor phil gordon .
114
+ 30 present positions he is the current president of national taiwan university ( 2005 -- ) , president of the association of national universities of taiwan ( 2006 -- ) and chair of the university mobility in asia and the pacific ( 2005 -- ) .
115
+ 10 otherwise , it is merely for the guidance of the chair .
116
+ 4 she also served as chair of the annapolis group .
117
+ 4 he was also the chair of akers elektrisitetsverk from 1927 to 1935 and a member of the board of akers sparebank and freia .
118
+ 5 he also served as the chair of the british columbia political science articulation committee .
119
+ 12 he spent the next 30 years there , including a stint as chair of the computer science department from 1982 -- 1987 .
120
+ 4 his appointment to a chair at berlin in 1884 against the wishes of the medical faculty was largely due to his successful treatment of otto von bismarck for obesity .
121
+ 5 he became a cabinet and chair maker by trade .
122
+ 10 a seat is also known as a bench , a chair , a chaise longue , chesterfield , a couch , a davenport or a settee .
123
+ 1 a chair is a common example of such a product .
124
+ 14 this meeting was held on april 2 , 1982 , with dyson occupying the chair .
125
+ 26 a simple rising vote ( in which the number of members voting on each side are counted ) is used principally in cases in which the chair believes a voice vote has been taken with an inconclusive result , or upon a motion to divide the assembly .
126
+ 19 by about 8 months of age , infants usually learn to pull themselves up and hold on to a chair , and they often can stand alone by about 10 to 12 months of age .
127
+ 12 the conference is led by a president , who also serves as chair of the conference board .
128
+ 5 although designed to be a chair , due to its amorphous nature it is often confused with a : hassock , tuffet and ottoman .
129
+ 18 garden furniture garden furniture may range from a patio set consisting of a table , four or six chair and a parasol , through benches , swings , various lighting , to stunning artifacts in brutal concrete or weathered oak .
130
+ 4 biography denison was the chair of the canadian coalition for good governance ( ccgg ) from june 4 , 2009 - june 15 , 2011 , and a corporate director of since june 23 , 2005 .
131
+ 5 he has also been the chair of the norwegian broadcasting corporation , the research council of norway and the oslo stock exchange .
132
+ 15 items such as small tables , nightstand , chests , commode , and easily moved chair are usually included in this category .
133
+ 11 a stretcher is a horizontal support element of a table , chair or other item of furniture ; this structure is normally made of exposed wood and ties vertical elements of the piece together .
134
+ 26 the professor of geology , lawrence wager recognized brown 's abilities , and took him with him as a research student following his move to the chair in geology at oxford university .
135
+ 14 '' within the united states conference of catholic bishops , morin has served as chair of the subcommittee of the catholic campaign for human development , and as a member of the committee on domestic justice and human development and the committee on national collections .
136
+ 17 in mass transit facilities , epa-approved antimicrobial copper products include handrail , stair rail grab bar , chair , benches , etc. .
137
+ 24 when no second is made after a motion is proposed , if the motion requires a second and none is immediately offered , the chair of the body will usually ask , '' is there a second ?
138
+ 20 in september of that same year he joined torys llp , as counsel , and since 2005 has been the chair of the higher education quality council of ontario .
139
+ 2 '' the chair is the '' active executive officer '' of the board of governors of the federal reserve system .
140
+ 9 in his later years , perry diversified into developing chair designs , jewelry , and a number of sculptural puzzles for the museum of modern art and the smithsonian institution .
141
+ 19 since the mid-17th century a chair-maker , or chairbler , is a craftsman in the furniture trades specializing in chair .
142
+ 5 they are used when the chair of a committee refuses to place a bill or resolution on the committee 's agenda ; by never reporting a bill , the matter will never leave the committee , and the full house will not be able to consider it .
143
+ 2 the djinn chair is an important design of the '' modernist '' style .
144
+ 10 today , lifetime is a major manufacturer of tables and chair , residential basketball equipment , shed , trailers , playground equipment , and raw steel products .
145
+ 7 claiborne was the first woman to become chair and ceo of a fortune 500 company .
146
+ 35 titus was the neutral space 's only occupant except in two episodes , when he was replaced by ken and erin , respectively , and would appear always wearing similar clothes , with a wooden chair , a lightbulb , and the bland walls .
147
+ 16 a man , who was playing the piano in background , comes forward and puts his chair over her .
148
+ 17 it is a symbol of the authority and right to act officially in the capacity of a chair or presiding officer .
149
+ 17 common objects that could potentially become unclean , and become a such midras object , include a chair , sofa , mattress , and rug .
150
+ 21 the body is supinated so that the back turns to the ground , the legs are bent like sitting in a chair , and the arms extend straight backward .
151
+ 7 from 1977 to 1997 he was the chair of the theater det norske teatret .
152
+ 3 though he remained chair of the board , hawkins transitioned from ea in 1991 to form 3do , a video game console company .
153
+ 9 from 1994 through 2003 he was the co - chair of the department of space and society at the international space university .
154
+ 14 mid-life and career heller painted beyond canvas on easels , painting objects ranging from chair to pool table .
155
+ 2 she was chair of the wimbledon conservative association for a year from 2002 .
156
+ 8 common things the patient address in the empty chair are another person , aspects of their personality , a certain feeling etc. was in it .
157
+ 24 equipment rehab equipment includes but is not limited to : a canopy misting fan for cooling cooler with water and other beverages medical monitor chair food overview firefighter rehab is designed to ensure that the physical and mental well-being of members operating at the scene of an emergency ( or a training exercise ) do n't deteriorate to the point where it affects the safety of any other members .
158
+ 16 one tribe , dom , is expert in manufacturing bamboo items like box , sofas , chair , basket and racks .
159
+ 7 in 1964 , he was appointed the chair of the central asian seminar at bonn university .
160
+ 19 the museum presents exhibitions on crafts and history of the local area , including the furniture industry , especially chair - making .
161
+ 6 particularly in academia , the word chair is often used to designate the person chosen to oversee the agenda at meetings of an organized group .
162
+ 9 unforeseen complications with his work emerge as the new chair of the calsci physics , mathematics , and astronomy division , dr. mildred finch , in the episode '' waste not '' , makes charlie head of the ph.d. admissions committee against his wishes , bogging him down with more work , and gives him pressures about using the school 's supercomputer for fbi work or missing classes for such .
163
+ 36 the shrinks in revenge for the wormy spaghetti , mr. twit glues pieces of wood no thicker than a penny onto mrs. twit 's cane each night , as well as onto the legs of her chair , making mrs. twit believe that she is slowly shrinking .
164
+ 38 purpose the purpose and benefits of a model un conference such as limun can be generally classified into two strands : first , personal development ( the skills gained or developed through participation , whether as delegate , chair , secretariat-member ) ; second , the instilling of a cosmopolitan ethic in its participants .
165
+ 4 du also was the chair of education psychology department of nanjing normal university .
166
+ 21 the village of munsonville , situated on the stage line at the outlet of granite lake , manufactured cotton cloth and chair .
167
+ 4 the secretary general is chair of the council of regional organisations in the pacific ( crop ) .
168
+ 26 he became the magazine 's associate editor in 1881 , and in 1909 , on the death of richard watson gilder , succeeded to the editorial chair , which he occupied until may 1913 .
169
+ 4 in 1907 he became chair of the chemistry department at the university of illinois at urbana-champaign , a position he would hold until 1926 .
170
+ 7 from 1973 to 1977 he was the chair of the norwegian agency for development cooperation .
171
+ 18 christina elizabeth kramer is professor of slavic and balkan languages and linguistics at the university of toronto and chair of the university 's department of slavic languages and literatures which is part of the faculty of arts and science .
172
+ 6 in 2009 , ursula philpot , chair of the british dietetic association and senior lecturer at leeds metropolitan university , described people with orthorexia nervosa to the guardian as being '' solely concerned with the quality of the food they put in their bodies , refining and restricting their diets according to their personal understanding of which foods are truly ` pure ' .
173
+ 4 '' silla '' means chair in the spanish language .
174
+ 26 main positions the council has three major positions to which councillors may be appointed : chairman -- the ceremonial head of the council speaker -- who chair full council meetings leader -- the leader of the controlling political group the leader and nine additional portfolio holders form the cabinet .
175
+ 4 in 2006 , she chair the lewes district council , where she represented the coastal communities of east saltdean and telscombe cliffs , just five miles east of the cosmopolitan hub of brighton in sussex .
176
+ 3 bore is the chair of norwegian church aid since 2000 .
177
+ 19 they had to score at least one basket using a trampoline , ladder , supermarket cart , and a chair .
178
+ 8 history in 1872 albert stoll i established a chair factory in koblenz which focused on the production of bentwood chairs for cafés , hotels and stores .
179
+ 7 italian academic circles in addition to his chair positions , from 1992 to 1998 umberto meoli was president of the italian association for the history of economic thought ( l'associazione italiana per la storia del pensiero economico , aispe ) .
180
+ 23 teresa mosqeda is legislative and policy director for the washington state labor council ( the washington branch of the afl-cio ) , the chair of the healthy washington coalition and a member of the board of washington’s health exchange .
181
+ 26 he became assistant at the astrophysical observatory in potsdam in 1887 and its observer in chief in 1898 , three years after his appointment to the chair of astrophysics in the university of berlin .
182
+ 4 it depicts a giant chair with a broken leg and stands across the street from the palace of nations , in geneva .
183
+ 3 note that the chair , curtain and wall are predominantly green , from which the room takes its name .
184
+ 3 berge was the chair of the norwegian non-fiction writers and translators association from 2005 to 2008 .
185
+ 5 the caquetoire , or conversation chair , was an armchair style implemented during the european renaissance .
186
+ 25 shiyi chen ( traditional chinese : 陳十一 , simplified chinese : 陈十一 pinyin : chén shíyī ) , is the current alonzo g. decker jr. chair in engineering and science , mechanical engineering and professor , department of applied mathematics and statistics , department of physics and astronomy , johns hopkins university .
187
+ 1 his chair of chronology was created by mad king george iii who was terrified that if time were to start flowing backwards , all the bad experiences of his life might recur .
188
+ 14 one of the original chairs the 10 downing street guard chairs are two antique chair .
189
+ 23 the range of van ' t hoff 's design work also broadened around this time : he published designs for banister posts and chair , and in 1918 designed a houseboat , which he christened de stijl and in which he and his wife lived shortly after their marriage in july .
190
+ 18 in 1878 , he became a professor of botany and the fisher professor of natural science , a chair formerly held by asa gray .
191
+ 3 he served as chair of the berkeley mathematics department for the 2002-2003 academic year .
192
+ 3 he serves as chair and president of the board of directors of one la - industrial areas foundation , one of the nation 's largest community organizing networks and of 1010 development corporation , a non-profit affordable housing developer in los angeles rooted in the united methodist tradition .
193
+ 7 anna wintour , vogue editor-in-chief and a chair of the event since 1995 , oversees both the benefit committee and the guest list , with vogue staffers helping assemble the list of invitees .
194
+ 24 in 2005 , the provincial government established the council through the higher education quality council of ontario act and appointed frank iacobucci as its chair .
195
+ 17 he eventually rose to the rank of professor , and served many administrative roles , including department chair , dean , vice president for academic affairs , and provost .
196
+ 5 since 2007 he is the chair of synnøve finden .
197
+ 8 andy clark is a professor of philosophy and chair in logic and metaphysics at the university of edinburgh in scotland .
198
+ 28 he was a member of the board of the national gallery of norway from 1892 to 1905 and den norske husflidsforening from 1897 to his death , and chair of the national gallery from 1905 to 1907 .
199
+ 22 woodworking is depicted in many ancient egyptian drawings , and a considerable amount of ancient egyptian furniture ( such as stools , chair , tables , bed , chests ) has been preserved in tomb .
200
+ 2 harman became chair of cardiovascular research at the university of nebraska college of medicine in 1958 .
201
+ 3 gan is current chair of the department of environmental sciences at university of california , riverside .
202
+ 10 she later became a successful lawyer , author , and chair of national commission on libraries and information science .
203
+ 31 bennett taught at the royal academy of music between 1963 and 1965 , at the peabody institute in baltimore , united states from 1970 to 1971 , and was later international chair of composition at the royal academy of music between 1994 and the year 2000 .
204
+ 4 she was the deputy chair of the directorate of labor from 1975 to 1983 , of the norwegian labour inspection authority from 1972 to 1988 and of nordlandsbanken from 1982 .
205
+ 4 he or she may chair the city council , lacking any special legislative powers , but in most cases able to set the legislative agenda .
206
+ 9 for a year after graduation , stanley served as chair of belles-lettres at christian college in hustonville , kentucky .
207
+ 8 during the late 17th century he won the chair of mathematics and astronomy at the university of mexico .
208
+ 12 until 2011 , when he became emeritus , he was professor and chair of philosophy at tallinn university of technology ( tut ) .
209
+ 3 he was the chair of the norwegian savings banks association from 1964 to 1967 .
210
+ 31 at one time it was a bustling frontier village that had three stores , a school , a cemetery , three blacksmith and wagon shops , a grist mill , a chair and coffin factory , a shoe shop and the patchin hotel which also served as the post office .
211
+ 34 a la-z-boy swivelling , rocking , recliner la-z-boy , inc. is a furniture manufacturer based in monroe , michigan , us , which makes home furniture , including upholstered recliner , sofas , stationary chair , and sleeper sofas .
212
+ 46 it sponsored the first american congress of theatre ( fact ) in 1974 , and is best known as creator and owner of the american theatre wing 's antoinette perry awards for excellence in theatre -- the tony awards -- named for its co-founder and wartime chair .
213
+ 10 during the 96th illinois general assembly , koehler was the chair of the local government committee and of the subcommittee on fertilizers and chemicals ( of the agriculture and conservation committee ) .
214
+ 2 he was chair of the political science department at stanford from 1964 to 1969 and spent time as a visiting professor at the university of tokyo , the university of belo horizonte , and the taras shevchenko national university of kyiv .
215
+ 12 products included textiles , clothing , carpet , lumber , barrels , chair , carriages , wagons and sleigh .
216
+ 6 career from 1982-1986 , slots was chair of the department of oral microbiology at the university of gothenburg .
217
+ 5 '' smith has served as chair of the trustee board of ami infinity schools , chicago .
218
+ 21 it also represents the authority of presiding officers ; thus the expression passing the gavel signifies an orderly succession from one chair to another .
219
+ 3 the current board chair is municipal councillor joe virdiramo .
220
+ 6 in 1866 he was offered the chair of geology and paleontology in the school of mines , columbia college ( now columbia university ) , which he accepted and held for 24 years .
221
+ 1 the chair would '' reduce the expenses of hotels by decreasing the number of waiters and attendants , to add to the convenience and comfort of guests and to obviate the necessity of hand clapping or calling aloud to obtain the services of pages .
222
+ 57 following this , several provisional , green paper versions , pren 3910 p1 & p2 , were produced by working-group c2-gt9 of the association europeene des constructeurs de materiel aerospatial ( aecma ) ( now asd-stan ) , before its development also ceased in 1996-7 ( following the withdrawal of the french delegation , who held the chair of aecma c2-gt9 at the time ) .
223
+ 4 he is ibn khaldun chair of islamic studies at the american university in washington dc and was the high commissioner of pakistan to uk .
224
+ 7 county commissioners the county commission elects a chair who presides at meetings .
225
+ 13 he then proceeded to attack goldberg , which led to batista inserting a chair on goldberg 's ankle .
226
+ 27 from 1863 to 1882 he was professor of diseases of the eye and ear at his alma mater , and from 1875 to 1880 held a similar chair in the university of vermont ( burlington ) .
227
+ 8 treen is distinct from furniture , such as chair , and cabinetry , as well as clock and cupboard .
228
+ 29 the subject must then slide down the wall or pole until his thigh are parallel to the ground , so that his profile is of someone sitting in a chair .
229
+ 27 its product line offers both slipcovered and tailored upholstery in fabric and leather , including sleeper , sectionals , chairs , bed , ottoman , and dining chair .
230
+ 29 it is composed of different sections : clinic medical forensic pathology psychiatry and psychology forensic medicine labor criminal objectives deposit criminal museum canine unit account in addition to the chair in medicine of university of costa rica as a teacher .
231
+ 18 a sitting position sitting requires the buttocks resting on a more or less horizontal structure , like a chair or the ground .
232
+ 11 as of october 2010 , the directors were denis handlin ( chair , ceo of sony music ) , george ash ( universal music ) , mark poston ( emi ) , sebastian chase ( mgm distribution ) , david vodica ( rubber records/music ) and tony harlow ( war ) .
233
+ 5 he was also the first chair of the national theatre .
234
+ 16 during the run-up to the november 2012 general election , whitford and courage campaign founder and chair , rick jacobs , appeared together in a video that explained '' what 's really going on and who 's really behind california 's proposition 30 and proposition 32 .
235
+ 7 one player will be left without a chair , and will stand in the center of the circle .
236
+ 1 the chair may state , for instance : '' if there is no objection , the motion will be adopted .
237
+ 7 name kau yi ( 交椅 ) means chair in the cantonese language for the island 's shape .
238
+ 5 dick stanley continues as board chair .
239
+ 2 he is chair of the railway company flytoget since 2003 .
240
+ 21 in 2001 he became a board member of the norwegian news agency , and in 2009 he succeeded aslak ona as chair .
241
+ 22 this step is named because of the resemblance of the leg in action to a leg 's position when sitting in a chair .
242
+ 4 he has been the chair of arbeidsgiverforeningen navo and of the norwegian institute for cultural heritage research .
243
+ 2 sometimes , chair or benchlike seats are used as well , and occasionally mounts can be shaped like airplanes or cars .
244
+ 8 its secretary-general is olaf godli , and the chair is ole-anton teigen .
245
+ 6 each committee is led by a chair who belongs to the majority party and a ranking member of the minority party .
246
+ 4 annie laurie 's wishing chair , broken tree bench , abrahams oak , pool of hebron and cave of machpelah are some of the most important sculptures that can be found throughout the cemetery .
247
+ 3 he was also chair of the hoved line , from 1904 .
248
+ 29 their work displayed the new technique of wood moulding ( originally developed by alvar aalto ) , that eames would further develop in many moulded plywood products , including chair and other furniture , splints and stretchers for the us navy during world war ii .
249
+ 65 nearby is a showcase that displays memorabilia like school badges , erasers , pencil sharpener , fountain pen , ruler , pencil and a set of textbook that was commonly used in the past , the ` coffee shop ' the ` coffee shop ' resembling an old eatery ( ’kopi tiam’ ) , this setup comes complete with a cashier 's counter , wooden chair , stools , tables , mirror , clock , mechanical fan , ashtray , matchbox , counting frames , chopsticks , chopstick holders , drinking straw , spittoon , bottle opener , serving tray , coffee cup , ice grinders and a variety of soft drink .
250
+ 16 2013 legislative session rep. tyler was appointed by speaker of the house mark ferrandino as the chair of the house transportation and energy committee for the 2013 legislative session .
251
+ 3 uses chairs upholstered chair first began to become common in the 17th century , in the later period of the age of oak .
252
+ 7 in 1976 he accepted a call to chair the academic department for mathematical logic and foundations of mathematics at freie universität berlin .
253
+ 20 wolfgang kaim ( born 13 may 1951 in bad vilbel , germany ) is a german chemist who is the chair of coordination chemistry at the university of stuttgart .
254
+ 3 she was the chair of the norwegian institute for nature and cultural heritage research from 1997 to 2001 ( since 2003 split into the norwegian institute for nature research and the norwegian institute for cultural heritage research ) and of the genøk - centre for biosafety from 2006 .
255
+ 6 in 2009 he was elected as chair of the association of norwegian editors , succeeding stein gauslaa .
256
+ 2 he was chair of the department of political science at uchicago from 1979 to 1982 and dean of the new school from 1983 to 1989 .
257
+ 7 rinde served as both managing director and chair for many years .
258
+ 12 he is a member of the american academy of religion ( section chair 1998-2003 ) , the international association for the history of religions ( member of the executive committee 2000-2005 ) , and is on the editorial boards of numen , implicit religions , postscripts , and beliefs and values .
259
+ 18 seating garden furniture is often sold as a patio set consisting of a table , four or six chair , and a (parasol) .
260
+ 22 in 1958 , the institute was renamed as the department of technical physics of peking university , and hu was its founding chair , till 1986 .
261
+ 17 in october 2001 , tommy g. thompson , secretary of health and human services , named henderson chair of a new national advisory council on public health preparedness which is charged with improving the national public health infrastructure to better counter bioterrorist attacks .
262
+ 2 boman was chair of the libertarian party of michigan at the time .
263
+ 11 after resigning her ceo role at avon , jung continued as chair of avon 's board of directors through the end of 2012 and then as a senior advisor to avon 's board through april , 2014 .
264
+ 11 dr. richard mark soley ( baltimore , maryland ) is the chair and ceo of object management group , inc . ( omg ) ; as such , the vision and direction of the consortium are his responsibility .
265
+ 27 academic service sattler is an editor of the journal of logic and computation , on the editorial board of the journal of automated reasoning , and a chair for various conferences including the international joint conference on automated reasoning .
266
+ 9 from 1885 to 1892 , he held a similar chair at milan .
267
+ 18 types of upholstery traditional upholstery traditional upholstery is a craft which evolved over centuries for padding and covering chair , seats and sofas , before the development of sewing machines synthetic fabrics and plastic foam .
268
+ 24 a sgabello is an italian term for a specific type of backstool , moveable seat furniture typical of the italian renaissance , when a chair ( sedia ) usually signified an armchair , a seat of some hieratic importance .
269
+ 11 he is currently a full professor at harvey mudd and was chair of the mathematics department from 2002 to 2004 .
270
+ 19 in 2003 , he was appointed to the board of trustees of the ontario science centre and then named chair in 2006 .
271
+ 23 libya corruption case as part of the merger between statoil and the oil and gas division of norsk hydro , reiten was appointed chair of the merged statoilhydro that merged on 1 october 2007 .
data/chair/train.gold.txt ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 1
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 1
12
+ 1
13
+ 0
14
+ 1
15
+ 1
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 1
22
+ 1
23
+ 0
24
+ 0
25
+ 1
26
+ 1
27
+ 1
28
+ 1
29
+ 1
30
+ 1
31
+ 0
32
+ 0
33
+ 0
34
+ 1
35
+ 0
36
+ 1
37
+ 0
38
+ 0
39
+ 0
40
+ 0
41
+ 0
42
+ 1
43
+ 0
44
+ 1
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 1
51
+ 1
52
+ 0
53
+ 1
54
+ 1
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 1
62
+ 0
63
+ 1
64
+ 0
65
+ 1
66
+ 1
67
+ 0
68
+ 0
69
+ 1
70
+ 1
71
+ 0
72
+ 1
73
+ 1
74
+ 1
75
+ 0
76
+ 0
77
+ 0
78
+ 1
79
+ 1
80
+ 1
81
+ 0
82
+ 0
83
+ 0
84
+ 1
85
+ 1
86
+ 1
87
+ 0
88
+ 0
89
+ 1
90
+ 1
91
+ 1
92
+ 1
93
+ 0
94
+ 0
95
+ 1
96
+ 0
97
+ 0
98
+ 0
99
+ 1
100
+ 0
101
+ 1
102
+ 0
103
+ 0
104
+ 1
105
+ 1
106
+ 0
107
+ 1
108
+ 0
109
+ 1
110
+ 1
111
+ 0
112
+ 1
113
+ 0
114
+ 0
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 1
122
+ 1
123
+ 1
124
+ 0
125
+ 0
126
+ 1
127
+ 0
128
+ 1
129
+ 1
130
+ 0
131
+ 0
132
+ 1
133
+ 1
134
+ 1
135
+ 1
136
+ 1
137
+ 0
138
+ 0
139
+ 0
140
+ 1
141
+ 1
142
+ 0
143
+ 1
144
+ 1
145
+ 0
146
+ 1
147
+ 1
148
+ 0
149
+ 1
150
+ 1
151
+ 0
152
+ 0
153
+ 0
154
+ 1
155
+ 0
156
+ 1
157
+ 1
158
+ 1
159
+ 1
160
+ 1
161
+ 0
162
+ 0
163
+ 1
164
+ 0
165
+ 1
166
+ 1
167
+ 1
168
+ 0
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 0
175
+ 0
176
+ 0
177
+ 1
178
+ 1
179
+ 0
180
+ 0
181
+ 0
182
+ 1
183
+ 1
184
+ 0
185
+ 1
186
+ 0
187
+ 0
188
+ 1
189
+ 1
190
+ 0
191
+ 0
192
+ 0
193
+ 0
194
+ 0
195
+ 0
196
+ 0
197
+ 0
198
+ 0
199
+ 1
200
+ 0
201
+ 0
202
+ 0
203
+ 0
204
+ 0
205
+ 0
206
+ 0
207
+ 1
208
+ 0
209
+ 0
210
+ 1
211
+ 1
212
+ 0
213
+ 0
214
+ 0
215
+ 1
216
+ 0
217
+ 1
218
+ 0
219
+ 1
220
+ 0
221
+ 1
222
+ 0
223
+ 1
224
+ 0
225
+ 1
226
+ 0
227
+ 1
228
+ 1
229
+ 1
230
+ 1
231
+ 1
232
+ 0
233
+ 0
234
+ 0
235
+ 1
236
+ 0
237
+ 1
238
+ 0
239
+ 0
240
+ 0
241
+ 1
242
+ 0
243
+ 1
244
+ 0
245
+ 0
246
+ 1
247
+ 0
248
+ 1
249
+ 1
250
+ 0
251
+ 1
252
+ 0
253
+ 0
254
+ 0
255
+ 0
256
+ 0
257
+ 0
258
+ 1
259
+ 1
260
+ 0
261
+ 0
262
+ 0
263
+ 1
264
+ 0
265
+ 0
266
+ 0
267
+ 1
268
+ 1
269
+ 0
270
+ 0
271
+ 0
data/club/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "club_club", "1": "club_nightclub", "2": "club_club_(weapon)"}
data/club/test.data.txt ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 28 union sportive de la médina de blida or union sportive madinet blida ( arabic : الإتحاد الرياضي لمدينة البليدة ) also called usm blida is an algeria football club based in blida founded in june 16 , 1932 .
2
+ 36 oaksterdam is a cultural district on the north end of downtown oakland , california , where medical cannabis in a variety of competitively priced smokeable and edible preparations is available for purchase in multiple cafe , club , and patient dispensaries .
3
+ 8 he ran the venue as an authentic blues club , tabby 's blues box and heritage hall .
4
+ 10 their second single '' walking on sunshine '' was a club hit in 1992 , and peaked at # 71 in the uk singles chart .
5
+ 23 the fraternity ( also known as the circle ) is a canadian thriller film about a circle of friends that create an elite club while at the runcie high school and cheat on an exam .
6
+ 5 the leiomano is a shark-toothed club used by various polynesian cultures , but mostly by the native hawaiians .
7
+ 5 dale worked the new york club circuit with the pianist bob gaddy .
8
+ 15 '' feel the need in me '' was sampled in andrea t. mendoza 's 2005 club hit , '' ca n't fake it '' .
9
+ 85 the text gives a list of benaiah 's '' great exploits '' , suggesting that these are what brought him fame and honor ; compared with the feats ascribed by the text to abishai , and to the members of the three , benaiah 's feats are somewhat minor ( though regarded by scholars as more realistic ) : killing two of moab 's best warriors killing a lion in a pit on a snow day attacking a 7 1/2 foot tall egypt with a club , stealing the spear that the egyptian was using , and killing the egyptian with it .
10
+ 19 mighty minotaur ( voiced by tom wyner ) - a minotaur monster created by finster that wielded a spiked club and a shield .
11
+ 16 although only moderately successful on the charts , it became one of the group 's biggest club hits .
12
+ 10 then in the early 1990s , tanaka became a regular club dj in the kansai area , working as part of a dj team known as sound impossible .
13
+ 23 the members ' other projects now took priority until january 1972 when blue mink played two weeks at the talk of the town club in london .
14
+ 15 monarchs , both reigning and former , are typically allowed to create various societies , club , houses , fraternities , sonorities and so forth .
15
+ 4 religious ancient greek religious club focused on the worship of a particular deity and had several names including thiasoi , eranoi and orgeones , .
16
+ 32 after the battle of manzikert these incursions intensified , and the region 's people would see the ghāzī corporations coalesce into semi - chivalric fraternities , with the white cap and the club as their emblems .
17
+ 1 rabbit club at local state and national levels hold many shows each year .
18
+ 5 he is like a war club , or a sword , or a sharp arrow .
19
+ 11 is a monthly italian sports magazine entirely dedicated to the football club a.c. milan .
20
+ 3 organization civil engineering club .
21
+ 13 secretary is a title commonly held by a member of an organization , club , or society .
22
+ 7 raja beni mellal is a moroccan football club currently playing in the first division botola .
23
+ 10 in the beginning , it was more a student debate club that was sympathetic to young workers and the union movement .
24
+ 64 on the other hand , jerry 's methods of retaliation are far more violent due to their frequent success , including slicing tom in half , shutting his head in a window or a door , stuffing tom 's tail in a waffle iron or a mangle , kicking him into a refrigerator , getting him electrocuted , pounding him with a mace , club or mallet , causing a tree or an electric pole to drive him into the ground , sticking matches into his feet and lighting them , tying him to a firework and setting it off , and so on .
25
+ 18 shebeen in joe slovo park , cape town a shebeen ( ) was originally an illicit bar or club where excisable alcoholic beverage were sold without a licence .
26
+ 26 from 1989 to 1995 , vasquez gained national prominence , along with music industry influence -- through his residency at the original sound factory , a club he co-founded with richard grant , which was located at 530 west 27th street in manhattan 's chelsea district .
27
+ 4 it became a major club and dance radio hit in america , and even managed to peak at # 97 on the billboard hot 100 chart .
28
+ 12 pērkons appeared on a gold horse , wielding a sword , iron club , golden whip and a knife .
29
+ 24 other dances included the women 's dele , which humiliated enemy prisoners sex , and the men 's cibi , which uses spear and club .
30
+ 6 the funny bone is a comedy club chain in the united states .
31
+ 23 boyz is a free , london - based magazine , targeted at gay men and distributed mainly through gay bar , pubs , club and sauna in the united kingdom .
32
+ 14 it quickly became a worldwide smash hit , crossing over from the rhythmic and club charts to the us hot 100 , peaking at # 24 on the chart , and receiving a gold certification from the riaa .
33
+ 28 the albums spawned the two singles , '' do the dance '' and '' hoodoo wanna voodoo '' , and despite receiving a fair amount of airplay in club , they failed to chart in their native sweden .
34
+ 8 they came to prominence in 2003 with their club cover version of plumb 's '' damaged '' , which took on a life of its own when it became a hit in europe , peaking at number 12 in the uk singles chart .
35
+ 8 it is best known for providing information on club , concert , theater , and restaurant , but each issue also has one major article on a subject not usually being carried by the mainstream media .
36
+ 23 according to legend , they are twins -- the older brother is clutching a spear , while the younger one holds a war club .
37
+ 10 by age 18 , pronk was involved with the dutch club scene , where she added vocalist and dj duties to her resume .
38
+ 2 he played club and festivals , gaining a new generation of fans with his exciting live shows .
39
+ 36 the game stars the green-haired joe and the blue-haired mac , cavemen who battle through numerous prehistoric levels using weapons such as boomerang , bone , fire , flint , electricity , stone wheel , and club .
40
+ 5 it 's kind of some club stuff , some hip-hop traditional rap stuff , and then some rock - pop stuff .
41
+ 8 the song was written about the feelings a club 's environment can lead someone to believe .
42
+ 24 rather than following a conventional publishing or sweepstakes business model , he hit on the idea of presenting his enterprise as an exclusive '' club '' with a dedicated members ' journal , the puzzle lovers newspaper .
43
+ 30 etymology and history craig road was named after captain james craig , a member of the merchant service guild and an officer of the freemason 's zetland lodge , a club .
44
+ 18 if björklöven ( often simply referred to as björklöven or löven ) is a swedish professional ice hockey club in umeå , västerbotten , in northern sweden .
45
+ 28 there are only two sound effects used in the entire play , the scuffle of croak 's feet as he arrives and departs and the thud of his club reminiscent of the rulers wielded by the animator in rough for radio ii and the music teacher in embers .
46
+ 65 such activities include : freshman , jv boy and girls basketball , varsity boys and girls basketball , varsity girls volleyball , varsity golf , varsity cross-country varsity boys and girls soccer , cheerleading , varsity swimming , varsity wrestling , pep squad , track & field , girls and boys tennis , jcowa ( junior council on world affairs ) , go green recycling club , math olympics , yearbook committee , newspaper , muse machine foreign language offerings include : spanish , french , and latin .
47
+ 11 3 ) hot spot ( 8/17/1999 ) - a trendy new club called '' flame '' replaces a dive bar on the ground floor of alex 's building .
48
+ 32 after her recovery from a near-fatal car crash in 1989 , the 1990s found taylor in film such as blues brothers 2000 and wild at heart , and she opened a blues club on division street in chicago in 1994 , which relocated to wabash ave in chicago 's south loop in 2000 .
49
+ 10 uniforms serving other purposes such as to identify members of club , societies or team may also have armbands for certain ranks or functions .
50
+ 4 while performing in a club , he was approached by zeke carey of the flamingos , and asked to take carey 's place , as he had recently been drafted .
51
+ 19 the associação atética xi de agosto ( athletic association xi of august ) , is a brazil amateur football club of tatuí city .
52
+ 11 career lambourne began to play professional volleyball for lamia , a club from greece .
53
+ 33 dropping the word '' trio , '' walker and engel were signed by mercury records , recorded a single , '' pretty girls everywhere , '' and became a leading attraction at gazzari's club in hollywood .
54
+ 9 in his right hand the giant holds a knobbled club in length .
55
+ 27 coragus attended the duel in full body armor and weaponry , including javelin , a spear , and a sword , while dioxippus appeared with a simple club .
56
+ 17 types of membership organization include professional association , trade association , voluntary association , political parties , club and a wide range of others .
57
+ 9 liquid sky is a popular lighting effect used by club and similar venues .
58
+ 22 the oshakati city , also known as fnb oshakati city due to sponsorship reasons , is a namibia football ( soccer ) club from oshakati .
59
+ 9 the ramblers is a namibia football ( soccer ) club from pionierspark , windhoek .
60
+ 4 the underground is a club / music venue in hanley , stoke-on-trent .
61
+ 29 this would perhaps have been a natural evolution : as songs became much longer than had been the average for a pop song , and the dj in the club wanted sufficient dynamic range , the format would have surely had to be changed from the 7 inch ( 18 cm ) single eventually .
62
+ 28 he began his career as a record boy in 1971 as hip-hop first appeared in the bronx , and he eventually became a dj at the disco fever club in 1978 .
63
+ 8 many hardcore enthusiasts hated hard house and the club scene it typified , and frequently djs would be booed by one group of fans and cheered for by another at the same party , depending on the tempo and style of music they were playing .
64
+ 24 the restaurants and cafés of paris all were obliged to close early , however , marie vassilieff 's canteen was licensed as a private club and , therefore , not subject to the curfew .
65
+ 12 other strobe lights are used in scientific and industrial applications , in club where they are used to give an illusion of slow motion , and are often used for aircraft anti-collision lighting on tall stationary objects , such as television and radio towers .
66
+ 3 police drew their club and revolver , and charged the crowd , but were overpowered .
67
+ 7 rayne was a success on the american club scene where she started off as a dj in new york .
68
+ 19 the music was to be lounge music , played in the background or in the chill-out area of a club .
69
+ 7 tom is a supporter of english football club leicester city .
70
+ 11 weatherall 's first studio work was alongside paul oakenfold on the club remix of hallelujah for the happy mondays .
71
+ 7 runcorn fc halton was an english football club that played in runcorn , widnes and prescot at various points during its existence .
72
+ 29 jeremy roland peace ( born 1956 ) is a british businessman and , since june 2002 , the chairman of west bromwich albion f.c . , a professional football club in the west midlands , england .
73
+ 52 at age 15 , she left home to seek out the remaining blues giants , such as mississippi john hurt , reverend gary davis , and son house , and hone her craft in the traditional manner of blues musicians ; then she traveled to berkeley , california where she played in club and coffeehouse .
74
+ 14 sports teams stolberg has several football , handball , gymnastics , swimming , tennis club and a few traditional shooting clubs .
75
+ 7 they are best known for their 2004 club hit , '' need to feel loved '' , which reached number 1 on the british dance chart .
76
+ 15 the university of canterbury drama society inc ( dramasoc ) is a student performing arts club at the university of canterbury , christchurch , new zealand .
77
+ 19 voodoo pool on may 30 , 2008 , the rio opened the sapphire pool in conjunction with a local club .
78
+ 2 the original club was lost in the flood of 1996 and rebuilt in 1998 .
79
+ 11 history night slugs was originally started as a london - based club night by djs/producers alex sushon and james connolly after the two met on myspace in 2008 .
80
+ 8 events at convergence typically included live bands and club nights , bazaars , fashion , art shows , panels , and tours of goth-themed locales in the host city .
81
+ 3 various magazine , club and museum are designed mainly for railfans , concentrating on the history of trains and railroads .
82
+ 23 ilpo saastamoinen , musician and composer antti ruuskanen , javelin thrower and olympic medalist pielavesi is also well known for its successful volleyball club , pielaveden sampo .
83
+ 14 he wrote the song in the early 1940s for the après-ski crowd at a club in sun valley , idaho .
84
+ 25 dubstar appointed darlington based record producer and talent manager graeme robinson as their manager after robinson had seen them play in a sparsely attended newcastle club in march 1994 .
85
+ 23 while working at the radio station raw fm , ms. dynamite was discovered by richard forbes a.k.a. dj sticky at a west end club .
86
+ 31 '' i give , you give '' , notably the most upbeat of the three , was released as a single in that year , and reissued in 1996 as a club remix .
87
+ 9 community and clubs centenary offers many extracurricular activities and club .
88
+ 9 rungo iron birthplace : united states weapon : large club rungo iron made his first appearance in battle arena toshinden , as an initially playable character .
89
+ 8 a deal for ariola/hansa saw him score with club hits '' love no longer has a hold on me '' and '' take me down '' .
90
+ 2 nagarjung unesco club , under the presidency of mr. rupesh poudel has currently took over all social works and sports of this area .
91
+ 6 most were armed with saber or club .
92
+ 11 the fc civics windhoek is a namibia football ( soccer ) club based in windhoek .
93
+ 8 apart from houses , there were hotel , club and bar as well .
94
+ 24 this list of waterway societies in the united kingdom is a list of links to waterway societies , charities , trust , association , club and other non-governmental waterway organizations , concerned with the restoration , regeneration and use of the waterway in the united kingdom .
95
+ 21 promotional 12 '' single label '' it 's a disco night ( rock do n't stop ) '' is a 1979 club hit for the isley brothers , released on their t-neck label as the second single from their gold - certified album , winner takes all .
96
+ 4 the aims of the club are '' to provide the best facilities for our members that our income allows , whilst keeping the cost to members at an affordable level .
97
+ 44 as of 2011 , the paramount is in the midst of a $ 1.725 million renovation to once again become a theater after decade as a disco and concert hall , ( the hippodrome , ) when it was the center of springfield 's club scene .
98
+ 23 after a six-week break , garbage return to the united kingdom to perform their last european shows of the year - two intimate club gigs in london .
99
+ 14 originally from the uk , rawlins serves on the board of english premier league club stoke city .
100
+ 1 the club has around 80 members ( in early 2014 ) .
101
+ 18 clubbed wing function ornithologist speculate that the wings were used as weapons , in the manner of a club or flail , similar to the adaptations found in some mantis shrimp ( stomatopoda : gonodactyloidea ) that possess a club-like distally inflated dactyl used to strike prey and other shrimps .
102
+ 38 two other singles , '' out is through '' and '' eight easy steps '' , fared considerably worse commercially than '' everything '' , although a dance mix of '' eight easy steps '' was a u.s. club hit .
103
+ 2 numerous gaming club were formed as well .
104
+ 5 a 2005 magazine survey of club goers in the uk found that nausea or vomiting was experienced by over a quarter of those who had used hallucinogenic mushrooms in the last year , although this effect is caused by the mushroom rather than psilocybin itself .
105
+ 36 lima-peru sculpture of indian deity , hanuman carrying the dronagiri ( sanjeevani ) mountain , with a gada ( mace ) in his left hand the mace was developed during the upper paleolithic from the simple club , by adding sharp spikes of flint or obsidian .
106
+ 10 organization clubs the primary membership unit in toastmasters is the club .
107
+ 18 parliamentary procedure is the body of rules , ethics , and customs governing meetings and other operations of club , organization , legislative bodies , and other deliberative assemblies .
108
+ 28 in art in roman works of art and in renaissance and post-renaissance art , hercules can be identified by his attributes , the lion skin and the gnarled club ( his favorite weapon ) ; in mosaic he is shown tanned bronze , a virile aspect .
109
+ 39 attack by means of a deliberate collision types of attack by means of a deliberate collision include : striking with the body : unarmed striking , punching , kick striking with a weapon , such as a sword , club or axe ramming with an object or vehicle , e.g. : a car deliberately crashing into a building to break into it a battering ram , medieval weapon used for breaking down large doors , also a modern version is used by police forces during raids an attacking collision with a distant object can be achieved by throwing or launching a projectile .
110
+ 13 this was used in combination with a short spear ( assegai ) and/or club .
111
+ 5 in the uk , some club and premier league football matches and tournaments usually take place on sundays .
112
+ 7 the city 's nightlife , particularly its club scene , grew significantly in the 1990s , and continues to increase .
113
+ 20 apart from playing on the local blues circuit , edwards was shot in his leg during a fracas outside a club in alsen .
114
+ 14 finnish science fiction fandom started getting organized in finland when the first science fiction club ( the turku science fiction society ) was founded in turku in 1976 .
115
+ 22 during the 60 's and with improved technology its focus has moved onto criminal activity , including drugs , criminal control of club and brothel and the obscene publications industry .
116
+ 3 it is the club district in downtown fort lauderdale , florida .
117
+ 7 levharti chomutov is a czech professional basketball club based in the city of chomutov .
118
+ 8 bc unikol kolín is a czech professional basketball club based in the town of kolín .
119
+ 4 it is a private club and cultural organization located in philadelphia , pennsylvania and serves as a recreation center and meeting house for social events , including dances , weddings , musical events , art exhibits , and cultural events .
120
+ 7 in addition to the field , the club , concession stand , and press box are contributing resources .
121
+ 10 the mackay cutters rlfc are a semi-professional rugby league football club founded in 2007 based in mackay , queensland .
122
+ 21 inside the cercle gaulois the cercle gaulois , in full the cercle royal gaulois artistique et littéraire , is a belgian club .
123
+ 27 she also sang on a couple of tracks of burton 's live album , aron burton live in 1996 , which was recorded at buddy guy 's club , ` legends ' .
124
+ 5 the scene then shifts into club with the black-and-white checkered tile flooring , where she is seen performing to the song with back-up dancers behind her .
125
+ 29 to execute , one brings their palms together ( slightly off-centre ) , locks the fingers downward , then swings at an opponent as if they were holding a club - weapon ( like a bat ) .
126
+ 23 these early bands also operated within small '' scenes '' , often facilitated by enthusiastic impresarios who either operated venues , such as club , or organized temporary venues .
127
+ 11 dates included concerts at music festivals , universities , colleges and club venues around the world .
128
+ 16 a continuation of the kala tour , dates included concerts at music festival , universities and club venues .
129
+ 7 every cadet participates in an intercollegiate , club or intramural ( called inter-battalion sports ) level sport each year .
130
+ 6 polonia piła is a motorcycle speedway club in the polish town of piła .
131
+ 8 '' '' disco inferno '' was an underground club hit in the us and the uk , most notable for the piercing solos from michael and randy brecker .
132
+ 16 then they decided to go for another song , which was to be picturized in a club setting .
133
+ 12 the american cavy breeders association ( acba ) is considered a specialty club under the america rabbit breeders association ( arba ) .
134
+ 23 although he was wounded and his bar disabled during his approach , he nevertheless charged the position , using his gun as a club to kill several japanese soldiers until he was himself killed .
135
+ 5 suguna vilasa sabha is a club based in the city of chennai , india .
136
+ 5 the shillelagh , an irish club , is made of oak or blackthorn sapling from ireland .
137
+ 14 in the 1970s he moved to europe , and played in the hamburg jazz club ' onkel pö ' , with musician such as udo lindenberg , louisiana red , david honeyboy edwards , abi wallenstein and al jarreau .
138
+ 0 club ( quechua : chambi ) - wooden sometimes with spikes .
139
+ 16 three smcc players have represented england at test level colours and insignia the colours of the club are a combination of dark and pale blue ( inherited from mnob ) and claret ( from subiaco ) .
140
+ 13 her musical style can be described as dance music , with pop , club and latin elements .
141
+ 6 hendaye has a rugby and handball club , the stade hendayais , which was founded in 1908 .
142
+ 6 in 1999 , the herpa wings club and the first models of airport buildings in the 1/500 scale are produced .
143
+ 11 a large venue may be referred to as a nightclub , club , or bar , while smaller venues are typically called bars and sometimes pubs .
144
+ 22 after the gate of minas tirith is broken , battle trolls enter the city as shock troops , sporting armor and spiked club alluded to in the appendices .
145
+ 7 the windermere cruising association is a sailing club located at lake windermere in cumbria , england .
146
+ 16 usk praha , formerly known as slavia prague ( ) , is a czech professional basketball club that was founded in 1953 in the city of prague .
147
+ 10 the music video starts off with brown driving into a club ( where he chews a fresh stick of doublemint gum ) , and people are seen dancing while brown starts to sing the first verse .
148
+ 6 she also performed the song at club in brisbane and sydney , and also toured shopping malls in melbourne and gold coast .
149
+ 1 '' club '' has always meant an independent entity and , during the historical period in question , very few high school or university teams were independent of the educational institutions concerned .
150
+ 8 fruit machines are commonly found in pubs , club , and arcade .
151
+ 32 she , who one day can be ready to leave ratty after winning a trip , and the next day can ride with the leader of the motorcycle gang to the rat club '' ratz .
152
+ 16 he progressed to recording his own music for nukleuz records , and performing worldwide as a club dj .
153
+ 27 their first notable mainstream success was in 1997 with '' what ya got 4 me '' ( released on the jinx record label ) , becoming a club anthem .
154
+ 15 in 1994 , she joined the kud '' kočo racin '' , which was a club for folk dance and songs .
155
+ 12 formation manda glanfield and paul carter ( both regulars on the london club scene ) were working in the tv commercial jingle industry when they were introduced to musician richard walmsley .
156
+ 14 railroad clubs the model railroads were built and are maintained by four local railroad club , which exhibit their respective displays as nonprofit organization .
157
+ 18 '' it would go on to be re-released a number of times throughout the world and remains a club favorite in many settings .
158
+ 11 during the early 1980s , the hooters played on the philadelphia club scene , boosted by airplay on wmmr , the major rock radio station in philadelphia .
159
+ 30 earlier depictions of obsidian is usually restricted to their appearance as razor or lancet , and it is commonly believed that the material was not associated with weapons such as club or spear until later phases in mesoamerica .
160
+ 16 career their debut production '' stay with me '' ( released as ultra high ) garnered club interest and reached number 36 in the uk singles chart in december 1995 .
161
+ 12 the new hampshire snowmobile association is an association of independently incorporated snowmobile club .
162
+ 2 most other club met only once or twice a week .
163
+ 27 it served as the album 's second single in australia , where it reached the top five , and in north america , where it became a club hit but was less commercially successful than the lead single , '' promiscuous '' .
164
+ 17 exit from nazareth after leaving nazareth in 1990 , charlton played some solo shows on the scottish club circuit , and released his first solo album drool in 1997 , on the red steel record label with neil miller on vocals .
165
+ 14 career clubs he began to play in 1992 with mks mdk warszawa volleyball junior club .
166
+ 12 the magazine featured photography , music , cd reviews , dance and club listings .
167
+ 12 scott stamper , ( march 10 , 1962 ) is an american club owner , booking agent , and talent scout .
168
+ 11 in 1978/79 the members continued to play the london pub and club circuit , and became a feature in the music press .
169
+ 6 clubhouse assemblies of nobility typically had club also called '' assembly of nobility '' , colloquially referred to as '' the assembly '' ( собрание ) among the peers .
170
+ 17 the wellington service rifle association ( or wsra ) is new zealand 's oldest active service rifle club .
171
+ 11 gary d also gained maas a residency at hamburg 's famous club , the tunnel , between 1994 and 1996 .
172
+ 4 ( see article at club for a further discussion of these distinctions .
173
+ 38 she soon teamed musically with famed paradise garage dj larry levan , and recorded her first major landmark hit , '' padlock '' in 1983 with the compass point all stars in nassau , bahamas which became a club and radio hit two years later .
174
+ 6 ' the zodiac ' was a club on the cowley road in southeast oxford .
175
+ 12 it 's one of those mid-tempo numbers -- too slow for the club , too fast for the foxtrot .
176
+ 33 a local farmer who had received supplies from a blockade runner might sell it for $ 1.00 per quart , or twenty-five cents per glass usually only to those who belonged to a club .
177
+ 16 by the 1990s , the style was beginning to be known and appreciated at soul music club in britain , germany , and the us , and its level of recognition has continued to increase .
178
+ 6 nottinghamians rfc is a rugby union club that plays in holme pierrepont in nottingham , england .
179
+ 7 there are also several gym , in club like bahiano de tênis and associação atlética and the antonio balbino gymnasiums ( popularly known as '' balbininho '' ) , which is an arena that can hold up to 7,000 people .
180
+ 6 sleaford town f.c. is a football club based in sleaford , lincolnshire , england .
181
+ 6 stricto sensu , it is a club without a special judicial ground .
182
+ 7 in the uk it also topped the club charts .
183
+ 5 she was discovered in a club by the record producer peter harris .
184
+ 21 adjacent to mannheim 's main campus is mannheim downtown that represents the major night life district , where numerous bar and club are located close to each other .
185
+ 6 x-press also gained plaudits on the club scene for regularly parading in clubs with their multi-decked ( up to twelve decks with three dj ) sets .
186
+ 5 it only received a limited club run , but was released as a single in australia and proved popular in the nightclub .
187
+ 21 whilst the world of twist never toured in north america , '' sons of the stage '' was an indie / club hit in toronto and new york .
188
+ 7 student life menlo offers over 50 student club in the upper school and 25 in the middle school .
189
+ 4 firm , universities , club , medical association , unions etc. are some examples .
190
+ 8 function halls are often found within pub , club , hotel , or restaurant .
191
+ 32 although no video was made for the song , it still managed to make it onto the uk singles chart , concretely landing at number seventeen , due to strong radio and club play .
192
+ 23 a display of zulu knobkieries ( foreground ) a knobkierie , also spelled knobkerrie , knopkierie or knobkerry , is a form of club used mainly in southern and eastern africa .
193
+ 15 in 2005 , '' this time baby '' was sampled for the dance radio and club hit , '' love on my mind '' , by the freemasons featuring amanda wilson .
194
+ 18 nick moss and the flip tops have recorded two live albums at chan 's , a rhode island club .
195
+ 11 in 1995 harman recorded a song named for the zoo bar club in lincoln , nebraska .
196
+ 24 also , students can participate in a wide range of after-school activities such as intramural sports , drama classes , music lesson , and club .
197
+ 8 bk jip pardubice is a czech professional basketball club based in the city of pardubice .
198
+ 9 bk nova hut ostrava is a czech professional basketball club based in the city of ostrava .
199
+ 53 these exemptions include : if the children within the home are related to each other and there is no more than two non-related children in the same care ; recreational programs that are run less than four consecutive months in a year ; programs that specialize in activities or instruction such as organized club , art or music lessons ; drop-in or short-term care while the parents participate in a non-employment function such as health clubs , shopping , resorts or churches ; public school programs or nonpublic schools accredited by the southern association of colleges and schools as long as they operate for less than 6.5 hours per day ; vacation bible schools ; military bases , the cherokee indian reservation or any federal property over which the federal government has jurisdiction or control .
200
+ 5 hapoel holon is a basketball club based in holon , israel .
201
+ 26 baby tate served in the united states army infantry during world war ii in the south of england , and did not return to the spartanburg/greenville club circuit until 1946 .
202
+ 13 peredy is an american , metal , rock , acoustic , dance , club musical solo artist who started as a child and broke into the scene in salisbury , north carolina and is the first artist signed to crushing skulls records .
data/club/test.gold.txt ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 1
4
+ 1
5
+ 0
6
+ 2
7
+ 1
8
+ 1
9
+ 0
10
+ 0
11
+ 1
12
+ 1
13
+ 1
14
+ 0
15
+ 0
16
+ 2
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 2
25
+ 0
26
+ 1
27
+ 0
28
+ 2
29
+ 0
30
+ 1
31
+ 1
32
+ 0
33
+ 1
34
+ 1
35
+ 1
36
+ 2
37
+ 1
38
+ 1
39
+ 2
40
+ 1
41
+ 1
42
+ 0
43
+ 0
44
+ 0
45
+ 2
46
+ 0
47
+ 0
48
+ 1
49
+ 0
50
+ 1
51
+ 0
52
+ 0
53
+ 1
54
+ 2
55
+ 0
56
+ 0
57
+ 1
58
+ 0
59
+ 0
60
+ 0
61
+ 1
62
+ 1
63
+ 1
64
+ 0
65
+ 1
66
+ 2
67
+ 1
68
+ 1
69
+ 0
70
+ 1
71
+ 0
72
+ 0
73
+ 1
74
+ 0
75
+ 1
76
+ 0
77
+ 0
78
+ 0
79
+ 1
80
+ 1
81
+ 0
82
+ 0
83
+ 1
84
+ 1
85
+ 1
86
+ 1
87
+ 0
88
+ 2
89
+ 1
90
+ 0
91
+ 2
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 1
99
+ 0
100
+ 0
101
+ 2
102
+ 1
103
+ 0
104
+ 1
105
+ 2
106
+ 0
107
+ 0
108
+ 2
109
+ 2
110
+ 2
111
+ 0
112
+ 1
113
+ 1
114
+ 0
115
+ 0
116
+ 1
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 0
122
+ 0
123
+ 1
124
+ 0
125
+ 0
126
+ 1
127
+ 0
128
+ 0
129
+ 0
130
+ 0
131
+ 1
132
+ 0
133
+ 0
134
+ 2
135
+ 0
136
+ 2
137
+ 1
138
+ 2
139
+ 0
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 0
146
+ 0
147
+ 0
148
+ 0
149
+ 0
150
+ 0
151
+ 1
152
+ 1
153
+ 1
154
+ 0
155
+ 1
156
+ 0
157
+ 1
158
+ 1
159
+ 2
160
+ 1
161
+ 0
162
+ 0
163
+ 1
164
+ 1
165
+ 0
166
+ 0
167
+ 1
168
+ 1
169
+ 0
170
+ 0
171
+ 0
172
+ 0
173
+ 1
174
+ 1
175
+ 1
176
+ 0
177
+ 1
178
+ 0
179
+ 0
180
+ 0
181
+ 0
182
+ 1
183
+ 1
184
+ 0
185
+ 1
186
+ 1
187
+ 1
188
+ 0
189
+ 0
190
+ 0
191
+ 1
192
+ 2
193
+ 1
194
+ 1
195
+ 1
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 1
202
+ 1
data/club/train.data.txt ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 19 his first single was '' i wanna lick the pussy '' ( 1994 ) , which became a regional club hit without the assistance of radio airplay .
2
+ 17 logistics typically , the audience capacity for a house concert is smaller than at a coffeehouse or club .
3
+ 16 description tales depict the dagda as a figure of immense power , armed with a magic club and associated with a cauldron .
4
+ 50 in 1807 , gibraltar merchants had founded a library in bedlam court , as they were denied membership of the garrison library , it being available only to members of the british garrison in the city ( the garrison library functioned not only as a library , but as a club , owned and run by and for military officers ; civilians were excluded , regardless of their prominence ) .
5
+ 24 killed in : '' ice cold killa '' jizzy b. is the biggest pimp in san fierro , the owner of the pleasure domes club and a member of the loco syndicate .
6
+ 16 the european-influenced music is layered and textured with many music modalities , differing from their past club - oriented albums .
7
+ 16 animaritime is an anime and gaming convention founded by members of the mount allison university anime club .
8
+ 21 linda now travels all over the nation and around the world for her performances making appearances in numerous casino venues , club venues and outdoor festival venues .
9
+ 18 the band 's popularity increased when they were asked to play a two-week stint at ronnie scott 's club in london , opening for chick corea , a run that was eventually lengthened to three weeks .
10
+ 7 bk děčín is a czech professional basketball club based in the city of děčín .
11
+ 5 a film society is a club where people can watch screenings of films which would otherwise not be shown in mainstream cinema .
12
+ 21 she approached ades and asked him if he would be willing to transform '' i begin to wonder '' from a club song to a pop song .
13
+ 1 the club was established on february 22 , 2008 by a small group of trek enthusiasts in chennai , india .
14
+ 9 it is a hip hop song with influences of club music , and is backed by a looped production containing elements of synthesizer and string instrument , and a repetitive bassline .
15
+ 8 stewarts & lloyds corby a.f.c. is a football club based in corby , northamptonshire , england .
16
+ 21 before their adoption of guns , the plains indians hunted with spear , bows and arrows , and various forms of club .
17
+ 2 private member club were not exempted .
18
+ 12 the latter would later be sampled for the 2005 dance radio and club hit '' love on my mind '' by the freemasons featuring amanda wilson .
19
+ 101 a partial list of such titles includes personal title , such as lord , knight , right honourable , indicating an earned or inherited rank or position within a formal power structure ; command rank , such as captain , sergeant , etc. , indicating likewise a very specific position in a command hierarchy , e.g. police rank or military rank ; an academic degree or professional designation such as phd , p.eng or m.d. , whether this be purely honorary or symbolic , or associated with credentials attesting to specific competence , learning , or skills ; labor union and club memberships ; persons allowed access to specific areas during special events , such as concerts and shows ; citizenship , as in the case of passport and birth certificate .
20
+ 9 grand army of the republic hall is a historic club building located at johnstown , cambria county , pennsylvania .
21
+ 4 there are currently 31 club and only 14 courses , compared with the hundreds which existed before .
22
+ 13 the four had met in 2001 after a live show in a magdeburg club , where listing and schäfer , who knew each other from music school , watched from the audience while bill and tom kaulitz played on the stage .
23
+ 11 while at its simplest the throwing stick is just a heavy club thrown at the game , a well designed throwing stick uses the principles of an airfoil shape and gyroscopic stability ; the oldest of these dates back 200,000 years to ancient poland .
24
+ 30 kim and chae were forced to work for 14 hours a day ; if they did n't work well , they were beaten by an iron bar or an wooden club .
25
+ 22 within minutes , a north korean guard truck crossed the bridge and approximately 20 more north korean guards disembarked carrying crowbar and club .
26
+ 19 thematically , the album 's subject matter mostly concerns self-aggrandisement , sex , social commentary , and '' the club '' .
27
+ 42 the editorial column of the first issue sided clearly against fascism : luigi pirandello , for his devotion to benito mussolini , was one of becco giallo satirical target , and used to be called p. randello ( randello in italian means club ) .
28
+ 4 other spelling pronunciations are club pronounced , iceberg pronounced in spain ( in american spanish , it 's pronounced ) , and folclor and folclore as translations of folklore , pronounced and .
29
+ 4 tipstaves ( the short club after which the office is named ) on display at bedford museum history crossed tipstaffs within a wreath - rank of police assistant chief constable or commander in the uk the office of the tipstaff is thought to have been created in the 14th century .
30
+ 5 types newsletters are published by club , churches , societies , associations , and businesses -- especially companies -- to provide information of interest to members , customers , or employees .
31
+ 24 these include a coles supermarket , tavern , restaurant , general practitioner , dentist , bp service station , fire station , rugby union club , child care and several other businesses .
32
+ 14 relatively unknown outside their home country , they have had international success with the club track , '' helium '' .
33
+ 18 when his band dissolved , alen started playing football in jedinstvo from bihać , then a second league club .
34
+ 16 it features news and creative input from all sections of the school community , including regular club reports and interviews with famous former pupils .
35
+ 49 other artists who have used samples from wright 's 1975 -- 81 recordings include dilated peoples , atmosphere , infamous mobb , t.i. and armand van helden , the last of whom incorporated part of '' comin ' apart '' ( from the right place ) in his 2004 club hit '' my my my '' .
36
+ 43 the subsequent singles '' in your eyes '' , '' love at first sight '' and '' come into my world '' were successful throughout the world , and minogue established a presence in the mainstream north american market , particularly in the club scene .
37
+ 33 the parcel , over and containing a great deal of wooded and undeveloped land , wetlands , a tennis court , and a sarasota school of architecture structure that served as a private club or recreation lounge for a bay front home opposite it on bay shore road that was sold separately from the house and held for a long time by a developer .
38
+ 36 like nearly all delerium singles to date since '' silence '' , the single release put greater emphasis on a number of trance remix commissioned by nettwerk music group in order to promote the song through club play .
39
+ 17 she instituted book talk , monthly program meetings , a story hour and a variety of other club .
40
+ 15 typical amenities offered can include one or more swimming pool tennis court community centre or club golf course marina on-site dining playground exercise rooms including workout machines spa around the world ` protective ' spikes in ` security-zone ' communities trinity west , one of the few gated subdivisions in trinity , florida , u.s. in brazil , the most widespread form of gated community is called '' condomínio fechado '' ( closed housing estate ) and is the object of desire of the upper classes .
41
+ 5 stotfold f.c. is a football club based at stotfold , bedfordshire , england .
42
+ 8 conway was talent-spotted while playing in a london club , signed to emi 's columbia label and spent the mid-1950s providing backing for artists on their roster , including gracie fields and joan regan .
43
+ 40 opus dei supporter william o'connor wrote that a person 's spiritual life is a private matter , and that the practice of not divulging membership lists is common to many organizations such as trade union , hospitals , schools and club .
44
+ 17 thornhill joined the prodigy along with keith flint after they met liam howlett at a local rave club .
45
+ 12 this stone has been used by the great basin tribes for war club and pipes that are jet black with a high gloss when polished .
46
+ 21 the second single was '' breathe '' , which reached number 36 on the hot 100 and became a top five club hit .
47
+ 22 ann siang road , which has elegantly restored shophouses today , was once the traditional home of clan associations and exclusive social club .
48
+ 23 he did not quit performing musically , but began to cover songs that started a career with a recurring gig at the brooklyn club , casablanca .
49
+ 12 in order to pay the rental fees , cartwright organized a ball club so that he could collect the needed money .
50
+ 4 she danced in small club along hollywood 's sunset strip , introducing herself to performers , managers , and agents .
51
+ 10 in essence , it is a short stave or wooden club thrown as a projectile to hunt small game such as rabbits or waterfowl .
52
+ 11 career silva started producing house music in 1992 , just as club culture was getting established in lisbon .
53
+ 20 in 1994 , his single '' eighteen strings '' also written as '' 18 strings '' , became an international club hit .
54
+ 7 the stones can shoot out of his club , killing enemies .
55
+ 13 in the netherlands , eye-d and dj hidden are frequent guests at underground club nights prspct and smackdown .
56
+ 14 sky media limited originally formed to investigate the possibility of beaming sports programming into club and pub using high performance 4 metre satellite dishes by jarvis and an engineering associate brian green but was redirected into pay television following successful bidding in 1990 for four groups of uhf frequencies in the auckland , hamilton and tauranga region .
57
+ 10 a stock example is 倶楽部 ( kurabu ) for '' club '' , where the characters can be interpreted loosely in sequence as '' together '' , '' fun '' and '' place '' .
58
+ 16 '' some of the songs are concerned with a sense of paranoia and alienation in british club culture .
59
+ 1 a club version of the song was later released featuring eminem and mos def .
60
+ 41 major themes the place that dane visits in his dream or his supernatural and time-expanding experience , as james cleverly does n't specify seems a combination of retreat house , convent , country home , hotel , spa , resort and club .
61
+ 6 new brighton a.f.c. is a soccer club in christchurch , new zealand .
62
+ 17 '' just dance '' also has influences of b and lyrically speaks about being intoxicated at a club .
63
+ 25 to strengthen the catholic education offered by the college , the legion of mary , the solidarity of our lady , and the catechists ' club were organized in the 1960 's .
64
+ 8 the large number of sailing events organized by club and syndicate , like oceanic races and typical boats ( wooden fishing boats and canoe ) races , demonstrates the sport 's growing force .
65
+ 21 clwb ifor bach on womanby street clwb ifor bach ( , ) is a cardiff nightclub , music venue , welsh-language club and community centre .
66
+ 19 marching two-step were a local gigging band for a few years , but never managed to grow beyond the club scene .
67
+ 27 nick littlemore of the australian electorock outfit , empire of the sun , lends a hand on the production , which gives the song a retro synthpop club feel .
68
+ 21 as weapons , the zulu warrior carried the iklwa stabbing spear ( losing one could result in execution ) and a club or cudgel fashioned from dense hardwood known in zulu as the iwisa , usually called the knobkerrie in english , for beating an enemy in the manner of a mace .
69
+ 35 '' during the rolling stone interview , he spoke about if the first two singles were representative of the direction of the album , saying : '' i feel like it 's representative of the club side of the album but i 'm really trying to give people all sides of me .
70
+ 40 association with wushu/kung fu the chinese lion dance ( especially the taiwanese lion , 臺灣獅 ) has close relations to kung fu or wǔshù ( 武術 ) and the dancers are usually martial art members of the local kung fu club or school .
71
+ 26 in 2005 , the dance music took place on a second stage on the saturday only and in 2006 it took place off site at a club on the saturday night .
72
+ 7 ) was described more as a dance-pop club hit than as a christmas song even peaking at number-one on the romanian top 100 .
73
+ 20 fort nelson chapter of the daughters of the american revolution chapter house is a historic daughters of the american revolution club located at portsmouth , virginia .
74
+ 22 a listings magazine is a magazine which contains information about the upcoming week 's events such as broadcast programming , music , club , theatre and film information ; examples include time out magazine in the uk , tv hebdo ( québec ) in canada , and tv guide in the us .
75
+ 25 the sport klub windhoek , also known as sk windhoek , skw , and cymot skw due to sponsorship reasons , is a namibia sports club based in windhoek .
76
+ 14 nautical athletical organization of mati attika ( abbreviation : naoma ) is a sailing club located in mati , in the eastern part of the attica region in greece .
77
+ 1 in club play she was a member of the 2001 golden west team that won the winter junior nationals , and was named mvp of the tournament .
78
+ 10 these places include airport , shopping mall , park , club , supermarket , campus , and other popular locations .
79
+ 2 the current club structure was built in 1960 .
80
+ 5 she is in the drama club at her real world school , and she is often singing songs from rent .
81
+ 7 they then began to build up a club reputation as a tight , close harmony band and in 1966 , finding themselves in the middle of the 1960s swinging london scene , they decided to update their image and instrumentation .
82
+ 25 steve beckett , co-owner of warp , has said that the electronic music the label was releasing at that point was targeting a post - club , home-listening audience .
83
+ 19 musical career supafly is best known for 2005 's '' let 's get down '' - which was a club hit around the world and used by the australia television network fox8 as their summer theme song ; and for '' moving too fast '' in late 2006 , which sampled from the phil collins ' hit '' another day in paradise '' .
84
+ 7 due to his increasing popularity in the club scene and especially in the gay community , he was hailed as the '' hottest dj of 2005 '' by out magazine in their june issue .
85
+ 13 the fraternal order of eagles building is a historic fraternal order of eagles club located in richmond , virginia .
86
+ 12 originally , raw stylus released white label vinyl records into the london club scene in the early 1990s .
87
+ 14 featuring the vocals of tracy ackerman , '' everytime '' proved to be a club hit , due to the balearic trance interpretation by nalin & kane , who had earlier in the year had enjoyed crossover success with '' beachball '' .
88
+ 19 his first success was his remix of dj sakin 's '' protect your mind '' , which became a club track .
89
+ 13 after a spell as a catwalk model , she scored a number of club hits after recording with the group the biz in 1983 .
90
+ 15 the song peaked at # 4 in the uk singles chart , and became a club favorite .
91
+ 11 he moved to the us for a solo career on the club circuit , encouraged by the likes of wilson pickett and sam & dave , playing las vegas with the righteous brothers .
92
+ 16 in 1995 , white faced criminal charges of possessing deadly weapons , a knife and a club , distributing obscene material , and attempting to escape from police custody , arising out of the distribution of political leaflets .
93
+ 31 affiliated clubs of the students ' association the students ' association ( s.a. ) organises a sponsored walk each year to raise funds for financing the activities of its 53 affiliated club , which are grouped under six unions : arts union , science union , sports union , music union , recreation union and service union .
94
+ 10 the park is the official ground for the association football club cwmfelin press a.f.c . the park also has a playplace where young children can play .
95
+ 20 singles in april 2006 , a remix of '' no hay igual '' featuring calle 13 was issued as a club single in the us .
96
+ 9 many of them contributed to the growth of the club over the years .
97
+ 11 extras were used as background dancers to create a sort of club atmosphere .
98
+ 8 after a four year stint on philadelphia 's club circuit , they recruited a new lead vocalist , george williams in 1960 , and changed their name to the tymes .
99
+ 35 1991 's queer would be the band 's swansong , and was supported by various techno inspired singles under the moniker of ( in the uk ) to disguise the identity of the band to club djs .
100
+ 15 energy 92.7 & 101.1 knrj 's dance music product included house , trance , and club music , as well as remixes of pop and r&b hits .
101
+ 29 unlike list pr , stv can be used in elections in organizations without any political parties at all , such as in municipal non-partisan elections , trade union , club , and school .
102
+ 10 a mace is a blunt weapon , a type of club or virge that uses a heavy head on the end of a handle to deliver powerful blows .
103
+ 20 jockey slut was a british music magazine which ran between 1993 and 2004 , focusing mainly on dance music and club culture .
104
+ 6 his weapon of choice is a club but he is dangerous with every weapon .
105
+ 22 backyard and garden railways if the ride is on track , and especially if the service is provided by a non-commercial hobbyist club , the train may be an exact scale model , often with a live steam locomotive .
106
+ 12 design the morning star is a medieval weapon consisting of a spiked club resembling a mace , usually with a long spike extending straight from the top and many smaller spikes around the particle of the head .
107
+ 1 their club concept is ingeniously simple and effective : the drummers lay their rhythm on the basics of the dj , through this they change any style into a new and original element .
108
+ 6 '' he used both professional and club - oriented amplifiers and monitors to minimize harmonic distortion and maintain flying lotus ' minimalist aesthetic , which , along with his need to find a quiet mental space , inspired the album 's title : '' i wanted to set people up to this idea , before they even heard it , that the quiet was a key word in the whole thing ... ( a ) part of pulling it back is some kind of growing up .
109
+ 9 his iconographic attributes are the lion skin and the club .
110
+ 19 cj bolland contributed a mix of '' in your blood '' on bford9 and '' fetish '' was a club hit in both the uk and the us .
111
+ 13 ibadan is also home to the legendary shooting stars fc a professional football club .
112
+ 6 he wields a large , spiked club .
113
+ 19 the dennisons advanced from learning the ravens ' chord patterns , to building a local reputation at the bicc club in melling , liverpool .
114
+ 17 they have also found in the dwellings well-preserved tools such as iron axe and sickle , wooden club , pottery urn and jars of preserved crops .
115
+ 17 as the team scholar , computer are listed her strong point ; she even belongs to the club at school .
116
+ 32 the two have collaborated since 1993 under a variety of names , including axis , hitch hiker & jacques dumondt , and mike stone & steve heller , and have scored major club hits internationally , including a re-make of john paul young 's '' love is in the air '' .
117
+ 24 slow ballads and r & b songs can be remixed by techno producers and djs in order to give the song appeal to the club scene and to urban radio .
118
+ 12 glassshrimp is a london based collective which publishes a magazine ; promotes club nights and presents a weekly radio show on resonance 104.4fm ( london ) which all feature independent musician , artist , writer and performer .
119
+ 17 an addition expansion was in 1896 , and the house reconstructed in 1933 for use as a club , at which time the property was converted to a 9-hole golf course .
120
+ 15 a notable project for grey prior to joining inner city was the chicago house 12-inch club hit '' do n't make me jack ( tonite i wanna house you ) '' on housetime records .
121
+ 37 these early april 1912 general elections were known infamously as the '' election of clubs '' ( ) after the beating of opposition ( freedom and accord ) candidates for the chamber of deputies with weapons like club and sticks as well being marred by electoral fraud and violence in favor of the cup .
122
+ 15 marshall field and company clubhouse , also known as fieldcrest lodge , is a historic club located at fieldale , henry county , virginia .
123
+ 5 it has several sub-councils and club , each presided over by convener , also from the faculty members .
124
+ 11 eventually , he started making real music and began playing at club .
125
+ 12 minawo was formed in 1999 after matsuura and yamaguchi met in a club while both were attending university of kitakyushu .
126
+ 8 in the meantime , two men armed with club and net wait in the foyer to ensnare him , as three more men also watch from over the balcony .
127
+ 6 '' freeloader '' became a worldwide club hit and reached mainstream chart success in the uk , germany , belgium and the netherlands .
128
+ 6 it stated that often when the club offered promotions with gimmicks , dancers would be required to work without payment .
129
+ 20 in june 1993 , deandrea 's remixed version of '' secret love '' was released , it became a uk club hit and peaked at no. 41 .
130
+ 17 chains were frequently decorated with a silver or enamel pendant , often carrying the arms of some club or society , which by association also became known as a fob .
131
+ 22 '' in the song risingson on massive attack 's mezzanine album , the singer apparently appeals to his company to leave the club they 're in , deriding the common persons ' infatuation with them , and implying that he 's about to slide into antisocial behaviour : in an episode of this american life , radio host ira glass uses the term hoi polloi while relaying a story about a woman who believes the letter ` q ' should occur later in the alphabet .
132
+ 17 resistance symbols like the flags or the weapons used by the peasants , in particular their typical club with nails on the hitting end ( called ( bauern - ) knüttel ) , were outlawed , confiscated , and destroyed .
133
+ 15 guitar slim , jr. , has worked for many years around the new orleans blues club circuit , and his repertoire became more reliant on his father 's material .
134
+ 11 a banquet photo is a photograph typically in a hotel or club banquet room from a high angle where foreground to background each person is in focus while seated at their table .
135
+ 12 there are usually extensive childcare facilities such as a crèche and various club to keep youngsters occupied , enabling parents to follow their own pursuits .
136
+ 61 northern soul and breakthrough their first release came in the form of '' colour my life '' , a limited white label pressing which got them some recognition , but it was the first official single '' how can i love you more ? '' that gave them their first top 30 hit and a following in and around the manchester club scene , where pickering was still dj-ing .
137
+ 11 in the 1940s , she appeared at the b & c club as a tap dancer , amidst other artists such as john lee hooker .
138
+ 8 truncheons probably developed as a marriage between the club or military mace and the staff of office / sceptre .
139
+ 24 before that , they were known for a track called '' do what you want '' ( 1990 ) that got a lot of club and dj play in new york and chicago .
140
+ 19 the twins have also participated in several fashion show , performance art pieces , gay pride parade , and club appearances from los angeles to new york city and across the atlantic , some of these have been fundraisers for aids charities and organizations .
141
+ 25 though '' take away '' was not a success on radio , '' 4 my people '' went on to become an american and european club hit due to a popular remix by house music duo basement jaxx in 2002 .
142
+ 10 after teaching each day he spent his time playing in club .
143
+ 6 unlike chuck , junior carries a club that gives his attacks further reach .
144
+ 32 this was followed by further singles on several record label , but with little commercial success , although '' you busted my mind '' later became successful on the uk's northern soul club circuit .
145
+ 14 the condemned were lashed to the wheel and their limbs were beaten with a club or iron cudgel , with the gaps in the wheel allowing the limbs to give way and break .
146
+ 10 north america and europe a karaoke bar , restaurant , club or lounge is a bar or restaurant that provides karaoke equipment so that people can sing publicly , sometimes on a small stage .
147
+ 7 the other three main bars were all club venues ; colours and the basement ( the two larger venues ) , and escape ( the smallest ) , were open most nights for a variety of music .
148
+ 12 however , some biologists suggest that the structure more closely resembles a club .
149
+ 19 each of them has a background in performing , dj , and being stylists within the underground new york club and fashion scenes .
150
+ 23 in the same way , arthur manipulates friends such as dave of arthur 's haunt the private , if downmarket , '' winchester club '' ; the character of dave originally appeared on an irregular basis , but by series 3 , the three-way banter scenes between terry , arthur and dave ( sometimes simply arthur and dave ) became one of the show 's most popular elements with viewers , and such scenes were increased in regularity as a result .
151
+ 12 the street contains numerous cafés , restaurants , shops , cinemas , club and hotel .
152
+ 16 the flotilla was reported to be carrying ballistic vest , gas mask , night-vision goggles , club , and slingshot , although the unhrc report does not mention these items and in the turkish report on the israeli attack on the humanitarian aid convoy to gaza it states that all passengers and crew as well as the cargo were searched to international standards and no weapons were found , on the ships departing from turkey .
153
+ 8 at cambridge jordan had formed a '' nationalist club '' , from which he was invited to join the short-lived british peoples party , a group of former british union of fascists members led by lord tavistock , heir to the duke of bedford .
154
+ 29 in 2004 his single '' shine '' , re-creating a sample of the electric light orchestra 's 1979 track '' shine a little love '' , became an international club smash and was a top 20 hit on billboard's hot dance airplay chart in 2005 .
155
+ 3 cyclopskin fight with club and bardiche .
156
+ 5 / ) social life different club and societies have been formed to organise different extracurricular activities inside the university .
157
+ 8 the royal high school boasts many venerable sport club .
158
+ 24 caicedo led different cultural movements in the city like the literary group '' los dialogantes '' ( those who speak ) , the cinema club of cali and the '' ojo con el cine '' magazine ( attention to the cinema ) .
159
+ 12 the following year , khimki positioned itself among the top 10 basketball club in the nation of russia , guaranteeing a place in the european cup competition , the korać cup .
160
+ 8 collaboration with martin 101 followed , then a club track with smokin ' jo and pete gleadhall ( pet shop boys ) called '' strip down ( nude ) '' , and several tracks fronting ichi ni san with harj and kriss darang .
161
+ 1 the club was owned by his business manager , dan levy , sr. .
162
+ 34 form ` kataore ' , mere pounamu ( 42cm x 12cm ) maori chief holding a mere weapon ( 1860 -- 1879 ) the mere is a , leaf shape , form of short club .
163
+ 22 '' the src is responsible for a number of services offered to students and provides a variety of both academic and non-academic club through which students may become directly involved in bishop 's life .
164
+ 26 they then use the tools to kill a leopard preying on them ; the next day , the main ape character , moon-watcher , uses a club to kill the leader of a rival tribe .
165
+ 4 they are differentiated from club by their focus on exploring an issue or topic rather than on activities or socializing .
166
+ 16 she was born in skewen , wales , and spent seven years performing in pub and club around south wales before being signed to rca records in 1975 .
167
+ 23 the '82 us remix dub version was not widely available after its initial release , but the track remained much in demand by club dj and fans alike , and copies of the original 12 '' version fetched high prices .
168
+ 6 clonakilty rfc is an irish rugby club .
169
+ 18 the european system , known as '' matrix '' , is going to guide the color of the club , including of the facade , in constant change .
170
+ 33 bernard courcelle 's leadership until bruno mégret 's scission dps is equipped with helmet and shield , gas mask , tear gas launchers , guns that fire rubber bullet , bulletproof vest , club , and gloves with lead weights .
171
+ 4 the herkuleskeule ( hercules club ) is an important site in german-speaking political cabaret .
172
+ 8 the troupe quickly became famous in the underground club culture of the lower east side - especially known for its trademark : '' bloodbags and beauty '' .
173
+ 9 in his right hand the giant holds a knobbled club in length , and adding to the total height of the figure .
174
+ 3 activities over 850 club in the uk are affiliate with it , with approximately 36,000 members .
175
+ 2 when a club ( such as band , theatre , or any sport ) from a junior high enters a competition , it is placed with other schools in that same ranking .
176
+ 23 shoaf 's nose was of '' such great length and breadth of nostril '' that his friends proclaimed they could '' form a club around it '' .
177
+ 11 a member of the new york glitterati , she is a club / bar/restaurant staple known for her unique fashion sense .
178
+ 20 history after beginning as a synth-pop duo ( having been compared to underworld ) , they have transitioned to creating club music .
179
+ 41 contemporaries called him brazen , spiteful and violent , and it is reported that once , in the course of a difference of opinion with his chancellor -- archbishop ratbod of trier , no less -- zwentibold beat him with a club .
180
+ 9 a boat sharing organization may be an association , club , cooperative or company .
181
+ 8 esporte clube são martinho , is an amateur club of football , founded in 1939 , based in tatuí city , são paulo .
182
+ 10 ( 9 ) he continues to entertain on the australian club circuit during the summer months of the southern hemisphere .
183
+ 26 wilbert augustus campbell ( 12 august 1931 19 may 2014 ) , known as count suckle , was a jamaica - born sound system operator and club owner who was influential in the development of ska and reggae music , and african-caribbean culture , in the united kingdom .
184
+ 12 student life clubs and organizations westminster students can pick from over 70 club and organizations to become involved in on campus .
185
+ 15 the term boliche , in argentina and uruguay , also refers to a disco , club , or bar .
186
+ 6 although several of his tracks were club hits , he had limited chart success .
187
+ 14 '' make love to me '' might also have returned marie to the u.s. club charts where '' run to me '' had reached # 27 , had helen reddy not covered the track for the u.s. market .
188
+ 11 his band , avtomaticheskie udovletvoriteli , was a sort of underground club for dozen of local musicians , including kino 's late frontman , viktor tsoi , and tequilajazzz 's yevgeny fyodorov ( ) .
189
+ 19 when his rifle jammed after the first shot , he closed in with rifle , using it as a club to break the stock over the head of the nearest moro and then , drawing his pistol , started in pursuit of the fleeing outlaws .
190
+ 4 like many other specialty club under arba , the acba maintains a membership , awards sweepstakes points , provides special awards , publishes a newsletter and contributes to developing new standards .
191
+ 15 in 2004 their piano - driven track '' alright '' became one of the biggest club hits to come out of ibiza , and in turn became a major dance smash across europe and in the united states , where it entered the billboard hot dance airplay chart at # 21 for the week ending december 18 , 2005 .
192
+ 24 '' for his devotion to mussolini , the satirical magazine il becco giallo used to call him p. randello ( randello in italian means club ) .
193
+ 21 it is considered one of the oldest neighborhoods in the city and home to lots of old landmark , and some club .
194
+ 16 ; epigonation / palitsa ( greek '' over the knee '' ; slavonic палица , '' club '' ) : a stiff diamond-shaped cloth that hangs on the right side of the body ; it is suspended by one corner from a strap drawn over the left shoulder .
195
+ 13 developing from post-disco and synthpop , it is generally up-tempo music intended for club with the intention of being danceable but also suitable for contemporary hit radio .
196
+ 11 the american rabbit breeders association ( arba ) is a national club for domestic rabbit and cavy breeder .
197
+ 23 the epigonation ( greek : , literally meaning '' over the knee '' ) , or palitza ( russian : палица , '' club '' ) , is a vestment used in some eastern christian churches .
198
+ 4 it was initially a club hit on the rave scene before crossing over into the pop chart .
199
+ 13 parks and recreation smithfield features an art gallery , museum and an rsl club .
200
+ 22 he moved from jackson , mississippi to new orleans and ultimately to chicago , although by the mid-1940s his appearances in blues club had dwindled away .
201
+ 6 after short stints playing in a club band and the blind joe mendlebaum blues band , he became the drummer for organist / vocalist lee michaels .
202
+ 13 the single reached the top twenty in multiple countries , and topped the club charts in the united kingdom .
203
+ 8 bk inter bratislava is a slovak professional basketball club founded in 1962 in the city of bratislava .
204
+ 6 there is no known formally constituted club so named .
205
+ 31 clifford antone ( born october 27 , 1949 , port arthur , texas died may 23 , 2006 , austin , texas ) was the founder of the eponymous austin blues club and independent record label , as well as a mentor to stevie ray vaughan , jimmie vaughan and numerous other musicians .
206
+ 6 the brotherhood of centurions is a club for which racewalkers are eligible who have completed a distance of 100 miles ( 160.9 km ) in britain within 24 hours .
207
+ 21 their debut album control freaks , released two weeks after '' baby ( off the wall ) '' , became a club hit in the uk and achieved commercial success in the far east , which allowed the band to create their second album .
208
+ 6 in 1970 , a local blues club opened and flynn was inspired by the music provided there by luther allison , johnny littlejohn and mighty joe young .
209
+ 33 views because jesus had told peter to put down his sword in the garden of gethsemane ( ) , the circumcellions piously avoided bladed weapons and instead opted for the use of blunt club , which they called '' israelites .
210
+ 23 next season 2009/2010 he played with paris fc french third division he moved to bosnia in summer 2011 to sign with top league club fk slavija sarajevo .
211
+ 7 ; ( ; , ) a twin club type armament used by louis xiv of hexagone francaise .
212
+ 17 information peredy first history peredy is an american , metal , rock , acoustic , dance , club musical solo artist who started as a child and broke into the scene in salisbury , north carolina and is the first artist signed to crushing skulls records .
213
+ 11 some of boötes 's stars were traditionally described as representing the club ( greek , κολλοροβος ) of boötes .
214
+ 4 the academy which hosts club nights ( capacity 2,500 ) and gigs ( capacity 2,000 ) was opened in 2001 , and was the third academy venue in the uk .
215
+ 5 glossary ; cobra : a club - like weapon made of steel with a bronze pyramid at the end .
216
+ 25 other influences can be seen in the neon-bright opening credits and the retro song picks -- '' a mix of tension-ratcheting synthesizer tones and catchy club anthems that collectively give the film its consistent tone .
217
+ 13 released on boy george 's more protein record label , it was a club success featuring remix from david morales her second single was '' love is a master of disguise '' , produced and mixed by dmc 's steve anderson , of brothers in rhythm .
218
+ 28 originally built as a hotel , although it did brew its own beer as well , the star and garter has since been transformed into a pub and club venue , although due to its listed status there are still many restrictions on how the structure of the building can be altered .
219
+ 98 technisches hilfswerk , steward , engineering fifth heating , air conditioning , ventilation ( 95,000 m ³ / h ) playing field : 105m x 68m ( 7140m ² ) scoreboard : 2x 45,36 m ² ( 1x = 3,5 t ( full color light-emitting diode ) ) capacity : 32,085 36,000 concert 21,030 seats 11,055 admissions 2000 guests ( variable seats ) , 71 ( television , radio , press ) , 56 wheelchair , only 700 ( '' 699 '' ) parking spaces 27,190 ( seating only ) , 18 suites , 1366 vip , 1 club , 1 promenade media gallery file : house stadium dresden 1900 .
220
+ 40 release the author e professor pinto da costa at the release , in oporto , on july 2011 the book 's launch in the author 's hometown , took place in clube literário do porto ( literally '' oporto literary club '' ) , july 10 , with a presentation by professor pinto da costa .
221
+ 9 biography he played guitar at theresa 's , a club in chicago , between 1974 and 1980 .
222
+ 18 it remains an important link to home for isan migrants in the capital city , where mor lam club and karaoke bar act as meeting places for newcomers .
223
+ 6 the 12th floor , or '' club floor '' , can only be accessed via specially programed room key .
224
+ 15 with the singer and guitarist , troyce key , he bought eli 's mile high club in north oakland , california .
225
+ 32 they sanction more than one thousand model competitions , and an increasing number of non-competitive fly-in events for member aeromodelers throughout the country each year , charter more than 2500 model airplane club and offer contest sanctioning , liability insurance and the procurement of flying sites .
226
+ 2 lakhiganj bright club cum library is a popular recreational hub for the local youths .
227
+ 8 there are numerous mexican-run associations , organisations and club in the uk .
228
+ 21 sabrina johnston ( born december 31 , 1969 in germany ) is an american singer , most noted for her 1991 club anthem , '' peace '' .
229
+ 15 the organization now has two types of membership ; those that are affiliated via a club and those that are individual members .
230
+ 24 terrace park girl scout cabin , also known as the big stone gap girl scout cabin , is a historic girl scouts of america club located at big stone gap , wise county , virginia .
231
+ 15 a number of historians have asserted that kylfing referred to a member of a '' club in the social or anglo-american sense '' , a '' brotherhood '' or a member of a norse félag .
232
+ 5 social institutions municipality , library club „ napredak '' ( progress ) , stadium primary school named after „ hr . smirnenski '' , kindergarten , post office , police station , internet cafe etc. honour kabile island off greenwich island in the south shetland islands , antarctica is named after kabile .
233
+ 7 he has been prominent in the asia club circuit .
234
+ 20 according to sputnikmusic , it showcased new order 's mix of post-punk and dance styles with 12-inch singles remixed for club play and became the band 's '' most popular , well known , highly rated ( record ) and arguably their most influential '' .
235
+ 8 the symbols are a uatogi ( a war club , epitomizing the government 's power ) and a fue ( a fly-whisk , representing the wisdom of traditional samoan leaders ) .
236
+ 8 it features various styles of music , including club , future-bossa , breaks , rock and more .
237
+ 15 he was the first latin artist to perform at the legendary new york city punk club cbgb in 1976 .
238
+ 19 a secret handshake is a distinct form of handshake or greeting which conveys membership in or loyalty to a club , clique or subculture .
239
+ 33 the album spawned the massive pop and urban hits '' one minute man '' , featuring ludacris and trina , and '' get ur freak on '' , as well as the international club hit '' 4 my people '' and the less commercially-successful single '' take away '' .
240
+ 10 in most of the developments , a social and sports club for the residents is also built , with soccer , golf and tennis fields , jogging and bicycle treks , sauna , swimming pool , ballroom , restaurant and bar , etc. beginning in the 1990s , the company , now renamed alphaville urbanismo , expanded its developments to several other cities in brazil , such as aracaju , campinas , são josé dos campos , ribeirão preto , rio de janeiro , goiania , curitiba , londrina , maringá , salvador , fortaleza , belo horizonte , natal , gramado , manaus , and others , as well as to portugal ( in cascais ) .
241
+ 53 hunters would frequently kill them simply by standing near a rock where a kea could see them , then hide behind the rock and wait for the kea to come towards them ( as they would always wonder where the hunter had gone ) , before hitting them on the head with a club .
242
+ 65 throughout the 1980s and 1990s landon continued to be involved in a wide range of musical projects , including a 1982 , klaus voormann produced single , '' one of the big boys '' ; stage appearances as lead singer with klaus gerlach 's rock horror troupe ; with the ` neil landon five ' ; with noel redding at hamburg 's ` fabrik ' club in 1997 ; and in starring roles in the musicals , let 's twist and jailhouse in 1998 and 1999 .
243
+ 20 meanwhile , in the reform-oriented states , such as baden , the development of a lively scene of vereine ( club or voluntary association ) provided an organisational framework for democratic , or popular , opposition .
244
+ 17 lämmin / riku keskinen ( 2009 ) , as a singer work sippola hosted the popular laulutupa club in helsinki during 2006-2007 with her group & tuki , where are played the top finnish jazz musicians ( listed below ) .
245
+ 6 in london , coffeehouses preceded the club of the mid-18th century , which skimmed away some of the more aristocratic clientele .
246
+ 7 fc dynamo makhachkala was a russia football club based in makhachkala .
247
+ 21 career kenny formed his first band whilst in high school and between then and the early 1970s , he toured the club circuit .
248
+ 88 an incomplete list includes the following : anime , arrowhead ( school newspaper ) , art honor society , cheerleading , chess , dance , drama , debate & speech , environmental , frisbee , future business leaders of america , future farmers of america , future problem solvers gay/straight alliance , international exchange , jrotc , language ( chinese , french , german spanish ) , national honor society panther band , philosophy , ping pong , science , sign language , swing dance , anime otaku club , league of legends , dungeons and dragons , and pinterest .
249
+ 14 in the liner notes of jesus , ronnie described its music as trendy , club - oriented rave music .
250
+ 6 once a military barracks and officers club , the grounds are now a garden and home to the association for the handicapped .
251
+ 7 also on the same floor is a club - like lounge called city space .
252
+ 17 hóquei clube de braga sabseg ( sponsored by insurance company sabseg ) is a professional roller hockey club from braga , portugal .
253
+ 21 he performed infrequently until the early part of the 1990s , when he started a long residency at chicago 's smokedaddy club .
254
+ 10 after about two three months later , another collaboration of club within the school organized another symposium and funfair which saw the presence of an old student of the school who is a tv presenter at tv3 , namely , gideon aryeequah .
255
+ 10 this is a partial list of women 's association football club teams from all over the world sorted by confederation .
256
+ 6 career newton scored a number of club and chart hits in the 1990s .
257
+ 24 his song '' the prophet '' , sampling willem dafoe in martin scorsese 's 1990 film the last temptation of christ was an underground club hit .
258
+ 22 it was released on cd in 1995 as edcd 422 and entitled from the blue angel , as a reference to the club ( owned by allan williams , the beatles ' first manager ) where the escorts began performing in 1962 .
259
+ 20 it is forced wedding not unlike a shotgun wedding named after a knobstick , which is a type of wooden club .
260
+ 14 website was temporarily down for two weeks on march 11 , 2010 , famous club of goojje is on line formally .
261
+ 17 ubayid is lady zenadia 's personal armsmaster , who protects her estate and provides the vipers with club and other weapons at her behest .
262
+ 10 use as weapons beer bottles are sometimes used as makeshift club , for instance in bar fights .
263
+ 22 he also played percussion in the drum and bugle corps as a teenager and was soon performing with bands on the chicago club scene .
264
+ 7 the following year , respect yielded the club hit , '' serious '' which peaked at # 64 in the uk chart .
265
+ 4 the duo started working club dates around the city and , by 1934 , gillum started recording for both arc and bluebird records .
266
+ 28 the san jose improv formerly known as the jose theater jose theatre built in 1904 , this photo taken in 1935 the san jose improv is a comedy club located in san jose , california .
267
+ 15 james andrew corrine , better known by his stage name dj felli fel is a club and radio dj for l.a. 's power 106 , record producer , and a recording artist recently signed to so so def / island urban music .
268
+ 21 release the single release , as with all prior delerium single releases since '' silence '' , marketed the song for club play by commissioning remix ( as with previous singles ) , this time from gielen , who had remixed previous delerium songs as airscape , and satoshi tomiie .
269
+ 4 it was also a club hit .
270
+ 23 the tour was divided into seven segments : check-in , mystic lounge , mystic garden , the onyx zone , security cameras , club and the encore .
271
+ 9 association sportive et culturelle le geldar is a football club of french guyana , playing in the town of kourou .
272
+ 20 the context can vary from family or kinship relations , friendship , marriage , relations with associates , work , club , neighborhood , and places of worship .
273
+ 21 some may consider the acba to have greater responsibilities than other specialty clubs under arba because it is the only specialty club for cavies ( guinea pig ) and supports all currently recognized breeds whereas most of the other arba specialty clubs are devoted to a single rabbit breed .
274
+ 5 breed clubs are associations or club with activities centered on a single , specific breed of a particular species of domesticated animal .
275
+ 43 blue has also appeared in mainstream productions such as the adult television show clothed female nude male and several episodes of the documentary series rated a for adult she has also been featured in several men 's magazines including cheri , hustler , club , and genesis .
276
+ 16 the czech population is of significant size having its own newspaper , schools , societies and club , ( česká beseda or czech word , jednota - unity in czech language ) , publishing company .
277
+ 18 pete 's candy store pete 's candy store is a new york city performing space , bar and club located in the williamsburg section of brooklyn .
278
+ 17 a users ' group ( also user 's group or user group ) is a type of club focused on the use of a particular technology , usually ( but not always ) computer - related .
279
+ 4 kieran is primarily a club dj , making his name as the resident at shine in belfast and later playing at venues across the world .
280
+ 41 a gay talent agent from an aristocratic family with a sense of style paralleled only by carrie 's , viewers receive the impression that they have a long-standing relationship built within their younger , wilder days in the new york city club and bar scene in the 1980s .
281
+ 10 while the success of these early singles was limited to club play , rodway 's subsequent contract with warner bros. records and a re-release of '' rockin ' for myself '' took the single to # 18 ( week of 7 may 1994 ) on the uk singles chart .
282
+ 13 on 8 november , dixon performed a 5-song set at london 's g-a-y club .
283
+ 20 due to electoral fraud and brutal electioneering , which earned the elections the nickname sopalı seçimler ( '' election of club '' ) , the ruling committee of union and progress won 269 of the 275 seats in the chamber of deputies , whilst the opposition liberal entente ( also known as the freedom and accord party or the liberal union ) won only the remaining six seats .
284
+ 17 uniform the official historical uniform of gimnasia y esgrima is based on the colors displayed in the club shield , as established in the institutional statute , a white jersey with a single horizontal navy-blue stripe over the chest .
285
+ 25 commerce and education in the 1960s , rush street was the center of the chicago nightlife as home to many great cabaret , bar , club and restaurant .
286
+ 4 there are also many club available to join , but players can also start and manage their own .
287
+ 11 antiquity the origins of armed combat are prehistoric , beginning with club , spear and axe .
288
+ 15 he then got a part-time job doing sound engineering at the nearby alternative live music club - the adelphi .
289
+ 5 a music gym is membership-based club or cooperative community where musicians ( and other artists ) share common resources in a shared facility .
290
+ 5 bricktops was a los angeles club in the '' russian quarter '' , inspired by weimar cabarets , manhattan speakeasies and parisian salons .
291
+ 8 the goedendag was essentially a combination of a club with a spear .
292
+ 14 these include , inter alia , local authorities and associations such as firms and club , but also congresses and exhibition .
293
+ 11 '' party 's just begun ( again ) '' was a club - only single released exclusively in the u.s. before the album 's availability in stores , and it was included on the soundtrack of the 1999 film brokedown palace .
294
+ 30 career in 1996 , signed to mca records , her debut single , '' you lift me up '' was released and was well reviewed , and a large national club hit in the uk .
295
+ 13 bake sales are usually held by small , non-profit organization , such as club , school groups and charitable organizations .
296
+ 56 malta a notable exception to the lower rates of binge drinking in southern europe is the mediterranean island of malta , which has adopted the british culture of binge drinking , and where teenagers , often still in their early teens , are able to buy alcohol and drink it in the streets of the main club district , paceville , due to a lack of police enforcement of the legal drinking age of 17 .
297
+ 23 the show features a broad variety of american and international dance styles including classical , contemporary , ballroom , hip-hop , street , club , jazz , and musical theatre styles , amongst others , with many sub-genres within these categories represented .
298
+ 14 she has lent her talent as singing and dancing in raising funds for the club of love for years .
299
+ 25 in 1989 , dj eren , put candi staton 's vocals over a track by jamie principle called '' your love '' which became a club hit .
300
+ 7 the two run and dj at the club , bangers 'n' mash .
301
+ 13 deaf rights and organizations in belfast , mcwhinney was frustrated by the deaf club and organizations that were not managed by deaf people .
302
+ 6 his most prized possession is his club , and his solution to pretty much any problem is to bash it with it .
303
+ 7 in september 2011 , logan made a club appearance in tucson , arizona .
304
+ 21 he was offered a recording contract with cobra records , but turned it down because he made more money with his club gig .
305
+ 9 the song quickly became a big hit in the club scene and would go onto become its artist 's biggest hit and a house music anthem .
306
+ 17 on 7 june 2007 , tziortziopoulos was released by aek athens and immediately signed with the cypriot club omonia nicosia .
307
+ 17 he also wrote and produced an album for tk recording artist , george mccrae , scoring a club hit with '' love in motion .
308
+ 6 calorieking is an online weight loss club and software developer with a program centred on healthy eating and exercise ( '' calories in , calories out '' ) .
309
+ 22 junior vasquez , ( born donald paul mattern , august 24 , 1949 , lancaster , pennsylvania ) , is an american club dj and remixer / producer .
310
+ 9 the playable character is a neanderthal armed with a club .
311
+ 17 the village vanguard , 1976 the village vanguard in modern times the village vanguard is a jazz club located at in greenwich village , new york city .
312
+ 5 he also worked as a club pianist in dance band , and appeared on radio with harmonica player ronald chesney .
313
+ 17 the legal ombudsman can investigate complaints made by members of the public ( and small business , club and charities ) about the service they receive from lawyers working in england and wales .
314
+ 6 clubs the school offers over 40 club , both student-led and faculty-sponsored .
315
+ 15 police seized from his apartment the empty knife packages , their receipts , and one club .
316
+ 28 '' in august 2009 , fortune died at mt. sinai hospital in chicago after collapsing on stage while performing at gene 's playmate lounge , a chicago blues club .
317
+ 4 it became an underground club hit in norway and the united kingdom .
318
+ 17 they began playing in the moreno , buenos aires , where they are from , in small club and live house .
319
+ 17 song history '' do n't let this moment end '' is a kind of ballad with a club - dance background .
320
+ 6 '' show me '' is a club - inspired song , which includes strong synthpop and dance-pop genres , as it was clear sutta really enjoys dance music .
321
+ 16 '' thus the academy abandoned hierarchic seventeenth-century precedents and was formed on the basis of a club .
322
+ 23 kngy as '' energy 92.7 '' offered a current-based mix of dance music , with top 40 , r&b remixes , disco and club classics from the 1970s , 1980s , and 1990s added into the presentation .
323
+ 10 formation in april 1964 , van morrison established an b club at the maritime hotel , belfast with entrepreneurs jimmy conlon , jerry mckernan and gerry mckervey ( known as the '' 3js '' ) .
324
+ 13 bert serves as president of the national association of w lovers , a club dedicated to the letter w .
325
+ 13 the resulting single , '' all mixed up '' , became a modest club hit that year , and peaked at # 74 in australia .
326
+ 7 clubs and societies h2g2 has numerous unofficial club and societies , set up and maintained by researchers .
327
+ 10 the southern figure is dressed in ceremonial regalia with a club in his right hand .
328
+ 5 most of the venues are club and discothèque .
329
+ 8 common uses of companies limited by guarantee include club , membership organizations , including students ' unions , residential property management companies , sports associations ( such as the pga european tour ) , workers ' co-operatives , other social enterprise , non-governmental organization ( ngos ) and charities ( such as oxfam ) .
330
+ 10 recording career solo after leaving high school and playing the club circuit around the new jersey , new york and pennsylvania areas with his brother albert ( a singer ) for most of the 1980s , greg howe officially began his solo career after sending a demo tape to shrapnel records in 1987 , upon which he was immediately signed by founder mike varney .
331
+ 10 as sylvester prepares to knock the bulldog out with a club , the train heads into a tunnel , slamming sylvester in the face into the bridge above it .
332
+ 32 garbage began a three-week promotional tour of europe from march 19 , during which time garbage performed live tracks on various television and radio shows , prior to performing two warm-up headline club shows in paris ( supported by local group melatonine ) and in london .
333
+ 7 bc brno is a czech professional basketball club based in the city of brno .
334
+ 21 originally released in the united kingdom in 1986 on the bolts records label , '' male stripper '' was a big club hit throughout the autumn and peaked at no. 64 on the uk singles chart .
335
+ 4 the was a spiked/knobbed club or truncheon used in feudal japan as a weapon by samurai and their retainers .
336
+ 16 history the band formed after steve naghavi and chris ruiz met in 1989 at a berlin club .
337
+ 33 all told , were acquired , and athletic fields , a bowling alley , chapel , firing range , gas station , gym , hobby shop , officers ' and enlisted men 's club , post exchange , post office , radio station , supply depot , and swimming pool were all built on the site .
338
+ 15 combining many elements of pop , dance-punk , electronica , soul , noise music and club lyrically covering an array of subjects such as relationships , politics , death , celebration , and tragedy .
339
+ 45 history the core of the band originally formed in 1967 as music box , but changed their name to paper lace in 1969 paper lace was one of hundreds of pop bands in england looking for the big time while slogging their way through small club gigs and brief television appearances .
340
+ 9 their version was a huge national uk top 10 club hit .
341
+ 66 xi ( as on the academic year 2014 -- 15 ) bangalore psbb learning leadership academy ( near bannerghatta road , bengaluru ) coimbatore the psbb millennium school , somayampalayam , hyderabad psbb millennium school puducherry ( also known as pondicherry ) the psbb millenium school history the psbb school in nungambakkam was established in 1958 by a group of housewives of the nungambakkam ladies recreation club .
342
+ 33 rucksack ( more commonly called a backpack in u.s. english ) schuss , literally : shot ( ski ) down a slope at high speed turner , a gymnast turnverein , a gymnastics club or society volksmarsch / volkssport / volkswanderung , non-competitive fitness walking other aspects of everyday life -- bahn as a suffix , e.g. infobahn , after autobahn blücher , a half-boot named after prussian field marshal gebhard leberecht von blücher ( 1742 -- 1819 ) ; also a hand in the british card game napoleon .
343
+ 8 knights of wise men lodge is a historic club located on saint helena island near frogmore , beaufort county , south carolina .
344
+ 14 in real-world terms , each faction is run as a more or less independent club , with a small administrative team assigned by cp and internal in - and out-of-character hierarchies .
345
+ 7 due to the track becoming a major club hit .
346
+ 28 it consists of an opening prologue describing the art of fencing followed by colored plates illustrating specific techniques for the longsword , dagger , pollaxe , spear and club .
347
+ 17 it was also noteworthy for its policy of social integration , led by the influence of the club scene which brought about sponsorship of such events as the manchester mardi gras during its years of greatest expansion .
348
+ 4 it has one main club .
349
+ 8 functioning collegia could function as guild , social club , or burial societies ; in practice , in ancient rome , they sometimes became organized bodies of local businessmen and even criminals , who ran the mercantile/criminal activities in a given urban region , or rione .
350
+ 21 hits kasem started singing in familiar feasts and became famous at the '80s interpreting the hymn of tirana football team sport club tirana .
351
+ 16 an annual community celebration , common in rural communities in north west england , during which club , churches and other organizations process and gather for various activities such as competitions for fancy dress , arts and crafts , cooking and produce .
352
+ 7 it was similar to a large wooden club with grooves in the side to hold the sharpened obsidian .
353
+ 11 twins were again shown in the street and then in the club dancing .
354
+ 18 if finströms kamraterna ( also known as if finströmskamraterna and abbreviated iffk ) is a sports and football club in åland .
355
+ 0 club coca-cola ® - namesake coca-cola product .
356
+ 12 biography in 1947 , she accepted a steady job at a local club , happy landing , but it was her 1961 recording debut , with her own album in the riverside records new orleans : the living legends series , that brought her recognition from beyond the crescent city .
357
+ 23 he co-founded the wicked sound system and established a series of legendary underground parties which were important in putting san francisco on the club / rave map .
358
+ 4 '' and plenty of club tunes , expanding from the artist 's acid house roots into the pop and rock genres .
359
+ 13 the album 's biggest hit single was '' oochie wally '' , a club anthem recorded by the bravehearts .
360
+ 10 to do this they must be assigned to the same club as the ally , and the change is temporary .
361
+ 15 according to a 1997 billboard article , '' ( t ) he union of the club community and independent labels '' provided the experimental and trend-setting environment in which electronica acts developed and eventually reached the mainstream .
362
+ 20 the single prominently included remix by dj tiësto , and fade , which significantly boosted the song 's proliferation through club play ( particularly by influential djs such as paul oakenfold ) as evidenced by the single 's positions on the billboard hot dance music/club play charts .
363
+ 41 gorbunov palace of culture peasants ' palace of culture in dajipu township , huangshi municipality , hubei , china palace of culture ( , , wénhuà gōng ) or house of culture ( dom kultury ) was the name for major club - houses in the soviet union and the rest of the eastern bloc .
364
+ 7 more recently , he managed a dance club in belgium .
365
+ 21 gisele jackson , born in baltimore , maryland , is a globally acclaimed vocalist and house music diva known for international club hits , including the billboard charted # 2 , '' love commandments '' ( 1997 ) .
366
+ 18 dj rectangle is an american dj / turntablist and grammy award - nominated dance / hip hop / club record producer .
367
+ 12 history dj-kicks started out in 1995 as a compilation of electronic dj club - style mixes in the techno or house genres , with the then-novel twist of being targeted to a home listening audience .
368
+ 8 s.s. folgore falciano calcio is a sanmarinese football club , based in the village of falciano in the castello of serravalle .
369
+ 11 united north piha lifeguard service is a new zealand surf lifesaving club located on north piha beach on the west coast of auckland , new zealand .
370
+ 6 the video shows n.w.a. at a club playing the single to the crowd and wandering through compton , california .
371
+ 4 concerts took place at club venues and music festivals .
372
+ 31 it is , along with its counterparts elsewhere in the world , part of what has been called the '' third wave of ska ( that ) combines the traditional jamaica club sound with metal , punk , folk , funk , and/or country .
373
+ 13 others such as california have general prohibitions against the carrying of all '' club '' weapons by non-law enforcement .
374
+ 30 though little is known around the world about this band past this top fifteen single , the band is still in existence today , and continues to perform in the club circuit .
375
+ 13 in ukrainian language , a buława or bulava is a mace or a club , in both the military and ceremonial senses .
376
+ 2 history the club was founded in 1891 by a group of young athletes living on the royal island djurgården in central stockholm .
377
+ 39 '' white horse '' is a funk - influenced dance track with a memorable bassline and ambiguous , drug - and/or sex-themed lyrics ( '' white horse '' being a slang for heroin ) that became popular in us club ) .
378
+ 62 other names like most hindu deities , subrahmanya is known by many other names , including , , ( meaning ` prince or child or young one ' ) , swaminatha ( meaning ` smart ' or ` clever ' ) , , arumugam or shanmuga ( meaning ` one with six faces ' ) , dandapani ( meaning god with a club ) , or guruguha ( meaning ` cave-dweller ' ) , subrahmanya , kartikeya and ( meaning ` that which is spilled or oozed ) .
379
+ 5 after a night at a club where some of sherry 's past flings swirl about him , the couple discuss the institution of marriage and have clearly divergent views .
380
+ 11 the film explores themes of coming of age , drug and club cultures , as well as relationship .
381
+ 1 various club djs in the 1970s re-edited the records they played , and although this often consisted of nothing more than extending the record by adding a chorus or two , this too could be considered a form of plunderphonics .
382
+ 14 e'voke were a british female vocal duo from the mid-1990s , who had several club and chart hits in the uk and are best known for their 1996 single '' arms of loren '' .
383
+ 11 after a fire erupts on the altar , nemis sees a club , he sees this as a sign from hera and asks who he needs to kill .
384
+ 2 some lowrider club have weekly gatherings in the summer where owners of lowriders and friends will have a barbecue followed by cruising a popular drag ( or strip ) after dark .
385
+ 20 in total over 2 million people ( about 20 % of the total population ) are members of a sports club .
386
+ 12 '' who owns my heart '' was written about the feelings a club 's environment can lead one to believe .
387
+ 2 history the club was founded on april 27 , 1920 by a group of young athletes living in the karlslund area in western örebro .
388
+ 37 el cielo is considered to be one of the newest best prolific bands in argentina , touring with huge bands like mancha de rolando and jovenes pordioseros , playing all along buenos aires in the most popular club and recording an album named punto final , which hit the radios with the song '' petalos de rosa '' .
data/club/train.gold.txt ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 0
3
+ 2
4
+ 0
5
+ 0
6
+ 1
7
+ 0
8
+ 0
9
+ 1
10
+ 0
11
+ 0
12
+ 1
13
+ 0
14
+ 1
15
+ 0
16
+ 2
17
+ 0
18
+ 1
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 2
25
+ 2
26
+ 1
27
+ 2
28
+ 0
29
+ 2
30
+ 0
31
+ 0
32
+ 1
33
+ 0
34
+ 0
35
+ 1
36
+ 1
37
+ 0
38
+ 1
39
+ 0
40
+ 0
41
+ 0
42
+ 1
43
+ 0
44
+ 1
45
+ 2
46
+ 1
47
+ 0
48
+ 1
49
+ 0
50
+ 1
51
+ 2
52
+ 1
53
+ 1
54
+ 0
55
+ 1
56
+ 0
57
+ 0
58
+ 1
59
+ 1
60
+ 0
61
+ 0
62
+ 1
63
+ 0
64
+ 0
65
+ 0
66
+ 1
67
+ 0
68
+ 2
69
+ 1
70
+ 0
71
+ 1
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 1
82
+ 1
83
+ 1
84
+ 0
85
+ 0
86
+ 1
87
+ 1
88
+ 1
89
+ 1
90
+ 1
91
+ 1
92
+ 2
93
+ 0
94
+ 0
95
+ 1
96
+ 0
97
+ 1
98
+ 1
99
+ 1
100
+ 0
101
+ 0
102
+ 2
103
+ 0
104
+ 2
105
+ 0
106
+ 2
107
+ 0
108
+ 1
109
+ 2
110
+ 1
111
+ 0
112
+ 2
113
+ 1
114
+ 0
115
+ 0
116
+ 1
117
+ 0
118
+ 1
119
+ 0
120
+ 1
121
+ 2
122
+ 0
123
+ 0
124
+ 0
125
+ 1
126
+ 2
127
+ 1
128
+ 0
129
+ 1
130
+ 0
131
+ 1
132
+ 2
133
+ 1
134
+ 0
135
+ 0
136
+ 1
137
+ 1
138
+ 2
139
+ 1
140
+ 1
141
+ 1
142
+ 0
143
+ 2
144
+ 1
145
+ 2
146
+ 0
147
+ 1
148
+ 2
149
+ 1
150
+ 0
151
+ 1
152
+ 0
153
+ 0
154
+ 1
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 0
160
+ 1
161
+ 1
162
+ 2
163
+ 0
164
+ 2
165
+ 0
166
+ 1
167
+ 1
168
+ 0
169
+ 0
170
+ 0
171
+ 2
172
+ 0
173
+ 2
174
+ 0
175
+ 0
176
+ 0
177
+ 1
178
+ 1
179
+ 2
180
+ 0
181
+ 0
182
+ 1
183
+ 1
184
+ 0
185
+ 0
186
+ 1
187
+ 1
188
+ 0
189
+ 2
190
+ 0
191
+ 1
192
+ 2
193
+ 0
194
+ 2
195
+ 1
196
+ 0
197
+ 2
198
+ 1
199
+ 0
200
+ 1
201
+ 1
202
+ 1
203
+ 0
204
+ 0
205
+ 1
206
+ 0
207
+ 1
208
+ 1
209
+ 2
210
+ 0
211
+ 2
212
+ 1
213
+ 2
214
+ 1
215
+ 2
216
+ 1
217
+ 1
218
+ 1
219
+ 0
220
+ 0
221
+ 1
222
+ 1
223
+ 0
224
+ 1
225
+ 0
226
+ 0
227
+ 0
228
+ 1
229
+ 0
230
+ 0
231
+ 0
232
+ 0
233
+ 0
234
+ 1
235
+ 2
236
+ 0
237
+ 1
238
+ 0
239
+ 0
240
+ 0
241
+ 2
242
+ 1
243
+ 0
244
+ 0
245
+ 0
246
+ 0
247
+ 1
248
+ 0
249
+ 1
250
+ 0
251
+ 1
252
+ 0
253
+ 1
254
+ 0
255
+ 0
256
+ 1
257
+ 1
258
+ 1
259
+ 2
260
+ 0
261
+ 2
262
+ 2
263
+ 1
264
+ 1
265
+ 1
266
+ 1
267
+ 0
268
+ 1
269
+ 1
270
+ 1
271
+ 0
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 0
277
+ 1
278
+ 0
279
+ 1
280
+ 1
281
+ 1
282
+ 0
283
+ 2
284
+ 0
285
+ 1
286
+ 0
287
+ 2
288
+ 1
289
+ 0
290
+ 0
291
+ 2
292
+ 0
293
+ 1
294
+ 1
295
+ 0
296
+ 1
297
+ 1
298
+ 0
299
+ 1
300
+ 1
301
+ 0
302
+ 2
303
+ 1
304
+ 1
305
+ 1
306
+ 0
307
+ 1
308
+ 0
309
+ 1
310
+ 2
311
+ 1
312
+ 1
313
+ 0
314
+ 0
315
+ 2
316
+ 1
317
+ 1
318
+ 0
319
+ 0
320
+ 0
321
+ 0
322
+ 0
323
+ 1
324
+ 0
325
+ 1
326
+ 0
327
+ 2
328
+ 0
329
+ 0
330
+ 1
331
+ 2
332
+ 1
333
+ 0
334
+ 1
335
+ 2
336
+ 1
337
+ 0
338
+ 0
339
+ 1
340
+ 0
341
+ 0
342
+ 0
343
+ 0
344
+ 0
345
+ 1
346
+ 0
347
+ 0
348
+ 0
349
+ 0
350
+ 0
351
+ 0
352
+ 2
353
+ 0
354
+ 0
355
+ 0
356
+ 1
357
+ 0
358
+ 1
359
+ 1
360
+ 0
361
+ 1
362
+ 1
363
+ 0
364
+ 1
365
+ 1
366
+ 0
367
+ 1
368
+ 0
369
+ 0
370
+ 0
371
+ 0
372
+ 1
373
+ 2
374
+ 1
375
+ 2
376
+ 0
377
+ 1
378
+ 2
379
+ 1
380
+ 1
381
+ 1
382
+ 1
383
+ 2
384
+ 0
385
+ 0
386
+ 0
387
+ 0
388
+ 0
data/crane/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "crane_crane_(machine)", "1": "crane_crane_(bird)"}
data/crane/test.data.txt ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 75 major injuries '' major injuries '' are defined as ( reg .2 ( 1 ) / sch .1 ) : dangerous occurrences reportable in all workplaces dangerous occurrences that are reportable by all responsible persons are defined as ( reg .2 ( 1 ) / sch .2 , pt .1 , paras.1-17 ) : lifting machinery , etc. - collapse , overturning , or failure of any load-bearing part of a lift or hoist , crane or derrick , mobile powered access platform , access or window cleaning cradle , excavator , pile-driving frame or rig taller than 7 metre , or forklift truck .
2
+ 2 a climbing crane on the 24th floor fell to the ground in the collapse .
3
+ 15 along with the neighbouring ironworks site , it is owned by norland construction , a crane and plant company formerly known as reeds cranes and plant , the building used as storage for their machinery .
4
+ 26 svg logo for the ship as used by the steamship company appearance in 1977 scillonian iii went into service with her superstructure painted white , her crane and funnel were yellow without further markings .
5
+ 7 on the other hand , the supposed crane pliogrus germanicus is most likely a palaelodid .
6
+ 67 in ancient theatrical plays every time the plot got too tangled for a rational resolution , catharsis ( greek for cleansing i.e. resolution as in cleaning up the mess ) came in the form of a god ( deus ex machina ( translated from latin as god from the machine ) ) , that descended from above with the aid of mechanical devices such as lever , crane and pulley i.e. from a machine , and dispensed resolution to even the most complex of predicaments .
7
+ 23 in 1984 the first nissan sentra was launched as a replacement of the 160j under the name '' tsuru '' , japanese for crane .
8
+ 20 other things to see include a yacht marina , a local history museum ( heimatmuseum ) and an historical industrial crane .
9
+ 0 crane ( grus cinerea ) .
10
+ 19 a wide range of birds were eaten , including swan , peafowl , quail , partridge , stork , crane , lark , linnet and other songbirds that could be trapped in nets , and just about any other wild bird that could be hunted .
11
+ 28 millions of birds and hundreds of species travel through this area each year , including some internationally endangered species : the white-tailed eagle , the barnacle goose , crane , dunlin and aquatic warbler .
12
+ 17 the nambawi for females were colorfully and luxuriously adorned with geumbak ( gold leaf decoration ) of crane , butterflies , chrysanthemum , and phoenix or other auspicious patterns .
13
+ 7 lufthansa and deutsche luft hansa : a crane , originally designed by otto firle in 1919 .
14
+ 13 turkish airlines : a wild goose - greylag goose xiamen airlines : a crane .
15
+ 27 the '' cabbagetown loft fire '' , as it came to be known , is still well-remembered because of the operator who was trapped at the top crane , unable to escape .
16
+ 5 dio notes a hunt involving crane and another involving four elephants , and martial mentions elephants , lions , leopards , at least one tiger , hares , pigs , bull , bears , wild boar , a rhinoceros , buffalo and bison ( most likely the wisent ) .
17
+ 12 to assist in the transportation of salt , a canal and a crane were built on the stint , a former smelt market by the harbor .
18
+ 14 in this exhibit , visitors see flamingo , duck , swan , stork , crane , spoonbill , ibis and egret .
19
+ 1 a crane was to be located at the aft end of each island to lift aircraft aboard and to recover seaplane .
20
+ 2 a large crane with a radius was positioned behind the island .
21
+ 9 the spaniard had various types of rudimentary hoist and crane at their disposal for lifting materials to the men working on top of a structure .
22
+ 26 consequently , the only money the family has left is a one-million yen bill , which lisa loses in the wind after homer makes an origami crane from it ( prompting him to say '' d'oh! '' in japanese ) .
23
+ 14 the pylons were concreted using custom self-climbing forms in pours of 4.5 m. a crane was used on the first three pours , afterwards the formwork was completed unaided moving through the hydraulic motion of modular elements .
24
+ 7 it is a prey to snake , crane , shoebill , nile crocodile , and monitor lizard .
25
+ 11 it is only defeated when a metal object -- a building crane -- is swung into the center of the force and the energy is discharged .
26
+ 17 in 1933 a catapult was fitted between the mainmast and turret no. 3 , and a collapsible crane was installed in a portside sponson the following year ; the ship was equipped to operate two or three floatplanes , although no hangar was provided .
27
+ 19 it is unrelated to the word cran meaning a case of herring , and though it actually comes from crane ( the bird ) , this is not immediately evident .
28
+ 68 significant early publications maying soong 's 1948 book , the art of chinese paper folding , helped popularized recreational paper folding in the 20th century , and was possibly the first to distinguish the difference between chinese versus japanese paper folding - where the chinese focus primarily on inanimate objects , such as boats or pagoda , the japanese include representations of living forms , such as the crane .
29
+ 7 the symbol of the town is the crane as featured on the town 's coat of arms .
30
+ 28 the deer , a symbol of longevity , usually ( but not always ) accompanies him as a messenger , as do other long-lived animals such as the crane and the tortoise .
31
+ 31 to further his guise , changing his actual g1 color scheme to a gray pattern , shockwave provides his longarm guise with an alt-mode like that of a burly rough terrain crane .
32
+ 13 thus , the european bird was long reconstructed as a sort of gigantic crane - like bird .
33
+ 24 constellation apus , a bird-of-paradise aquila , an eagle columba , a dove corvus , a crow cygnus , a swan grus , a crane pavo , a peacock phoenix , a phoenix tucana , a toucan fictional individuals archimedes , merlin 's owl in t. h. white 's the once and future king captain flint , a parrot owned by long john silver in treasure island .
34
+ 33 in this special roadblock , one team member from each of the intersected teams had to take the s-bahn to the port of hamburg and complete a tandem bungee jump from a bungee crane .
35
+ 9 different animals are created for different meanings , including crane , frog , fish , dragon , and turtle are among the most popular .
36
+ 4 she has an articulating crane with a maximum lifting capacity of 24,000 pounds ( 10,886 kg ) and a lifting capacity of 6,600 pounds ( 2,994 kg ) at full extension .
37
+ 2 a marine crane arrived on the scene at night .
38
+ 8 goliath arrives in the forth goliath is a crane in rosyth dockyard , scotland , with a lift capacity of , the largest in britain .
39
+ 2 raven , crane , wolverine , fox , otter , and dog must never be eaten .
40
+ 22 the stunt , called '' hang 'em high '' , involved bungee jump from an exploding box suspended from a 120 ft-high crane .
41
+ 17 the word '' grullo '' originates from the spanish word grulla , which refers to a slate-gray crane .
42
+ 4 for example , a crane with a design load of 20 tons is designed to be able to lift loads that weigh 20 tons or less .
43
+ 5 structural steel installation is usually crane - assisted .
44
+ 16 wisakedjak ( wìsakedjàk in algonquin , wīhsakecāhkw in cree and wiisagejaak in oji-cree ) is the crane manitou found in northern algonquian mythology , similar to the trickster god nanabozho in ojibwa aadizookaanan ( sacred stories ) and inktonme in assiniboine myth .
45
+ 12 sylvester then attempts to get to tweety by using a toy steam crane .
46
+ 28 console of the upgraded telar of a buk-m2e the tel reload vehicle for the buk battery resembles the telar , but instead of a radar they have a crane for the loading of missiles .
47
+ 60 environments with manual communication used some cloistered religious communities ( see monastic sign language ) while scuba diving ( see diving signal ) in television recording studios in loud environments ( such as a stock exchange , marketplaces ( finger counting ) , sawmill , or at a horse race - see tic-tac ) when signalling across distance to a crane driver , ship or plane ( see flag semaphore ) .
48
+ 14 this is in contrast to lift-on/lift-off ( lolo ) vessels , which use a crane to load and unload cargo .
49
+ 10 at the junkyard , the appliances are pursued by a crane with a magnet that picks up junk and places them on a conveyor belt that leads into a car crusher .
50
+ 34 due to his weight , homer gets lodged in a section of the slide and the park 's rescue crew are forced to remove him from the ride with the help of a large crane .
51
+ 38 history the name '' craney island '' was derived from the fact that the early english settlers on the elizabeth river in the 17th century were impressed with the great number of what they mistakenly believed to be crane that inhabited it .
52
+ 7 the shipyard s 40 - ton drydock crane is to the right of the dredger .
53
+ 15 other bird genera include partridge , grey partridge , great bustard , little bustard , crane , common quail , eurasian woodcock , turtle dove , common wood pigeon and rock pigeon , some duck species and rarely encountered goose .
54
+ 11 j. d. neuhaus is a german air hoist , winches and crane manufacturer headquartered in witten .
55
+ 22 result group has been selling a specialist rental software application : rental result to companies renting and managing assets , e.g. , crane , tools , heavy equipment , aerial , modular space , computer hardware and measuring equipment since 1994 .
56
+ 21 wrecking ball at rest wrecking ball in action a wrecking ball is a heavy steel ball , usually hung from a crane , that is used for demolishing large buildings .
57
+ 26 water weights are water filled bags which are designed as a safe , practical and economical method of non-destructive testing and checking the structural integrity of crane , davit , lifeboat , link spans , ramp and lifts , floors and bridge .
58
+ 38 tau 1 gruis ( τ 1 gru , τ 1 gruis ) , also catalogued as hd 216435 and hr 8700 , is a yellow dwarf star approximately 106 light-year away in the constellation of grus ( the crane ) .
59
+ 7 mister miggle : a bespectacled stork or crane , and proprietor of the local general store , a frequent swamp hangout .
60
+ 17 the okefenokee swamp is home to many wading birds , including heron , egret , ibis , crane , and bittern , though populations fluctuate with water levels .
61
+ 14 this is characteristic of herons and bittern , and distinguishes them from stork , crane and spoonbill , which extend their necks .
62
+ 14 this is characteristic of herons and bittern , and distinguishes them from stork , crane , ibis , and spoonbill , which extend their necks in flight .
63
+ 22 taxonomy and systematics the limpkin is placed in its own monotypic family , aramidae , which is in turn placed within the crane and rail order gruiformes .
64
+ 11 he has also been depicted as a crow or a black crane .
65
+ 10 though large wide-web flexo rolls are only maneuverable by overhead crane , on smaller presses anilox rolls are often handled directly by operators .
66
+ 18 '' when he was looking for a suitable place to step into the stream , he saw a crane couple mating .
67
+ 2 a large crane was positioned behind the island .
68
+ 19 in the 19th century , steam-powered machinery appeared , and later diesel - and electric powered vehicles such as crane , excavator and bulldozer .
69
+ 16 great bustard , otis tarda houbara bustard , chlamydotis undulata little bustard , tetrax tetrax gruidae crane are large , long-legged and long-necked birds .
70
+ 9 from a distance or in flight it resembles a crane more than a bird of prey .
71
+ 29 '' the author of jeremiah ( ) wrote : '' even the stork in the heavens knows its seasons , and the turtle dove , the swift and the crane keep the time of their arrival .
72
+ 28 similarly , the prosperity of yangzhou has led poets to dream of : ( '' with a hundred thousand strings of coins wrapped around its waist , a crane landed in yangzhou '' ) .
73
+ 29 sandglass remains one of the highest-rated tv series in korean broadcasting history ( by single episode viewership rating ) : a song , titled '' zhuravli '' ( '' crane '' ) , by a russian singer joseph kobzon was featured in the series .
74
+ 52 names of mighty machines the airplane dc-10 a-320 jumbo stearman super stearman the front loaders american loader irish loader jaws sally scoop the fire engines pumper sparky king ( with the voice of elvis presley ) the diggers big cat the trains freddie '' o '' train go train shunty diesel others crane dozer feller grapple skidder goldstar list of episodes the episodes were done in two formats for broadcast : twentiy-two minute full episodes , and five minute excerpts for use as filler .
75
+ 15 because of the menorah 's heights , con edison assists the lighting by using a crane to lift each person to the top .
76
+ 41 fauna there is also a sweet water well 97 meters deep creating an oasis of date-producing palm tree where bird such as fulvous whistling duck , grey pelican and american white pelican live as well as gray heron , corvetta , crane and albatross .
77
+ 2 underground phase crane parts and construction equipment arrived at the site on june 25 , 2007 .
78
+ 71 after peter rothwell 's death on 2 august 1824 , the company continued with peter rothwell jr ( 1792 -- 1849 ) as rothwell , hick & co. they made stationary steam engine , ( a number of which were featured by john farey , jr . in the second volume of his treatise on the steam engine , 1827 ) as well as general engineering products including cast iron dockyard crane .
79
+ 21 other vehicles that do not travel public streets or highways are generally termed off-highway vehicles , including tractor , forklift , crane , backhoe , bulldozer , and golf cart .
80
+ 10 assembly of lattice steel towers can be done using a crane .
81
+ 11 the r/v john m. kingsbury has a winch and a one-ton crane for the deployment of research equipment and for the movement of heavy materials from the mainland to the island .
82
+ 5 grus is latin for the crane , a species of bird .
83
+ 13 she has a large open fantail for the handling of equipment , a crane aft , a trawl winch , an oceanographic winch located amidships , and an a-frame .
84
+ 24 like hung gar and other southern shaolin-based styles , hong cha techniques are based on the five animals system : dragon , tiger , crane , leopard , and snake .
85
+ 14 as his coffin passed up the thames on the havengore , dockers lowered their crane jibs in a salute .
86
+ 6 in 1913 , a 250 ton crane was installed , and the shipbuilding facilities expanded to permit the construction of large warship .
87
+ 38 nist built on earlier research to develop its real-time control system ( rcs ) and real-time control system software which is a generic hierarchical control system that has been used to operate a manufacturing cell , a robot crane , and an automated vehicle .
88
+ 8 the first responders managed to bring only one crane on the scene , but could count on help from townsfolk , soldiers from the nearby barracks and city guards .
89
+ 5 grus pagei is an extinct crane reported from the upper pleistocene asphalt deposits of rancho la brea , los angeles , california .
90
+ 7 mcfall 's first cousin , a 42-year-old crane worker named david shimp , was the only available bone marrow match for mcfall at the time , but shimp refused to donate his bone marrow , which would have dramatically increased the odds of saving mcfall 's life ( with shimp 's bone marrow donation , doctors estimated that mcfall would have had a 50 % to 60 % chance of surviving ) .
91
+ 3 school bird : crane it stands for lofty grace .
92
+ 51 cavotec supplies the port and , airports , mining and tunnel , and general industry sectors with power transmission , distribution and control technologies that form the link between fixed installations , in airport , port and mines , and mobile equipment such as aircraft , ships , mining equipment and crane .
93
+ 23 in estonian , '' stork '' is toonekurg , which is derived from toonela ( underworld in estonian folklore ) + kurg ( crane ) .
94
+ 21 tie rods are often used in steel structures , such as bridge , industrial buildings , tank , tower , and crane .
95
+ 28 the common name ` cranesbill ' comes from the shape of the unsprung column , which in some species is long and looks like the bill of a crane .
96
+ 7 just as an example , a special crane had to be rented from belgium in order to lower pieces of the cms detector into its underground cavern , since each piece weighed nearly 2,000 tons .
97
+ 8 at this stage a small '' creeper '' crane was installed in each leg , designed to move up the tower as construction progressed and making use of the guides for the elevator which were to be fitted in each leg .
98
+ 6 its name is latin for the crane , a type of bird .
99
+ 3 origami paper a crane and papers of the same size used to fold it almost any laminar ( flat ) material can be used for folding ; the only requirement is that it should hold a crease .
100
+ 20 normal copy paper with weights of 70 -- 90 2 can be used for simple folds , such as the crane and waterbomb .
101
+ 28 jpg in honor of those affected by the 2011 tōhoku earthquake and tsunami in japan , kondratyev ( center ) , nespoli & coleman are pictured with origami crane , which they folded to be placed in the htv-2 .
102
+ 16 the balloons were released before dejesus ' aunt began the demolition with a swing of a crane .
103
+ 10 the following year , jeon kyu-ho , who earned a crane operation license at the time , was found through the internet .
104
+ 10 casar develops , produces and distributes special wire ropes for crane and other devices .
105
+ 39 prose works a few representative examples : mihail sadoveanu : fantezii răsăritene ( '' eastern fantasies '' ; 1946 ) , păuna mică ( '' the little peahen '' , 1948 ) , mitrea cocor ( '' mitrea the crane '' , 1950 ) , a novel that became a symbol of socialist-realist prose , with its depiction of class struggle , of positive heroes , of the communist ironworker florea costea and the boiler-maker voicu cernea , of the moral and ideological transformation of mitrea during his imprisonment in the soviet union .
106
+ 1 a crane being a bird which appears on both the shield and crest of the clan cranstoun .
107
+ 82 they built the first soviet industrial device for continuous pouring of steel , developed an automated process of pouring and cutting slabs with the use of radioisotope technology , produced the first soviet hydrofoil ( raketa ) , designed and built passenger diesel - electric ships lenin and soviet union for the volga river navigation company , the first high-speed passenger hovercraft sormovich , a few diesel-electric railroad ferries for the baku - krasnovodsk route , and a unique 250-tonne double-hulled floating crane kyor-ogly .
108
+ 4 lampson international is a crane manufacturer located in kennewick , washington established in 1946 by neil f. lampson .
109
+ 46 drawing include 16 industrial field of machines such as measuring devices , steam boiler , steam engine , steam turbine , internal combustion engine , automobile , rolling stock , water wheel , pump , mechanical fan , gas compressor , cryocooler , machine tool , crane , haulage , spinning and weaving machine .
110
+ 41 animals animals at the zoo include lion , tiger , jaguar , bear , hippos , giraffe , zebra , deer , llama , gorilla , orangutan , chimpanzee , monkey , red pandas , tanuki , fox , ostrich , crane , swan , duck , flamingo , eagle , hawk , peacock , humboldt penguins , and sea lions .
111
+ 9 features apache is equipped with a 10 ton capacity crane and a bollard pull of at least 87 tons .
112
+ 11 khali regained the upper hand , scoop slamming cena onto a crane .
113
+ 16 in medieval times , birds that might be found in a game pie included heron , crane , crow , swan , stork , cormorant , and bittern as well as smaller birds trapped by nets such as thrushes , starling , and blackbirds .
114
+ 26 layer iii pillar 2 from enclosure a ( layer iii ) with low relief of what is believed to be a bull , fox , and crane .
115
+ 11 the designs are often creatures from japanese mythology such as the crane or the tortoise , or a family crest , or a name ( written in kanji ) .
116
+ 11 the bell is lowered into the water by cables from a crane attached to a ship or dock .
117
+ 3 '' petroglyphs of crane have been found south of the wilderness .
118
+ 22 wildlife havasu wilderness is home to a variety of wildlife , including species of quail , geese , duck , grebe , crane , rail ( including the endangered yuma rail ) , heron , egret , falcon , eagle , desert bighorn sheep , coyote , porcupine , fox , and bobcat .
119
+ 21 whist there were no large display device set up at the ground during its existence , one was set up via crane for the final game .
120
+ 15 non-piscivore prey consists largely of water-dwelling birds , including duck , geese , swan , crane , heron and gull .
121
+ 16 in the central pond of the gardens , there are two islands with sculptures of a crane and tortoise .
122
+ 13 ducks remained the most popular species , but hunted species included snipe , crane , dove , quail , rails , and geese .
123
+ 29 ypm pu 13258 ( early eocene ) -- possibly juvenile gastornis giganteus '' diatryma '' cotei ( middle-late eocene ) zhongyuanus gruiformes the group that includes modern rail and crane .
124
+ 5 he travels on a giant crane - shaped origami in a similar fashion to kagura 's expanding feather ornament , despite being capable of flight without it .
125
+ 9 binesi ( thunderbird ) ajijaak ( we ) ( crane or '' thunder '' ) ( ms , oj , od , po ) nesawaakwaad ( '' forked tree '' ) ( od ) ashagi ( heron ) ( ns ) gekek ( hawk ) ( oj , od ) omigizi ( we ) ( bald eagle ) ( ms , oj , od , po ) mitigomizh ( white oak ) ( ms ) wiigwaas ( birch bark ) ( ms , ns ) giniw ( golden eagle ) ( po ) bibiigiwizens ( sparrowhawk ) ( od ) makade-gekek ( we ) ( black hawk ) ( po ) bemaangik group the bemaangik are charged with internal/domestic communications .
126
+ 28 on february 2 , 2007 , michael govan , with koons , revealed plans for a - tall koons sculpture featuring an operational 1940s locomotive suspended from a crane .
127
+ 39 engadine was purchased in february 1915 by the admiralty and she was modified by cunard at liverpool from 10 february to 23 march 1915 with a permanent , four-aircraft , hangar in the rear superstructure and a pair of crane were mounted at the rear of the hangar to hoist the seaplanes in and out of the water .
128
+ 8 this region of poland houses species like : crane , common goldeneye , goosander , western marsh harrier , ruff , kingfisher , trout , common viper , fire salamander , tree frog and great crested newt .
129
+ 12 the lower sections of the moscow octod tower were assembled using a crane ; the top was lowered by helicopter .
130
+ 7 after by rope into position with a crane , the lugs were then masoned off .
131
+ 24 working with dr. cecil cade and his son richard , jack spent seven months in africa collecting rare grevy 's zebra , ostrich , crane , wildebeest , zebra , and gazelle .
132
+ 13 the guadarramas is also a migration route for many species of bird including crane and black stork .
133
+ 9 the name translates approximately to '' vision of a crane '' or '' vision of a heron '' .
134
+ 15 these aeroplanes were generally carried on , and launched from catapults , and retrieved by crane after landing on the water .
135
+ 43 this includes jack , block and tackle , hoist , rotating screws , gantries , a frame , gin pole , shear legs , sheerleg , windlass , lifting harness , fork lift , hydraulic lifting pad , air lift bag , and crane .
136
+ 11 the elephant was hanged by the neck from a railcar-mounted industrial crane .
137
+ 25 a separate line runs down from the top of the mast and over its bottom with a hook on the end , as with a crane for lifting the loads .
138
+ 16 two frogmen were positioned in the water , as well as an emergency vehicle and a crane were ready , but not needed .
139
+ 8 in one such instance they rented an industrial crane , and played 40 feet up in the air over the streets of downtown toronto .
140
+ 11 although the modern meaning for this word in german is '' crane '' , the context is likelier to make the meaning here '' crown '' , for cronenberg '' crowns '' a mountain ( berg in german ) .
141
+ 32 the type of game animals hunted during the han included rabbit , sika deer , turtle dove , goose , owl , chinese bamboo partridge , magpie , common pheasant , and crane , while fish and turtles were taken from streams and lakes .
142
+ 5 it is a very large crane , averaging 156 cm ( 5 ft ) in length , which is found in freshwater marsh and plain .
143
+ 12 the slabs which are manufactured off site are simply lifted with a crane and set in place .
144
+ 28 at the royal agricultural society of england ( rase ) meeting at leicester in 1868 aveling showed '' little tom '' , a small engine fitted with a crane .
145
+ 33 family : turnicidae small buttonquail , turnix sylvaticus red-backed buttonquail , turnix maculosus yellow-legged buttonquail , turnix tanki spotted buttonquail , turnix ocellatus barred buttonquail , turnix suscitator luzon buttonquail , turnix worcesteri crane order : gruiformes .
146
+ 8 when salvaging large ships , they may use crane , floating dry dock and divers to lift and repair ships for short journeys to safety towed by a tugboat .
147
+ 13 later , even more variety of product was added , including cistern , crane , dredger , road roller , steel lifeboat , steel bridge constructions and casting articles .
148
+ 12 around 250 species of bird may be seen here , including the crane , the black stork and the osprey .
149
+ 34 according to a legend recounted by the historian flaminio cornaro , st. magnus had a vision of the twelve apostles who commanded him to build a church on a site where he saw twelve crane .
150
+ 28 the caat is one of four elements in the tactically expandable maritime platform ( temp ) program ; the others being a containerized living quarter , a stabilized crane , and an unmanned powered parachute delivering containers by air .
151
+ 21 there you will find small reedbed with spikerushes , home to many insects , marsh marigold and orchid , kingfisher , crane and white-tailed eagle , old yew , holly and chequer trees .
152
+ 9 its buster vehicle mode takes the form of a crane , while its japanese rhinoceros beetle buster animal mode can siphon enetron from its target .
153
+ 2 for the crane , which cross western pomeranian bodden country during migration , the windwatts are one of the most important resting areas in western europe .
154
+ 15 because of the menorah 's height , con edison assists the lighting by using a crane to lift each person to the top .
155
+ 3 the name means crane .
156
+ 6 transhipment kitadu is fitted with large crane which help tranship goods , especially containers , from wagons of one gauge to wagons of another gauge .
157
+ 7 during the migration season , crowds of crane , wild geese , and teal varieties are visible on lake fehér .
data/crane/test.gold.txt ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 1
6
+ 0
7
+ 1
8
+ 0
9
+ 1
10
+ 1
11
+ 1
12
+ 1
13
+ 1
14
+ 1
15
+ 0
16
+ 1
17
+ 0
18
+ 1
19
+ 0
20
+ 0
21
+ 0
22
+ 1
23
+ 0
24
+ 1
25
+ 0
26
+ 0
27
+ 1
28
+ 1
29
+ 1
30
+ 1
31
+ 0
32
+ 1
33
+ 1
34
+ 0
35
+ 1
36
+ 0
37
+ 0
38
+ 0
39
+ 1
40
+ 0
41
+ 1
42
+ 0
43
+ 0
44
+ 1
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 1
52
+ 0
53
+ 1
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 1
59
+ 1
60
+ 1
61
+ 1
62
+ 1
63
+ 1
64
+ 1
65
+ 0
66
+ 1
67
+ 0
68
+ 0
69
+ 1
70
+ 1
71
+ 1
72
+ 1
73
+ 1
74
+ 0
75
+ 0
76
+ 1
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 1
83
+ 0
84
+ 1
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 1
90
+ 0
91
+ 1
92
+ 0
93
+ 1
94
+ 0
95
+ 1
96
+ 0
97
+ 0
98
+ 1
99
+ 1
100
+ 1
101
+ 1
102
+ 0
103
+ 0
104
+ 0
105
+ 1
106
+ 1
107
+ 0
108
+ 0
109
+ 0
110
+ 1
111
+ 0
112
+ 0
113
+ 1
114
+ 1
115
+ 1
116
+ 0
117
+ 1
118
+ 1
119
+ 0
120
+ 1
121
+ 1
122
+ 1
123
+ 1
124
+ 1
125
+ 1
126
+ 0
127
+ 0
128
+ 1
129
+ 0
130
+ 0
131
+ 1
132
+ 1
133
+ 1
134
+ 0
135
+ 0
136
+ 0
137
+ 0
138
+ 0
139
+ 0
140
+ 1
141
+ 1
142
+ 1
143
+ 0
144
+ 0
145
+ 1
146
+ 0
147
+ 0
148
+ 1
149
+ 1
150
+ 0
151
+ 1
152
+ 0
153
+ 1
154
+ 0
155
+ 1
156
+ 0
157
+ 1
data/crane/train.data.txt ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 3 family : gruidae crane are large , long-legged and long-necked birds .
2
+ 41 on 14 march 2011 , with construction already underway on the main pylon , the one show broadcast footage of the on-site status of project , and profiled the four-man team putting it together , comprising two steel erector , a crane operator and a site foreman .
3
+ 2 the izumi crane migration grounds cover a 245ha paddy field area of izumi plain in the northwest of kagoshima prefecture known for the about ten-thousand cranes which pass the winter there from every year mid october to march .
4
+ 22 an alternative view is that the village is named after the welsh word '' garan '' which means heron , stork or crane .
5
+ 8 steppe dwellers include the mongolian lark , demoiselle crane and long tailed siberian souslik .
6
+ 18 sandhill grove contained sandy soil , a large oak stand , and during certain seasons large flocks of crane .
7
+ 0 crane ) is a moshav in central israel .
8
+ 4 rare migratory stork and crane are also seen wintering in the park ( lesser adjutant , greater adjutant , black-necked stork , asian openbill ) .
9
+ 6 also , several major factories of crane , car , tractor and a chemical plant were established .
10
+ 10 the genus name is derived from greek geranos , '' crane '' , a reference to the bird-like hind-limb .
11
+ 26 on the day that the two halves of the bridge were joined , each side of columbus drive was closed for a 12-hour period and a crane was used to install the girders .
12
+ 23 nck later was sold to robert maxwell 's media group as part of a wider deal , but maxwell was not interested in crane and nck became inactive .
13
+ 5 two 20-ton ( 18-tonne ) crane were retained and used to hoist the brewery 's serving tanks to their current location .
14
+ 6 the crash was heard by a crane driver at , who reported the fact to the berthing master .
15
+ 16 the neck is relatively shorter and thicker than other long-legged wading birds such as heron and crane .
16
+ 10 the site of a large shipyard will contain many specialised crane , dry dock , slipway , dust-free warehouses , painting facilities and extremely large areas for fabrication of the ships .
17
+ 6 on 20 june 2007 , a crane toppled whilst carrying out works on the bridge , and precariously hung for a number of hours off the side of the barriers .
18
+ 31 from 9 may to 18 july 1915 , the ship was modified by cunard at liverpool with a permanent , four-aircraft , hangar in the rear superstructure and a pair of crane were mounted at the rear of the hangar to hoist the seaplanes in and out of the water .
19
+ 1 some crane already are remote controlled .
20
+ 17 in 1898 , the company began a transition to using company-built streetcars and machinery ( such as crane and snowplow ) rather than purchasing the cars from other companies .
21
+ 34 the byzantine military manuals also mention that jars ( chytrai or tzykalia ) filled with greek fire and caltrop wrapped with tow and soaked in the substance were thrown by catapults , while pivoting crane ( gerania ) were employed to pour it upon enemy ships .
22
+ 10 the tornadoes killed two people who were caught on construction crane when the tornado hit .
23
+ 7 turna is the turkish word for species crane .
24
+ 13 when she was modernized in the 1930s , a catapult and a collapsible crane were fitted on the stern , and both ships were equipped to operate three floatplane , although no hangar was provided .
25
+ 1 a crane is still provided on this platform .
26
+ 15 origin of name the place name cranbrook derives from old english cran broc , meaning crane marsh , marshy ground frequented by cranes ( although more probably herons ) .
27
+ 26 a team of riggers design and install the lifting or rolling equipment needed to raise , roll , slide or lift objects such as with a crane or block and tackle .
28
+ 6 standard equipment includes : a td-50 crane , front-mounted stabilizing dozer blade , main and secondary winches .
29
+ 49 in prefabricated construction , only the foundations are constructed in this way , while sections of wall , floors and roof are prefabricated ( assembled ) in a factory ( possibly with window and door frames included ) , transported to the site , lifted into place by a crane and bolted together .
30
+ 37 wildlife various wildlife live in the park system , including deer , hawk , owl , rabbit , snake , fox , coyote , badger , porcupine , pelican , beaver , muskrat , ground squirrel and crane .
31
+ 17 the carvings include 18 fish carvings , poems written calligraphically , three bodhisattva carvings , and a crane .
32
+ 3 the trip stretched crane 's legs as the heavy rabbit held them tightly , leaving them elongated as cranes ' legs are now .
33
+ 20 endangered species include the great indian hornbill , vulture , langur ( black faced monkey ) , giant squirrel , crane and tern .
34
+ 12 inside the shed will generally be a platform and sometimes a small crane to allow easier loading and unloading of wagons .
35
+ 13 alternatively , it could be launched in jars fired from catapults ; pivoting crane ( gerania ) are also mentioned as a method of pouring combustibles onto enemy ships .
36
+ 20 in compliance , he shoos several pigeons near a pavement ; one of which blinds a construction worker in a crane , who accidentally hits a switch that drops a glass pane directly above tim , crushing him .
37
+ 22 his father 's business under his leadership became the oldest family owned construction equipment distributor in the united states and the largest crane dealer in the southeast .
38
+ 13 they produced the range of nck agricultural equipment , skimmers , excavator , crane and dragline that were renowned for high quality and long life , typically over 20 years .
39
+ 5 william armstrong 's first hydraulic crane is erected at newcastle upon tyne in england .
40
+ 12 they organized these techniques into five animals : the tiger , the crane , the leopard , the snake , and the dragon .
41
+ 8 maz-537k - tractor , designed for installation of crane equipment .
42
+ 28 it is an important breeding , moulting and resting area for numerous birds including the kingfisher , bittern , whooper swan , goosander , great crested grebe , crane and sea eagle .
43
+ 22 coat of arms the vertical bars in the left half of the coat of arms symbolize the elbe-havel canal , while the crane in the right symbolizes the nature in the district .
44
+ 42 they depict , on the left , jeremiah and habakkuk ; the eternal father and the blessed virgin ; an angel and saint john the evangelist ; and saint cyriacus ; and , on the right , figures of animals : two crane on a pomegranate tree , an eagle , two peacocks on a tree and two gryphons .
45
+ 21 an axial cut can be made with the use of a zoom lens , or physically moving the camera with a crane or camera dolly .
46
+ 12 the two derricks that serviced the hangar were replaced by a single crane on the starboard side of the hangar roof .
47
+ 15 fauna and flora famous animals in the national park include the red deer , the crane , the white-tailed eagle and the osprey .
48
+ 3 there is a crane at the top of the mst , which allows the payload and gem-60 solid motors to be attached to the vehicle .
49
+ 5 the logo is a white crane on a red vertical tail fin .
50
+ 12 hydrauliska industri ab ( hiab ) is a swedish manufacturer of loader crane , demountable container handlers , forestry cranes , truck-mounted forklift and tail lift .
51
+ 15 sadako and the thousand cranes one of the most famous origami designs is the japanese crane .
52
+ 14 after the population recovered it continued building up the city and in 1364 a crane was built for the port .
53
+ 20 much of the interior , which was designed by hapstak demetriou + , uses reclaimed objects , such a construction crane , beer bottle , window , and cargo container .
54
+ 93 airdate : october 25 , 2005 new orleans ( louis armstrong international airport ) to panama city , panama ( tocumen international airport ) panama city to gamboa ( smithsonian tropical research institute 's gamboa field station ) barro colorado island ( smithsonian tropical research institute ) balboa ( pier 12 , panama canal ) panama city ( casco viejo or el parque metropolitan ) panama city ( estadio juan demostenes arosemena panama city ( miraflores locks ) in the race 's only aired fast forward , team members had to find a crane at the pacific side of panama canal pier 14 .
55
+ 5 these include the adder , crane , nightjar , woodlark , snipe , shrike and stonechat .
56
+ 16 another building , near the mausoleum , houses an unusual statue of amida riding a large crane , which is an iconography rarely found in japan .
57
+ 8 the player 's primary control is '' the crane '' , a flying magnet ( held by , for example , a pterodactyl in the first , ancient time period ) which can pick up and drop single parts .
58
+ 25 gary had to invent equipment to build and move the huge sculptures , creating the scaffolding , hoist , and even special vehicles that featured crane to haul the sculptures around at his rural workshop and to place them onto trucks for transportation .
59
+ 0 crane : gruidae indet .
60
+ 15 the darß is famous for being a resting place for tens of thousands of migrating crane and geese .
61
+ 4 the emblem was a crane , alert and vigilant , holding a pebble to splash itself awake should its alertness falter , however the pebble and ` vigilance ' initially chosen as the motto , have evolved under mrs knight and the board of governors at the time ( 2004-2009 ) to a more self-analytical motto , reflecting the greater achievement of society at large , and appreciating one 's own ideas and successes as much as those as others .
62
+ 33 between 1950 and 1952 50 examples of a slightly modified copy of the kranich ii were built in poland , known as the szd-c żuraw ( żuraw is kranich in polish = '' crane '' ) .
63
+ 6 the most important investments were a crane with a capacity of 100 tonnes and a dry dock .
64
+ 21 a white-tailed tropicbird or longtail fossil remains of a variety of species have been found on the island , including a crane , an owl and the short-tailed albatross .
65
+ 9 rock density monolith with bull , fox , and crane in low relief , gobekli tepe the discussion above is accurate as far as it goes , which is only to the first significant figure .
66
+ 10 it is assumed that the column drums were lifted by crane into their place .
67
+ 104 during the canadian operation athena , members of 1 cer on task force 3-09 constructed a mabey logistic support bridge over a pre-existing bridge after a vehicle borne suicide bomb detonanted on the bridge close to kandahar airfield features the bridge takes military load class 80 tracked , 110 wheeled the bridge can span up to 61m lsb has a lane width of 4.2 m multi-span equipment enables the bridge to be built to any length on fixed or floating supports built on a greenfield site using grillages , ground beams and ramps the bridge is normally built using an atc244 22 ton capacity crane or a hydraulic excavator using a bucket with a lifting eye .
68
+ 4 c. 515 bce : crane in ancient greece 5th century bce 5th century bce : crank motion ( rotary quern ) in celtiberian spain 5th century bce : cast iron in ancient china : confirmed by archaeological evidence , the earliest cast iron was developed in china by the early 5th century bce during the zhou dynasty ( 1122 -- 256 bce ) , the oldest specimens found in a tomb of luhe county in jiangsu province .
69
+ 7 rcs applications robocrane - rcs controlled a crane having six degrees of freedom .
70
+ 5 view of the krantor ( crane gate ) the member cities took responsibility for their own protection .
71
+ 93 among these projects are : support to bandipur tiger reserve , trade & wildlife crimes grassroots ngo support network , support to corbett tiger reserve & adjoining forests , support to sundarbans tiger reserve , wpsi tiger protection awards , award for information that leads to seizure of tiger parts , ` operation kachhapa ' , conservation of the olive ridley turtle , ` corridor to survival ' - landscape conservation plan for elephant management , human-elephant conflict & elephant mortality in north bengal , a film campaign on otter conservation , indian crane and wetland working group and animal - human conflict management .
72
+ 17 examples of parodies include pictures of lee holding an electric saw before the chinese , driving a crane towards li , and lee in goku 's costume in his super saiyan form .
73
+ 12 it may have quay , wharf , jetties , or slipway with crane or ramps .
74
+ 0 crane swallow the sun , the moon and the stars several references are made by moses of chorene to the worship of the sun and moon in armenia .
75
+ 47 the luttrell psalter , dating to around 1340 , describes a grindstone which was rotated by two cranks , one at each end of its axle ; the geared hand-mill , operated either with one or two cranks , appeared later in the 15th century ; medieval crane were occasionally powered by cranks , although more often by windlass .
76
+ 9 climbing gear , tree house , canopy walkway , crane , airship and inflatable platforms resting on the treetops have lately overcome these barriers .
77
+ 14 in 1917 , the naval general staff decided to add another seaplane and a crane to handle them .
78
+ 8 a transformer who takes the form of a crane .
79
+ 12 these boxes would be lifted out of the boats , positioned by crane over a bunker or cart and emptied by releasing the chains on the base .
80
+ 16 not yet fully rigged for example , she had a two-ton ( 907 - kg ) crane on her port forecastle but no lifting capability aft miller freeman proceeded after commissioning in 1967 from ohio through lake erie , lake ontario , the st. lawrence seaway , and the panama canal to her home port at seattle , washington .
81
+ 3 cranes ( how crane work ) 8 .
82
+ 27 the main single line had to be temporarily severed and slued so that the carriage could be shunted onto its own track without the use of a crane .
83
+ 10 fionn arrived at tara , armed with his father 's crane - skin bag of magical weapons .
84
+ 5 ceramic originals by freeman-leidy , crane figurine .
85
+ 4 he makes an origami crane every time he kills someone , a trait which was influenced by woo 's daughter when he saw her making them .
86
+ 36 five kinds of animal parts fenghuang -- a chinese creature that has the head of a golden pheasant , the body of a mandarin duck , the tail of a peacock , the legs of a crane , the mouth of a parrot , and the wings of a swallow .
87
+ 32 the fruit capsule , which springs open when ripe , consists of five cells each containing one seed joined to a long beak-like column 2 -- 3 cm long ( resembling a crane 's bill ) produced from the center of the old flower .
88
+ 5 gameplay the player controls a crane at the top of the valley that moves picks up crate when the button is pressed .
89
+ 14 cargo ships are usually specially designed for the task , often being equipped with crane and other mechanisms to load and unload , and come in all sizes .
90
+ 18 systematics and evolution the family rallidae has traditionally been grouped with two families of larger birds , the crane and bustard , as well as several smaller families of usually '' primitive '' mid-sized amphibious birds , to make up the order gruiformes .
91
+ 10 it has a cast iron fireboard ornamented with a brass crane .
92
+ 8 abus kransysteme gmbh is a german hoist and crane manufacturer headquartered in gummersbach .
93
+ 7 she gave the port of bristol a crane in 1475 , at the welsh back .
94
+ 12 bird groups found there include : eagle , vulture , stork , crane , egret , lapwing , kite , owl , kingfisher , quail and dove .
95
+ 27 the following sections were repealed and superseded by the lifting operations and lifting equipment regulations 1998 on 5 december 1998 : hoists and lifts - general ; crane and other lifting machines ; and chain , rope and lifting tackle .
96
+ 4 unfortunately , her seaplane crane was destroyed .
97
+ 26 meanwhile , word has come that germany has surrendered , but murphy is obsessed with revenge and makes plans to ram the u-boat with a floating crane owned by the friendly frenchman louis ( philippe noiret ) .
98
+ 24 during the pre-world war ii period , uralmash manufactured its products ( blast furnace equipment , sintering machines , rolling mill , press , crane , etc. ) for the mining and metallurgical industries located in the urals and siberia .
99
+ 12 most , if not all , previous designs for military bridges required crane to lift the pre-assembled bridge and lower it into place .
100
+ 18 the five original anishinaabe doodem were the wawaazisii ( bullhead ) , baswenaazhi ( echo-maker , i.e. , crane ) , aan ` aawenh ( pintail duck ) , nooke ( tender , i.e. , bear ) and moozoonsii ( little moose ) , then these six miigis beings returned into the ocean as well .
101
+ 18 1 japanese voice actor : yasunori matsumoto english voice actor : kirk thornton kabuki actor-faced shinma with a crane wing on each of his lower back legs .
102
+ 8 grapple , the architect , transforms into a crane ; hoist , who serves in maintenance , transforms into a toyota hi-lux 4wd tow truck model ; inferno , who serves in search and rescue , transforms into a fire engine ; red alert , the security director , transforms into a fire chief 's lamborghini countach ; skids , the theoretician , transforms into a honda city turbo ; smokescreen , the diversionary tactician , transforms into a 1979 custom datsun 280zx ; and tracks , a warrior , transforms into a 1980 chevrolet corvette .
103
+ 24 one of the most common types on modern railways are container trains , where containers can be lifted on and off the train by crane and loaded off or onto truck or ship .
104
+ 22 the first channel south of 14th avenue s is anhinga channel , then bittern channel is south of 15th avenue s , crane channel is south of 16th avenue s , duck channel is south of 17th avenue s , and egret channel is north of 21st avenue s. from the channels there are coves named flamingo , gull , heron , and ibis , as well as the original aqua cove .
105
+ 12 a huge new turret shop was built , and a mammoth hammerhead crane , capable of lifting 350 tons , was constructed to capacitate battleship fabrication .
106
+ 25 one of the most significant of pika 's inventions has been the paralcon hydraulic valve system that can be used on any twin boom extending-retracting crane .
107
+ 12 steel rivets can be found in static structures such as bridge , crane , and building frames .
108
+ 48 the items include : a cake when eaten doubles the size of their name tag ; a '' pumpkin bicycle '' that can be used for ten minutes ; red high heels that are used for ten minutes ; jack and the beanstalk which lets them ride a crane ; a fight with the queen where they play muk-chi-ba with members of gag tonight , if they lose , they must where a mitten , and if they win , all the other members name tags become giant and their name tag is shrunk ; '' genie 's lamp '' which will summon a '' genie '' to help the member for an hour ; when they catch the rabbit , their name tag is returned to normal .
109
+ 10 a more obvious external change was the fitting of large crane - like davit , each capable of holding six lifeboats .
110
+ 16 he was awarded one of the first patent ever issued in order to protect an ingenious crane he designed to raise the large masonry stones to the top of the structure .
111
+ 9 a series of nine late-19th century 160-ton capacity hydraulic crane for naval use .
112
+ 13 it is not secured to the ground and can be moved by a crane attaching to built-in anchor point but due to its weight it is also designed to function as a roadblock .
113
+ 4 flora and fauna the crane has resettled in the area and now breeds here .
114
+ 2 a new crane would also have been necessary to handle the heavier aircraft as well .
115
+ 26 between 1949 and 1981 , wcs supported various activities in canada , including arctic expeditions to bylot island and research on seals , merlin , whooping crane , polar bears , and bowhead whales .
116
+ 22 larger buildings may require the use of a wrecking ball , a heavy weight on a cable that is swung by a crane into the side of the buildings .
117
+ 51 the sliding walls taper inwards towards the top and are connected by an articulated joint so the walls can be spread and slid apart , so that one half of the wagon is entirely open and may be loaded or unloaded from the side by forklift truck or from above by crane .
118
+ 34 goods yards were planned for mislingford ( mainly to serve a local pumping station ) and farringdon , and all the stations had goods sidings , an ornate corrugated iron goods shed and hand-operated crane to allow parcels and goods to be picked up and dropped off as needed .
119
+ 14 this is characteristic of herons and bittern , and distinguishes them from stork , crane , and spoonbill , which extend their necks .
120
+ 119 types of operators ; broadcasting : technical operator , transmission controller or broadcast operator : network operations center ( noc ) operator master control ( mcr ) operator production control room ( pcr ) operator transmission control room ( tcr ) operator video tape operator ( vto ) certified television operator ( cto ) by society of broadcast engineers ( sbe ) certified radio operator ( cro ) operator - by ( sbe ) studio technical operator ( gallery operator ) : vision mixer operator - technical director ( td ) sound and comms ( talkback ) studio operator kc-135 boom operator camera operator jib ( camera ) operator boom operator dolly grip operator ; other : computer operator crane operator radio operator satellite controller switchboard operator winch operator nuclear power plant operator gallery image : hg winch operator .
121
+ 4 dorna ( , '' crane '' ) is a jet-powered iran training aircraft .
122
+ 15 the new , large apartment buildings were perfectly rectangular , so as to allow a crane to roll along a track and place components on both sides of the building simultaneously , saving both time and effort .
123
+ 52 some are straight with a '' joint '' ( sandblasted top part of stem , usually about 1 inch long , and all the way around , tapered or cone shaped , so the tapered , or '' cone shaped '' bowl will fit in ) some are bent to resemble a crane .
124
+ 41 types crane-climbing formwork : the working platform and the formwork are a unit climbing formwork ( crane-climbing ) - in this type of climbing formwork , the formwork around the structure is displaced upwards with the help of one or more crane once the hardening of the concrete has proceeded far enough .
125
+ 52 taxonomy and systematics flying at a falconry display at palmitos park , canary islands , spain its scientific name is latin ancient greek and means '' black-and-white crane-eagle '' or ( if called buteo melanoleucos ) '' black-and-white buzzard '' : geranoaetus comes from ancient greek géranos ( γέρανoς ) , '' crane '' + aetós ( ἆετός ) , '' eagle '' .
126
+ 17 the first of these was the ` nautical labourer ' ; a steam tug with a floating crane propelled by paddle wheels .
127
+ 2 cormorant , crane , raven and crow are also noted , white-tailed eagle frequents the area and black stork , red kite and short-eared owl have been recorded occasionally on the bog .
128
+ 5 nosturi ( finnish for '' crane '' ) is a culture and music hall and a nightclub in the punavuori district of helsinki , finland .
129
+ 9 he is depicted as a crow or a black crane .
130
+ 11 a marina may have a boat hoist well ( a traveling crane ) operated by service personnel .
131
+ 16 scenic elements there were several scenic elements commonly used in greek theater : mechane , a crane that gave the impression of a flying actor ( thus , deus ex machina ) .
132
+ 16 carden first appearance : '' blind leading the blind '' voice actor : gregory cooper a crane monster with no rinshi form .
133
+ 19 near mt . diablo deposits of similar age provide evidence for at least three different kinds of camel , crane , a fox , a primitive ground squirrel , a small beaver , horses ( with the three toed horse hipparion forcei being the most common ) , hyena - like animals , a lizard , abundant mastodonts , mountain lion - like cat , a mustelid , oreodonts , peccaries , rabbit , raccoon - like animals , a ring-tailed cat , and possible saber-toothed cat .
134
+ 13 chizuru ( 千鶴 ) is a japanese feminine given name meaning a thousand crane .
135
+ 15 in the recovery of lost sources , the iaea recommends careful planning and using a crane or other device to place shielding ( such as a pallet of brick or a concrete block ) near the source to protect recovery workers .
136
+ 41 to '' slew '' means to turn without change of place ; a '' slewing '' bearing is a rotational rolling-element bearing that typically supports a heavy but slow-turning or slow-oscillating load , often a horizontal platform such as a conventional crane , a swing yarder , or the wind-facing platform of a horizontal-axis windmill .
137
+ 31 the size of the entrances to the stadium ( designed to accommodate the movement of people rather than stage equipment ) meant that the stage had to be lifted in by crane before being constructed .
138
+ 9 grus is a genus of large bird in the crane family .
139
+ 47 during his lifetime , in addition to numerous dogs and horses , byron kept a fox , four monkey , a parrot , five cat , an eagle , a crow , a crocodile , a falcon , five peacocks , two guinea hen , an egyptian crane , a badger , three geese , a heron , a honey badger , and a goat with a broken leg .
140
+ 17 the models no-4 and no-5 were prototypes of heavy salvage vehicles , equipped with a gar wood crane which could swivel to the left and right .
141
+ 33 he therefore ordered a foresail made of eight hammock hung from a top boom made of pipe bunk frames lashed firmly together , all tied to the vertical kingpost of the torpedo loading crane forward of the submarine 's superstructure .
142
+ 11 counterweights are often used in traction lifts ( elevators ) , crane and funfair rides .
143
+ 3 they often have crane and forklift for moving goods , which are usually placed on iso standard pallet loaded into pallet rack .
144
+ 35 m. d. moody & sons , inc. stands today as the oldest family owned construction equipment distributor in the united states , the oldest road equipment company in florida and at one time the largest crane dealer in the southeast .
145
+ 3 white-tailed eagle , crane and otter also occur in the area .
146
+ 5 kurepõllu ( estonian for '' crane field '' ) is a subdistrict ( ) in the district of lasnamäe , tallinn , the capital of estonia .
147
+ 9 cranes today is an international trade magazine for the crane and lifting industries , published by world market intelligence .
148
+ 28 species found around the salt flats include flamingo ( phoenicopterus roseus ) ; grey ( ardea cinerea ) and purple heron ( ardea purpurea ) ; stork ; crane ; waders including avocet and oystercatcher ; and overwintering duck .
149
+ 9 tibet hosts species of wolf , wild donkey , crane , vulture , hawk , geese , snake , and buffalo .
150
+ 7 but a when the worker exits the crane , bugs calls him from the building under construction ( '' yoo hoo !
151
+ 27 tau 1 gruis b , also known as hd 216435 b , is an extrasolar planet approximately 109 light-year away in the constellation of grus ( the crane ) .
152
+ 96 anthony w. sariti , authorhouse , 2007 ) '' в пороховом дыму '' ( in the gunpowder smoke , 1878 ) '' в камышах '' ( in the reeds , 1879 ) '' varvara lepko and her family '' ( 1879 ) ; '' тигрица '' ( tigress ) ; '' from orenburg to tashkent '' ( 1886 ) ; '' khiva expedition '' ( 1882 ) ; etc. the two-legged wolf , english translation , 1894 , the most popular was his children 's book , cranes flying south , telling the story of a crane migrating from the ostashkov swamps to the upper nile .
153
+ 36 design and appearance the shōnan maru 2 is similar in design and appearance to whale catchers used by the icr such as the yūshin maru series , the primary external differences being the presence of a crane near the aft end of her superstructure used to launch and recover rigid-hulled inflatable boat ( craft not carried aboard other icr whale catchers ) , minor differences in the design of the bridge section and forward catwalk , and the absence of a structure on her prow used to recover fired harpoon .
154
+ 24 they carry an array of special equipment such as the jaws of life , wooden cribbing , generator , winches , hi-lift jacks , crane , cutting torch , circular saws and other forms of heavy equipment unavailable on standard trucks .
155
+ 10 loon , grebes , pelican , hawk and eagle , crane , sandpiper , gull , parrots , and owls are among the families missing this feather .
156
+ 19 the brolga ( grus rubicunda ) , formerly known as the native companion , is a bird in the crane family .
157
+ 12 the safari reserves end with the large lake of pink flamingoes , crane , stork , ibises , and peacock .
158
+ 9 it was assembled from seven pieces with the largest crane available in ireland .
159
+ 3 using a giant crane to remove the slab , known as a capstone , a burial chamber was revealed containing what little remained of a bronze age body and grave goods .
160
+ 20 while it contains some inaccurate or mythological articles ( for example , the articles on the horseshoe crab and the crane ) , it also distinguished itself from the common '' everyday encyclopedias '' ( riyong leishu 日用類書 ) at that time by being accurate in some other articles ( for example , accurate depictions of the japanese and korean people 's clothing , and a very accurate world map ( the shanhai yudi quantu ) .
161
+ 32 as this is a simple derrick system , it is considered to be used by some agencies as an improvised rescue derrick in an emergency situation where no suitable rescue derrick or crane is available .
162
+ 2 using a crane , the modules are set onto the building 's foundation and joined together to make a single building .
163
+ 14 limpkin , aramus guarauna ( r ) cranes order : gruiformes family : gruidae crane are large , long-legged and long-necked birds .
164
+ 24 local birds like the water fowl , cuckoo , owl and water hen and other common varieties like the woodpecker , sky lark , crane and parrot can also be spotted here .
165
+ 15 the top portion was constructed in sections off-site and then lifted into place using a crane .
166
+ 1 a crane can be used to lift a tram , too , or an overturned tram .
167
+ 20 cranes on a lolo vessel the flora delmas , a lolo vessel lift-on/lift-off or lolo ship are vessels with on-board crane to load and unload cargo .
168
+ 4 shimizu-minato station 's industrial crane has been preserved and can be see in the grounds of s-pulse dream plaza , a shopping and entertainment complex on the station 's former site .
169
+ 13 its name came from anglo-saxon cran-ford = '' ford frequented by heron or crane '' and it covered an almost north-south rectangle lengthwise of .
170
+ 6 the gamble family crest , a crane and trailing rose , was integrated in part or whole in many locations around the house .
171
+ 31 the woman on the phone helps the two avoid the chicago police and fbi , using an ability to control networked devices , including traffic light , mobile phone , automated crane , and even power lines .
172
+ 9 the sanctuary also is habitat for harriers , common crane , black partridge ( local name : ` kalo tetar ' ) , sand grouse , black and grey francolin , spotted and indian sandgrouse , quails , larks , shrikes , coursers and plovers .
173
+ 13 in horizontal vertical and transport great progress resulted from the invention of the crane , the winch , the wheelbarrow and the odometer .
174
+ 25 they have a slow steady flight , with the neck retracted as is characteristic of herons and bittern ; this distinguishes them from stork , crane , flamingo and spoonbill , which extend their necks .
175
+ 34 hendrik figee ( haarlem , may 28 , 1838 haarlem , december 3 , 1907 ) was a dutch businessman and entrepreneur creditted with growing the haarlem factory figee into an international manufacturer of crane .
176
+ 2 a special crane unloads the rail sections and places them on each side of the temporary track , approximately 3.5 m ( 12 ft ) apart .
177
+ 21 for the gliding elements of this gliding surface to be replaced , the nacelle-rotor assembly must be lifted by an external crane .
178
+ 73 tema harbour expansion the tema harbour and port of tema is undogoing a $ 115 million expansion and investment in infrastructural upgrading at the tema harbor and port of tema as part of efforts aimed at expanding facilities of tema port to meet rising cargo traffic by the the ghana ports and harbours authority ( ghpa ) ; and in which the expansion and investment will go into the purchase and instalment of crane , reach-stackers , ship to shore cranes , among others .
179
+ 66 once , the seasonal bird populations in the san joaquin basin were immense , especially in the now-dry tulare lake region : '' it took something different , though , to capture the sound of the blue sky as it turned dark and deafening from the wings and cries of millions of native and migratory birds -- canadian geese , mallards , swan , pelican , crane , teal , and curlew .
180
+ 18 in addition to the two main loads , the little david unit would also include a bulldozer and crane with bucket to dig the emplacement for the mortar 's base .
181
+ 31 instead of being charadriiformes , they might be some distinct but rather basal member of the neoaves , close to the common ancestor of some or all of such birds as crane , rail , stork and/or heron perhaps .
182
+ 14 the name parvigrus is derived from the latin parvus for small and grus for crane , the specific epithet refers to burkhard pohl who obtained the specimen for the wyoming dinosaur center .
183
+ 14 in 1965 , robert dunfield leased the island and , using a 70-ton digging crane with a clam bucket , dug out the pit area to a depth of and width of .
184
+ 4 vigilant a stork , crane or the like standing on one leg may be called vigilant or in its vigilance ( e.g. waverley borough council 's ' ' ) .
185
+ 13 low-altitude drop tests may be conducted by releasing the test vehicle from a crane or gantry .
186
+ 7 stonemasons use a lewis together with a crane or block and tackle to hoist building stones into place .
187
+ 9 a number of road locomotives are fitted with a crane boom on the front .
188
+ 28 he flew across the sahara and over the mediterranean sea to sicily with eagle , from siberia to iran ( 5,500 km ) with a flock of siberian crane , and over mount everest with nepal eagles .
189
+ 39 before extensive use of container ships and shore-based handling machinery in the united states , longshoremen referred exclusively to the dockworkers , while stevedores , in a separate trade union , worked on the ships , operating ship 's crane and moving cargo .
190
+ 13 peterman was on a platform suspended eighteen feet from the ground when the crane holding the platform snapped , throwing peterman to the ground .
191
+ 42 a rigger at work on ( tva ) douglas dam , tennessee , june 1942 a rigger is a person or company that specializes in the lifting and moving of extremely large or heavy objects , often with the assistance of a crane or derrick .
192
+ 9 there have been several reports of black stork , crane and flocks of vulnerable marbled teal .
193
+ 10 the name comes from the bird trana , which means crane .
194
+ 20 pygmies , a tribe of one and a half foot tall african men who rode goats into battle against migrating crane acephali ( greek akephalos , plural akephaloi , from a - , '' without '' , and kephalé , '' head '' ) are human without head , with their mouths and eyes being in their breasts .
195
+ 14 dinner in the sky is a belgian based novelty restaurant service which uses a crane to hoist its diners , table , and waiting staff 150 feet into the air .
196
+ 7 execution she was publicly hanged from a crane in neka , iran , on august 15 , 2004 .
197
+ 8 the aircraft were slung over the side by crane .
198
+ 33 thrust-collar type thrust-collar type mjts are used in applications where it is difficult to use threaded tensioners , such as on rolling mill where the joint would typically need to be tightened by crane wrenching .
199
+ 28 konecranes plc ( kci konecranes prior to 16 march 2007 ) is a finnish company , headquartered in hyvinkää , which specialises in the manufacture and service of crane and lifting equipment as well as the service of machine tool .
200
+ 39 riviera was purchased in february 1915 by the admiralty and she was modified by cunard at liverpool from 14 february to 7 april 1915 with a permanent , four-aircraft , hangar in the rear superstructure and a pair of crane were mounted at the rear of the hangar to hoist the seaplanes in and out out of the water .
201
+ 18 the object in question is actually a bird borrowed from the los angeles zoo , most likely a crane or an emu , one of several placed on the indoor set to give it a more realistic feel .
202
+ 4 the main products were crane and tackles , but also trolleybus and excavator .
203
+ 19 it was at beardmores that james spotted young engineering manager ian macgregor who broke a strike by driving a crane himself for two weeks .
204
+ 13 m113 fitter - armored recovery vehicle with hiab ( hydrauliska industri ab ) crane on hull roof .
205
+ 4 japan airlines : a crane logo , called tsurumaru .
206
+ 4 pelican , stork , crane and a variety of waterfowl are housed in large pens alongside tsavo .
207
+ 18 if this occurs then the player 's vehicle is hoisted back onto the track ( by a nearby crane ) which costs valuable time .
208
+ 3 the scaffold and crane - like structures represented by many constructivist architects are used for the finished forms of his designs and buildings .
209
+ 1 the crane which arrived to remove the monument from lihula could not enter the cemetery because of a crowd of protesting people .
210
+ 11 intermodal freight transport uses standardized containers , which are handled by crane .
211
+ 16 a catapult was fitted between the mainmast and no. 3 turret in mid-1933 , a collapsible crane was installed in a portside sponson , and the ships were equipped to operate two or three floatplanes , although no hangar was provided .
212
+ 33 bak mei emphasizes the movements of the tiger , but bak mei also uses the other four animal styles associated with the henan shaolin temple as well such as the tiger , the crane , the leopard , the snake and the dragon .
213
+ 21 some of the oldest serekhs consist of a striped or cross-hatched box , representing a palace or city , with a crane , scorpion , or other animal drawn standing on top .
214
+ 28 in the first method , longshoremen loaded the cargo into sacks , stacked the sacks onto pallet , and put the pallets into the cargo hold with a crane .
215
+ 14 unlike prokinesis , which is widespread in birds , rhynchokinesis is only known in crane , shorebird , swift and hummingbird .
216
+ 6 the workers were using an overhead crane , parked under the railway 's electric power lines .
217
+ 21 - miyagi prefecture no. 27 : hydraulic lock ( made in united kingdom , operating since 1908 ) and floating steam crane ( operated 1905 2008 ) , miike port .
218
+ 28 the oblast is noted for production of cars ( uaz ) , machine tool ( aviastar-sp and other ) , automatic circuit recloser , press-forging machines , electric crane motors , water sprinkler , and other machines .
219
+ 31 the most familiar modern type of portable buildings are designed so that one can be carried to or from site on a large lorry and slung on and off by a crane .
220
+ 3 they often featured crane - like attachments with magnets for picking up small cargo and storage boxes .
221
+ 32 they are designed to lift limited weights -- usually less than a ton , although some have a higher safe working load ( swl ) -- distinguishing them from most types of crane .
222
+ 99 zf products include driveline technology ( automatic , manual , servo , sequential manual , special transmission , driveline components , rubber-metal technology , transfer case , hybrid system ) chassis technology ( chassis components and modules , steering technology , suspension systems ) additional technologies ( electronic/software , diagnostic systems , precision plastic technology , lubricants ) axle systems and drops applications cars , trucks , buses & coaches , light commercial vehicle , off-road equipment , rail vehicles , helicopter , motorcycles , lift trucks , machine and system construction , test systems , civil mobile , crane , and special marine , military and agricultural vehicles and machines .
223
+ 9 bird man , with a large wingspan and a crane - like face .
224
+ 22 of these doodem , the five original anishinaabe doodem were the wawaazisii ( bullhead ) , baswenaazhi ( echo-maker , i.e. , crane ) , aan ` aawenh ( pintail duck ) , nooke ( tender , i.e. , bear ) and moozoonsii ( little moose ) , then these six miigis beings returned into the ocean as well .
225
+ 5 the port 's facilities include crane , large berth , and warehouse , but these facilities are not in good condition .
226
+ 26 the men wear blue jeans or slacks and hats , which are usually cowboy or ballcap styles , usually with a single eagle , hawk or crane feather in the hatband .
227
+ 3 a 10-ton overhead crane straddled the track .
228
+ 59 if so , it is interesting to note that the gondwanan sunbittern is most likely the closest living relative of the kagu , and these two may also be reasonably close to the mesites , yet other '' odd gruiforms '' from the southern hemisphere , but do not seem to be close to the gruiformes proper ( i.e. crane , rail and allies .
229
+ 4 he owned a construction crane operation , became president of the german bobsleigh society , and aided aviation historians of world war i. he died in munich on 29 july 1978 , the last living aviation recipient of the pour le merite .
230
+ 5 he is accompanied by a crane and a turtle , which are considered to be symbols of longevity .
231
+ 3 biography dwarf fighting crane in greenland born in skeninge in october 1490 .
232
+ 8 roney climbs to the top of a building crane and swings it into the spectre .
233
+ 20 the town is the site of the yuzuru no sato museum , which has an animation of urushiyama 's famous crane story , and an exhibition related to silk production , a major industry in the area until world war ii .
234
+ 7 rare birds have settled here including the crane and the black stork .
235
+ 9 the ornate bridge railings are decorated with carvings of crane and other animals .
236
+ 9 brand history the lufthansa logo , an encircled stylized crane in flight , was created in 1918 by otto firle .
237
+ 89 ; avifauna the avifauna recorded in the lake , particularly in the festive season when they gather in the early hours of the morning ( dispersed with human presence ) at the middle of the lake are : grebe ( podiceps ruficollis ) , common merganser -- mergus merganser , large cormorant ( phalacrocorax carbo ) , little cormorant ( phalacrocorax niger ) , common teal ( anascrecca ) , tufted duck ( aythya fuligula ) , white-breasted waterhen ( amaurornis phoenicurus ) , moorhen ( gallimlachorophy ) and crane brown amaurornisbi color .
238
+ 29 en 1993-3-2 : towers , masts and chimneys -- chimney en 1993-4-1 : silo en 1993-4-2 : tanks en 1993-4-3 : pipelines en 1993-5 : piling en 1993-6 : crane supporting structures eurocode 3 applies to the design of buildings and civil engineering works in steel .
239
+ 35 from the isotope analysis of carbon , nitrogen and oxygen in the teeth and bones the researchers found that richard 's diet included a lot of freshwater fish and exotic birds such as swan , crane and heron , and that he consumed a vast quantity of wine .
240
+ 26 certain levels also contain train or barge which run on a fixed track , and are used primarily for transportation , as well as a fixed-position crane that can move things via its hoisted platform .
241
+ 11 among the birds prized for their plumage are the marabout , crane , heron , blacks bird , parrot , jay and hummingbird of extraordinary brilliance , among insect the most numerous and useful is the bee , honey everywhere constituting an important part of the food of the inhabitants .
242
+ 11 it was a heavy industry , manufacturing railroad car , harbour crane and agricultural machinery .
243
+ 6 economy rzhev produces most of the crane used in constructing apartment buildings and shopping malls in moscow .
244
+ 9 it is given in a bag decorated with a crane and a turtle , which represent long life in japan .
245
+ 16 gathered crowd celebrated the fall of the statue ; its upper part was lifted using a crane , and broke off at the lower legs attached to the pedestal .
246
+ 3 a truck with crane and drawbar for pulling , enrailing and shunting trams in munich , germany .
247
+ 11 many of the latter type of arv had an a-frame or crane to allow the vehicle 's crew to perform heavy lifting tasks , such as removing the engine from a disabled tank .
248
+ 18 all portions of the national park are famous for being a resting place for tens of thousands of crane and geese .
249
+ 5 a catapult and a collapsible crane were fitted on the stern during the mid-1930s modernization , and the ships were equipped to operate three floatplane , although no hangar was provided .
250
+ 14 ( hispaniola , west indies ) gruiformes the group that includes modern rail and crane .
251
+ 60 public medical institute general hospital sister cities beppu , japan ( 1984.10.01 ) hammerfest , norway ( 1962.03.23 ) lianyungang , china ( 1992.11.01 ) changwon , south korea ( 1998.12.24 ) seodaemun-gu , south korea ( 2005.04.18 ) xiamen , china ( 2007.07.25 ) symbols of mokpo city flower - white magnolia city tree - loquats city bird - crane images file : fukuyama-cho in mokuho .
252
+ 22 previously galliformes new ralliformes rail and crake ( this was eventually changed back to the traditional inclusion in gruiformes ) new gruiformes crane new turniciformes button-quail etc. .
253
+ 13 the ship operated mitsubishi f1m biplane and aichi e13a1 monoplanes and used a crane mounted on her stern to recover them from the water .
254
+ 34 the name was replaced by kuressaare ( probably meaning '' island of the curonian people , '' with the name of the people , the kure , ultimately coming from the estonian kurg : crane ) in 1918 after estonia had declared its independence from bolshevist russia .
255
+ 31 during the 1933 -- 34 refit , the platforms were removed from the turrets and a catapult was installed on the roof of ` x ' turret , along with a crane to recover a seaplane .
256
+ 5 a special skip-carrying lorry or crane is used .
257
+ 25 after princess yamatohime-no-mikoto ( 倭姫命 ) moved the shrine of the sun goddess to its present location at ise , she came across a white crane in a swamp .
258
+ 21 during april -- may , recorded species include sea eagle , golden eagle , buzzard , red kite , falcon and crane .
259
+ 1 a crane at the surface removes the soil with a clamshell bucket .
260
+ 39 today , however , it is often described as a composite of many birds including the head of a golden pheasant , the body of a mandarin duck , the tail of a peacock , the legs of a crane , the mouth of a parrot , and the wings of a swallow .
261
+ 29 the model is now used in an attraction at disney 's hollywood studios cinematographer donald peterman suffered head injuries , a broken leg and broken ribs due to a crane accident on the film set in 1997 .
262
+ 8 he is a star god accompanied by a crane and a turtle , which are considered to be symbols of longevity , and also sometimes accompanied by a black deer .
263
+ 10 it also houses leopard as well as various species of crane , deer , duck , parrot , peafowl and pheasant .
264
+ 3 gripper -- a crane .
265
+ 22 she began working in the lenin shipyard in gdańsk , poland in 1950 , first as a welder , later as a crane operator .
266
+ 10 most commonly , they are placed in the gruiformes ( crane , rail and allies ) , but this has been disputed in more recent times .
267
+ 71 family : rallidae sora yellow rail , coturnicops noveboracensis ( a ) black rail , laterallus jamaicensis ( a ) clapper rail , rallus crepitans ( a ) king rail , rallus elegans ( c ) virginia rail , rallus limicola sora , porzana carolina spotted rail , pardirallus maculatus ( a ) purple gallinule , porphyrio martinica ( a ) common gallinule , gallinula galeata american coot , fulica americana crane order : gruiformes .
268
+ 26 ( ) trees that snapped in 2004 , the tree from snellville snapped about two-thirds of the way up while workers were attempting to use a crane to lift it from the ground to the roof .
269
+ 29 these include several species of duck , flycatcher , heron , plover , rails , and swallow , as well as one species of kingfisher and one species of crane .
270
+ 21 the camera cuts to show him screwing up a piece of green card into a ball which turns into an origami crane and flies away as he opens his hands .
271
+ 32 some of the birds endemic to the park are on the iucn and georgian red book list because they are verging on extinction in the area , including the black stork , crane and great white egret .
272
+ 10 he runs his family 's waiblingen - based truck - crane and towing business , occasionally getting personally involved in recovering crashed trucks .
273
+ 9 a new loading dock was also built and a crane was later provided .
274
+ 66 in prison , his life was spared at the insistence of roman karmen , the soviet propagandist who directed all the main sequences illustrating the battle , from the viet minh raising the red flag over general de castries 's bunker staged a few weeks after the siege , to the french union pow column marching from dien bien phu to the re-education camp ( a crane was used for the shooting ) , that are featured in вьетнам ( '' vietnam '' , 1955 ) .
275
+ 17 a spark caused by the flow of rf energy ( a high-frequency alternating current ) from the crane ( which act as antenna , exactly like the station 's mast radiator ) to other objects could trigger an explosion ) .
276
+ 16 industrial radio remote control today radio control is used in industry for such devices as overhead crane and switchyard locomotive .
277
+ 11 after eteläsatama was put solely to passenger traffic , the harbor crane and the track were dismantled in 1972 .
278
+ 8 they may incorporate the names of animals ( crane , for example ) , trees or flowers , natural phenomena ( seasons , wind , the moon ) , or personal characteristics ( '' quiet , '' '' peaceful '' ) , or may be based on buddhist teachings .
279
+ 27 the use of kangaroo wagons and wippenwagen remained restricted in the period from the 1960s to the 1980s , despite their utility in enabling horizontal cross-loading without crane , because at that time facilities for swap body cross-loading were still widely available in western europe .
280
+ 20 it was at parkhead forge that james spotted young engineering manager ian macgregor who broke a strike by driving a crane himself for two weeks .
281
+ 20 although its exact nature is unclear , the accounts of ancient historians seem to describe it as a sort of crane equipped with a grappling hook that was able to lift attacking ships partly out of the water , then either cause the ship to capsize or suddenly drop it .
282
+ 34 the industrial site became disused in the late 1990s and turned into a new high-end area , though some of the original buildings and artifacts have been kept , including a canal and a crane .
283
+ 5 she has a beautiful pet crane named '' shippu '' , which she later gives to motoko in the thirteenth volume after motoko finally defeats her .
284
+ 7 the generic name means '' like a crane '' in chinese .
285
+ 33 south korean athletes inbee park move fire to lee seung-yeop the torch was revealed in october 2013 , with the design motif based on the official bird of incheon metropolitan city , the crane , with the blue internal cylinder of torch signifying the sky and the ocean of incheon .
286
+ 25 david blaine stands on a pole for vertigo in the middle of bryant park in new york vertigo on may 22 , 2002 , a crane lifted blaine onto a 100-foot ( 30 m ) high and 22-inch ( 0.56 m ) wide pillar in bryant park , new york city .
287
+ 24 the objects included a dozen swords and scabbards , iron spearheads , a shield , ten bronze helmets and an iron bird ( a crane or swan is found on some lemovices items ) , 2 animal heads including a horse , one animal body in connection with the two hind legs , one foreleg , a cauldron , and seven carnyx ( a wind instrument of the iron age celts ) and including an almost complete war trumpet .
288
+ 9 elephant , whale , manatee , sacred ibis , crane , eagle , gyrfalcons , rhinoceros hornbill , cheetah , leopard , african wild dogs ( lycaon pictus ) , caracal , baboon , eland , meerkat , gibbon , orangutan , penguin , panda , polar bear , lion , giant pacific manta ray , and saltwater crocodile are among the animals he has filmed and photographed .
289
+ 16 white-tailed eagle , short-toed eagle , lesser spotted eagle , black kite , black stork , crane , black woodpecker , white-backed woodpecker and a lot of other rare birds breed here .
290
+ 7 the mps ships are self-sustaining , with crane to unload at sea or pierside .
291
+ 18 a collection of historical quarrying equipment is preserved within the country park , including a jaw crusher , crane and a stone saw , which was powered by a steam engine .
292
+ 2 bulldozer , crane , grader , excavator , dump truck , loaders , and backhoes all see extensive use by military engineers .
293
+ 1 the crane is a symbol of death in finnish literature .
294
+ 20 a notable exception is in records of traditional japanese falconry , where goshawks were used more regularly on goose and crane species .
295
+ 8 the company is concentrated on product high quality crane .
296
+ 137 there are regional programs for the conservation of endangered species : americas : species survival plan ssp ( association of zoos and aquariums aza , canadian association of zoos and aquariums caza ) europe : european endangered species programme eep ( european association of zoos and aquaria eaza ) australasia : australasian species management program asmp ( zoo and aquarium association zaa ) africa : african preservation program app ( african association of zoological gardens and aquaria paazab ) japan : conservation activities of japanese association of zoos and aquariums jaza south asia : conservation activities of south asian zoo association for regional cooperation sazarc south east asia : conservation activities of south east asian zoos association seaza challenges captive breeding techniques are usually difficult to implement for highly mobile species like some migratory birds ( e.g. crane ) and fishes ( e.g. hilsa ) .
297
+ 26 in 1934 the platforms were removed from the turrets and a catapult was installed on the roof of ` x ' turret , along with a crane to recover a seaplane .
298
+ 10 a distinctive trait of the gemini center towers are two crane located on the buildings ' top , which are used for cleaning the glass panes that cover most of the towers ' external surface .
299
+ 20 it is in fact a member of the gruiformes -- the order that includes the crake , rail , and crane , and a member of the genus grus .
300
+ 14 the shallow waters of the inlet are a major stopover for the migratory european crane .
301
+ 11 launching and recovery is accomplished with the assistance of a shipboard crane .
302
+ 17 the five original anishinaabe totems were wawaazisii ( bullhead ) , baswenaazhi ( echo-maker , i.e. , crane ) , aan ` aawenh ( pintail duck ) , nooke ( tender , i.e. , bear ) and moozwaanowe ( '' little '' moose - tail ) .
303
+ 28 roman technology a roman ballista pont du gard de architectura is important for its descriptions of many different machines used for engineering structures , such as hoists , crane , and pulleys , as well as war machines such as catapault , ballistae , and siege engine .
304
+ 30 the film 's title appears in the opening credits only in the form of a giant character , as would be used in a sign , being transported by a crane .
305
+ 13 dedicated to the study and conservation of the world 's 15 species of crane , the organization engages in conservation research , public education , and international conservation efforts .
306
+ 9 it was assembled from seven pieces with the largest crane available in ireland and is the tallest street sculpture in the world .
307
+ 34 split-pin lewis three-legged lewis roman three-legged lewis a lewis ( sometimes called a lewisson ) is one of a category of lifting devices used by stonemason to lift large stones into place with a crane , chain block , or winch .
308
+ 19 when operated , it moves at 2 miles per hour ; to move it around the streets requires 16 crane , six forklift truck , eight cherry picker and 250 crew .
309
+ 25 from there , they were brought in early morning hours through the holland tunnel to the construction site , and lifted into place by a crane .
310
+ 18 as a result important all-year round roosting and breeding sites have been created for bustard , duck and crane .
311
+ 39 the name cranberry derives from '' craneberry '' , first named by early european settlers in america who felt the expanding flower , stem , calyx , and petals resembled the neck , head , and bill of a crane .
312
+ 9 animals animals at the zoo include mandarin duck , crane , red panda , chimpanzee , hamadryas baboon , reptile , lion , tiger , tanuki ( raccoon dogs ) , badger , pheasant , love bird , zebra , giraffe , flamingo , camel , ruffed lemur , white-mantled black colobus , black-capped capuchin , swan , duck , kagu , penguin , wallaby , deer , eagle , owl , condor , bear , and tokyo bitterling .
313
+ 17 his business became the oldest family owned construction equipment distributor in the united states and the largest crane dealer in the southeast .
314
+ 71 once again , the story strays away from the established , albeit loose , continuity of the original spider-ham stories by altering the character 's origin and supporting characters , most notably in establishing peter porker as a natural-born pig bitten by a radioactive spider ( directly mirroring spider-man 's origin ) and altering his love interest ( a counterpart of mary jane watson ) from a water buffalo to a crane .
315
+ 22 in 1932 the platforms were removed from the turrets and a trainable catapult was installed on her quarterdeck , along with a crane to recover a seaplane .
316
+ 36 in the nearby cabbagetown area , a brick loft building ( well known for the fire that occurred there in 1999 , during its renovation from the fulton bag and cotton mills , in which the crane operator was rescue by helicopter during live tv news coverage ) lost part of its roof , and part of the top ( fifth ) floor .
317
+ 32 the history of the area as a shipyard is preserved ; the dry dock , many of the company buildings and even some of the shipbuilding equipment ( such as a large crane ) is still present .
318
+ 17 cena won the match and retained the wwe championship after pinning khali following an fu off a crane onto the arena floor .
319
+ 27 in the 18th and 19th centuries it was the busiest port in the world , with wharves extending continuously along the thames for , and over 1,500 crane handling 60,000 ship per year .
320
+ 16 a catapult was fitted between the mainmast and turret no. 3 in mid-1933 , a collapsible crane was installed in a portside sponson , and the ship was equipped to operate two or three floatplanes , although no hangar was provided .
321
+ 4 some lumber/timber yards use crane to move logs , and sprinklers to keep the logs moist .
322
+ 14 buffalo ) : the bpz3 armoured recovery vehicle includes both a bulldozer and a crane with integral winch , allowing it to approach damaged vehicles , even over rough and fought-over terrain , and tow them to safety .
323
+ 4 march 15 a construction crane falls on a residential building in manhattan , killing four people and injuring at least 17 .
324
+ 8 for this purpose , a 25 tonne capacity crane is fitted .
325
+ 18 it manufactures heavy-duty truck , bus , trolleybus , road tractor and semi-trailer for semi-trailer truck , and crane .
326
+ 4 during construction , a crane at the site fell onto eilat street below , killing two workers and injuring eight others .
327
+ 10 upstream of the manjeera lake , a large number of crane and barheaded geese .
328
+ 8 at this stage a small '' creeper '' crane was installed in each leg , designed to move up the tower as construction progressed and making use of the guides for the lifts which were to be fitted in each leg .
329
+ 18 cranes the hybrid technology developed for the locomotives is also being deployed for other applications , like container crane ( rtg ) used in port terminals ( trademarked '' ecopower '' ) .
330
+ 12 each immortal flew from his mountain home on the back of a crane .
331
+ 1 mobile crane were deployed at 21 : 27 to lift concrete slabs .
332
+ 22 animal life the trail is home to numerous forms of wildlife , among them : bird , such as blue herons , crane , woodpecker , red-tailed hawk , and peregrine falcon .
333
+ 8 in may 2009 , a part of the crane on the north tower collapsed after it was overloaded .
334
+ 7 ; auspicious birds and beasts : mandarin crane ( '' tsuru '' ) and turtle with trailing tail of algae ( minogame ) represent longevity and good fortune .
335
+ 23 there is a tiled goldfish pond against one wall of the living room , and a plaque above it with and image of crane .
336
+ 7 birds in the show includes owl , crane , hornbill , macaw , kookaburra , toucan , vulture , in an open air auditorium .
337
+ 22 fem is organised in product groups that reflect the various industries under the materials handling heading : conveyors for bulk handling , crane and lifting equipment , elevating equipment , intralogistic systems , industrial trucks , mobile elevating work platforms , and racking and shelving .
338
+ 32 author moons about cornflower-blue skies , frosty air to breathe in deeply , ice-flowers on winter window glass , snow to fall on the chest , birch trees , boundless snowfield , crane flying wedges , summarizing it all with the question : '' oh , dear homeland !
339
+ 41 in the 1990s they used a type of automatic mixture rebreather which is so heavy that on surfacing after a dive even a very physically fit naval diver preferred to remove the rebreather while still in the water and have it crane out separately .
340
+ 26 nebraska 30 january while crossing the great plains of nebraska and south dakota , bill witnesses one of the great wildlife spectacles - millions of migrating crane .
341
+ 11 as the instrument made a noise somewhat like that of a crane 's bill , the bird was called crotalistria , '' player on crotala '' .
342
+ 18 among migratory species : wild duck , hoopoe , red heron , egret , ash colored heron , crane , stork , kite and tit .
343
+ 19 other birds in the area include the peregrine falcon , piping plover , roseate spoonbill , long-billed curlew , crane , egret and the brown pelican .
344
+ 3 auk cock cormorant crane dove duck without beak or legs is called the merlette eagle , usually displayed , i.e. with wings spread alerion : eagle without beak or feet double-headed eagle falcon goose gull or seagull hawk heron magpie : otton de cazeneuve bore '' or , three magpies sable '' at falkirk .
345
+ 11 a mechane ( ; , mēkhanē ) or machine was a crane used in greek theatre , especially in the 5th and 4th centuries bc .
346
+ 12 originally , designers planned to make the main terminal resemble an origami crane from above , but this plan was abandoned due to cost .
347
+ 26 recent history cranes in the port of oakland one of the main limitations to growth was the inability to transfer containers to rail lines , all crane historically operating between ocean vessel and truck .
348
+ 8 among the animals , the gibbon and the crane were considered experts at inhaling the qi .
349
+ 44 the humid area of the circeo park includes four coastal salt lakes : paola , caprolace , monaci and fogliano , which are what remains of the pontine marshes and currently are home to a vast wildlife of aquatic birds ( cattle egret , crane , goose , northern lapwing , skylark , curlew ) , as well as to rare species such as the marsh turtle .
350
+ 6 marion 's last name is '' crane .
351
+ 21 its genus is presently monotypic and seems to be closely related to the similar genus allopyge , found in old world crane .
352
+ 88 fauna in general , animals that have typical habitat of the plateau , such as : european rabbit , tree squirrel , hedgehog , common vole , partridge , bustard , stork , little bustard , barn swallow , european robin , cuckoo , common nightingale , columbidae , eurasian magpie , duck , greylag goose , sparrow , perez 's frog , frog , lizard , montagu 's harrier , western marsh harrier , hen harrier , peregrine falcon , short-toed snake eagle , lesser kestrel , crane , pin-tailed sandgrouse , geoffroy 's bat , trout , common carp , crayfish , otter , shrew , leporidae , roe deer , wild boar , fox , gray wolf .
353
+ 18 mascot name : unitan artist : osamu tezuka the mascot of the kobe universiade is a red-crested white crane which is symbolic of japan .
354
+ 3 at last the crane agreed to try and , putting its long bill down the wolf 's throat , loosened the bone and took it out .
355
+ 5 lot polish airlines : a crane , originally designed by tadeusz gronowski in 1929 .
356
+ 17 her parents were erma ( née haines ) and cassius edwin fiste , who was the city crane operator .
357
+ 10 north central airlines : a duck singapore airlines : a crane silkair : a seagull .
358
+ 14 dennett contrasts theories of complexity that require such miracles with those based on '' crane '' , structures that permit the construction of entities of greater complexity but are themselves founded solidly '' on the ground '' of physical science .
359
+ 6 over the next two weeks a crane and wrecking ball were used to complete the demolition .
360
+ 3 up to 10,000 crane stop over on the reservoir and large flocks of larks and finches may be seen passing through .
361
+ 7 the airline 's logo was a stylised crane , designed by professor otto firle .
362
+ 25 there was no additional cable to allow trains to reach the depot ; instead , they were transferred to and from the running lines by crane operating over a pit at the govan workshops .
363
+ 3 iran uses a crane to jerk the noose upward violently .
364
+ 7 legend says that wiisagejaak ( the '' crane manidoo '' ) used to hunt for food , found '' big beaver '' that lived on the pipestone river and chased '' big beaver '' and its baby beaver to this area .
365
+ 3 paper cranes the crane , a traditional symbol of luck in japan , was popularized as a peace symbol by the story of sadako sasaki ( 1943 -- 1955 ) , a girl who died as a result of the atomic bomb exploded over hiroshima in 1945 .
366
+ 12 during her modernization in the 1930s , a catapult and a collapsible crane were fitted on the stern , and the ship was equipped to operate three floatplane , although no hangar was provided .
367
+ 5 the port 's facilities include crane , large berth , and warehouses , but these facilities are in universally poor shape .
368
+ 32 once the home has reached its location , the axles and the tongue of the frame are then removed , and the home is set on a concrete foundation by a large crane .
369
+ 8 darwin 's dangerous idea makes extensive use of crane as an analogy .
370
+ 15 a gib or gib-arm is the horizontal or near-horizontal beam used in many types of crane to support the load clear of the main support .
371
+ 4 bird species include the crane , which has only recently started to breed in the area , bittern , little grebe , red-necked grebe , teal , snipe and curlew .
372
+ 0 crane provide a well-known example .
data/crane/train.gold.txt ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 0
3
+ 1
4
+ 1
5
+ 1
6
+ 1
7
+ 1
8
+ 1
9
+ 0
10
+ 1
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 1
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 1
24
+ 0
25
+ 0
26
+ 1
27
+ 0
28
+ 0
29
+ 0
30
+ 1
31
+ 1
32
+ 1
33
+ 1
34
+ 0
35
+ 0
36
+ 0
37
+ 0
38
+ 0
39
+ 0
40
+ 1
41
+ 0
42
+ 1
43
+ 1
44
+ 1
45
+ 0
46
+ 0
47
+ 1
48
+ 0
49
+ 1
50
+ 0
51
+ 1
52
+ 0
53
+ 0
54
+ 0
55
+ 1
56
+ 1
57
+ 0
58
+ 0
59
+ 1
60
+ 1
61
+ 1
62
+ 1
63
+ 0
64
+ 1
65
+ 1
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 1
72
+ 0
73
+ 0
74
+ 1
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 1
84
+ 1
85
+ 1
86
+ 1
87
+ 1
88
+ 0
89
+ 0
90
+ 1
91
+ 1
92
+ 0
93
+ 0
94
+ 1
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 1
101
+ 1
102
+ 0
103
+ 0
104
+ 1
105
+ 0
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 0
112
+ 0
113
+ 1
114
+ 0
115
+ 1
116
+ 0
117
+ 0
118
+ 0
119
+ 1
120
+ 0
121
+ 1
122
+ 0
123
+ 1
124
+ 0
125
+ 1
126
+ 0
127
+ 1
128
+ 0
129
+ 1
130
+ 0
131
+ 0
132
+ 1
133
+ 1
134
+ 1
135
+ 0
136
+ 0
137
+ 0
138
+ 1
139
+ 1
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 1
146
+ 1
147
+ 0
148
+ 1
149
+ 1
150
+ 0
151
+ 1
152
+ 1
153
+ 0
154
+ 0
155
+ 1
156
+ 1
157
+ 1
158
+ 0
159
+ 0
160
+ 1
161
+ 0
162
+ 0
163
+ 1
164
+ 1
165
+ 0
166
+ 0
167
+ 0
168
+ 0
169
+ 1
170
+ 1
171
+ 0
172
+ 1
173
+ 0
174
+ 1
175
+ 0
176
+ 0
177
+ 0
178
+ 0
179
+ 1
180
+ 0
181
+ 1
182
+ 1
183
+ 0
184
+ 1
185
+ 0
186
+ 0
187
+ 0
188
+ 1
189
+ 0
190
+ 0
191
+ 0
192
+ 1
193
+ 1
194
+ 1
195
+ 0
196
+ 0
197
+ 0
198
+ 0
199
+ 0
200
+ 0
201
+ 1
202
+ 0
203
+ 0
204
+ 0
205
+ 1
206
+ 1
207
+ 0
208
+ 0
209
+ 0
210
+ 0
211
+ 0
212
+ 1
213
+ 1
214
+ 0
215
+ 1
216
+ 0
217
+ 0
218
+ 0
219
+ 0
220
+ 0
221
+ 0
222
+ 0
223
+ 1
224
+ 1
225
+ 0
226
+ 1
227
+ 0
228
+ 1
229
+ 0
230
+ 1
231
+ 1
232
+ 0
233
+ 1
234
+ 1
235
+ 1
236
+ 1
237
+ 1
238
+ 0
239
+ 1
240
+ 0
241
+ 1
242
+ 0
243
+ 0
244
+ 1
245
+ 0
246
+ 0
247
+ 0
248
+ 1
249
+ 0
250
+ 1
251
+ 1
252
+ 1
253
+ 0
254
+ 1
255
+ 0
256
+ 0
257
+ 1
258
+ 1
259
+ 0
260
+ 1
261
+ 0
262
+ 1
263
+ 1
264
+ 0
265
+ 0
266
+ 1
267
+ 1
268
+ 0
269
+ 1
270
+ 1
271
+ 1
272
+ 0
273
+ 0
274
+ 0
275
+ 0
276
+ 0
277
+ 0
278
+ 1
279
+ 0
280
+ 0
281
+ 0
282
+ 0
283
+ 1
284
+ 1
285
+ 1
286
+ 0
287
+ 1
288
+ 1
289
+ 1
290
+ 0
291
+ 0
292
+ 0
293
+ 1
294
+ 1
295
+ 0
296
+ 1
297
+ 0
298
+ 0
299
+ 1
300
+ 1
301
+ 0
302
+ 1
303
+ 0
304
+ 0
305
+ 1
306
+ 0
307
+ 0
308
+ 0
309
+ 0
310
+ 1
311
+ 1
312
+ 1
313
+ 0
314
+ 1
315
+ 0
316
+ 0
317
+ 0
318
+ 0
319
+ 0
320
+ 0
321
+ 0
322
+ 0
323
+ 0
324
+ 0
325
+ 0
326
+ 0
327
+ 1
328
+ 0
329
+ 0
330
+ 1
331
+ 0
332
+ 1
333
+ 0
334
+ 1
335
+ 1
336
+ 1
337
+ 0
338
+ 1
339
+ 0
340
+ 1
341
+ 1
342
+ 1
343
+ 1
344
+ 1
345
+ 0
346
+ 1
347
+ 0
348
+ 1
349
+ 1
350
+ 1
351
+ 1
352
+ 1
353
+ 1
354
+ 1
355
+ 1
356
+ 0
357
+ 1
358
+ 0
359
+ 0
360
+ 1
361
+ 1
362
+ 0
363
+ 0
364
+ 1
365
+ 1
366
+ 0
367
+ 0
368
+ 0
369
+ 0
370
+ 0
371
+ 1
372
+ 1
data/deck/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "deck_deck_(ship)", "1": "deck_deck_(building)"}
data/deck/test.data.txt ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 13 the defining feature of wallyisland is the relatively large size of the main deck .
2
+ 7 outside the breastwork , the ship 's deck was armored with three 1-inch mild steel plates .
3
+ 7 the nickel steel armor of her protective deck ranged from in thickness and the sides of her conning tower were thick .
4
+ 13 the armor of her gun turrets had a maximum thickness of and her deck ranged from in thickness .
5
+ 6 they sometimes unintentionally land on the deck of ships .
6
+ 17 brittle naiad may spread to new areas by stem fragments carried on a boat 's hull , deck , propeller , or trailer .
7
+ 19 approximately ninety percent of the ship is intact , including the entire hull as well as part of the deck and rail .
8
+ 23 since 1975 aker verdal has delivered 33 jackets as well as bridge , semisubmersible , flare tower , loading buoy , modules and deck as well as subsea template have been delivered .
9
+ 2 the protective deck armor ranged in thickness from and the conning tower was protected by of armor .
10
+ 66 due to an urgent need for craft such as sp-729 at brest , france , an order dated 14 october 1918 went out from washington , d.c . , to boston , directing the commandant of the 1st naval district to ready six section patrol boats -- (sp-1425) , (sp-695) , (sp-1795) , (sp-2365) , (sp-1284) , and sp-729 -- to be shipped to france as deck cargo along with spare parts to keep them operational .
11
+ 21 in queensland , highrise balconies gradually evolved to become wide outdoor living spaces of the quality of verandah and the back deck of queenslander houses .
12
+ 2 the protective deck was thick .
13
+ 15 the krupp cemented armor of her gun turrets had a maximum thickness of and her deck ranged from in thickness .
14
+ 19 her armored belt was thick in the central portion that protected her magazines and machinery spaces , and the deck was thick .
15
+ 3 some bulkheads and deck are fire-resistance rated to achieve compartmentalisation , a passive fire protection measure ; see firewall ( construction ) .
16
+ 15 armour protection of the yodo class consisted of 64 mm of krupp armour on the deck and 51 mm on the conning tower .
17
+ 15 cctv data taken on 8 : 40 a.m. showed students present and socializing on the deck .
18
+ 15 after two hours of fierce but one-sided fighting , and with several fatal casualties on deck , the artillery damaged , without ammunition , and having lost the telegraph and the ship 's engine , the portuguese ship surrender by lowering the national flag and raising a white flag .
19
+ 3 the ship 's deck was protected by armor thick .
20
+ 19 the one year apprentice training ( third year ) is aboard commercial vessel plying the international sea lane as deck or engine cadets .
21
+ 8 in the sixteenth century they usually had two deck , stern castles fore and aft , two to four masts with overlapping sails .
22
+ 1 the deck is supported by two under slung catenary cables .
23
+ 10 october 29 : flames from the fire shoot through the deck .
24
+ 1 her deck was thick .
25
+ 1 the deck armor was in two layers with a total thickness of 1 inch and separated by a layer of cloth or felt to better deflect the glancing hits expected .
26
+ 3 amidships , the deck was 1 inch thick , although it thinned to at the ends of the ship .
27
+ 31 tables and dining sets in places and seasons where eating outdoors is common and pleasant , it is common to find wooden dining tables and chairs in gardens , backyards , deck areas , patio , pool yards and sun room .
28
+ 14 in may 1918 , astrea was shipped across the atlantic ocean to france as deck cargo aboard the troop transport .
29
+ 12 the basic form is a low , rectangular box fixed to the deck or cabin top , fitted with interleaving vertical baffles .
30
+ 2 the armored deck was thick on the flat and was reinforced with an additional plate where it angled downwards to meet the armored belt .
31
+ 7 a deckhead is the underside of a deck in a ship .
32
+ 20 some of today 's awnings also offer accessories that can greatly increase the versatility and usefulness owners get from their deck or patio .
33
+ 7 her crew moved all the aircraft on deck forward to increase her headsail to further aid in control .
34
+ 8 in the 16th century they usually had two deck , stern castles fore and aft , two to four masts with overlapping sails .
35
+ 25 it was often possible to build cruisers which were faster and better all-round using this type of ship , which relied on a lighter armor deck to protect the vital parts of the ship ; however , by the late 1880s the development of rapid-fire cannon and high-explosive shells made the reintroduction of side armor a necessity .
36
+ 26 prior to the adoption of naval hammocks , sailors would often be injured or even killed as they fell off their berth or rolled on the deck on heavy seas .
37
+ 46 the journey got off to an inauspicious start when , during the transfer from the storage barge to the ship , there was a failure of the aft spreader ( part of the lifting mechanism ) and the tail of the vehicle dropped from just above deck height to the bottom of the hold .
38
+ 1 her deck was generally thick , but increased to over the machinery spaces , and over the steering gear .
39
+ 9 bites to humans in a corner of a garden deck incidence the redback spider is responsible for far more envenomations requiring antivenom than any other creature in australia .
40
+ 5 the thickness of the main deck ranged from .
41
+ 15 in shipbuilding , carlings are two pieces of timber laid fore and aft under the deck of a ship , from one beam to another , directly over the keel .
42
+ 14 a coal barge , the george washington parke custis , was cleared of all deck rigging to accommodate the gas generator and apparatus of balloons .
43
+ 8 covered with carvel planking , terminated with the deck .
44
+ 1 the deck armor was thick and met the sides of the ship at the top of the main armor belt .
45
+ 4 it consisted of two deck .
46
+ 5 she had a curved protective deck that was thick on the slope and on the flat .
47
+ 12 dimensions of a hull the camber is a measure of lateral main deck curvature in naval architecture .
48
+ 10 standing rigging is almost always between a mast and the deck , using tension to hold the mast firmly in place .
49
+ 14 these could be warships carrying their principal battery of carriage-mounted guns on a single deck or on two decks ( with further smaller carriage-mounted guns usually carried on the forecastle and quarterdeck of the vessel ) .
50
+ 2 the curved deck , as well as the roof of the casemate , was armored with of wrought iron .
51
+ 2 the curved deck was armored with of wrought iron .
52
+ 2 wien s deck armor was thick .
53
+ 1 the deck armor was thick .
54
+ 1 her deck was thick amidships , but reduced to at the ends of the ship .
55
+ 2 an armored deck protected the whole length and beam of the ship , with between and thick armor .
56
+ 4 the ship 's protective deck armor ranged in thickness from .
57
+ 19 congress approved the construction of a wooden superstructure that extended outward from the upstream side of the bridge 's deck to carry electric trolleys between georgetown and rosslyn in 1902 .
58
+ 15 the tack parrel will hold the tack into its horizontal position ( parallel to the deck ) as a snotter tensions a sprit .
59
+ 31 pattison was one of the 14 men chosen from eberle s complement to board karin before karin s crew could scuttle her and was the second american to reach karin s deck .
60
+ 32 despite the withering curtain of fire thrown up by her gunners , the plane crashed rednour s stern , starting fires and blowing a 10-foot ( 3-meter ) hole in her main deck .
61
+ 23 above the belt was a strake of armor thick that covered the side of the hull up to the height of the middle deck .
62
+ 41 the origin of the term is the implication that a crew member was around when the ship was being built and commissioned , and therefore has bragging rights to the '' ownership '' of one of the plank in the main deck .
63
+ 5 the thickness of the main deck was around the base of barbettes and the crown of the base of the rear conning tower .
64
+ 17 protection the armor scheme formed a raft around the vitals , protected by a waterline belt , deck and traverse bulkhead uniformly in thickness .
65
+ 24 on 16 august 1918 , arizonan moved to newport news , virginia , where she took on cargo , including 50 truck as a deck load , earmarked for the american expeditionary force in france .
66
+ 65 due to an urgent need for craft such as kangaroo at brest , france , an order dated 14 october 1918 went out from washington , d.c . , to boston directing the commandant of the 1st naval district to ready six section patrol boats -- (sp-1425) , (sp-695) , (sp-1795) , (sp-2365) , kangaroo , and sp-729 -- to be shipped to france as deck cargo along with spare parts to keep them operational .
67
+ 10 native hawaiian used the wood to make pola , the deck on a wa a kaulua ( double-hulled canoe ) .
68
+ 10 most boats had an upper salon with helm controls at deck level .
69
+ 1 the deck was thick .
70
+ 92 war bug was assigned to the 1st naval district and served in waters near boston , massachusetts , through the end of world war i. due to an urgent need for craft such as war bug at brest , france , an order dated 14 october 1918 went out from washington , d.c . , to boston directing the commandant of the 1st naval district to ready six section patrol boats -- (sp-1425) , (sp-695) , war bug , (sp-2365) , (sp-1284) , and sp-729 -- to be shipped to france as deck cargo along with spare parts to keep them operational .
71
+ 5 this extends from keel to deck .
72
+ 30 protection against torpedo boats was provided by six quick-firing ( qf ) 6-pounder hotchkiss guns and ten qf 3-pounder hotchkiss guns , most of which were mounted on the main deck in broadside positions .
73
+ 40 it is then passed through a cringle in the luff of the sail near the foot , but above the tack , and then led down on the other side to a fitting on the mast or boom or on deck .
74
+ 31 dutch galleon showing both a forecastle ( left ) and aftcastle ( right ) off mauritius the forecastle of queen elizabeth 2 forecastle ( - sul ) refers to the upper deck of a sailing ship forward of the foremast , or the forward part of a ship with the sailors ' living quarters .
75
+ 32 the group is known as '' ark shells '' because species such as arca have a large flat area between the umbones which , in an undamaged shell , somewhat resembles a deck , with the rest of the shell perhaps illustrating an ancient wooden boat such as noah 's ark is thought to have been .
76
+ 5 this work added an extra deck to the ship making it appear rather top heavy .
77
+ 18 so grace and her parents ran out as they were , and they finally got out on the deck .
78
+ 5 the thickness of the main deck was generally of nickel steel , but increased to around the base of the barbettes .
79
+ 3 on the working deck , there is a dry lab and a laboratory for wet work like sorting fish .
80
+ 1 the deck was three inches of yellow pine beneath of wrought iron .
81
+ 11 capacity was raised to 41,500 in 1953 when a partial second deck and a pressbox were added at a cost of $ 346,000 .
82
+ 7 if chengal is used as a boat deck , it is extremely durable and requires very little maintenance .
83
+ 13 the main battery turrets and the portions of the barbette above the main deck would have had between of armor plating , and the conning tower walls would have had armor thick and a roof of armor plates .
84
+ 10 it has a glass-fibre hull , with a low-profile glass-fibre deck , a bermuda rig aluminium mast , and an iron keel ( or keels ) .
85
+ 68 due to an urgent need for craft such as commodore at brest , france , an order dated 14 october 1918 went out from washington , d.c . , to boston , massachusetts , directing the commandant of the 1st naval district to ready six section patrol boats -- commodore , (sp-695) , (sp-1795) , (sp-2365) , (sp-1284) , and sp-729 -- to be shipped to france as deck cargo along with spare parts to keep them operational .
86
+ 5 the orlop is the lowest deck in a ship ( except for very old ships ) .
87
+ 1 the deck was heavily cambered to allow headroom for the crew on such a shallow draft and it consisted of a single iron plate thick .
88
+ 14 the casing of a submarine is a light metal structure , usually incorporating a deck , built-up and-over the upper surface of the vessel 's pressure hull .
89
+ 9 it is meant for leisure , originally on the deck of an ocean liner or cruise ship .
90
+ 20 the professional crew is housed in up into 6 double cabins and 2 master rooms within her 123 feet on deck and beam .
91
+ 31 instead the former first officer was detailed to a two-man party , working with william bakewell , to alter bits and scraps of salvaged ship 's canvas into a jury-rigged canvas deck to enable the sole remaining sail-worthy lifeboat of the ship 's company , the james caird , to navigate in the open sea .
92
+ 26 when the fight resumed on the morning of the 23rd , the castilians managed to set fire to some of them by spraying oil on their deck and rigging and then igniting it with flaming arrows .
93
+ 12 the armor of her gun turrets was six inches thick and her deck was thick .
94
+ 15 in sailing and boating , freeboard means the distance from the waterline to the upper deck level , measured at the lowest point of sheer where water can enter the boat or ship .
95
+ 1 her deck was thick and the bulkhead inside the ship were thick .
96
+ 2 monarch s deck armor was thick .
97
+ 1 her deck armor had a thickness of .
98
+ 3 the curved protective deck ranged in thickness from .
99
+ 3 the curved protective deck of mild steel had a thickness of along its centerline that increased to at its outer edges .
data/deck/test.gold.txt ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 0
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 1
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 0
19
+ 0
20
+ 0
21
+ 0
22
+ 1
23
+ 0
24
+ 0
25
+ 0
26
+ 0
27
+ 1
28
+ 0
29
+ 0
30
+ 0
31
+ 0
32
+ 1
33
+ 0
34
+ 0
35
+ 0
36
+ 0
37
+ 0
38
+ 0
39
+ 1
40
+ 0
41
+ 0
42
+ 0
43
+ 0
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 0
49
+ 0
50
+ 0
51
+ 0
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 1
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 0
78
+ 0
79
+ 0
80
+ 0
81
+ 1
82
+ 0
83
+ 0
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 0
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 0
data/deck/train.data.txt ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2 the armor deck was 1.5 inches thick on the flat and thick where it sloped down to meet the belt .
2
+ 33 hosted by paul lafrance , a contractor who owns cutting edge construction and design in pickering , ontario , each episode depicts lafrance and his team designing and building a unique and dramatic deck for a client .
3
+ 9 her armor consisted of belt and bulkhead thick , deck armor thick , and her conning tower and gun turrets were thick .
4
+ 10 this consisted of a full-length waterline armoured belt with armored deck above and below .
5
+ 0 deck - the top surface of the hull keeps water and weather out of the hull and allows the crew to operate the boat more easily .
6
+ 6 modern trawlers modern trawlers are usually deck vessels designed for robustness .
7
+ 10 the ship 's belt armor was thick , and the deck was thick .
8
+ 11 a cabin which protrudes above the level of a ship 's deck may be referred to as a '' deckhouse .
9
+ 8 the underwater tubes were protected underneath the armor deck , forward of the forward 12-inch magazine .
10
+ 13 the armor of their gun turrets had a maximum thickness of and their deck ranged from in thickness .
11
+ 1 the deck armor inside the central citadel ranged from 1 to 1.5 inches in thickness .
12
+ 2 the armored deck rested on the top of the waterline belt .
13
+ 22 binnacle with iron correcting spheres at each side and clinometer below compass a binnacle is a waist-high case or stand on the deck of a ship , generally mounted in front of the helmsman , in which navigational instruments are placed for easy and quick reference as well as to protect the delicate instruments .
14
+ 9 her armor consisted of belt and bulkhead thick , deck armor thick , and her conning tower had thick armor .
15
+ 3 the ship 's deck was only 25 mm thick over the machinery spaces and thick over the magazines and avgas storage tanks .
16
+ 14 on the evening of 14 april , in the wireless room on the boat deck , phillips was sending messages to cape race , newfoundland , working to clear a backlog of passengers ' personal messages that had accumulated when the wireless had broken down the day before .
17
+ 4 as designed the high-tensile-steel deck ranged from in thickness .
18
+ 6 each room has its own private deck and fireplace .
19
+ 2 her protective deck ranged from in thickness and the ship had a conning tower with walls thick .
20
+ 25 the voyage ' s station is themed as a 17th-century ship , with the basement being the cargo hold , the second level being the deck , and the ride operator 's controls being the '' captain 's quarters '' .
21
+ 4 thomas jefferson has of deck working space .
22
+ 14 foot controlled trolling motors require a specialized mounting bracket that bolts horizontally to the deck .
23
+ 22 the belt consisted of two strake of armor , high , that covered the sides of the hull up to the main deck and extended below the normal waterline .
24
+ 5 lower manhattan skyline from the deck of the ferry , 2010 in 1817 the richmond turnpike company began to run the first motorized ferry between new york and staten island , the steam-powered nautilus .
25
+ 28 a traveller on a smaller craft ( such as the popular single-handed '' laser '' sailboat ) might simply be a line attached to two points on the deck , along which another block runs .
26
+ 8 the training vessel were equipped with an additional deck including the accommodation for the cadet , a class room and a maritime library .
27
+ 14 as of february 2003 , governor r. m. mclane , her deckhouse gone but deck still visible , rested partially submerged on the harbor bottom next to the pier of the downtown sailing center on the grounds of the baltimore museum of industry at baltimore , maryland .
28
+ 6 a flared hull typically has a deck area larger than its cross-sectional area at the waterline .
29
+ 2 the upper deck was thick in two layers .
30
+ 20 it is considered a sister series to decked out , and like decked out , stars paul lafrance and his deck building crew .
31
+ 5 the flat portion of the deck armor was thick and four inches thick where it sloped down to the bottom of the armor belt .
32
+ 14 kline , crawling through a small overhead hatch and worming his way along the deck under a hail of shells and machine-gun fire , opened a large hatch and assisted 42 men to safety .
33
+ 3 komintern s armored deck and her casemates were thick .
34
+ 20 approximately 33 meters long and 7 wide , this yacht has been designed with two alternative versions for the main deck and can carry 20 people , crew included .
35
+ 10 the casemates protecting the secondary armament were thick and the deck armor was in thickness .
36
+ 37 this battleship would have had a length of and a beam , two quad / 55 turrets forward , three quad dual purpose ( dp ) turrets aft , a top speed , belt armor , and deck armor .
37
+ 1 the deck armor would have had a total thickness of .
38
+ 23 construction and commissioning sand lance under construction at portsmouth naval shipyard at kittery , maine , with temporary safety railings rigged around her deck .
39
+ 4 the ship 's armored deck was thick .
40
+ 15 modern military in modern amphibious warfare usage , a well dock , is a hangar-like deck located at the waterline in the stern of some amphibious warfare ship .
41
+ 32 they were also adapted to the increasing maritime trade : from 200 tons capacity in the 15th century to 500 , they become impressive in the 16th century , having usually two deck , stern castles fore and aft , two to four masts with overlapping sails .
42
+ 21 description it is an , bronze statue of a fisherman dressed in oilskins standing braced at the wheel on the sloping deck of his ship .
43
+ 12 dimensions of a hull the sheer is a measure of longitudinal main deck curvature , in naval architecture .
44
+ 4 she has a helicopter deck served by a stores lift and is capable of conducting helicopter replenishment .
45
+ 7 fingal was cut down to her main deck and large wooden sponson were built out from the sides of her hull to support her casemate .
46
+ 24 the u-boat absorbed the full impact of at least two direct hits ; two depth charges straddled the submarine and two others struck her deck .
47
+ 11 it is used in the manufacture of outdoor furniture , boat deck , and other articles where weather resistance is desired .
48
+ 32 sleeping porch in the main house of the eleanor roosevelt national historic site the restored sleeping porch of heublein tower in talcott mountain state park , connecticut a sleeping porch is a deck or balcony that is screened and furnished for sleeping in the warmer months .
49
+ 1 the deck armor was thick and the conning tower was protected by 6 to 10 inches of armor .
50
+ 23 oakum is a preparation of tar fiber used in shipbuilding for caulking or packing the joints of timbers in wooden vessels and the deck planking of iron and steel ships , as well as cast iron pipe plumbing applications .
51
+ 3 the enclosed walkway deck was constructed of laminated veneer lumber and steel bar trusses .
52
+ 11 during the voyage , from the wireless room on the boat deck , bride and phillips sent out passengers ' personal messages and received iceberg warnings from other ships .
53
+ 4 description right elevation , deck plan , and hull section as depicted in brassey s naval annual of 1896 .
54
+ 4 protection apollo s armored deck ranged from in thickness and her conning tower was thick .
55
+ 1 the deck armor was thick and the conning tower was protected by six inches of armor .
56
+ 17 military career brinkmann joined the german navy as an enlisted member in 1976 , serving on the deck crew of ships in the 7th fast attack squadron ( 7 .
57
+ 22 while serving aboard the during the joint expedition against franklin , barton extinguished an ignited howitzer shell which had fallen onto the deck .
58
+ 5 the khasan possessed an armored deck was 40 mm thickness amidships and 25 mm of protection at the fore and aft .
59
+ 7 the barbettes were unarmored , but the deck was thick .
60
+ 40 hms scott ( j79 ) was a ( officially , '' fleet minesweeping sloop '' ) of the british royal navy completed as an unarmed survey ship with an enlarged bridge and a large chart room abaft the extended forecastle deck .
61
+ 39 development of the quick-firing gun meant that an upper belt of armor was necessary and the weight required was gained by shortening the waterline armor belt , which left the ships ' ends protected only by the sloping armor deck .
62
+ 26 internally , the term was coined by then-wizkids communications director jason mical to describe the game where players assemble ships from hull , masts , and deck pieces punched out of from credit card - like plastic ( polystyrene ) .
63
+ 23 naval architecture inside of a cofferdam on a vessel a cofferdam may also refer to an insulating space between two watertight bulkhead or deck within a ship .
64
+ 17 these , however , were spigot - launched , placing considerable strain on the launching vessel 's deck , whereas mousetrap was rocket-propelled .
65
+ 35 underway again on 1 november 1918 bound for france , berwyn encountered much heavy weather along the way , shipping heavy seas over the after part of the ship that resulted in some of the deck cargo being jostled adrift by the action of the waves .
66
+ 27 they came in small versions as fishing canoes - anak bedar ( malay to english : child ) and were built as big as 90 feet over deck ( lod ) .
67
+ 7 this belt extended down from the lower deck .
68
+ 14 the cylindrical turrets were protected by eight layers of wrought iron plates above the deck .
69
+ 8 on a court design flat-bottomed , without a deck , are collected from boards .
70
+ 26 the saintoise ( ; antillean creole : sentwaz ) or canot saintois ( literally : dinghy from les saintes ) is a fishing boat without a deck , traditionally maneuverable with the sail or the ream .
71
+ 4 the greatest thickness of deck armor was .
72
+ 14 the armor of her main gun turrets had a maximum thickness of and her deck ranged from in thickness .
73
+ 5 her upper side had a deck wide and a hatch with three glazed portholes in diameter and thick glass blocks .
74
+ 10 additionally , the stage was set up to resemble the deck of a ship .
75
+ 33 at 19 : 43 , about 11 minutes after the initial radar contact , turner s lookouts made visual contact with what proved to be a german submarine running on the surface , deck awash , at about distance .
76
+ 1 the deck armor was to be thick and an additional steam engine would be necessary to rotate the turrets and run the ventilation fans .
77
+ 26 the main controls cabin : with a semicircular head on via della ghiacciaia , with porthole window on the inner side and the third floor the deck with a full-length windows , as a control tower for the rails .
78
+ 48 general specifications hull : steel hull , aluminum superstructure fuel : water : designer : espen oeino interior designer : marco zanini stylist : espen oeino features elevator serving all four decks leisure platform with jacuzzi a gym located centrally under the mast helipad on the upper aft deck servicing a helicopter painted in colors matching the yacht .
79
+ 18 making a fibreglass hull from a private or impulse association mould and adding plywood and/or fibreglass bulkheads and deck .
80
+ 10 products the main product areas for kongsberg maritime are : deck systems includes complete seismic back-deck systems , seismic cable control , marine and offshore cranes and helideck monitoring .
81
+ 18 the harvey armor belt of the gueydon - class cruisers extended from below the waterline to the main deck .
82
+ 15 while carrier aircraft had previously lacked a bomb capable of penetrating a battleship 's thick deck armor , it was hoped that the recently developed armour-piercing bomb would be able to pierce at least the first layer of tirpitz s armor if they were dropped from an altitude of or higher .
83
+ 3 the flat protective deck was positioned at the upper edge of the belt on both ships and was thick and consisted of two layers of mild steel .
84
+ 14 her shape is that of an efficient cargo carrier , and her rigging and deck arrangement are likewise authentic .
85
+ 51 there are two varieties of the weighted rudder , in the first of which the weight , usually lead , is fixed to the edge of the rudder , while in the second the weight , usually a ball of lead , is made to run on the tiller above the deck , so that it can be placed further forward or aft , according to the force needed to overcome the influence of the wind .
86
+ 32 many buildings with flat roof have hatches that provide access to the roof ; on ship , hatches -- usually not flush , and never called trapdoors -- provide access to the deck .
87
+ 9 her armor consisted of belt and bulkhead thick , deck armor thick , and her conning tower , gun turrets and cupolas were thick .
88
+ 2 the armored deck was outside the citadel and 2 inches thick inside it .
89
+ 2 the armor deck was flat and located at the upper edge of the main belt .
90
+ 66 due to an urgent need for craft such as cossack at brest , france , an order dated 14 october 1918 went out from washington , d.c . , to boston , directing the commandant of the 1st naval district to ready six section patrol boats -- (sp-1425) , cossack , (sp-1795) , (sp-2365) , (sp-1284) , and sp-729 -- to be shipped to france as deck cargo along with spare parts to keep them operational .
91
+ 18 like a center console boat , it is mostly used for fishing and has a full length primary deck or cockpit but also has a small cabin ( cuddy ) for berths and a head in the center of the boat in front of the console .
92
+ 37 princes wharf also contains the largest apartment of new zealand , a luxury residence built for one of the wharf 's developers with 1,061 m ² of internal floor space and decks of 416 m ² of deck space .
93
+ 12 reliance in drydock to save weight , she was completely unfinished below deck , with exposed frames .
94
+ 54 she is very brave and feels that she should be part of the action , a fact that is evident in the third revolution book , the continental risque , when the charlemagne is fighting a british man-o-war , and isaac asks her to go below to protect her , and she stays on deck and shoots at the british sailors with a pistol instead .
95
+ 6 stefani is first shown below the deck of a pirate ship , dancing on a table and singing to the song .
96
+ 12 the upper strake of armor was thick and extended to the upper deck .
97
+ 29 on a ship , the function of a porthole , when open , is to permit light and fresh air to enter the dark and often damp below - deck quarters of the vessel .
98
+ 67 svg signal flag x ( xray ) '' stop carrying out your intentions and watch for my signals '' normally , the pilot joins an incoming ship prior to the ship 's entry into the shallow water at the designated '' pilot boarding area '' via helicopter or pilot boat and climbs a pilot ladder sometimes up to 40 feet ( ~ 12 metres ) to the deck of the largest container and tanker ships .
99
+ 3 the ship 's deck was protected by iron plates one inch thick .
100
+ 24 in addition sliding glass doors are commonly used in some regions as doors between the interior rooms of a home and a courtyard , deck , balcony , patio , and a garden , backyard , barbecue or swimming pool area .
101
+ 0 deck -- floor or surface of the earth ; to punch or knock down with one blow .
102
+ 2 the armor deck was thick ; over the central battery it was a single plate , but elsewhere it consisted of a plate over two plates .
103
+ 6 the awning framework of all sunsetter deck and patio models mount directly onto the home using wall or soffit brackets and can be installed on every kind of siding .
104
+ 12 the most widespread use of wpcs in north america is in outdoor deck floors , but it is also used for railings , fences , landscaping timbers , cladding and siding , park bench , molding and trim , window and door frames , and indoor furniture .
105
+ 13 they were well-streamlined , having no external ballast tanks , casing , or deck gun , and a streamlined spindle - shaped hull of circular cross-section ( not reproduced until the -class ) which tapered sharply towards the stern and allowed only for a single screw .
106
+ 13 built of traditional plank-on-frame wooden construction , the sloop is in length on deck , in beam and can hold up to 70 tons of cargo .
107
+ 11 these were located in a broadside pattern over a two - deck battery amidships -- this was the area of the ship least affected by its motion , and made for a very stable gun platform .
108
+ 21 in june , mr. fuji , yokozuna 's manager , challenged all american athletes to attempt to bodyslam yokozuna on the deck of the uss intrepid .
109
+ 20 these are secured at the lower end to the keel or center keelson and at the upper ends to the deck beams .
110
+ 5 the flat portion of the deck armor was thick and thick where it sloped down to the sides of the ship .
111
+ 2 budapest s deck armor was thick .
112
+ 12 on the same boat , a foresail tack is clipped to the deck and forestay .
113
+ 9 both parts of the vessel are hinged at the deck and operated by hydraulic cylinders .
114
+ 3 the mass and deck space required to carry a large number of cannon made oar-based propulsion impossible and ships came to rely primarily on sail .
115
+ 14 floodability is reduced by dividing the volume of the hull into watertight compartments with deck and bulkhead ( which also increase the strength of ships ) , use of double bottom , and by other means .
116
+ 18 retvizan had a complete double bottom that extended up the side to the lower edge of the armor deck .
117
+ 7 the barbettes were unarmored , but the deck was protected by of armor .
118
+ 1 the deck was heavily cambered to allow headroom for the crew on such a shallow draft and it consisted of iron plates thick .
119
+ 1 the deck and turret roof armor proved to be too thin , and the structure supporting the side armor was not strong enough to withstand the shock of impact from heavy shells .
120
+ 13 renown was the first british battleship to be built with a sloped armored deck behind the main belt as was commonly used on british protected cruiser .
121
+ 3 the ship 's deck was thick over the machinery spaces and thick over the magazines and avgas storage tanks .
122
+ 7 layout and facilities within her length on deck and beam she 's divided into three cabins .
123
+ 6 the term is a generalization of deck as found on ships .
124
+ 1 the deck was to be above the waterline and protected by of armor .
125
+ 6 typically , it is a wooden deck near a hiking trail that provides the hikers a clean and even place to sleep .
126
+ 12 her armor consisted of belt , bulkhead and gun turrets thick , deck armor thick , and her conning tower was thick .
127
+ 1 the deck had a maximum thickness of over the engine rooms , boilers , and the steering gear .
128
+ 1 the deck consisted of two layers of plating which increased to three layers above the boilers .
129
+ 3 the ship 's deck and the roof of the casemate was protected with of wrought iron .
130
+ 9 in addition , this gun was employed as a deck - mounted anti-aircraft weapon in at least some of the mas torpedo boat .
131
+ 18 for example , san francisco 's golden gate bridge , completed in 1937 , originally used a concrete deck .
132
+ 8 the ship was lightly protected by an armor deck that consisted of two layers of plates .
133
+ 10 her crew had to construct a cofferdam across the main deck to stop the flooding .
134
+ 7 above this porch is the second-storey gallery deck that extends from the women 's gallery .
135
+ 3 above the main deck , her armor was to be thick .
136
+ 4 it also has a deck with benches for easy gatherings and a basketball hoop .
137
+ 38 she was the last royal navy ironclad to be built which had a propeller that could be hoisted out of the water to reduce drag when she was under sail , and the first to have an armored deck .
138
+ 27 vernon county served as a floating warehouse wherein 600 ton of ammunition , plus non - ordnance support material , could be stowed in the capacious tank deck area .
139
+ 18 on a boat or fpso , it is the part of the hull between the waterline and the deck .
140
+ 5 the modernized carriers with reinforced deck and the very large could also handle the savage .
141
+ 1 the deck and hull that support the mast need to be specially designed for the installation of an unstayed mast .
142
+ 1 the deck armor ranged in thickness from .
143
+ 20 the protected cruiser is a type of naval cruiser of the late 19th century , so known because its armour deck offered protection for vital machine spaces from fragments caused by exploding shells above .
144
+ 24 stays are ropes , wires , or rods on sailing vessels that run fore-and-aft along the centerline from the masts to the hull , deck , bowsprit , or to other masts which serve to stabilize the masts .
145
+ 5 it was built on a deck and a lift was provided to move wagons down to warehouses below .
146
+ 1 the deck planks are of teak wood and must be replaced every three years .
147
+ 16 during the 1980s and 1990s , the structure housed a playground on the top and '' deck '' level , seafood restaurants , a cinema on other floors above ground levels ; the department store yaohan on ground and basement level , and an indoor family theme park ( ) with an arcade game center and a roller skating rink on lower basement level .
148
+ 20 they use handheld sony hvr-z5u and hvr-z7u hdv cameras to shoot most of the series ( one on the main deck , one in the wheelhouse ) .
149
+ 15 a full-length veranda , with shed roof supported by plain wooden pillars and a concrete deck wraps around the eastern ( front ) and north facade .
150
+ 1 the deck fore and aft of the casemate was also protected by '' t-rails '' .
151
+ 24 watertender second class tollberg , although fatally scalded by high-temperature steam , painfully climbed up the fire room ladder and emerged on the main deck through a which had been blown open by the detonation .
152
+ 17 fifteen were mounted on the broadside and two guns were placed in pivot mounts on the upper deck to serve as chase gun .
153
+ 9 in the video , the band perform on the deck of the ms ocean chie , a handysize bulk carrier .
154
+ 3 there was one deck , of wood , and a bowsprit .
155
+ 33 historically , a plankowner in the united states navy and united states coast guard , or his widow , could petition the naval historical center 's curator branch for a piece of the deck when the ship was decommissioned .
156
+ 12 first , their primary vehicle for space travel was the two - deck , nuclear powered jupiter 2 flying saucer spacecraft .
157
+ 5 the thickness of the lower deck was .
158
+ 14 also amidships to port are a large refrigerator and freezer and access to the deck through the galley above .
159
+ 26 an elevator ( lift in british english ) is a type of vertical transport equipment that efficiently moves people or goods between floors ( levels , deck ) of a building , , or other structure .
160
+ 6 the khasan class possessed an armored deck was 40 mm thickness amidships and 25 mm of protection at the fore and aft .
161
+ 15 experienced wreck divers -- more advanced divers can explore the propeller , conning tower and deck areas .
162
+ 22 amongst the changes made , her bridge was reconstructed and the fore funnel removed , probably to reduce the weight on the deck .
163
+ 33 in these , his first design , he perpetuated the worst feature of the designs by his predecessor , sir william white , by placing the secondary armament of guns in embrasure a deck below the main armament which meant that the guns were inoperable in anything more than a dead calm sea .
164
+ 2 the protective deck was thick and ran the full length of the ship .
165
+ 5 the flat portion of the deck armor was thick and thick amidships where it sloped down to the bottom of the armor belt .
166
+ 5 the armor plates of the deck and paddle housing were thick .
167
+ 8 the hip roof was topped with a balustraded deck .
168
+ 6 it was formed by the armored deck , the waterline belt and the transverse bulkhead .
169
+ 5 the breadth at the broadest deck , was just over 46 feet and her draft was twenty-six feet at her arrival in dartmouth .
170
+ 21 design layout as shown in brasseys naval annual 1888 the hull of the naniwa - class cruiser was a typical flush deck with high freeboard to improve seaworthiness .
data/deck/train.gold.txt ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0
2
+ 1
3
+ 0
4
+ 0
5
+ 0
6
+ 0
7
+ 0
8
+ 0
9
+ 0
10
+ 0
11
+ 0
12
+ 0
13
+ 0
14
+ 0
15
+ 0
16
+ 0
17
+ 0
18
+ 1
19
+ 0
20
+ 0
21
+ 0
22
+ 0
23
+ 0
24
+ 0
25
+ 0
26
+ 0
27
+ 0
28
+ 0
29
+ 0
30
+ 1
31
+ 0
32
+ 0
33
+ 0
34
+ 0
35
+ 0
36
+ 0
37
+ 0
38
+ 0
39
+ 0
40
+ 0
41
+ 0
42
+ 0
43
+ 0
44
+ 0
45
+ 0
46
+ 0
47
+ 0
48
+ 1
49
+ 0
50
+ 0
51
+ 1
52
+ 0
53
+ 0
54
+ 0
55
+ 0
56
+ 0
57
+ 0
58
+ 0
59
+ 0
60
+ 0
61
+ 0
62
+ 0
63
+ 0
64
+ 0
65
+ 0
66
+ 0
67
+ 0
68
+ 0
69
+ 0
70
+ 0
71
+ 0
72
+ 0
73
+ 0
74
+ 0
75
+ 0
76
+ 0
77
+ 1
78
+ 0
79
+ 0
80
+ 0
81
+ 0
82
+ 0
83
+ 0
84
+ 0
85
+ 0
86
+ 0
87
+ 0
88
+ 0
89
+ 0
90
+ 0
91
+ 0
92
+ 1
93
+ 0
94
+ 0
95
+ 0
96
+ 0
97
+ 0
98
+ 0
99
+ 0
100
+ 1
101
+ 0
102
+ 0
103
+ 1
104
+ 1
105
+ 0
106
+ 0
107
+ 0
108
+ 0
109
+ 0
110
+ 0
111
+ 0
112
+ 0
113
+ 0
114
+ 0
115
+ 0
116
+ 0
117
+ 0
118
+ 0
119
+ 0
120
+ 0
121
+ 0
122
+ 0
123
+ 0
124
+ 0
125
+ 1
126
+ 0
127
+ 0
128
+ 0
129
+ 0
130
+ 0
131
+ 1
132
+ 0
133
+ 0
134
+ 1
135
+ 0
136
+ 1
137
+ 0
138
+ 0
139
+ 0
140
+ 0
141
+ 0
142
+ 0
143
+ 0
144
+ 0
145
+ 1
146
+ 0
147
+ 0
148
+ 0
149
+ 1
150
+ 0
151
+ 0
152
+ 0
153
+ 0
154
+ 0
155
+ 0
156
+ 0
157
+ 0
158
+ 0
159
+ 1
160
+ 0
161
+ 0
162
+ 0
163
+ 0
164
+ 0
165
+ 0
166
+ 0
167
+ 1
168
+ 0
169
+ 0
170
+ 0
data/digit/classes_map.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"0": "digit_numerical_digit", "1": "digit_digit_(anatomy)"}
data/digit/test.data.txt ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 13 numbers ( both cardinal and ordinal ) in names are often represented by digit rather than initial letters : as in 4gl ( fourth generation language ) or g77 ( group of 77 ) .
2
+ 13 selected 7-digit numbers ( 1,000,000 -- 9,999,999 ) 1,000,003 -- smallest 7 - digit prime number 1,046,527 -- carol number 1,048,576 = 2 20 ( power of two ) , 2,116 - gonal number , an 8,740-gonal number and a 174,764-gonal number , the number of byte in a mebibyte , the number of kibibyte in a gibibyte , and so on .
3
+ 14 it is notable for having chicks that possess claw on two of their wing digit .
4
+ 3 toes are the digit of the foot of a tetrapod .
5
+ 15 in mathematics and computer science , truncation is the term for limiting the number of digit right of the decimal point , by discarding the least significant ones .
6
+ 25 therefore , when a vulgar fraction with 7 in the denominator is converted to a decimal expansion , the result has the same six - digit repeating sequence after the decimal point , but the sequence can start with any of those six digits .
7
+ 22 it is rarely used in mathematics because it is indistinguishable from the latin letters o , o and easily confused with the digit 0 .
8
+ 7 in elementary arithmetic a carry is a digit that is transferred from one column of digits to another column of more significant digits during a calculation algorithm .
9
+ 22 when all of the player 's lives are exhausted , a '' number match '' screen appears with a random 3 - digit number in 50-base increments ( 100 , 150 , 200 , 250 , and so on ) .
10
+ 4 these four or five digit codes are a standardized system intended to aid checkout and inventory control in produce markets .
11
+ 10 bit bit is a representation of a bit ( binary digit ) , and as such is only capable of providing ( 0,1 ) answers to any question , through which it managed to convey various emotions .
12
+ 13 a googol is the large number 10 100 ; that is , the digit 1 followed by 100 zeroes : the term was coined in 1938 by 9-year-old milton sirotta , nephew of american mathematician edward kasner .
13
+ 30 the word '' hand '' is sometimes used by evolutionary anatomists to refer to the appendage of digits on the forelimb such as when researching the homology between the three digit of the bird hand and the dinosaur hand .
14
+ 4 in a rbr , digit are pairs of bits , that is , for every place , a rbr uses a pair of bits .
15
+ 14 the numbers of lenin and stalin statues were to be the tens and ones digit , respectively , of a number that they then had to tell the bookstore manager ; if incorrect , a 10 minute penalty would be issued before another guess could be made .
16
+ 12 the reticulated leaf frog ( phyllomedusa ayeaye ) has a single opposed digit on each fore foot and two opposed digits on its hind feet .
17
+ 16 the simplest sequential system is probably a flip flop , a mechanism that represents a binary digit or '' bit '' .
18
+ 12 data is encoded by assigning a bit pattern to each character , digit , or multimedia object .
19
+ 3 the english word digit as well as its translation in many languages is also the anatomical term for fingers and toes .
20
+ 20 the earliest of these were for in-band signaling between switching centers , where long-distance telephone operators used a 16 - digit keypad to input the next portion of the destination telephone number in order to contact the next downstream long-distance telephone operator .
21
+ 22 consider a number n ) 0 in base b ≥ 2 , where it is written in standard notation with k +1 digit a i as : with , as usual , 0 ≤ a i ( b for all i and a k ≠ 0 .
22
+ 10 decimal palindromic numbers all numbers in base 10 with one digit are palindromic .
23
+ 42 word-medial separator in finnish and swedish , the colon can appear inside words in a manner similar to the apostrophe in the english possessive case , connecting a grammatical suffix to an abbreviation or initialism , a special symbol , or a digit ( e.g. , finnish usa : n and swedish usa : s for the genitive case of '' usa '' , finnish % : ssa for the inessive case of '' % '' , or finnish 20 : een for the illative case of '' 20 '' ) .
24
+ 18 more formally , a 10-adic number can be defined as where each of the a i is a digit taken from the set -lcb- 0 , 1 , ... , 9 -rcb- and the initial index may be positive , negative or 0 , but must be finite .
25
+ 8 graduation in primary school students start with single digit arithmetic exercises .
26
+ 24 similarly , the magnitude of the largest normal number in a format is given by where p is the precision of the format in digit and emax is ( emin ) +1 .
27
+ 10 it used bi-quinary coded decimal arithmetic with four bits per digit , allowing 11-digit signed numbers .
28
+ 14 most often , the delivery point is added , usually being the last two digit of the address or po box number .
29
+ 6 norwegian postal codes are 4 - digit codes , known in norwegian as postnummer ( literally '' post number '' ) .
30
+ 10 some older computers ( decimal computer ) , were decimal digit - addressable .
31
+ 10 base b = 10 : the unit is called decimal digit , hartley , ban , decit , or dit , and is equal to log 2 10 ( ≈ 3.322 ) bits .
32
+ 13 some players , such as backwell and chick have opted for amputation of digit in a bid to extend their playing careers and continue to mark the ball .
33
+ 21 other genera , such as neoseps , have reduced limbs , lacking forelegs , and with fewer than five toe ( digit ) on each foot .
34
+ 19 characters and strings a character type ( typically called '' char '' ) may contain a single letter , digit , punctuation mark , symbol , formatting code , control code , or some other specialized code ( e.g. , a byte order mark ) .
35
+ 5 some displays can show only digit or alphanumeric characters .
36
+ 29 in mathematics , a primeval number is a natural number n for which the number of prime number which can be obtained by permuting some or all of its digit ( in base 10 ) is larger than the number of primes obtainable in the same way for any smaller natural number .
37
+ 4 here are the final digit strings for each of the three calculations : binary digits of pi from five trillion minus three to five trillion seventy-six ( completed august 30 , 1998 ) : binary digits of pi from forty trillion minus three to forty trillion sixty-four ( february 9 , 1999 ) : binary digits of pi from one quadrillion minus three to one quadrillion sixty ( september 11 , 2000 ) : therefore , the least significant known bit of pi is 1 at position 1,000,000,000,000,060 ( one quadrillion sixty ) or 10 15 +60 .
38
+ 20 the mobile identification number ( min ) or mobile subscription identification number ( msin ) refers to the 10 - digit unique number that a wireless carrier uses to identify a mobile phone , which is the last part of the international mobile subscriber identity ( imsi ) .
39
+ 11 in mathematical notation for number , signed-digit representation indicates that each digit is associated with a sign , positive or negative .
40
+ 34 other codes in reserve for this use : 522 ( had been used for mexico roaming ) , 588 ( as with 522 , '' easily recognizable '' codes as the second and third digit match ) , plus these '' regular '' 5xx codes : 521 , 523 , 524 , 525 , 526 , 527 , 528 , 529 ( other 52x codes for mexico roaming ) , 532 , 535 , 538 , 542 , 543 , 545 , 546 , 547 , 549 , 550 , 552 , 553 , 554 , 556 , 558 , 569 , 578 , and 589 .
41
+ 11 the two frogs can be distinguished by a disproportionately long second digit of the inner front toes in the case of l. fletcheri .
42
+ 7 the articulating prosthetic hand has individually powered digit and thumb and has a choice of grips .